/* ==========================================================================
   COMPONENTS
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOP UTILITY BAR
   -------------------------------------------------------------------------- */
.topbar {
  position: relative;
  z-index: var(--z-raised);
  background: var(--ink-deep);
  border-bottom: 1px solid rgba(200, 160, 46, .22);
  font-size: var(--t-small);
  color: var(--mist);
  transition: transform var(--dur) var(--ease);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  min-height: 44px;
  padding-block: .35rem;
}
.topbar__group { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--mist);
  white-space: nowrap;
}
.topbar__item svg { width: 15px; height: 15px; flex: none; color: var(--gold); }
a.topbar__item { transition: color var(--dur-fast) var(--ease); }
a.topbar__item:hover { color: var(--gold-lite); }

.social {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.social__link {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: var(--r-pill);
  color: var(--mist);
  transition: color var(--dur-fast) var(--ease),
              background-color var(--dur-fast) var(--ease);
}
.social__link svg { width: 17px; height: 17px; }
.social__link:hover { color: var(--gold); background: rgba(200, 160, 46, .12); }

/* --------------------------------------------------------------------------
   2. HEADER / NAVIGATION
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: var(--z-raised);
  background: transparent;
  transition: background-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-stuck {
  background: var(--glass-strong);
  -webkit-backdrop-filter: var(--blur);
  backdrop-filter: var(--blur);
  border-bottom-color: var(--ink-line);
  box-shadow: var(--sh-2);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .header.is-stuck { background: var(--ink); }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  min-height: 84px;
  transition: min-height var(--dur) var(--ease);
}
.header.is-stuck .header__inner { min-height: 68px; }

.brand { display: flex; align-items: center; gap: .8rem; flex: none; }
.brand__mark {
  width: 54px;
  height: 54px;
  transition: width var(--dur) var(--ease), height var(--dur) var(--ease);
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, .5));
}
.header.is-stuck .brand__mark { width: 44px; height: 44px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -.01em;
}
.brand__tag {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav { display: flex; align-items: center; gap: .35rem; }
.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .7rem .9rem;
  min-height: 44px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--mist);
  border-radius: var(--r-sm);
  transition: color var(--dur-fast) var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: .9rem;
  right: .9rem;
  bottom: .45rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--white); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link svg { width: 12px; height: 12px; opacity: .7; transition: transform var(--dur-fast) var(--ease); }
.nav__item { position: relative; }
.nav__item.is-open > .nav__link svg { transform: rotate(180deg); }

/* Mega dropdown */
.mega {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: min(760px, 88vw);
  padding: 1.1rem;
  background: var(--glass-strong);
  -webkit-backdrop-filter: var(--blur);
  backdrop-filter: var(--blur);
  border: 1px solid var(--glass-line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .3rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: var(--z-dropdown);
  transition: opacity var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              visibility var(--dur);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .mega { background: var(--ink-soft); }
}
.nav__item.is-open .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega__link {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .7rem;
  border-radius: var(--r-md);
  color: var(--mist);
  transition: background-color var(--dur-fast) var(--ease);
}
.mega__link:hover { background: rgba(200, 160, 46, .10); }
.mega__thumb {
  width: 62px; height: 50px;
  object-fit: cover;
  border-radius: var(--r-sm);
  border: 1px solid var(--ink-line);
  flex: none;
}
.mega__title { display: block; color: var(--white); font-weight: 600; font-size: .93rem; line-height: 1.3; }
.mega__desc  { display: block; font-size: .78rem; color: var(--mist); opacity: .8; line-height: 1.4; }

/* Hamburger */
.burger {
  display: none;
  place-items: center;
  width: 46px; height: 46px;
  background: none;
  border: 1px solid var(--ink-line);
  border-radius: var(--r-sm);
  cursor: pointer;
}
.burger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur-fast) var(--ease);
}
.burger span + span { margin-top: 5px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: var(--ink-deep);
  padding: 6rem var(--gutter) 3rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              visibility var(--dur);
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu__list { list-style: none; margin: 0; padding: 0; }
.mobile-menu__list li {
  border-bottom: 1px solid var(--ink-line);
  opacity: 0;
  transform: translateY(14px);
}
.mobile-menu.is-open .mobile-menu__list li {
  animation: menu-in .5s var(--ease) forwards;
  animation-delay: calc(var(--i, 0) * 55ms + 120ms);
}
.mobile-menu__list a {
  display: block;
  padding: 1rem .25rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  min-height: 44px;
}
.mobile-menu__list a:hover { color: var(--gold); }
.mobile-menu__sub { padding-left: 1rem; }
.mobile-menu__sub a { font-size: 1rem; font-family: var(--font-body); color: var(--mist); padding: .7rem .25rem; }
@keyframes menu-in { to { opacity: 1; transform: none; } }

/* --------------------------------------------------------------------------
   3. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 52px;
  padding: .95rem 1.9rem;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .01em;
  cursor: pointer;
  overflow: hidden;
  text-align: center;
  transition: transform var(--dur-fast) var(--ease),
              box-shadow var(--dur) var(--ease),
              background-color var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; }

/* Gloss sweep */
.btn::before {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .38), transparent);
  transform: skewX(-18deg);
  transition: left .65s var(--ease);
  pointer-events: none;
}
.btn:hover::before { left: 130%; }

