/* ==========================================================================
   LILII GROUP - ivory editorial
   Palette derived from the client's logo (olive / antique gold / ivory).
   1 Tokens · 2 Base · 3 Utilities · 4 Header · 5 Blocks · 6 Responsive
   ========================================================================== */

/* ============ 1. TOKENS ============ */
:root {
  /* surfaces */
  --ivory: #fbfaf6;
  --paper: #f3f0e4;
  --paper-2: #efebdb;

  /* olive / gold, sampled from the logo artwork */
  --olive-900: #1f1f0c;
  --olive-800: #2c2b10;
  --olive-700: #414015;
  --olive-600: #585618;
  --olive-500: #6f6d29;
  --gold-700: #7d7a2c;
  --gold-600: #8b8430;
  --gold-500: #9a9235;
  --gold-400: #b8ab45;
  --gold-300: #cdc274;
  --gold-200: #d8cf8c;
  --gold-100: #ece7c6;

  /* ink */
  --ink: #1b1b12;
  --ink-2: #3c3b2b;
  --muted: #6d6c5a;
  --muted-2: #8d8c78;

  --line: rgba(27, 27, 18, .13);
  --line-soft: rgba(27, 27, 18, .07);
  --line-dark: rgba(236, 231, 198, .16);

  --sh-sm: 0 2px 10px rgba(31, 31, 12, .05);
  --sh: 0 18px 48px -26px rgba(31, 31, 12, .34);
  --sh-lg: 0 34px 80px -38px rgba(31, 31, 12, .48);

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;

  --shell: 1180px;
  --ease: cubic-bezier(.22, .68, .3, 1);

  --hex: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

/* ============ 2. BASE ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  font-weight: 400;
  line-height: 1.72;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* scroll lock while the mobile drawer is open. Deliberately NOT `.lock`:
   that class is the logo lockup (display: inline-flex) and putting it on
   <body> turned the whole page into one inline-flex row. */
body.nav-lock {
  overflow: hidden;
}

img,
svg,
iframe {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0 0 1.05rem;
  color: var(--muted);
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0 0 .55rem;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -.015em;
  color: var(--ink);
}

em {
  font-style: italic;
}

::selection {
  background: var(--gold-400);
  color: #fff;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* ============ 3. UTILITIES ============ */
.shell {
  width: min(100% - 40px, var(--shell));
  margin-inline: auto;
}

.sect {
  padding: clamp(74px, 8.5vw, 124px) 0;
}

.h2 {
  font-size: clamp(1.85rem, 3.9vw, 3.05rem);
  font-weight: 500;
}

.h2 em,
.hero__h em,
.band__h em,
.call__in h2 em {
  color: var(--gold-600);
}

.kicker {
  margin: 0 0 16px;
  font-family: var(--sans);
  font-size: .735rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-600);
}

.kicker--light {
  color: var(--gold-300);
}

.rule {
  display: block;
  width: 64px;
  height: 2px;
  margin: 26px 0;
  background: linear-gradient(90deg, var(--gold-500), rgba(154, 146, 53, 0));
}

.hex {
  clip-path: var(--hex);
  -webkit-clip-path: var(--hex);
}

.lead-in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: end;
  margin-bottom: clamp(38px, 5vw, 62px);
}

.lead-in__p {
  margin: 0;
  padding-bottom: 6px;
}

.mid-head {
  max-width: 660px;
  margin: 0 auto clamp(38px, 5vw, 60px);
  text-align: center;
}

.mid-head__p {
  margin: 14px auto 0;
}

/* reveal */
.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
  transition-delay: var(--d, 0ms);
}

.rv.on {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .rv {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }

  .fig__mark,
  .fig__ring,
  .strip__run {
    animation: none !important;
  }
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: background .35s var(--ease), color .35s var(--ease),
    border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}

.btn--lg {
  padding: 17px 34px;
  font-size: .85rem;
}

.btn--sm {
  padding: 11px 20px;
  font-size: .74rem;
}

.btn--solid {
  background: var(--olive-600);
  color: var(--gold-100);
  box-shadow: var(--sh-sm);
}

.btn--solid:hover {
  background: var(--olive-800);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px -18px rgba(31, 31, 12, .6);
}

.btn--quiet {
  color: var(--ink);
  border-color: var(--line);
  background: transparent;
}

