@font-face {
  font-family: "Pinyon Script";
  src: url("assets/fonts/pinyon-script-regular.woff2") format("woff2"),
    url("assets/fonts/pinyon-script-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #030303;
  --ink: #11100f;
  --cream: #fbfaf6;
  --soft: #d8d0c1;
  --muted: #a9a093;
  --gold: #c99b2f;
  --gold-light: #f4d77a;
  --gold-dark: #8b6617;
  --line: rgba(201, 155, 47, 0.66);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background: var(--black);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-dark {
  background:
    radial-gradient(circle at 78% 18%, rgba(201, 155, 47, 0.13), transparent 26rem),
    linear-gradient(135deg, #000 0%, #050505 52%, #100e0a 100%);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  width: 100%;
  padding: 0 max(18px, calc((100% - var(--max)) / 2));
  background: #000;
  min-height: 108px;
  display: grid;
  grid-template-columns: 132px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand-mark {
  width: 108px;
  display: block;
}

.brand-mark img {
  width: 100%;
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 2.4vw, 34px);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
  padding: 16px 0;
  border-bottom: 1px solid transparent;
  white-space: nowrap;
}

/* 9 nav links + CTA need tighter spacing just above the 1040px hamburger cutoff */
@media (min-width: 1041px) and (max-width: 1220px) {
  .site-nav {
    gap: 13px;
    letter-spacing: 0.11em;
  }
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-light);
  border-color: var(--gold);
}

.menu-toggle {
  display: none;
}

.outline-button,
.gold-button,
.dark-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  font-size: 11px;
  white-space: nowrap;
}

.outline-button {
  border: 1px solid var(--gold);
  color: var(--gold-light);
}

.gold-button {
  border: 1px solid #f7dd82;
  color: #090805;
  background: linear-gradient(135deg, #fff1a8 0%, #d8a532 45%, #fff1a8 100%);
  box-shadow: 0 0 22px rgba(201, 155, 47, 0.22);
}

.dark-button {
  background: #030303;
  border: 1px solid #111;
  color: var(--gold-light);
}

.hero {
  position: relative;
  background: #000;
  min-height: 100vh;
  min-height: 100svh;
  width: 100%;
  padding: 148px max(22px, 4vw) 88px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  overflow: hidden;
}

.page-hero {
  min-height: 420px;
  padding: 164px max(22px, calc((100vw - var(--max)) / 2)) 72px;
  display: grid;
  align-items: end;
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(42px, 6vw, 76px);
}

.page-hero p {
  max-width: 720px;
  color: var(--soft);
  font-size: 17px;
}

.content-section {
  padding: 72px max(22px, calc((100vw - var(--max)) / 2));
}

.content-section.light {
  background: var(--cream);
  color: var(--ink);
}

.content-section.light p {
  color: #37302a;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.content-card {
  border: 1px solid var(--line);
  padding: 28px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
}

.content-card h2,
.content-card h3 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  letter-spacing: 0.08em;
}

.content-card p {
  color: var(--soft);
  flex: 1;
}

.content-card p.eyebrow {
  flex: none;
}

.content-card .gold-button {
  margin-top: auto;
  align-self: flex-start;
}

.content-card .line-icon {
  width: 62px;
  height: 62px;
  margin: 0 0 20px;
}

.content-card .line-icon svg {
  width: 38px;
  height: 38px;
}

@media (min-width: 761px) {
  .content-card.ee-card h3 {
    min-height: 80px;
  }
}

.about-image.guidelines-image {
  background: url("assets/hero-crown.jpg") 72% center / cover no-repeat;
}

.about-image.privacy-image {
  background: url("assets/hero-regal.jpg") 76% center / cover no-repeat;
}

.about-image.terms-image {
  background: url("assets/brand-checklist.jpg") center / cover no-repeat;
}

.about-image.mentorship-image {
  background: url("assets/hero-regal2.jpg") 76% center / cover no-repeat;
}

.client-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  color: var(--soft);
}

.client-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 14px 20px;
  margin: 36px auto 0;
  padding: 0;
  max-width: 980px;
}