.btn--gold {
  background: var(--gold);
  color: var(--ink-deep);
  box-shadow: var(--sh-gold), var(--carve-out);
}
.btn--gold:hover { background: var(--gold-lite); box-shadow: var(--sh-2), var(--sh-gold); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .28);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-lite); background: rgba(200, 160, 46, .08); }

/* On parchment the white ghost button disappears — restate it for light sections */
.sec--light .btn--ghost {
  color: var(--walnut);
  border-color: var(--sand);
}
.sec--light .btn--ghost:hover {
  color: var(--gold-deep);
  border-color: var(--gold-deep);
  background: rgba(138, 106, 24, .07);
}
.sec--light .btn::before {
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .55), transparent);
}

.btn--ink {
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--sh-2);
}
.btn--ink:hover { background: var(--ink-soft); }

.btn--sm { min-height: 44px; padding: .65rem 1.3rem; font-size: .85rem; }
.btn--block { width: 100%; }

/* Text link with a growing gold hairline */
.link-gold {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--gold);
  font-weight: 600;
  font-size: .92rem;
  padding-block: .3rem;
}
.link-gold::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.link-gold:hover::after { transform: scaleX(1); }
.link-gold svg { width: 15px; height: 15px; transition: transform var(--dur) var(--ease); }
.link-gold:hover svg { transform: translateX(4px); }
.sec--light .link-gold { color: var(--gold-deep); }

/* --------------------------------------------------------------------------
   4. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: clamp(600px, 96svh, 1000px);
  display: grid;
  align-items: center;
  isolation: isolate;
  background: var(--ink-deep);
  margin-top: -84px;
  padding-top: 84px;
}
.hero__layers { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero__img {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  object-fit: cover;
  will-change: transform;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,11,20,.86) 0%, rgba(5,11,20,.42) 34%, rgba(5,11,20,.94) 100%),
    radial-gradient(120% 80% at 20% 40%, transparent 0%, rgba(5,11,20,.72) 100%);
}
.hero__content { position: relative; z-index: 2; padding-block: clamp(4rem, 10vw, 8rem); }
.hero__title { font-size: var(--t-hero); margin-bottom: .35em; max-width: 15ch; }
.hero__sub { max-width: 54ch; color: #C6CFDA; }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-4); }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: var(--s-5);
  padding-top: var(--s-3);
  border-top: 1px solid rgba(255, 255, 255, .12);
  max-width: 640px;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 600;
  color: #C6CFDA;
}
.hero__trust-item svg { width: 17px; height: 17px; color: var(--gold); flex: none; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.8rem;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  gap: .5rem;
  font-size: .62rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  z-index: 3;
}
.scroll-cue__line {
  width: 1px; height: 46px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

/* --------------------------------------------------------------------------
   5. CARDS — 3D tilt, glass, carved relief
   -------------------------------------------------------------------------- */