.btn--quiet:hover {
  border-color: var(--gold-500);
  color: var(--gold-700);
  transform: translateY(-2px);
}

.btn--line {
  color: var(--gold-200);
  border-color: rgba(216, 207, 140, .38);
}

.btn--line:hover {
  background: var(--gold-200);
  color: var(--olive-800);
}

.btn--dark {
  background: var(--olive-800);
  color: var(--gold-100);
}

.btn--dark:hover {
  background: var(--olive-900);
  transform: translateY(-2px);
}

.btn--line-dark {
  color: var(--olive-800);
  border-color: rgba(31, 31, 12, .3);
}

.btn--line-dark:hover {
  background: rgba(31, 31, 12, .07);
  transform: translateY(-2px);
}

/* ============ LOADER ============ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 16px;
  background: var(--ivory);
  transition: opacity .55s var(--ease), visibility .55s;
}

.loader.done {
  opacity: 0;
  visibility: hidden;
}

.loader img {
  width: 62px;
  height: 62px;
  animation: spin 2.6s linear infinite;
}

.loader span {
  font-family: var(--sans);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .44em;
  color: var(--muted-2);
  padding-left: .44em;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============ 4. HEADER ============ */
.head {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 16px 0;
  transition: padding .35s var(--ease);
}

/* blur sits on a pseudo-element so the fixed mobile drawer is not trapped */
.head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(251, 250, 246, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}

.head.stuck {
  padding: 9px 0;
}

.head.stuck::before {
  opacity: 1;
}

.head__in {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

/* logo lockup */
.lock {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.lock__mark {
  width: 46px;
  height: 46px;
  flex: none;
  transition: transform .55s var(--ease);
}

.lock:hover .lock__mark {
  transform: rotate(60deg);
}

.lock__type {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.lock__type strong {
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--ink);
}

.lock__type em {
  font-family: var(--sans);
  font-style: normal;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .48em;
  color: var(--gold-600);
  padding-top: 4px;
  padding-left: .1em;
}

.menu ul {
  display: flex;
  align-items: center;
  gap: 2px;
}

.menu__a {
  position: relative;
  display: block;
  padding: 9px 13px;
  font-size: .84rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--ink-2);
  transition: color .3s var(--ease);
}

.menu__a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 4px;
  height: 1px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}

.menu__a:hover {
  color: var(--gold-700);
}

.menu__a:hover::after,
.menu__a.is-on::after {
  transform: scaleX(1);
}

.menu__a.is-on {
  color: var(--gold-700);
}

.menu__foot {
  display: none;
}

.head__act {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
}

.head__tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--ink-2);
  transition: color .3s var(--ease);
}

.head__tel:hover {
  color: var(--gold-700);
}

.burger {
  /* flex column, not grid: grid rows would stretch to fill the 42px button and
     the bars would sit ~14.7px apart instead of their natural 5.6px */
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 18px;
  height: 1.6px;
  background: var(--ink);
  transition: transform .34s var(--ease), opacity .2s var(--ease);
}

/* bar pitch is 1.6px bar + 4px gap = 5.6px, so the outer bars travel 5.6px
   to meet in the middle and form an X */
.burger.on span:nth-child(1) {
  transform: translateY(5.6px) rotate(45deg);
}

.burger.on span:nth-child(2) {
  opacity: 0;
  transform: scaleX(.4);
}

.burger.on span:nth-child(3) {
  transform: translateY(-5.6px) rotate(-45deg);
}

/* ---- open drawer ----
   Deliberately outside the breakpoint block below: main.js only ever adds
   .open under 992px, and keeping the panel's own styles here means it renders
   correctly even if the media-query rules are not applied for any reason. */
.menu.open {
  position: fixed;
  inset: 0 0 0 auto;
  /* inside .head (z-index 100); .head__act sits at 3 so the close button
     stays clickable above the panel */
  z-index: 2;
  width: min(86vw, 330px);
  max-width: 330px;
  height: 100%;
  padding: 104px 28px 40px;
  background: var(--ivory);
  border-left: 1px solid var(--line);
  box-shadow: -20px 0 60px -30px rgba(31, 31, 12, .5);
  transform: none;
  overflow-y: auto;
}

.menu.open ul {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
}

.menu.open .menu__a {
  display: block;
  padding: 14px 0;
  font-family: var(--serif);
  font-size: 1.16rem;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line-soft);
}