.client-list li {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 2.2vw, 26px);
  letter-spacing: 0.04em;
  color: var(--gold-light);
}

.client-list li + li::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.55em;
  margin-right: 20px;
  vertical-align: middle;
}

.client-list .client-more {
  color: var(--soft);
  font-style: italic;
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: calc((min(100vw - 44px, 1180px) - 48px) / 4);
  grid-auto-flow: dense;
  gap: 16px;
  margin-top: 44px;
}

.work-gallery .wg-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.work-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.work-gallery .wg-item:hover,
.work-gallery .wg-item:focus-visible {
  border-color: var(--gold-light);
}

.work-gallery .wg-item:hover img,
.work-gallery .wg-item:focus-visible img {
  transform: scale(1.045);
}

.work-gallery figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 26px 14px 11px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0));
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.work-gallery .wg-item:hover figcaption,
.work-gallery .wg-item:focus-visible figcaption {
  opacity: 1;
  transform: translateY(0);
}

.work-gallery .wg-big {
  grid-column: span 2;
  grid-row: span 2;
}

.work-gallery .wg-wide {
  grid-column: span 2;
}

.work-gallery .wg-tall {
  grid-row: span 2;
}

.work-gallery .wg-tall.wg-fit {
  align-self: center;
  aspect-ratio: 1100 / 1700;
}

.work-gallery .wg-wide.wg-fit {
  justify-self: center;
  aspect-ratio: 1600 / 901;
}

/* Featured work lightbox */
.wg-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  padding: 24px;
}

.wg-lightbox.open {
  display: flex;
}

body.wg-lb-lock {
  overflow: hidden;
}

.wg-lightbox figure {
  margin: 0;
  max-width: min(1080px, 92vw);
  text-align: center;
}

.wg-lightbox img {
  max-width: 100%;
  max-height: 82vh;
  border: 1px solid var(--gold);
  display: block;
  margin: 0 auto;
}