.tilt { perspective: 1200px; }
.tilt__inner {
  position: relative;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform var(--dur-slow) var(--ease-out),
              box-shadow var(--dur-slow) var(--ease-out);
  will-change: transform;
}
.tilt:hover .tilt__inner { box-shadow: var(--sh-3); }

/* Cursor-following gloss */
.tilt__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    340px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 255, 255, .14), transparent 62%);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
  pointer-events: none;
  z-index: 3;
}
.tilt:hover .tilt__inner::after { opacity: 1; }

.card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--dur) var(--ease);
}
.card:hover { border-color: rgba(200, 160, 46, .45); }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink-deep); }
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}
.card:hover .card__media img { transform: scale(1.07); }
.card__body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.card__title { font-size: var(--t-h4); margin-bottom: .5rem; color: var(--white); }
.card__text { font-size: .92rem; color: var(--mist); margin-bottom: 1.1rem; flex: 1; }
.card__foot { margin-top: auto; }

/* Card with engraved title on parchment */
.card--light {
  background: var(--white);
  border-color: var(--sand);
}
.card--light .card__title { color: var(--walnut); }
.card--light .card__text  { color: var(--stone); }

/* Engraved / routed text effect */
.engraved {
  color: rgba(58, 41, 25, .92);
  text-shadow: 0 1px 0 rgba(255, 255, 255, .7), 0 -1px 1px rgba(0, 0, 0, .28);
}

/* Small index number on a card */
.card__index {
  position: absolute;
  top: 1rem; right: 1.2rem;
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold);
  opacity: .28;
  z-index: 2;
}

/* --------------------------------------------------------------------------
   6. BENTO / FEATURED WORK GRID
   -------------------------------------------------------------------------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 1rem;
}
.bento__tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--ink-soft);
  cursor: pointer;
  box-shadow: var(--sh-2);
}
.bento__tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.bento__tile:hover img { transform: scale(1.06); }
.bento__tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(5, 11, 20, .88) 100%);
  transition: opacity var(--dur) var(--ease);
}
.bento__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.3rem 1.5rem;
  z-index: 2;
  transform: translateY(8px);
  transition: transform var(--dur-slow) var(--ease);
}
.bento__tile:hover .bento__cap { transform: none; }
.bento__cap h3 { font-size: 1.15rem; margin: 0 0 .2rem; color: var(--white); }
.bento__cap span { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 700; }

.bento__tile--xl { grid-column: span 2; grid-row: span 2; }
.bento__tile--w  { grid-column: span 2; }
.bento__tile--t  { grid-row: span 2; }

/* --------------------------------------------------------------------------
   7. MARQUEE
   -------------------------------------------------------------------------- */
.marquee {
  position: relative;
  overflow: hidden;
  padding-block: 1.6rem;
  background: var(--ink-deep);
  border-block: 1px solid var(--ink-line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 46s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .42);
  white-space: nowrap;
}
.marquee__item::after {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   8. PROCESS TIMELINE (SVG line-draw)
   -------------------------------------------------------------------------- */
.timeline { position: relative; }
.timeline__svg {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}
.timeline__path {
  stroke: var(--gold);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: .75;
}
.timeline__steps { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(2rem, 5vw, 4rem); }
.timeline__step { position: relative; display: grid; grid-template-columns: 1fr 84px 1fr; align-items: center; gap: 1rem; }
.timeline__step:nth-child(even) .timeline__card { grid-column: 3; }
.timeline__step:nth-child(odd)  .timeline__card { grid-column: 1; text-align: right; }
.timeline__card {
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.7rem;
  box-shadow: var(--sh-1);
}
.sec--light .timeline__card { background: var(--white); border-color: var(--sand); }
.timeline__dot {
  grid-column: 2;
  justify-self: center;
  display: grid;
  place-items: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid var(--gold);
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  box-shadow: var(--sh-gold);
  position: relative;
  z-index: 2;
}
.sec--light .timeline__dot { background: var(--bone); }
.timeline__meta { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 700; }

/* --------------------------------------------------------------------------
   9. GOOGLE REVIEWS
   -------------------------------------------------------------------------- */
.reviews__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  margin-bottom: var(--s-4);
}
.reviews__score { display: flex; align-items: center; gap: 1rem; }
.reviews__score-num { font-family: var(--font-display); font-size: 3rem; line-height: 1; color: var(--white); }
.sec--light .reviews__score-num { color: var(--walnut); }