.menu.open .menu__a.is-on {
  color: var(--gold-700);
}

.menu.open .menu__a::after {
  display: none;
}

.menu.open .menu__foot {
  display: grid;
  gap: 4px;
  margin-top: 24px;
  font-size: .9rem;
  color: var(--gold-700);
}

.menu.open .menu__foot a {
  display: block;
  padding: 11px 0;
  overflow-wrap: anywhere;
}

/* ---- drawer backdrop ---- */
.scrim {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(31, 31, 12, .45);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .4s var(--ease);
}

.scrim.show {
  opacity: 1;
}

/* ============ 5. HERO ============ */
.hero {
  position: relative;
  padding: clamp(136px, 16vw, 186px) 0 clamp(60px, 7vw, 96px);
  overflow: hidden;
}

.hero__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 88% 8%, rgba(205, 194, 116, .28), transparent 62%),
    radial-gradient(700px 480px at 4% 96%, rgba(154, 146, 53, .12), transparent 60%);
  pointer-events: none;
}

.hero__in {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}

.hero__h {
  font-size: clamp(2.45rem, 5.6vw, 4.25rem);
  font-weight: 500;
  letter-spacing: -.028em;
  line-height: 1.08;
  margin: 0;
}

.hero__p {
  max-width: 52ch;
  font-size: 1.04rem;
  margin-bottom: 30px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 40px;
}

.creds {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.creds li {
  flex: 1 1 0;
  min-width: 118px;
  padding-right: 18px;
}

.creds li+li {
  border-left: 1px solid var(--line);
  padding-left: 22px;
}

.creds strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.62rem;
  font-weight: 600;
  color: var(--gold-700);
  line-height: 1.1;
}

.creds span {
  font-size: .8rem;
  color: var(--muted);
}

/* hero figure */
.hero__fig {
  display: grid;
  place-items: center;
}

.fig {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.fig__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--line);
}

.fig__ring--a {
  inset: 2%;
  border-style: dashed;
  border-color: rgba(154, 146, 53, .3);
  animation: spin 70s linear infinite;
}

.fig__ring--b {
  inset: 13%;
  border-color: rgba(154, 146, 53, .18);
}

.fig__mark {
  width: 66%;
  height: auto;
  filter: drop-shadow(0 28px 48px rgba(65, 64, 21, .3));
  animation: spin 52s linear infinite;
}

/* exact star + L lifted from the logo geometry, sized to the aperture behind it */
.fig__star {
  position: absolute;
  width: 36.3%;
  height: auto;
  filter: drop-shadow(0 4px 14px rgba(65, 64, 21, .28));
}

.chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 17px 9px 13px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-2);
  box-shadow: var(--sh);
  white-space: nowrap;
}

.chip i {
  width: 11px;
  height: 11px;
  flex: none;
  background: linear-gradient(140deg, var(--gold-300), var(--gold-600));
}

.chip--1 {
  top: 6%;
  left: -6%;
  animation: bob 7s ease-in-out infinite;
}

.chip--2 {
  top: 45%;
  right: -9%;
  animation: bob 8.5s ease-in-out infinite reverse;
}

.chip--3 {
  bottom: 7%;
  left: 4%;
  animation: bob 9.5s ease-in-out infinite;
}

@keyframes bob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ============ MARQUEE STRIP ============ */
.strip {
  overflow: hidden;
  padding: 17px 0;
  background: var(--paper);
  border-block: 1px solid var(--line-soft);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.strip__run {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  animation: run 42s linear infinite;
}

.strip__run span {
  font-family: var(--serif);
  font-size: 1.04rem;
  font-style: italic;
  color: var(--olive-500);
  white-space: nowrap;
}

.strip__run i {
  width: 7px;
  height: 7px;
  flex: none;
  background: var(--gold-400);
  clip-path: var(--hex);
}

@keyframes run {
  to {
    transform: translateX(-50%);
  }
}

/* ============ STATEMENT BAND ============ */
.band {
  position: relative;
  padding: clamp(70px, 8vw, 116px) 0;
  background: var(--olive-800);
  color: var(--gold-100);
  overflow: hidden;
}

.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(760px 420px at 82% 0%, rgba(205, 194, 116, .16), transparent 62%),
    radial-gradient(600px 400px at 0% 100%, rgba(184, 171, 69, .10), transparent 60%);
  pointer-events: none;
}

