:root {
  --white: #ffffff;
  --pale: #f3f3f3;
  --soft: #fcfcfc;
  --dark: #2b2b2b;
  --ink: #1c1c1c;
  --muted: #6f6f6f;
  --red: #af0025;
  --red-strong: #bf1230;
  --pink: #ff9cad;
  --overlay: rgba(12, 12, 12, 0.24);
  --field: rgba(255, 255, 255, 0.15);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --space-1: 16px;
  --space-2: 24px;
  --space-3: 32px;
  --space-4: 48px;
  --space-5: 72px;
}

* { box-sizing: border-box; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.65;
}

a { color: var(--red); }
a:hover { color: var(--red-strong); text-decoration: underline; }
img { max-width: 100%; height: auto; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--red);
  color: var(--white);
  padding: 8px 12px;
  z-index: 10;
}

.skip-link:focus { left: 8px; }

.site-header {
  background: var(--white);
  box-shadow: 0 2px 33px rgba(67, 57, 66, .32);
  position: relative;
  z-index: 3;
}

.header-inner {
  min-height: 118px;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  gap: var(--space-2);
  align-items: center;
}

.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}

.brand-kicker {
  color: var(--red-strong);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-script {
  color: var(--red);
  font-family: var(--serif);
  font-size: 34px;
  font-style: italic;
  font-weight: 700;
}

.primary-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
}

.nav-item-wrap { position: relative; }

.primary-nav a {
  color: var(--ink);
  font-size: 15px;
  text-decoration: none;
}

.primary-nav a.is-active,
.primary-nav a:hover { color: var(--red); }

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: -18px;
  min-width: 210px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .2);
}

.nav-item-wrap:hover .nav-dropdown {
  display: grid;
  gap: 8px;
}

.header-contact {
  display: grid;
  gap: 2px;
  text-align: right;
  white-space: nowrap;
}

.header-contact a {
  color: var(--red);
  font-size: 15px;
  text-decoration: underline;
}

.hero {
  min-height: 430px;
  background:
    linear-gradient(90deg, rgba(20, 18, 25, .78), rgba(20, 18, 25, .34) 48%, rgba(20, 18, 25, .08)),
    url("/wp-content/uploads/2017/10/farangiz-1440.png") center top / cover no-repeat;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 58px;
  background: var(--white);
  clip-path: polygon(0 72%, 50% 100%, 100% 72%, 100% 100%, 0 100%);
}

.hero-inner {
  min-height: 430px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 680px;
  margin: 0 0 var(--space-1);
  color: var(--white);
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1.28;
}

.hero h1 span {
  color: var(--red-strong);
  font-style: italic;
}

.hero p {
  max-width: 540px;
  color: var(--white);
}

.hero-button,
.button.hero-button {
  margin-top: var(--space-1);
  border: 1px solid var(--white);
  border-radius: 999px;
  background: var(--white);
  color: var(--red-strong);
  font-family: var(--serif);
  font-style: italic;
}

.site-main { background: var(--white); }

.page-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 230px;
  gap: var(--space-3);
  padding-top: var(--space-4);
  padding-bottom: var(--space-5);
}

.page-shell--home,
.page-shell--media {
  grid-template-columns: minmax(0, 1fr) 240px;
}

.page-shell--listing,
.page-shell--static,
.page-shell--gallery,
.page-shell--category {
  grid-template-columns: 220px minmax(0, 1fr);
}

.content-column {
  max-width: 920px;
  min-width: 0;
}

.site-sidebar {
  background: var(--soft);
  border-left: 3px solid var(--red);
  padding: var(--space-2);
  align-self: start;
}

.site-sidebar h2,
.utility h3,
.outlink-preserve h2 {
  margin: 0 0 var(--space-1);
  color: var(--red-strong);
  font-family: var(--serif);
  font-size: 20px;
}

.site-sidebar nav {
  display: grid;
  gap: 8px;
}