.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 17px; height: 17px; color: var(--gold); }

.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: var(--s-4); }
.chip {
  position: relative;
  min-height: 44px;
  padding: .6rem 1.15rem;
  border-radius: var(--r-pill);
  border: 1px solid var(--ink-line);
  background: transparent;
  color: var(--mist);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              background-color var(--dur-fast) var(--ease);
}
.chip:hover { color: var(--white); border-color: var(--steel-dark); }
.chip[aria-selected="true"] {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink-deep);
  box-shadow: var(--sh-gold);
}
.sec--light .chip { border-color: var(--sand); color: var(--stone); }
.sec--light .chip:hover { color: var(--walnut); border-color: var(--stone); }
.sec--light .chip[aria-selected="true"] { color: var(--ink-deep); border-color: var(--gold); }

.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s-3); }
.review {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  padding: 1.6rem;
  border-radius: var(--r-lg);
  background: var(--glass);
  -webkit-backdrop-filter: var(--blur);
  backdrop-filter: var(--blur);
  border: 1px solid var(--glass-line);
  box-shadow: var(--sh-1);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .review { background: var(--ink-soft); }
}
.sec--light .review {
  background: var(--glass-light);
  border-color: var(--sand);
}
.review__top { display: flex; align-items: center; gap: .8rem; }
.review__avatar {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink-deep);
  font-weight: 700;
  font-size: 1.05rem;
  flex: none;
}
.review__who { display: flex; flex-direction: column; line-height: 1.35; }
.review__name { font-weight: 600; color: var(--white); font-size: .95rem; }
.sec--light .review__name { color: var(--walnut); }
.review__date { font-size: .78rem; opacity: .72; }
.review__g { margin-left: auto; width: 20px; height: 20px; flex: none; }
.review__text { font-size: .93rem; margin: 0; }
.review__tag {
  align-self: flex-start;
  margin-top: auto;
  padding: .3rem .7rem;
  border-radius: var(--r-pill);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200, 160, 46, .12);
  border: 1px solid rgba(200, 160, 46, .28);
}
.sec--light .review__tag { color: var(--gold-deep); }
.review__more {
  align-self: flex-start;
  background: none;
  border: 0;
  padding: 0;
  color: var(--gold);
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  text-decoration: underline;
}
.review__body.is-clamped { display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }

.reviews__empty {
  grid-column: 1 / -1;
  padding: var(--s-5) var(--s-3);
  text-align: center;
  border: 1px dashed var(--ink-line);
  border-radius: var(--r-lg);
}
.sec--light .reviews__empty { border-color: var(--sand); }

/* --------------------------------------------------------------------------
   10. AWARDS
   -------------------------------------------------------------------------- */
.awards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s-3); }
.award {
  position: relative;
  padding: 1.8rem;
  border-radius: var(--r-lg);
  background: var(--ink-soft);
  border: 1px solid var(--ink-line);
  border-top: 2px solid var(--gold);
  box-shadow: var(--sh-1);
}
.sec--light .award { background: var(--white); border-color: var(--sand); border-top-color: var(--gold); }
.award__year { font-family: var(--font-display); font-size: 2.1rem; color: var(--gold); line-height: 1; margin-bottom: .5rem; }
.award__title { font-size: 1.02rem; font-weight: 600; color: var(--white); margin-bottom: .3rem; }
.sec--light .award__title { color: var(--walnut); }
.award__body { font-size: .87rem; margin: 0; }

/* --------------------------------------------------------------------------
   11. VIDEO FACADE (click-to-play, keeps the iframe off LCP)
   -------------------------------------------------------------------------- */