.wg-lightbox figcaption {
  margin-top: 14px;
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.wg-lightbox button {
  position: absolute;
  background: none;
  border: 1px solid rgba(216, 165, 50, 0.5);
  color: var(--gold-light);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.wg-lightbox button:hover,
.wg-lightbox button:focus-visible {
  border-color: var(--gold-light);
  background: rgba(216, 165, 50, 0.15);
}

.wg-lb-close {
  top: 20px;
  right: 22px;
}

.wg-lb-prev {
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.wg-lb-next {
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 760px) {
  .wg-lightbox {
    padding: 14px;
  }

  .wg-lightbox img {
    max-height: 70vh;
  }

  .wg-lb-prev {
    left: 8px;
  }

  .wg-lb-next {
    right: 8px;
  }
}

.story-section,
.ecosystem {
  padding: 76px max(22px, calc((100vw - var(--max)) / 2));
}

.story-copy {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.story-copy h2,
.ecosystem h2,
.mission-section h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.ecosystem h2 {
  text-align: center;
}

.ecosystem .content-card {
  min-height: 300px;
}

.mission-section {
  padding: 76px max(22px, calc((100vw - var(--max)) / 2));
  background: var(--cream);
  color: var(--ink);
}

.mission-section > div {
  max-width: 920px;
  margin: 0 auto;
}

.mission-section p {
  color: #37302a;
}

.mission-section .closing-line {
  margin: 34px 0;
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.35;
}

.split-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.split-content h2 {
  text-align: left;
  font-size: clamp(30px, 4vw, 48px);
}

.plain-list {
  display: grid;
  gap: 14px;
  padding: 0;
  list-style: none;
}

.plain-list li {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(201, 155, 47, 0.28);
}

.contact-panel {
  max-width: 760px;
}

.contact-panel .signup-form {
  grid-template-columns: 1fr;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 540px;
  /* Desktop: pull the copy toward the portrait, echoing the mobile framing */
  margin-left: clamp(0px, 13vw, 240px);
  padding-bottom: 58px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 13px;
  font-weight: 500;
}

.centered {
  text-align: center;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 400;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.1em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(50px, 7vw, 92px);
}

h1 span {
  display: block;
  position: relative;
  z-index: 1;
  color: var(--gold);
  font-family: "Pinyon Script", "Snell Roundhand", "Brush Script MT", cursive;
  /* Capped so "Alignment" fits the 540px hero column — wider than the box
     paints transparent under background-clip: text. Left padding must cover
     script descender swashes that sweep left of the glyph origin (the "g"
     in "guidelines"); the negative margin keeps the text position unchanged. */
  font-size: min(1.55em, 112px);
  line-height: 1;
  padding: 0.32em 0.25em 0.34em 0.35em;
  margin: -0.32em 0 -0.34em -0.27em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-transform: none;
  letter-spacing: 0;
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
  h1 span {
    background: linear-gradient(100deg, var(--gold-light) 8%, var(--gold) 46%, var(--gold-dark) 82%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.hero-text {
  max-width: 440px;
  margin: 22px 0 30px;
  color: var(--soft);
  font-size: 16px;
}

.hero-portrait {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.38) 42%, rgba(0, 0, 0, 0) 68%),
    url("assets/hero-regal2.jpg") right 140px bottom 0 / auto 92% no-repeat;
  filter: saturate(1.06);
}

.promise {
  padding: 90px max(22px, 4vw);
  text-align: center;
}

.promise h2 {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(34px, 4vw, 52px);
}

.promise h2 span {
  color: var(--gold);
  font-family: "Pinyon Script", "Snell Roundhand", "Brush Script MT", cursive;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.3em;
  line-height: 1;
}

.promise p:not(.eyebrow) {
  max-width: 640px;
  margin: 26px auto 0;
  color: var(--soft);
  font-size: 17px;
}

.price-note {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 18px 0 22px;
  flex: 0 0 auto;
}

.price-from {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.price-amount {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4.5vw, 54px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--gold-light);
}

.price-varies {
  font-size: clamp(24px, 2.6vw, 30px);
}

.price-per {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
  .price-amount {
    background: linear-gradient(135deg, #fff1a8 0%, #d8a532 45%, #fff1a8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    width: fit-content;
  }
}

.store-section .content-card {
  position: relative;
  background: linear-gradient(180deg, rgba(201, 155, 47, 0.07) 0%, rgba(3, 3, 3, 0) 55%);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.best-offer {
  position: absolute;
  top: 0;
  right: 0;
  padding: 6px 14px;
  background: linear-gradient(135deg, #fff1a8 0%, #d8a532 45%, #fff1a8 100%);
  color: #090805;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(201, 155, 47, 0.35);
}

.store-section #brand-identity {
  border-color: var(--gold);
}

.store-section .content-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 14px 34px rgba(201, 155, 47, 0.16);
}

.store-section .cart-button {
  align-self: stretch;
  width: 100%;
}

.store-fineprint {
  margin: 34px auto 0;
  max-width: 720px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.store-section .content-card[data-dialog] {
  cursor: pointer;
}

.details-link {
  background: none;
  border: 0;
  padding: 0;
  margin: 0 0 4px;
  align-self: flex-start;
  color: var(--gold-light);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.details-link:hover {
  color: var(--gold);
}

.service-dialog {
  background: #0b0a06;
  color: var(--cream);
  border: 1px solid var(--gold);
  padding: 40px;
  width: min(92vw, 640px);
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65), 0 0 44px rgba(201, 155, 47, 0.16);
}

.service-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(3px);
}

.service-dialog h2 {
  margin: 6px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  letter-spacing: 0.06em;
}

.service-dialog p {
  color: var(--soft);
  margin: 0 0 14px;
}

.service-dialog h3 {
  margin: 22px 0 8px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-dialog ul {
  margin: 0;
  padding-left: 20px;
  color: var(--soft);
}

.service-dialog li {
  margin: 5px 0;
}

.service-dialog .price-note {
  margin: 26px 0 20px;
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.dialog-close:hover {
  color: var(--gold-light);
}

.centered-heading {
  text-align: center;
  font-size: clamp(34px, 4vw, 52px);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 44px;
}

.steps-grid.steps-4 {
  grid-template-columns: repeat(4, 1fr);
}

.inline-gold {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.step-card {
  border: 1px solid var(--line);
  padding: 30px;
}

.step-num {
  display: block;
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
  color: var(--gold-light);
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
  .step-num {
    background: linear-gradient(135deg, #fff1a8 0%, #d8a532 45%, #fff1a8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    width: fit-content;
  }
}

.step-card h3 {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  letter-spacing: 0.06em;
}

.step-card p {
  margin: 0;
  color: var(--soft);
}

.quiz {
  max-width: 780px;
  margin: 0 auto;
}

.quiz-list {
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
}

.quiz-list label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 4px;
  border-bottom: 1px solid rgba(201, 155, 47, 0.35);
  font-size: 17px;
  cursor: pointer;
}

.quiz-list label:hover {
  color: var(--gold-dark);
}

.quiz-list input {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--gold);
  cursor: pointer;
}

.quiz-result {
  margin-top: 30px;
  text-align: center;
}

.quiz-result p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.contact-methods {
  grid-template-columns: repeat(2, 1fr);
  max-width: 920px;
  margin: 44px auto 0;
}

.contact-phone {
  align-self: flex-start;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  text-decoration: none;
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
  .contact-phone {
    background: linear-gradient(135deg, #fff1a8 0%, #d8a532 45%, #fff1a8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.contact-methods .content-card .eyebrow {
  margin: 0 0 8px;
}

.contact-methods .contact-phone {
  margin-bottom: 22px;
}

.contact-methods .contact-phone:last-child {
  margin-bottom: 0;
}

.contact-address {
  margin: 0 0 18px;
  font-style: normal;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--gold-light);
}

.checkout-grid {
  grid-template-columns: 1.15fr 1fr;
  max-width: 1020px;
  margin: 0 auto;
  align-items: start;
}

.checkout-h3 {
  margin: 18px 0 8px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.checkout-list {
  margin: 0 0 6px;
  padding-left: 20px;
  color: var(--soft);
}

.checkout-list li {
  margin: 5px 0;
}

.checkout-button {
  align-self: stretch;
  width: 100%;
  min-height: 56px;
  font-size: 13px;
}

.checkout-secure {
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.checkout-divider {
  margin: 24px 0;
  border: 0;
  border-top: 1px solid rgba(201, 155, 47, 0.35);
}

@media (max-width: 1040px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.insta-tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--line);
}

.insta-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.insta-tile:hover img {
  transform: scale(1.05);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 3, 3, 0.55);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.insta-tile:hover .insta-overlay,
.insta-tile:focus-visible .insta-overlay {
  opacity: 1;
}

.insta-follow {
  margin: 32px 0 0;
  text-align: center;
}

@media (max-width: 1040px) {
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1040px) {
  .steps-grid,
  .steps-grid.steps-4 {
    grid-template-columns: 1fr;
  }
}

.faq {
  padding: 90px max(22px, 4vw);
}

.faq h2 {
  text-align: center;
  font-size: clamp(34px, 4vw, 52px);
}

.faq-list {
  max-width: 780px;
  margin: 40px auto 0;
}

.faq-list details {
  border-bottom: 1px solid rgba(201, 155, 47, 0.35);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 40px 22px 4px;
  position: relative;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--cream);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 22px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list summary:hover {
  color: var(--gold-light);
}

.faq-list details p {
  margin: 0;
  padding: 0 4px 24px;
  color: var(--soft);
  max-width: 700px;
}

.faq-list details a {
  color: var(--gold-light);
  text-decoration: underline;
}

.statement-band {
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 14px 22px;
  background: var(--cream);
  color: #15120f;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 13px;
}

.statement-band span {
  height: 1px;
  background: var(--gold);
}

.services {
  padding: 70px max(22px, calc((100vw - var(--max)) / 2)) 66px;
}

.services h2,
.about h2,
.resource h2 {
  font-size: clamp(30px, 4.4vw, 48px);
  text-align: center;
}

.ornament {
  width: min(340px, 72vw);
  margin: 18px auto 44px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
}

.ornament::before,
.ornament::after {
  content: "";
  height: 1px;
  background: var(--line);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.service-card {
  min-height: 332px;
  padding: 8px 22px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-left: 1px solid var(--line);
}

.service-card:first-child {
  border-left: 0;
}

.service-card h3 {
  min-height: 58px;
  margin: 18px 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-card p {
  margin: 0 auto 22px;
  min-height: 94px;
  max-width: 170px;
  color: var(--soft);
  font-size: 13px;
}

.service-card a {
  margin-top: auto;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
  font-weight: 800;
}

.service-card a::after {
  content: " →";
}

.line-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 10px;
  color: var(--gold);
  background: rgba(201, 155, 47, 0.04);
  box-shadow: inset 0 0 0 1px rgba(244, 215, 122, 0.08), 0 0 22px rgba(201, 155, 47, 0.08);
}

.line-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  background: var(--cream);
  color: var(--ink);
}

.about-image {
  min-height: 410px;
  background: url("assets/studio-detail.jpg") center / cover no-repeat;
}

.about-copy {
  padding: clamp(42px, 6vw, 78px) max(22px, calc((100vw - var(--max)) / 2)) clamp(42px, 6vw, 72px) 58px;
}

.about h2,
.resource h2 {
  text-align: left;
}

.about h2 span,
.resource h2 span,
.story-copy h2 span {
  color: var(--gold-dark);
}

.about .ornament {
  margin-left: 0;
  margin-bottom: 24px;
  width: 260px;
}

.about p:not(.eyebrow) {
  max-width: 620px;
  color: #37302a;
}

.testimonial {
  padding: 26px 22px;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.testimonial blockquote {
  max-width: var(--max);
  min-height: 124px;
  margin: 0 auto;
  padding: 26px 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  text-align: center;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2.3vw, 24px);
}

.testimonial span {
  color: var(--gold);
  font-size: 74px;
  line-height: 0.5;
}

.testimonial cite {
  display: block;
  margin-top: 12px;
  color: var(--gold-light);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.resource {
  display: grid;
  grid-template-columns: minmax(320px, 0.94fr) minmax(360px, 1.06fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  padding: 58px max(22px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--gold);
}

.resource-image {
  min-height: 260px;
  background: url("assets/brand-checklist.jpg") center / contain no-repeat;
}

.resource-copy p:not(.eyebrow):not(.form-note) {
  max-width: 560px;
  color: var(--soft);
}

.signup-form {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto;
  gap: 16px;
  max-width: 620px;
  margin-top: 28px;
}

input {
  min-height: 50px;
  width: 100%;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.4);
  color: var(--cream);
  font: inherit;
}

input::placeholder {
  color: var(--muted);
}

.form-note {
  min-height: 24px;
  color: var(--gold-light);
}

.site-footer {
  padding: 44px max(22px, calc((100vw - var(--max)) / 2)) 20px;
  display: grid;
  grid-template-columns: 1.3fr 0.72fr 1fr 1.15fr;
  gap: 42px;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--gold-light);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  color: var(--soft);
  font-size: 13px;
}

.footer-contact {
  margin-top: 16px;
}

.footer-contact a {
  display: block;
  padding: 2px 0;
  color: var(--gold-light);
}

.footer-hours {
  margin: 10px 0 16px;
  line-height: 1.8;
}

.site-footer a.gold-button {
  color: #090805;
}

.site-footer > div:not(.footer-bottom) > a:not(.brand-mark):not(.gold-button) {
  display: block;
  margin: 3px 0;
}

.footer-brand {
  margin-bottom: 18px;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}

.social-links a {
  color: var(--gold-light);
  font-weight: 800;
}

.reviews-section {
  min-height: 0;
  padding: 0 max(22px, calc((100vw - var(--max)) / 2));
  border-bottom: 0;
}

.reviews-section:has(> div:not(:empty)) {
  min-height: 170px;
  padding: 42px max(22px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--gold);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.footer-bottom a {
  margin-left: 22px;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 100px 1fr;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    justify-self: end;
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--gold);
    background: transparent;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--gold-light);
  }

  .site-nav {
    position: absolute;
    top: 96px;
    left: 0;
    right: 0;
    display: none;
    padding: 20px;
    background: rgba(0, 0, 0, 0.94);
    border: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: grid;
    justify-items: center;
  }

  .hero {
    min-height: 860px;
  }

  .hero-copy {
    margin-left: 0;
    padding-bottom: 0;
  }

  .hero-portrait {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.42) 46%, rgba(0, 0, 0, 0.08) 75%),
      url("assets/hero-regal2.jpg") 74% bottom / auto 89% no-repeat;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 34px;
  }

  .service-card:nth-child(4) {
    border-left: 0;
  }

  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 92px;
    padding: 0 14px;
  }

  .brand-mark {
    width: 88px;
  }

  .hero {
    min-height: auto;
    padding-top: 122px;
    padding-bottom: 30px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .statement-band {
    grid-template-columns: 1fr;
    letter-spacing: 0.13em;
  }

  .statement-band span {
    display: none;
  }

  .service-grid,
  .about,
  .resource,
  .content-grid,
  .split-content,
  .signup-form,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 28px;
  }

  .service-card:first-child {
    border-top: 0;
  }

  .about-copy {
    padding: 42px 22px;
  }

  .about-image {
    min-height: 300px;
  }

  .resource {
    gap: 22px;
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .signup-form .gold-button {
    width: 100%;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom a {
    display: inline-block;
    margin: 8px 18px 0 0;
  }

  .page-hero {
    min-height: auto;
    padding-top: 132px;
    padding-bottom: 44px;
  }

  .content-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .work-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: calc((100vw - 54px) / 2);
    gap: 10px;
    margin-top: 32px;
  }

  .story-section,
  .ecosystem,
  .mission-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .promise,
  .faq {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .services {
    padding-top: 48px;
    padding-bottom: 40px;
  }

  .site-footer {
    padding-top: 36px;
  }
}

/* Blog articles */
.content-section > h2 {
  font-size: clamp(30px, 4.4vw, 48px);
}

.article-meta {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.article-body {
  padding: 76px max(22px, calc((100vw - var(--max)) / 2)) 88px;
  background: var(--cream);
  color: var(--ink);
}

.article-body > div {
  max-width: 780px;
  margin: 0 auto;
}

.article-body p {
  margin: 0 0 24px;
  color: #37302a;
  font-size: 17px;
  line-height: 1.8;
}

.article-body h2 {
  margin: 56px 0 20px;
  font-size: clamp(26px, 3vw, 34px);
  text-transform: none;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: var(--ink);
}

.article-body h3 {
  margin: 40px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.article-body ul,
.article-body ol {
  margin: 0 0 24px;
  padding-left: 24px;
  color: #37302a;
  line-height: 1.8;
}

.article-body li {
  margin-bottom: 10px;
}

.article-body blockquote {
  margin: 44px 0;
  padding: 4px 0 4px 28px;
  border-left: 2px solid var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.5;
  color: var(--gold-dark);
}

.article-body .article-divider {
  margin: 52px auto;
  text-align: center;
  color: var(--gold);
  letter-spacing: 0.6em;
}

.article-cta {
  margin-top: 64px;
  padding: 40px 34px;
  border: 1px solid var(--line);
  text-align: center;
}

.article-cta h2 {
  margin: 0 0 14px;
}

.article-cta .gold-button {
  margin-top: 10px;
}

.blog-card {
  padding: 0;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.blog-card:hover,
.blog-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--gold-light);
}

.blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px;
}

.blog-card .eyebrow {
  flex: 0 0 auto;
}

.blog-card-more {
  margin-top: auto;
  padding-top: 18px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  font-size: 11px;
}

.blog-card:hover .blog-card-more {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 760px) {
  .article-body {
    padding-top: 48px;
    padding-bottom: 56px;
  }
}

.best-offer.coming-soon {
  background: #090805;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  box-shadow: none;
}

.coming-soon-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  font-size: 11px;
  white-space: nowrap;
  border: 1px dashed rgba(201, 155, 47, 0.55);
  color: var(--gold-light);
  opacity: 0.85;
}

.store-section .content-card .coming-soon-cta {
  align-self: stretch;
  width: 100%;
}

.service-dialog .coming-soon-cta {
  width: 100%;
}