.band .shell {
  position: relative;
}

.band__in {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: clamp(26px, 5vw, 72px);
  align-items: end;
}

.band__h {
  max-width: 19ch;
  font-size: clamp(1.7rem, 3.5vw, 2.7rem);
  font-weight: 400;
  color: var(--gold-100);
  line-height: 1.24;
}

.band__h em {
  color: var(--gold-300);
}

.band__p {
  max-width: 54ch;
  margin: 0 0 6px;
  color: rgba(236, 231, 198, .68);
}

/* ============ SERVICES ============ */
.services {
  background: var(--ivory);
}

.svc__hint {
  display: block;
  margin: 0 0 14px;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-700);
}

.svc {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: clamp(26px, 4vw, 58px);
  align-items: start;
}

.svc__list {
  border-top: 1px solid var(--line);
}

.svc__btn {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 22px 6px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: padding .4s var(--ease), background .4s var(--ease);
}

.svc__btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  bottom: -1px;
  width: 2px;
  background: var(--gold-500);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .45s var(--ease);
}

.svc__btn:hover {
  padding-left: 16px;
}

.svc__btn.is-on {
  padding-left: 18px;
  background: linear-gradient(90deg, rgba(205, 194, 116, .16), transparent 70%);
}

.svc__btn.is-on::before {
  transform: scaleY(1);
}

.svc__n {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  color: var(--gold-600);
}

.svc__t {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.9vw, 1.34rem);
  font-weight: 500;
  color: var(--ink);
  transition: color .3s var(--ease);
}

.svc__btn.is-on .svc__t {
  color: var(--olive-700);
}

.svc__arw {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--muted-2);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), color .3s;
}

.svc__btn:hover .svc__arw,
.svc__btn.is-on .svc__arw {
  opacity: 1;
  transform: none;
  color: var(--gold-600);
}

/* detail panel */
.svc__stage {
  position: sticky;
  top: 108px;
  padding: clamp(28px, 3.6vw, 46px);
  background: var(--paper);
  border: 1px solid var(--line-soft);
  box-shadow: var(--sh);
  min-height: 420px;
}

.pane {
  display: none;
  animation: fade .5s var(--ease);
}

.pane.is-on {
  display: block;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
}

.pane__ico {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  background: linear-gradient(145deg, var(--gold-300), var(--gold-600));
  color: #fff;
}

.pane__ico svg {
  width: 25px;
  height: 25px;
}

.pane h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  font-weight: 500;
  margin-bottom: 12px;
}

.pane p {
  margin-bottom: 20px;
}

.pane__ul {
  display: grid;
  gap: 10px;
  padding-top: 20px;
  margin-bottom: 26px;
  border-top: 1px solid var(--line);
}

.pane__ul li {
  position: relative;
  padding-left: 22px;
  font-size: .91rem;
  color: var(--ink-2);
}

.pane__ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--gold-500);
  clip-path: var(--hex);
}

.pane__cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 0;
  border-bottom: 1px solid var(--gold-500);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--olive-700);
}

.pane__cta span {
  transition: transform .3s var(--ease);
}

.pane__cta:hover span {
  transform: translateX(5px);
}

/* ============ APPROACH ============ */
.approach {
  background: var(--paper);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.step {
  position: relative;
  padding: 32px 26px;
  background: var(--ivory);
  border: 1px solid var(--line-soft);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.step:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh);
}

.step::after {
  content: "";
  position: absolute;
  top: 56px;
  right: -13px;
  width: 24px;
  height: 1px;
  background: var(--gold-400);
  opacity: .6;
}

.step:last-child::after {
  display: none;
}

.step__n {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  background: linear-gradient(145deg, var(--gold-300), var(--gold-600));
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
}

.step h4 {
  font-size: 1.2rem;
  font-weight: 500;
}

.step p {
  font-size: .92rem;
  margin-bottom: 14px;
}

.step__w {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-600);
}

/* ============ DIRECTOR ============ */
.dir {
  position: relative;
  padding: clamp(66px, 8vw, 110px) 0;
  background: var(--olive-900);
  color: var(--gold-100);
  overflow: hidden;
}

.dir::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -120px;
  width: 460px;
  height: 460px;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(205, 194, 116, .14), transparent 66%);
  pointer-events: none;
}