.video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-deep);
  cursor: pointer;
  border: 1px solid var(--ink-line);
  box-shadow: var(--sh-2);
  width: 100%;
  padding: 0;
  display: block;
}
.video img { width: 100%; height: 100%; object-fit: cover; opacity: .82; transition: opacity var(--dur) var(--ease), transform 1.2s var(--ease-out); }
.video:hover img { opacity: 1; transform: scale(1.04); }
.video__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.video__play span {
  display: grid;
  place-items: center;
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(200, 160, 46, .94);
  color: var(--ink-deep);
  box-shadow: var(--sh-3), 0 0 0 12px rgba(200, 160, 46, .14);
  transition: transform var(--dur) var(--ease);
}
.video:hover .video__play span { transform: scale(1.08); }
.video__play svg { width: 26px; height: 26px; margin-left: 4px; }
.video__label {
  position: absolute;
  left: 1.2rem; bottom: 1.1rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, .8);
  z-index: 2;
}
.video iframe { width: 100%; height: 100%; border: 0; display: block; }

/* --------------------------------------------------------------------------
   12. FORMS
   -------------------------------------------------------------------------- */
.form { display: grid; gap: 1.15rem; }
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.15rem; }
.field { position: relative; display: flex; flex-direction: column; }
.field label {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: .4rem;
  color: var(--white);
}
.sec--light .field label { color: var(--walnut); }
.field .req { color: var(--gold); }

.field input, .field select, .field textarea {
  min-height: 52px;
  padding: .85rem 1rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-md);
  color: var(--white);
  transition: border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease),
              background-color var(--dur-fast) var(--ease);
}
.sec--light .field input,
.sec--light .field select,
.sec--light .field textarea {
  background: var(--white);
  border-color: var(--sand);
  color: var(--walnut);
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: rgba(169, 180, 194, .55); }
.sec--light .field input::placeholder,
.sec--light .field textarea::placeholder { color: rgba(99, 92, 76, .55); }

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 160, 46, .18);
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] { border-color: var(--red-lite); }

.field__error {
  display: none;
  align-items: center;
  gap: .35rem;
  margin-top: .35rem;
  font-size: .8rem;
  color: var(--red-lite);
  font-weight: 500;
}
.field__error::before { content: "!"; display: grid; place-items: center; width: 15px; height: 15px; border-radius: 50%; background: var(--red-lite); color: var(--white); font-size: .65rem; font-weight: 800; flex: none; }
.field.has-error .field__error { display: flex; }

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C8A02E' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.8rem;
}
.field select option { background: var(--ink); color: var(--white); }
.sec--light .field select option { background: var(--white); color: var(--walnut); }

/* Material chips (multi-select) */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chips input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.chips label {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: .55rem 1.05rem;
  margin: 0;
  border: 1px solid var(--ink-line);
  border-radius: var(--r-pill);
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--mist);
  transition: all var(--dur-fast) var(--ease);
}
.sec--light .chips label { border-color: var(--sand); color: var(--stone); }
.chips input:checked + label {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink-deep);
  font-weight: 600;
}
.chips input:focus-visible + label { outline: 3px solid var(--gold-lite); outline-offset: 3px; }

/* .field sets flex-direction:column — restate row so the box sits beside the label */
.consent { display: flex; flex-direction: row; align-items: flex-start; gap: .7rem; font-size: .87rem; }
.consent label { margin-bottom: 0; font-weight: 500; }
.consent input { width: 22px; height: 22px; min-height: 0; accent-color: var(--gold); flex: none; margin-top: .15rem; }

.form__status { font-size: .9rem; min-height: 1.4em; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* Multi-step progress */
.steps-bar { height: 3px; background: var(--ink-line); border-radius: var(--r-pill); overflow: hidden; margin-bottom: 1.4rem; }
.steps-bar__fill { height: 100%; background: var(--gold-grad); background-size: 200% 100%; width: 33.33%; transition: width var(--dur-slow) var(--ease); }

/* --------------------------------------------------------------------------
   13. CONTACT / MAP PANEL
   -------------------------------------------------------------------------- */
.info-card {
  background: var(--ink);
  border: 1px solid var(--ink-line);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--sh-2);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.info-row { display: flex; gap: .95rem; align-items: flex-start; }
.info-row svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: .2rem; }
.info-row dt { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: .15rem; }
.info-row dd { margin: 0; color: var(--white); font-size: .98rem; }
.info-row dd a { color: var(--white); }
.info-row dd a:hover { color: var(--gold-lite); }