.site-sidebar a,
.rail-link {
  color: var(--ink);
  font-size: 13px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-2);
  color: var(--muted);
  font-size: 12px;
}

.breadcrumbs a:after {
  content: "/";
  margin-left: 8px;
  color: var(--muted);
}

.content-head {
  margin-bottom: var(--space-3);
}

.eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.content-head h1,
.site-prose h2,
.site-prose h3,
.site-prose h4 {
  color: var(--red-strong);
  font-family: var(--serif);
  line-height: 1.25;
}

.content-head h1 {
  margin: 0;
  font-size: 32px;
}

.lead {
  max-width: 760px;
  margin-top: var(--space-1);
  color: var(--muted);
  font-size: 16px;
}

.site-prose {
  font-size: 14px;
}

.site-prose p,
.site-list,
.site-prose blockquote,
.site-table,
.site-image,
.gallery-grid,
.feature-card {
  margin-bottom: var(--space-2);
}

.site-prose h2 { font-size: 24px; margin: var(--space-4) 0 var(--space-1); }
.site-prose h3 { font-size: 20px; margin: var(--space-3) 0 var(--space-1); }
.site-prose h4 { font-size: 18px; margin: var(--space-2) 0 var(--space-1); }

.site-image img,
.cover-frame img {
  display: block;
  border-radius: 0;
}

.site-image figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-1);
}

.gallery-grid .site-image {
  margin: 0;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.site-list {
  padding-left: 22px;
}

.site-prose blockquote {
  border-left: 3px solid var(--red);
  padding: var(--space-1) var(--space-2);
  background: var(--soft);
  color: var(--ink);
  font-family: var(--serif);
  font-style: italic;
}

.table-scroll {
  overflow-x: auto;
  margin-bottom: var(--space-2);
}

.site-separator {
  margin: var(--space-3) 0;
  border: 0;
  border-top: 1px solid #e6e6e6;
}

.feature-card {
  border-top: 1px solid #e7e7e7;
  padding-top: var(--space-1);
}

.feature-card h2 {
  margin: 10px 0 8px;
  font-size: 20px;
}

.card-label {
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.more {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid var(--red-strong);
  border-radius: 999px;
  color: var(--red-strong);
  font-family: var(--serif);
  font-style: italic;
  text-decoration: none;
}

.utility {
  align-self: start;
  background: var(--white);
  border-top: 3px solid var(--red);
  padding-top: var(--space-1);
}

.utility-body {
  display: grid;
  gap: 8px;
}

.content-toc {
  margin: 0 0 var(--space-3);
  padding: var(--space-1) var(--space-2);
  background: var(--soft);
  border-left: 3px solid var(--red);
}

.content-main-image {
  margin: var(--space-2) 0 0;
}

.outlink-preserve {
  padding: var(--space-3) 0;
  background: var(--soft);
}

.outlink-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px 18px;
}

.outlink-grid a {
  color: var(--ink);
  font-size: 12px;
}

.site-footer {
  background: var(--soft);
  border-top: 1px solid #e6e6e6;
  color: var(--muted);
  padding: var(--space-3) 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-2);
}

.site-footer h2 {
  margin: 0 0 8px;
  color: var(--red-strong);
  font-family: var(--serif);
  font-size: 20px;
}

.footer-links {
  display: grid;
  gap: 6px;
}

@media (max-width: 980px) {
  .header-inner,
  .page-shell,
  .page-shell--home,
  .page-shell--media,
  .page-shell--listing,
  .page-shell--static,
  .page-shell--gallery,
  .page-shell--category,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .header-contact { text-align: left; }
  .hero h1 { font-size: 30px; }
  .gallery-grid,
  .outlink-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .primary-nav { display: grid; gap: 8px; }
  .content-head h1 { font-size: 26px; }
  .gallery-grid,
  .outlink-grid {
    grid-template-columns: 1fr;
  }
}