.dir__in {
  position: relative;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.dir__side {
  text-align: center;
}

.dir__av {
  display: grid;
  place-items: center;
  width: 118px;
  height: 118px;
  margin: 0 auto 20px;
  background: linear-gradient(150deg, var(--gold-200), var(--gold-600));
  color: var(--olive-900);
  font-family: var(--serif);
  font-size: 2.05rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.dir__side h4 {
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--gold-100);
  margin-bottom: 3px;
}

.dir__role {
  display: block;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 22px;
}

.dir__body blockquote {
  position: relative;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(1.28rem, 2.65vw, 2.05rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.44;
  color: var(--gold-100);
}

.dir__body blockquote::before {
  content: "“";
  position: absolute;
  top: -.42em;
  left: -.36em;
  font-size: 3.4em;
  line-height: 1;
  color: rgba(205, 194, 116, .16);
  pointer-events: none;
}

.dir__sign {
  margin: 0;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-400);
}

/* ============ SECTORS ============ */
.sectors {
  background: var(--ivory);
}

.grid6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tile {
  padding: 34px 28px;
  background: var(--ivory);
  border: 1px solid var(--line);
  transition: transform .45s var(--ease), border-color .45s var(--ease),
    box-shadow .45s var(--ease), background .45s var(--ease);
}

.tile:hover {
  transform: translateY(-7px);
  border-color: rgba(154, 146, 53, .4);
  background: var(--paper);
  box-shadow: var(--sh);
}

.tile__ico {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  background: linear-gradient(145deg, var(--gold-300), var(--gold-600));
  color: #fff;
}

.tile__ico svg {
  width: 23px;
  height: 23px;
}

.tile h4 {
  font-size: 1.18rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.tile p {
  margin: 0;
  font-size: .91rem;
}

/* ============ WHY ============ */
.why {
  background: var(--paper);
}

.why__in {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.why__l .btn {
  margin-top: 12px;
}

.why__r {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.pt {
  padding: 30px 26px;
  background: var(--paper);
  transition: background .4s var(--ease);
}

.pt:hover {
  background: var(--ivory);
}

.pt__n {
  display: block;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  color: var(--gold-600);
  margin-bottom: 12px;
}

.pt h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.pt p {
  margin: 0;
  font-size: .9rem;
}

/* ============ TESTIMONIALS ============ */
.voices {
  background: var(--ivory);
}

.car {
  max-width: 880px;
  margin-inline: auto;
}

.car__win {
  overflow: hidden;
}

.car__run {
  display: flex;
  transition: transform .7s var(--ease);
}

.car__cell {
  flex: 0 0 100%;
  padding: 3px;
}

.say {
  position: relative;
  margin: 0;
  padding: clamp(32px, 4.4vw, 56px);
  background: var(--paper);
  border: 1px solid var(--line-soft);
  text-align: center;
}

.say__q {
  display: block;
  font-family: var(--serif);
  font-size: 4.2rem;
  line-height: .7;
  color: var(--gold-400);
  opacity: .4;
  margin-bottom: 8px;
}

.say blockquote {
  margin: 0 auto 26px;
  max-width: 56ch;
  font-family: var(--serif);
  font-size: clamp(1.08rem, 2.05vw, 1.38rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.58;
  color: var(--ink);
}

.say figcaption {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  text-align: left;
}

.say__av {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: none;
  background: linear-gradient(145deg, var(--gold-300), var(--gold-600));
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
}

.say figcaption strong {
  display: block;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
}

.say figcaption em {
  font-style: normal;
  font-size: .8rem;
  color: var(--muted);
}

.car__ui {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.car__b {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink-2);
  cursor: pointer;
  transition: all .34s var(--ease);
}

.car__b:hover {
  border-color: var(--gold-500);
  color: var(--gold-700);
  transform: translateY(-2px);
}

.car__dots {
  display: flex;
  gap: 9px;
}

.car__dots button {
  display: grid;
  place-items: center;
  width: 26px;
  height: 30px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

/* the visible dot is the pseudo-element, so the tap area stays finger-sized */
.car__dots button::before {
  content: "";
  width: 7px;
  height: 7px;
  background: rgba(27, 27, 18, .2);
  clip-path: var(--hex);
  transition: width .35s var(--ease), background .35s var(--ease);
}

.car__dots button.on::before {
  width: 22px;
  background: var(--gold-500);
}

/* ============ CTA ============ */
.call {
  padding: clamp(56px, 7vw, 92px) 0;
  background: linear-gradient(120deg, var(--gold-300), var(--gold-200) 48%, var(--gold-400));
}

.call__in {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.call__in .kicker {
  color: var(--olive-700);
}

.call__in h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  font-weight: 500;
  color: var(--olive-900);
  margin-bottom: 12px;
}

.call__in h2 em {
  color: var(--olive-600);
}

.call__p {
  margin: 0;
  max-width: 46ch;
  color: rgba(31, 31, 12, .72);
}

.call__act {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============ CONTACT ============ */
.contact {
  background: var(--ivory);
  padding-bottom: 0;
}

.cgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: clamp(30px, 4vw, 46px);
}

.cbox {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

.cbox > a,
.cbox > div {
  display: block;
  height: 100%;
  padding: 30px 24px;
  text-align: center;
}

.cbox:not(.cbox--flat):hover {
  transform: translateY(-6px);
  border-color: rgba(154, 146, 53, .4);
  box-shadow: var(--sh);
}

.cbox__i {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin: 0 auto 16px;
  background: linear-gradient(145deg, var(--gold-300), var(--gold-600));
  color: #fff;
}

.cbox__i svg {
  width: 21px;
  height: 21px;
}

.cbox h3 {
  font-size: 1.06rem;
  font-weight: 500;
  margin-bottom: 7px;
}

.cbox p {
  margin: 0 0 12px;
  font-size: .92rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.cbox__go {
  display: inline-block;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-700);
  border-bottom: 1px solid rgba(154, 146, 53, .45);
  padding-bottom: 2px;
}

.cbox__go--mute {
  color: var(--muted-2);
  border-bottom-color: transparent;
}

.cbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: clamp(24px, 3vw, 34px) clamp(24px, 3.4vw, 40px);
  background: var(--paper-2);
  border: 1px solid var(--line-soft);
}

.cbar p {
  margin: 0;
  max-width: 46ch;
  font-size: .97rem;
}

.cbar__act {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.map {
  margin-top: clamp(44px, 6vw, 72px);
  border-top: 1px solid var(--line);
  filter: grayscale(1) sepia(.34) contrast(.94) brightness(1.02);
  transition: filter .5s var(--ease);
}

.map:hover {
  filter: grayscale(.25) sepia(.16);
}

/* ============ FOOTER ============ */
.foot {
  padding-top: clamp(52px, 6vw, 82px);
  background: var(--olive-900);
  color: var(--gold-100);
}

.foot__top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.3fr;
  gap: 38px;
  padding-bottom: 46px;
}

.lock--foot {
  margin-bottom: 18px;
}

.lock--foot .lock__type strong {
  color: var(--gold-100);
}

.lock--foot .lock__type em {
  color: var(--gold-400);
}

.foot__brand p {
  max-width: 36ch;
  font-size: .91rem;
  color: rgba(236, 231, 198, .58);
}

.soc {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.soc a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-dark);
  color: rgba(236, 231, 198, .7);
  transition: all .34s var(--ease);
}

.soc a:hover {
  border-color: var(--gold-400);
  color: var(--gold-300);
  transform: translateY(-3px);
}

.foot__h {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 18px;
}

.foot__col ul {
  display: grid;
  gap: 1px;
}

/* links and plain rows share one box, so every column keeps the same rhythm
   while links stay a comfortable size to tap */
.foot__col a,
.foot__col .ftxt {
  display: inline-block;
  padding: 5px 0;
}

.foot__col li,
.foot__col .ftxt,
.foot__col a {
  font-size: .9rem;
  color: rgba(236, 231, 198, .58);
  transition: color .3s var(--ease);
}

.foot__col a:hover {
  color: var(--gold-300);
}

.foot__end {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 22px 0;
  border-top: 1px solid var(--line-dark);
}

.foot__end p {
  margin: 0;
  font-size: .82rem;
  color: rgba(236, 231, 198, .45);
}

/* ============ FLOATING ============ */
.wa,
.up {
  position: fixed;
  z-index: 90;
  display: grid;
  place-items: center;
  transition: transform .34s var(--ease), opacity .34s var(--ease);
}

.wa {
  left: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #06310f;
  box-shadow: 0 14px 32px -12px rgba(37, 211, 102, .6);
}

.wa:hover {
  transform: scale(1.08);
}

.up {
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: var(--ivory);
  color: var(--ink);
  box-shadow: var(--sh-sm);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.up.show {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.up:hover {
  border-color: var(--gold-500);
  color: var(--gold-700);
}

/* ============ 6. RESPONSIVE ============ */
@media (max-width: 1080px) {

  .grid6,
  .steps,
  .cgrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step:nth-child(2)::after {
    display: none;
  }

  .foot__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 991px) {
  html {
    scroll-padding-top: 80px;
  }

  .burger {
    display: flex;
  }

  .head__tel span,
  .head__act .btn--solid {
    display: none;
  }

  .menu {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 2;
    width: min(86vw, 330px);
    padding: 104px 28px 40px;
    background: var(--ivory);
    border-left: 1px solid var(--line);
    box-shadow: -20px 0 60px -30px rgba(31, 31, 12, .5);
    transform: translateX(105%);
    transition: transform .45s var(--ease);
    overflow-y: auto;
  }

  .menu.open {
    transform: none;
  }

  .menu ul {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .menu__a {
    padding: 14px 0;
    font-family: var(--serif);
    font-size: 1.16rem;
    border-bottom: 1px solid var(--line-soft);
  }

  .menu__a::after {
    display: none;
  }

  .menu__foot {
    display: grid;
    gap: 4px;
    margin-top: 24px;
    font-size: .9rem;
    color: var(--gold-700);
  }

  .menu__foot a {
    display: block;
    padding: 11px 0;
    overflow-wrap: anywhere;
  }

  .head__tel {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 2px;
  }

  .hero__in,
  .lead-in,
  .band__in,
  .why__in,
  .dir__in {
    grid-template-columns: 1fr;
  }

  .band__h {
    max-width: none;
  }

  .band__p {
    margin-top: 4px;
  }

  .lead-in__p {
    padding-bottom: 0;
  }

  .hero__fig {
    max-width: 400px;
    margin-inline: auto;
  }

  /* ---- services become a self-contained accordion ---- */
  .svc {
    display: block;
  }

  .svc__stage {
    display: none;
  }

  .svc__list {
    border-top: 1px solid var(--line);
  }

  .svc__list > li {
    border-bottom: 1px solid var(--line);
  }

  .svc__btn {
    border-bottom: 0;
    padding: 20px 4px;
  }

  .svc__btn:hover,
  .svc__btn.is-on {
    padding-left: 10px;
  }

  .svc__arw {
    opacity: 1;
    transform: none;
    color: var(--gold-600);
  }

  .svc__arw svg {
    transition: transform .35s var(--ease);
  }

  .svc__btn.is-on .svc__arw svg {
    transform: rotate(90deg);
  }

  /* panes are moved inside each <li> by main.js */
  .svc__list .pane {
    padding: 4px 4px 28px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .svc__list .pane__ico {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
  }

  /* the row above already shows this title - hide it visually, keep it for
     screen readers and crawlers rather than display:none */
  .svc__list .pane h3 {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    clip-path: inset(50%);
  }

  .svc__list .pane__ul {
    margin-bottom: 20px;
  }

  .dir__in {
    text-align: center;
  }

  .dir__body blockquote::before {
    display: none;
  }
}

@media (max-width: 720px) {

  .why__r,
  .cgrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cbar {
    flex-direction: column;
    text-align: center;
  }

  .cbar__act {
    justify-content: center;
    width: 100%;
  }

  .grid6,
  .steps {
    grid-template-columns: 1fr;
  }

  .step::after {
    display: none;
  }

  .creds li {
    flex-basis: 100%;
    padding: 0 0 14px;
  }

  .creds li+li {
    border-left: 0;
    border-top: 1px solid var(--line-soft);
    padding: 14px 0 0;
  }

  .call__in,
  .foot__end {
    justify-content: center;
    text-align: center;
  }

  .foot__top {
    grid-template-columns: 1fr;
  }

  .say figcaption {
    flex-direction: column;
    text-align: center;
  }

  .chip--1 {
    left: -2%;
  }

  .chip--2 {
    right: -2%;
  }
}

@media (max-width: 440px) {
  .hero__cta .btn {
    width: 100%;
  }

  .chip {
    padding: 7px 12px;
    font-size: .68rem;
  }

  .svc__btn {
    gap: 12px;
    padding: 18px 4px;
  }
}