/* The info card is a dark island inside a parchment section, so the
   .sec--light text colours must be restated or they land dark-on-dark. */
.sec--light .info-card h3,
.sec--light .info-card h4,
.sec--light .info-card p,
.sec--light .info-card dd { color: var(--white); }
.sec--light .info-card .btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, .28);
}
.sec--light .info-card .btn--ghost:hover {
  color: var(--gold-lite);
  border-color: var(--gold);
  background: rgba(200, 160, 46, .08);
}

.map-embed {
  border: 0;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--r-lg);
  display: block;
}

/* Click-to-load map facade — keeps Google's ~1.7 MB embed off the initial load */
.map-facade {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--r-lg);
  border: 1px dashed var(--ink-line);
  background:
    radial-gradient(90% 120% at 30% 20%, rgba(200, 160, 46, .10), transparent 60%),
    var(--ink-deep);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.map-facade__inner { text-align: center; padding: 1.2rem; display: grid; gap: .7rem; justify-items: center; }
.map-facade__pin svg { width: 28px; height: 28px; color: var(--gold); }
.map-facade__addr { margin: 0; color: var(--white); font-weight: 600; font-size: .95rem; line-height: 1.45; }
.map-facade__note { margin: 0; font-size: .74rem; color: var(--mist); opacity: .75; max-width: 30ch; }
.sec--light .map-facade__addr { color: var(--white); }
.sec--light .map-facade .btn--ghost { color: var(--white); border-color: rgba(255, 255, 255, .28); }
.sec--light .map-facade .btn--ghost:hover { color: var(--gold-lite); border-color: var(--gold); }

/* --------------------------------------------------------------------------
   14. BREADCRUMBS + PAGE HEADER
   -------------------------------------------------------------------------- */
.page-head {
  position: relative;
  padding-block: clamp(7rem, 14vw, 11rem) clamp(3rem, 6vw, 5rem);
  background: var(--ink-deep);
  margin-top: -84px;
  overflow: clip;
}
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 120% at 78% 12%, rgba(200, 160, 46, .12), transparent 62%);
  pointer-events: none;
}
.page-head__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .42;
  z-index: 0;
}
/* Directional scrim: heavy behind the headline, lighter on the right so the
   photograph still reads. Without it the sign in the image fights the H1. */
.page-head::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(100deg,
    rgba(5, 11, 20, .95) 0%,
    rgba(5, 11, 20, .86) 38%,
    rgba(5, 11, 20, .62) 100%);
}
.page-head .wrap { position: relative; z-index: 2; }
.page-head h1 { max-width: 20ch; }

.crumbs { display: flex; flex-wrap: wrap; gap: .45rem; font-size: .82rem; margin-bottom: 1.1rem; padding: 0; list-style: none; }
.crumbs li { display: flex; align-items: center; gap: .45rem; color: var(--mist); }
.crumbs li + li::before { content: "/"; opacity: .4; }
.crumbs a { color: var(--mist); }
.crumbs a:hover { color: var(--gold); }
.crumbs [aria-current="page"] { color: var(--gold); }

/* --------------------------------------------------------------------------
   15. STAT COUNTERS
   -------------------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--s-3); }
.stat { text-align: center; padding: 1.2rem .6rem; border-left: 1px solid var(--sand); }
.sec--dark .stat, .sec--deep .stat { border-left-color: var(--ink-line); }
.stat:first-child { border-left: 0; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1;
  color: var(--gold-deep);
  display: block;
}
.sec--dark .stat__num, .sec--deep .stat__num, .sec--soft .stat__num { color: var(--gold); }
.stat__label { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; margin-top: .5rem; display: block; }

/* --------------------------------------------------------------------------
   16. BLOG
   -------------------------------------------------------------------------- */
.post-card { display: flex; flex-direction: column; height: 100%; }
.post-card__media { aspect-ratio: 16 / 10; overflow: hidden; border-radius: var(--r-md); margin-bottom: 1.1rem; background: var(--ink-soft); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.post-card:hover .post-card__media img { transform: scale(1.06); }
.post-card__meta { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: .5rem; }
.post-card__title { font-size: 1.25rem; margin-bottom: .5rem; }
.post-card__title a { color: inherit; }
.post-card__title a:hover { color: var(--gold); }

/* --------------------------------------------------------------------------
   17. FAQ
   -------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--sand); }
.sec--dark .faq, .sec--deep .faq { border-top-color: var(--ink-line); }
.faq__item { border-bottom: 1px solid var(--sand); }
.sec--dark .faq__item, .sec--deep .faq__item { border-bottom-color: var(--ink-line); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  min-height: 60px;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  color: var(--walnut);
  transition: color var(--dur-fast) var(--ease);
}
.sec--dark .faq__q, .sec--deep .faq__q { color: var(--white); }
.faq__q:hover { color: var(--gold-deep); }
.sec--dark .faq__q:hover, .sec--deep .faq__q:hover { color: var(--gold); }
.faq__icon { position: relative; width: 20px; height: 20px; flex: none; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; top: 50%; left: 0;
  width: 100%; height: 1.5px; background: var(--gold);
  transition: transform var(--dur) var(--ease);
}
.faq__icon::after { transform: rotate(90deg); }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: rotate(0deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--dur-slow) var(--ease); }
.faq__q[aria-expanded="true"] + .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding-bottom: 1.4rem; margin: 0; max-width: 72ch; }

/* --------------------------------------------------------------------------
   18. CTA BAND
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  background: var(--ink-deep);
  text-align: center;
  overflow: clip;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 110% at 50% 100%, rgba(200, 160, 46, .18), transparent 66%);
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   19. FOOTER
   -------------------------------------------------------------------------- */
.footer { background: var(--ink-deep); border-top: 1px solid var(--ink-line); position: relative; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.35fr;
  gap: var(--s-4);
  padding-block: clamp(3rem, 6vw, 5rem);
}
.footer__brand { display: flex; align-items: center; gap: .8rem; margin-bottom: 1.1rem; }
.footer__brand img { width: 58px; height: 58px; }
.footer h4 {
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  font-weight: 700;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer a { color: var(--mist); font-size: .92rem; }
.footer a:hover { color: var(--gold); }
/* .footer a would otherwise repaint the button label mist-on-gold (1.17:1) */
.footer .btn--gold, .footer .btn--gold:hover { color: var(--ink-deep); font-size: .85rem; }
.footer p { font-size: .92rem; }

.footer__bottom {
  border-top: 1px solid var(--ink-line);
  padding-block: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: .85rem;
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* The credit must be legible — gold on hover, never faded out */
.credit { color: #B9C3CF; }
.credit a { color: var(--gold); font-weight: 600; font-size: inherit; }
.credit a:hover { color: var(--gold-lite); text-decoration: underline; }

/* --------------------------------------------------------------------------
   20. STICKY MOBILE ACTION BAR
   -------------------------------------------------------------------------- */
.action-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: var(--z-overlay);
  display: none;
  background: var(--glass-strong);
  -webkit-backdrop-filter: var(--blur);
  backdrop-filter: var(--blur);
  border-top: 1px solid var(--glass-line);
  transform: translateY(110%);
  transition: transform var(--dur-slow) var(--ease);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .action-bar { background: var(--ink-deep); }
}
.action-bar.is-visible { transform: none; }
.action-bar__inner { display: grid; grid-template-columns: 1fr 1fr; }
.action-bar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 58px;
  font-weight: 700;
  font-size: .95rem;
  color: var(--white);
}
.action-bar__btn:first-child { border-right: 1px solid var(--ink-line); }
.action-bar__btn svg { width: 20px; height: 20px; }
.action-bar__btn--call { color: var(--gold); }
.action-bar__btn--wa   { color: #4BD264; }

/* --------------------------------------------------------------------------
   21. LOAD CURTAIN + CUSTOM CURSOR
   -------------------------------------------------------------------------- */
.curtain {
  position: fixed;
  inset: 0;
  z-index: var(--z-toast);
  background: var(--ink-deep);
  display: grid;
  place-items: center;
  transition: transform .8s var(--ease-in), opacity .5s ease .3s;
}
.curtain.is-gone { transform: translateY(-102%); opacity: 0; pointer-events: none; }
.curtain img { width: 96px; height: 96px; animation: curtain-mark .9s var(--ease) both; }
@keyframes curtain-mark {
  from { opacity: 0; transform: scale(.82); }
  to   { opacity: 1; transform: none; }
}

.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 26px; height: 26px;
  margin: -13px 0 0 -13px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--z-toast);
  display: none;
  place-items: center;
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--ink-deep);
  transition: width .3s var(--ease), height .3s var(--ease),
              margin .3s var(--ease), background-color .3s var(--ease);
}
.cursor.is-active { width: 34px; height: 34px; margin: -17px 0 0 -17px; background: rgba(200, 160, 46, .22); }
.cursor.is-view {
  width: 76px; height: 76px; margin: -38px 0 0 -38px;
  background: var(--gold);
}
.cursor__label { opacity: 0; transition: opacity .2s ease; }
.cursor.is-view .cursor__label { opacity: 1; }

/* --------------------------------------------------------------------------
   22. LIGHTBOX
   -------------------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: rgba(5, 11, 20, .96);
  display: grid;
  place-items: center;
  padding: var(--gutter);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), visibility var(--dur);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 82vh; object-fit: contain; border-radius: var(--r-md); box-shadow: var(--sh-3); }
.lightbox__cap { margin-top: 1rem; text-align: center; color: var(--mist); font-size: .92rem; }
.lightbox__close, .lightbox__nav {
  position: absolute;
  display: grid; place-items: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--ink-line);
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
}
.lightbox__close { top: 1.4rem; right: 1.4rem; }
.lightbox__nav--prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover, .lightbox__nav:hover { border-color: var(--gold); color: var(--gold); }
.lightbox__close svg, .lightbox__nav svg { width: 20px; height: 20px; }

/* --------------------------------------------------------------------------
   23. GALLERY (portfolio grid + filter)
   -------------------------------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s-3); }
.gallery__item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-soft);
  cursor: pointer;
  border: 0;
  padding: 0;
  display: block;
  width: 100%;
  box-shadow: var(--sh-1);
  transition: box-shadow var(--dur-slow) var(--ease), opacity var(--dur) var(--ease);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; transition: transform 1.2s var(--ease-out); }
.gallery__item:hover { box-shadow: var(--sh-3); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 11, 20, .9) 100%);
  opacity: .9;
}
.gallery__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.2rem 1.3rem;
  z-index: 2;
  text-align: left;
}
.gallery__cap h3 { font-size: 1.05rem; margin: 0 0 .15rem; color: var(--white); }
.gallery__cap span { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.gallery__item.is-hidden { display: none; }

/* --------------------------------------------------------------------------
   24. SPLIT / MEDIA-TEXT
   -------------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.split--wide-left { grid-template-columns: 1.15fr .85fr; }
.split__media { position: relative; }
.split__media img { border-radius: var(--r-lg); box-shadow: var(--sh-3); width: 100%; }

/* Slow-rotating gold ring behind a portrait */
.ring-frame { position: relative; display: inline-block; }
.ring-frame::before {
  content: "";
  position: absolute;
  inset: -6%;
  border-radius: 50%;
  border: 1px solid var(--gold);
  border-right-color: transparent;
  border-bottom-color: transparent;
  opacity: .5;
  animation: spin-slow 24s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

/* Pull-quote */
.quote {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 2.05rem);
  line-height: 1.32;
  color: var(--walnut);
  margin: 0 0 1.4rem;
  padding-left: 1.6rem;
  border-left: 2px solid var(--gold);
  text-wrap: pretty;
}
.sec--dark .quote, .sec--deep .quote, .sec--soft .quote { color: var(--white); }
.quote__by { display: block; margin-top: 1rem; font-family: var(--font-body); font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); font-weight: 700; }

/* Materials list */
.mat-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.mat-list li { display: flex; align-items: flex-start; gap: .7rem; font-size: .95rem; }
.mat-list svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: .22rem; }

/* Notice / TODO banner used by the reviews empty state */
.notice {
  padding: 1rem 1.2rem;
  border-radius: var(--r-md);
  border: 1px solid var(--glass-line);
  background: rgba(200, 160, 46, .08);
  font-size: .88rem;
}
