

:root {
  
  --forest:       #2C4A3E;
  --forest-deep:  #1F362D;
  --forest-night: #14241D;
  --gold:         #B8962E;
  --gold-soft:    #D9BA67;
  --gold-bright:  #E6C76E;
  --sage:         #6B8F71;
  --charcoal:     #1E1E1A;

  
  --cream:        #FAF6EE;     
  --cream-deep:   #F2EBDD;     
  --cream-warm:   #F5EDE0;     
  --paper:        #FFFFFF;
  --ink:          #1E1E1A;
  --ink-2:        #4B4842;
  --ink-3:        #6E6A60;

  
  --wash-peach:   #FBE4CC;
  --wash-rose:    #F5D7CE;
  --wash-sage:    #D9E4D6;
  --wash-sand:    #ECDDC0;
  --wash-mist:    #DDE3DA;
  --wash-gold:    #F0DDAA;

  
  --line:         rgba(30,30,26,0.10);
  --line-strong:  rgba(30,30,26,0.18);
  --line-dark:    rgba(245,240,232,0.18);

  
  --font-display: 'Rufina', Georgia, serif;
  --font-ui:      'Mulish', system-ui, sans-serif;
  --font-mono:    'Mulish', system-ui, sans-serif;

  
  --gutter: clamp(20px, 5vw, 88px);
  --r-card: 3px;
  --r-card-lg: 3px;
  --r-pill: 3px;
  --r-button: 3px;
  --r-input: 3px;

  --shadow-card: 0 1px 2px rgba(30,30,26,0.04), 0 12px 32px -16px rgba(30,30,26,0.12);
  --shadow-soft: 0 1px 2px rgba(30,30,26,0.03), 0 24px 60px -24px rgba(30,30,26,0.16);
  --shadow-orb:  0 30px 90px -10px rgba(184,150,46,0.35);

  --ease: cubic-bezier(.2,.6,.2,1);
  --dur-1: 180ms;
  --dur-2: 320ms;
  --dur-3: 600ms;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
::selection { background: var(--gold); color: var(--cream); }

button { font-family: inherit; }

.eyebrow {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  line-height: 1;
}
.eyebrow.dark { color: rgba(245,240,232,0.7); }
.eyebrow.gold { color: var(--gold); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 16px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: var(--r-button);
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  white-space: nowrap;
  transition: background var(--dur-1), color var(--dur-1), border-color var(--dur-1), transform var(--dur-1);
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.btn-primary:hover { background: var(--forest-deep); }
.btn-cream {
  background: var(--cream);
  color: var(--forest);
  border-color: var(--cream);
}
.btn-cream:hover { background: var(--paper); }
.btn-gold {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn-gold:hover { background: var(--forest); border-color: var(--forest); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,240,232,0.4);
}
.btn-ghost-light:hover { background: rgba(245,240,232,0.1); border-color: rgba(245,240,232,0.8); }
.btn-arrow::after {
  content: "→";
  display: inline-block;
  transition: transform var(--dur-1);
}
.btn-arrow:hover::after { transform: translateX(4px); }

.tag-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  box-shadow: var(--shadow-card);
}
.tag-pill .dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  position: relative;
}
.tag-pill .dot::before {
  content: "";
  position: absolute; inset: 4px;
  border-radius: 50%;
  background: var(--paper);
}
.tag-pill .dot.live { background: var(--sage); }
.tag-pill .dot.live::before { background: var(--cream); }
.tag-pill .dot.live::after {
  content: "";
  position: absolute; inset: -2px;
  border-radius: 50%;
  border: 2px solid var(--sage);
  opacity: 0.4;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.4; }
  100% { transform: scale(1.5); opacity: 0; }
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 15px;
  color: var(--forest);
  text-decoration: none;
  background: none; border: none; padding: 0; cursor: pointer;
}
.link-arrow::after {
  content: "→"; transition: transform var(--dur-1);
}
.link-arrow:hover::after { transform: translateX(4px); }
.link-arrow.on-dark { color: var(--gold-soft); }

.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 0.93;
  margin: 0;
  text-wrap: balance;
}
.display em { font-style: italic; font-weight: 400; color: var(--forest); }
.display.on-dark { color: var(--cream); }
.display.on-dark em { color: var(--gold-soft); }

.fly-stage {
  position: absolute;
  inset: 0;
  perspective: 1400px;
  perspective-origin: 50% 50%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 30%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 30%, transparent 95%);
}
.fly-aa {
  position: absolute;
  transform-style: preserve-3d;
  will-change: transform;
  animation-name: fly-drift-r;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  contain: layout style paint;
}
.fly-aa.fly-l { animation-name: fly-drift-l; }
.fly-aa-inner {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: fly-fold 5s ease-in-out infinite;
  will-change: transform;
}
.fly-aa-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.22;
  filter: drop-shadow(0 12px 24px rgba(184,150,46,0.25))
          drop-shadow(0 2px 8px rgba(44,74,62,0.18));
  backface-visibility: visible;
}
@keyframes fly-fold {
  0%   { transform: rotateY(  0deg) rotateX(-8deg)  rotateZ(-2deg); }
  50%  { transform: rotateY(180deg) rotateX( 12deg) rotateZ( 3deg); }
  100% { transform: rotateY(360deg) rotateX(-8deg)  rotateZ(-2deg); }
}
@keyframes fly-drift-r {
  0%   { transform: translate3d(-120%, -20%, -240px); }
  25%  { transform: translate3d( -40%,  20%, -120px); }
  50%  { transform: translate3d(  20%, -20%,  120px); }
  75%  { transform: translate3d(  80%,  20%,    0px); }
  100% { transform: translate3d( 160%, -20%, -240px); }
}
@keyframes fly-drift-l {
  0%   { transform: translate3d( 160%,  20%, -240px); }
  25%  { transform: translate3d(  80%, -20%, -120px); }
  50%  { transform: translate3d(  20%,  20%,  120px); }
  75%  { transform: translate3d( -40%, -20%,    0px); }
  100% { transform: translate3d(-120%,  20%, -240px); }
}
@media (prefers-reduced-motion: reduce) {
  .fly-aa, .fly-aa-inner { animation: none !important; }
  .fly-aa { display: none; }
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  contain: layout style paint;
}
.orb.peach { background: var(--wash-peach); }
.orb.sage  { background: var(--wash-sage); }
.orb.gold  { background: var(--wash-gold); }
.orb.rose  { background: var(--wash-rose); }
.orb.sand  { background: var(--wash-sand); }
.orb.drift-a { animation: orb-drift-a 22s ease-in-out infinite alternate; }
.orb.drift-b { animation: orb-drift-b 28s ease-in-out infinite alternate; }
.orb.drift-c { animation: orb-drift-c 34s ease-in-out infinite alternate; }
@keyframes orb-drift-a {
  from { transform: translate3d(0,0,0)        scale(1); }
  to   { transform: translate3d(60px,-40px,0) scale(1.15); }
}
@keyframes orb-drift-b {
  from { transform: translate3d(0,0,0)        scale(1); }
  to   { transform: translate3d(-50px,50px,0) scale(0.9); }
}
@keyframes orb-drift-c {
  from { transform: translate3d(0,0,0)         scale(1.05); }
  to   { transform: translate3d(40px, 30px, 0) scale(1.2); }
}

.aa-crest-bg {
  position: absolute;
  pointer-events: none;
  opacity: 0.06;
  animation: aa-breathe 14s ease-in-out infinite alternate;
}
@keyframes aa-breathe {
  from { transform: scale(1) rotate(-1deg); opacity: 0.05; }
  to   { transform: scale(1.06) rotate(2deg); opacity: 0.09; }
}

.aa-tile {
  position: absolute;
  inset: 0;
  background-image: url('assets/logo-crest-cream.png');
  background-repeat: repeat;
  background-size: 200px auto;
  opacity: 0.05;
  pointer-events: none;
  animation: aa-tile-drift 80s linear infinite;
}
.aa-tile.gold { background-image: url('assets/logo-crest-gold.png'); opacity: 0.04; }
@keyframes aa-tile-drift {
  from { background-position: 0 0; }
  to   { background-position: 200px 200px; }
}

.nav-wrap {
  position: sticky; top: 16px; z-index: 50;
  padding: 0 var(--gutter);
  display: flex; justify-content: center;
  pointer-events: none;
}
.nav {
  pointer-events: auto;
  max-width: 1280px;
  width: 100%;
  background: rgba(255,255,255,0.78);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-card);
  padding: 8px 10px 8px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.nav-brand { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.nav-brand img { height: 32px; width: auto; }
.nav-brand .wordmark {
  font-family: var(--font-display);
  font-size: 19px;
  font-style: italic;
  color: var(--forest);
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
  justify-content: center;
}
.nav-links button {
  background: none; border: none;
  padding: 8px 14px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-2);
  cursor: pointer;
  border-radius: var(--r-pill);
  transition: background var(--dur-1), color var(--dur-1);
}
.nav-links button:hover { background: rgba(30,30,26,0.04); color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-right .btn { padding: 10px 20px; font-size: 15px; }
.nav-signin {
  background: none; border: none;
  padding: 10px 16px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  cursor: pointer;
  border-radius: var(--r-pill);
}
.nav-signin:hover { background: rgba(30,30,26,0.04); }

@media (max-width: 900px) {
  .nav { grid-template-columns: 1fr auto; padding: 8px 10px 8px 16px; }
  .nav-links { display: none; }
}

.banner-wrap {
  display: flex; justify-content: center;
  padding: 16px var(--gutter) 0;
}
.banner {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 6px 14px 6px 6px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-size: 14px;
  color: var(--ink-2);
  text-decoration: none;
  box-shadow: var(--shadow-card);
  transition: transform var(--dur-1);
}
.banner:hover { transform: translateY(-1px); }
.banner .label {
  background: var(--forest);
  color: var(--cream);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
}
.banner .arrow { color: var(--ink-3); transition: transform var(--dur-1); }
.banner:hover .arrow { transform: translateX(3px); }

.hero {
  position: relative;
  padding: 80px var(--gutter) 60px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
}
.hero .orb.o1 { width: 600px; height: 600px; top: -120px; left: -120px; opacity: 0.55; }
.hero .orb.o2 { width: 500px; height: 500px; top: 80px; right: -80px; opacity: 0.5; }
.hero .orb.o3 { width: 700px; height: 400px; bottom: -180px; left: 30%; opacity: 0.45; }
.hero .aa-crest-bg {
  width: 700px; height: 700px;
  right: -120px; top: 40px;
  background-image: url('assets/logo-crest-gold.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.07;
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: 28px;
}

.hero-pill {
  margin-bottom: 8px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 8.16vw, 124px);
  line-height: 1.07;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0;
  max-width: 14ch;
  text-wrap: balance;
}
.hero-title em {
  font-style: italic;
  color: var(--forest);
  font-weight: 400;
}
.hero-title .hl {
  display: inline-block;
  position: relative;
  font-style: italic;
  color: var(--forest);
  padding: 0 0.08em;
}
.hero-title .hl::before {
  content: "";
  position: absolute;
  left: -0.06em; right: -0.06em; top: 0.05em; bottom: 0.05em;
  background: var(--gold-soft);
  opacity: 0.35;
  border-radius: 100px;
  z-index: -1;
  transform: rotate(-1.5deg);
}

.hero-sub {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: clamp(18px, 1.38vw, 21px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0;
}

.hero-cta {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.hero-avail {
  display: inline-flex; align-items: center; gap: 18px;
  color: var(--ink-3);
  font-size: 14px;
  margin-top: 4px;
}
.hero-avail-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--sage);
}

.hero-mock {
  position: relative;
  margin-top: 56px;
  width: 100%;
  max-width: 1080px;
  aspect-ratio: 16/9;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-card-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  isolation: isolate;
}
.hero-mock-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 30%, var(--wash-peach) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 80%, var(--wash-sage) 0%, transparent 60%),
    linear-gradient(165deg, #F0E6D2 0%, #E8DCC2 50%, #D9C99E 100%);
  background-size: cover;
  background-position: center;
}
.hero-mock-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,36,29,0.40) 0%, rgba(20,36,29,0.20) 50%, rgba(20,36,29,0.85) 100%);
}
.hero-mock-tint::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url('assets/logo-crest-cream.png');
  background-repeat: no-repeat;
  background-position: 88% 30%;
  background-size: 280px auto;
  opacity: 0.16;
}
.hero-mock-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 36px 44px;
  color: var(--cream);
}
.hero-mock-top {
  color: rgba(245,240,232,0.9);
}
.hero-mock-top .left .dot { background: var(--gold-soft); box-shadow: 0 0 12px var(--gold-soft); }
.hero-mock-headline { color: var(--cream) !important; }
.hero-mock-headline em { color: var(--gold-soft) !important; }
.hero-mock-stat .n { color: var(--cream) !important; }
.hero-mock-stat .l { color: rgba(245,240,232,0.75) !important; }
.hero-mock-top {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 14px;
  font-weight: 500;
}
.hero-mock-top .left { display: flex; gap: 12px; align-items: center; }
.hero-mock-top .left .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.hero-mock-bot {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
  align-items: end;
}
.hero-mock-stat {
  display: flex; flex-direction: column; gap: 2px;
}
.hero-mock-stat .n {
  font-family: var(--font-display);
  font-size: 48px; line-height: 1.1;
  color: var(--forest);
  letter-spacing: -0.02em;
}
.hero-mock-stat .l {
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest);
  opacity: 0.65;
}
.hero-mock-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.09vw, 44px);
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--forest);
  max-width: 14ch;
  margin: 0;
}
.hero-mock-headline em { font-style: italic; }
@media (max-width: 740px) {
  .hero-mock-bot { grid-template-columns: 1fr 1fr; gap: 14px; }
  .hero-mock-stat .n { font-size: 28px; }
  .hero-mock-overlay { padding: 24px; }
}

.logos {
  padding: 60px var(--gutter) 60px;
  background: var(--cream);
}
.logos-head {
  max-width: 1280px; margin: 0 auto 32px;
  text-align: center;
  display: flex; flex-direction: column; gap: 12px; align-items: center;
}
.logos-head h3 {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink-3);
  margin: 0;
}
.logos-marquee {
  overflow: hidden;
  contain: layout paint;
}
.logos-track {
  display: flex; gap: 64px; align-items: center;
  width: max-content;
  animation: logos-roll 50s linear infinite;
}
@keyframes logos-roll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logos-item {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-2);
  white-space: nowrap;
  opacity: 0.7;
  flex: none;
}
.logos-item .crest {
  height: 22px; opacity: 0.7;
}
.logos-item .upper {
  font-family: var(--font-ui);
  font-style: normal;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.04em;
}

.section-head {
  max-width: 1280px; margin: 0 auto 56px;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 18px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 4.82vw, 72px);
  line-height: 1.14;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
  max-width: 22ch;
  text-wrap: balance;
}
.section-head h2 em { font-style: italic; color: var(--forest); }
.section-head .sub {
  font-family: var(--font-ui);
  font-size: clamp(17px, 1.27vw, 20px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0;
}

.services {
  padding: 120px var(--gutter);
  background: var(--cream);
  position: relative;
}
.services-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 860px) { .services-grid { grid-template-columns: 1fr; } }

.svc-card {
  position: relative;
  border-radius: var(--r-card-lg);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 40px 40px 40px;
  min-height: 460px;
  display: flex; flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  transition: transform var(--dur-2), box-shadow var(--dur-2);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }

.svc-card-bg {
  position: absolute; inset: 0; z-index: -1;
  background: var(--paper);
}
.svc-card-bg .orb { filter: blur(60px); }

.svc-card.development .svc-card-bg {
  background: linear-gradient(160deg, var(--paper) 0%, var(--wash-sage) 100%);
}
.svc-card.development .svc-card-bg .orb { background: var(--wash-mist); width: 360px; height: 360px; top: 40%; left: -80px; opacity: 0.7; }

.svc-card.asset .svc-card-bg {
  background: linear-gradient(160deg, var(--paper) 0%, var(--wash-gold) 100%);
}
.svc-card.asset .svc-card-bg .orb { background: var(--wash-peach); width: 320px; height: 320px; top: 30%; right: -60px; opacity: 0.6; }

.svc-card.ops .svc-card-bg {
  background: linear-gradient(160deg, var(--paper) 0%, var(--wash-peach) 100%);
}
.svc-card.ops .svc-card-bg .orb { background: var(--wash-rose); width: 380px; height: 380px; bottom: -100px; right: -80px; opacity: 0.6; }

.svc-card.marketing .svc-card-bg {
  background: linear-gradient(160deg, var(--paper) 0%, var(--wash-mist) 100%);
}
.svc-card.marketing .svc-card-bg .orb { background: var(--wash-sage); width: 340px; height: 340px; bottom: -60px; left: -40px; opacity: 0.7; }

.svc-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-3);
}
.svc-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 2.75vw, 41px);
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 20px 0 16px;
  max-width: 14ch;
}
.svc-title em { font-style: italic; color: var(--forest); }
.svc-body {
  font-size: 17px; line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 24px;
  max-width: 44ch;
}
.svc-list {
  list-style: none; padding: 0; margin: auto 0 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.svc-list li {
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.svc-card-arrow {
  position: absolute; top: 32px; right: 32px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  font-size: 19px;
  transition: transform var(--dur-2), background var(--dur-2), color var(--dur-2);
}
.svc-card:hover .svc-card-arrow {
  background: var(--ink);
  color: var(--cream);
  transform: rotate(-45deg);
}

.madefor {
  padding: 120px var(--gutter);
  background: var(--cream-warm);
  position: relative; overflow: hidden;
}
.madefor .orb.m1 { width: 500px; height: 500px; top: -100px; right: -100px; opacity: 0.4; }
.madefor .orb.m2 { width: 400px; height: 400px; bottom: -100px; left: -80px; opacity: 0.4; }

.madefor-tabs {
  max-width: 1280px; margin: 0 auto 40px;
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  position: relative;
}
.madefor-tab {
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 10px 20px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-2);
  cursor: pointer;
  transition: all var(--dur-1);
}
.madefor-tab:hover { background: var(--paper); color: var(--ink); }
.madefor-tab.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.madefor-card {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-card-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
  min-height: 520px;
}
@media (max-width: 900px) { .madefor-card { grid-template-columns: 1fr; } }
.madefor-card-text {
  padding: 56px 56px 56px;
  display: flex; flex-direction: column; gap: 18px;
  justify-content: center;
}
.madefor-card-text h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(31px, 3.09vw, 48px);
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  max-width: 14ch;
}
.madefor-card-text h3 em { font-style: italic; color: var(--forest); }
.madefor-card-text p {
  font-size: 18px; line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
  max-width: 44ch;
}
.madefor-card-text .actions { margin-top: 12px; display: flex; gap: 12px; flex-wrap: wrap; }
.madefor-card-visual {
  position: relative;
  background: linear-gradient(160deg, var(--wash-peach) 0%, var(--wash-gold) 60%, #C8A95A 100%);
  overflow: hidden;
}
.madefor-card-visual-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(160deg, rgba(20,36,29,0.35) 0%, rgba(184,150,46,0.25) 60%, rgba(20,36,29,0.5) 100%);
}
.madefor-card-visual::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url('assets/logo-crest-cream.png');
  background-repeat: no-repeat;
  background-position: 50% 22%;
  background-size: 100px auto;
  opacity: 0.6;
  z-index: 1;
}
.madefor-card-visual .mock {
  position: absolute;
  inset: auto 32px 32px 32px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 24px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 20px;
  display: flex; flex-direction: column; gap: 8px;
  color: var(--forest);
  z-index: 2;
  box-shadow: 0 12px 32px -12px rgba(20,36,29,0.4);
}
.madefor-card-visual .mock-row {
  background: rgba(255,255,255,0.92);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(30,30,26,0.05);
}
.madefor-card-visual .mock-row .lbl {
  font-weight: 500; color: var(--forest);
}
.madefor-card-visual .mock-row .val {
  font-family: var(--font-display); font-size: 16px; color: var(--ink);
}
.madefor-card-visual .mock-row .pill {
  background: var(--sage); color: var(--cream);
  padding: 2px 10px; border-radius: var(--r-pill);
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
}

.brands {
  padding: 120px var(--gutter);
  background: var(--cream);
  position: relative;
}

.brand-directory {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: stretch;
}
@media (max-width: 980px) {
  .brand-directory { grid-template-columns: 1fr; gap: 32px; }
}

.bd-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.bd-row {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr 32px;
  gap: 24px;
  align-items: start;
  padding: 28px 0 28px;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: var(--ink);
  border-left: none; border-right: none; border-top: none;
  transition: padding-left var(--dur-2) var(--ease);
}
.bd-row::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, var(--cream-warm) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--dur-2) var(--ease);
  pointer-events: none;
  z-index: -1;
}
.bd-row:hover, .bd-row.active {
  padding-left: 16px;
}
.bd-row.active::before { opacity: 1; }
.bd-row-num {
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
  padding-top: 10px;
}
.bd-row-num .n {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--ink-3);
  line-height: 1.16;
  transition: color var(--dur-1);
}
.bd-row.active .bd-row-num .n { color: var(--gold); }
.bd-row-num .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
  transition: background var(--dur-1), transform var(--dur-1);
}
.bd-row.active .bd-row-num .dot {
  background: var(--gold);
  transform: scale(1.4);
  box-shadow: 0 0 0 6px rgba(184,150,46,0.15);
}
.bd-row-main { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.bd-row-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 2.75vw, 41px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  transition: color var(--dur-1);
}
.bd-row.active .bd-row-name { color: var(--forest); }
.bd-row-meta {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.bd-row-meta .sep { color: var(--line-strong); }
.bd-row-tag {
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 6px 0 0;
  max-width: 52ch;
}
.bd-row-arrow {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink-3);
  align-self: center;
  transition: transform var(--dur-2) var(--ease), color var(--dur-1);
}
.bd-row:hover .bd-row-arrow,
.bd-row.active .bd-row-arrow {
  transform: translateX(8px);
  color: var(--gold);
}

.bd-preview {
  position: sticky;
  top: 100px;
  align-self: start;
  min-height: 600px;
}
@media (max-width: 980px) {
  .bd-preview { position: static; min-height: 480px; }
}
.bd-preview-inner {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: var(--r-card-lg);
  overflow: hidden;
  isolation: isolate;
  background: var(--forest-deep);
  box-shadow: 0 30px 80px -30px rgba(20,36,29,0.4);
}
@media (max-width: 980px) { .bd-preview-inner { height: 480px; } }
.bd-preview-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 700ms var(--ease), transform 1200ms var(--ease);
  transform: scale(1.06);
  z-index: 0;
}
.bd-preview-img.on {
  opacity: 1;
  transform: scale(1.0);
}
.bd-preview-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(170deg, rgba(20,36,29,0.18) 0%, rgba(20,36,29,0.22) 50%, rgba(20,36,29,0.78) 100%);
  z-index: 1;
}
.bd-preview-crest {
  position: absolute;
  right: 28px; top: 28px;
  width: 78px;
  height: auto;
  opacity: 0.75;
  z-index: 2;
}

.bd-preview-content {
  position: absolute; left: 36px; right: 36px; bottom: 32px;
  z-index: 2;
  color: var(--cream);
  display: flex; flex-direction: column; gap: 14px;
}
.bd-preview-cat {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: inline-flex; align-items: center; gap: 12px;
}
.bd-preview-cat::before {
  content: ""; width: 28px; height: 1px; background: var(--gold-soft); opacity: 0.7;
}
.bd-preview-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 5.16vw, 75px);
  line-height: 1.07;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin: 0;
  animation: bd-name-in 600ms var(--ease) both;
}
@keyframes bd-name-in {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.bd-preview-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid rgba(245,240,232,0.2);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.78);
}
.bd-preview-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--forest);
  background: var(--cream);
  border: none;
  border-radius: var(--r-pill);
  padding: 10px 18px;
  cursor: pointer;
  transition: gap var(--dur-1), background var(--dur-1), color var(--dur-1);
}
.bd-preview-cta:hover { gap: 12px; background: var(--gold-soft); color: var(--forest-deep); }

.hotels {
  padding: 120px 0 120px var(--gutter);
  background: var(--cream-warm);
  position: relative;
  overflow: hidden;
}
.hotels .section-head { padding-right: var(--gutter); margin-bottom: 48px; }
.hotels-controls {
  max-width: 1280px; margin: 0 auto 32px;
  padding-right: var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
}
.hotels-progress {
  flex: 1; height: 2px;
  background: var(--line);
  border-radius: 4px;
  position: relative;
  margin-right: 24px;
  max-width: 320px;
}
.hotels-progress > span {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--ink);
  border-radius: 4px;
  width: 25%;
  transition: width var(--dur-2);
}
.hotels-arrows { display: flex; gap: 10px; }
.hot-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  transition: background var(--dur-1), color var(--dur-1), border-color var(--dur-1);
}
.hot-arrow:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.hotels-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(360px, 1fr);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 12px var(--gutter) 24px 0;
  scrollbar-width: none;
}
.hotels-track::-webkit-scrollbar { display: none; }

.hotel-card {
  scroll-snap-align: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-card-lg);
  overflow: hidden;
  cursor: pointer;
  display: flex; flex-direction: column;
  transition: transform var(--dur-2), box-shadow var(--dur-2);
}
.hotel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.hotel-img {
  aspect-ratio: 5/6;
  position: relative;
  overflow: hidden;
  background: var(--cream-deep);
  background-size: cover;
  background-position: center;
}
.hotel-img::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,36,29,0.10) 0%, rgba(20,36,29,0.0) 35%, rgba(20,36,29,0.45) 100%);
}
.hotel-tag {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-radius: var(--r-pill);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 1;
}
.hotel-status {
  position: absolute; top: 16px; right: 16px;
  padding: 6px 12px;
  background: rgba(30,30,26,0.6);
  color: var(--cream);
  backdrop-filter: blur(10px);
  border-radius: var(--r-pill);
  font-size: 11.5px;
  font-weight: 500;
  z-index: 1;
}
.hotel-body {
  padding: 24px 24px 28px;
  display: flex; flex-direction: column; gap: 6px;
}
.hotel-locale {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.hotel-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 25px;
  line-height: 1.22;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 4px 0 6px;
}
.hotel-meta {
  font-size: 14px;
  color: var(--ink-2);
  display: flex; gap: 12px;
  margin-top: 4px;
}
.hotel-meta .sep { opacity: 0.4; }

.philosophy {
  padding: 0 var(--gutter);
  background: var(--cream);
}
.philo-card {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  background: linear-gradient(160deg, #14241D 0%, #1F362D 70%, #2C4A3E 100%);
  color: var(--cream);
  border-radius: var(--r-card-lg);
  padding: clamp(56px, 6vw, 96px) clamp(40px, 5vw, 80px);
  overflow: hidden;
  isolation: isolate;
  min-height: 720px;
}

.philo-fly {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  perspective: 1600px;
  perspective-origin: 50% 50%;
  overflow: hidden;
}
.philo-fly-aa {
  position: absolute;
  transform-style: preserve-3d;
  will-change: transform;
}
.philo-fly-aa.lg {
  
  width: 720px; height: 720px;
  right: -120px; top: 50%;
  transform: translateY(-50%);
}
.philo-fly-aa.sm {
  
  width: 320px; height: 320px;
  left: 4%; bottom: -40px;
}
.philo-fly-inner {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  will-change: transform;
}
.philo-fly-aa.lg .philo-fly-inner {
  animation: philo-fold-slow 16s cubic-bezier(.4, 0, .2, 1) infinite;
}
.philo-fly-aa.sm .philo-fly-inner {
  animation: philo-fold-rev 22s cubic-bezier(.4, 0, .2, 1) infinite;
}
.philo-fly-inner img {
  width: 100%; height: 100%;
  object-fit: contain;
  backface-visibility: visible;
}
.philo-fly-aa.lg .philo-fly-inner img {
  opacity: 0.16;
  filter: drop-shadow(0 24px 60px rgba(184,150,46,0.4))
          drop-shadow(0 8px 20px rgba(20,36,29,0.5));
}
.philo-fly-aa.sm .philo-fly-inner img {
  opacity: 0.10;
  filter: drop-shadow(0 12px 32px rgba(245,240,232,0.2));
}

@keyframes philo-fold-slow {
  0%   { transform: rotateY(0deg)    rotateX(-6deg) rotateZ(-1deg) scale(1); }
  25%  { transform: rotateY(90deg)   rotateX(8deg)  rotateZ( 2deg) scale(1.04); }
  50%  { transform: rotateY(180deg)  rotateX(-4deg) rotateZ(-2deg) scale(1); }
  75%  { transform: rotateY(270deg)  rotateX(6deg)  rotateZ( 1deg) scale(0.96); }
  100% { transform: rotateY(360deg)  rotateX(-6deg) rotateZ(-1deg) scale(1); }
}
@keyframes philo-fold-rev {
  0%   { transform: rotateY(360deg)  rotateX(4deg)  rotateZ(2deg)  scale(1); }
  50%  { transform: rotateY(180deg)  rotateX(-6deg) rotateZ(-3deg) scale(1.06); }
  100% { transform: rotateY(0deg)    rotateX(4deg)  rotateZ(2deg)  scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .philo-fly-aa .philo-fly-inner { animation: none !important; }
}

@media (max-width: 980px) {
  .philo-fly-aa.lg { width: 480px; height: 480px; right: -80px; }
  .philo-fly-aa.sm { display: none; }
}

.philo-card .orb.p1 {
  width: 600px; height: 600px;
  top: -120px; right: -120px;
  background: rgba(184,150,46,0.5);
  filter: blur(120px);
  opacity: 0.4;
}
.philo-card .orb.p2 {
  width: 500px; height: 500px;
  bottom: -100px; left: -80px;
  background: rgba(107,143,113,0.55);
  filter: blur(120px);
  opacity: 0.4;
}

.philo-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 980px) { .philo-grid { grid-template-columns: 1fr; gap: 48px; } }

.philo-lead { display: flex; flex-direction: column; gap: 24px; }
.philo-lead h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(34px, 4.3vw, 66px);
  line-height: 1.14;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin: 0;
  max-width: 14ch;
}
.philo-lead h2 em { font-style: italic; color: var(--gold-soft); }
.philo-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  line-height: 1.62;
  color: var(--cream);
  opacity: 0.92;
  margin: 0;
  padding-left: 24px;
  border-left: 1px solid var(--gold-soft);
  max-width: 36ch;
}

.philo-pillars {
  display: grid; grid-template-columns: 1fr; gap: 4px;
}
.philo-pillar {
  display: flex; gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(245,240,232,0.14);
}
.philo-pillar:last-child { border-bottom: none; }
.philo-pillar-num {
  font-family: var(--font-display); font-style: italic;
  font-size: 19px;
  color: var(--gold-soft);
  min-width: 32px;
}
.philo-pillar-text { display: flex; flex-direction: column; gap: 6px; }
.philo-pillar-text h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.34;
  color: var(--cream);
  margin: 0;
}
.philo-pillar-text p {
  font-size: 16px; line-height: 1.55;
  color: rgba(245,240,232,0.74);
  margin: 0;
  max-width: 46ch;
}

.testimonials {
  padding: 120px var(--gutter);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.testimonials .orb.t1 { width: 500px; height: 500px; top: -100px; left: -100px; opacity: 0.4; }
.testimonials .orb.t2 { width: 500px; height: 500px; bottom: -100px; right: -100px; opacity: 0.4; }

.tm-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  align-items: start;
}
@media (max-width: 900px) { .tm-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tm-grid { grid-template-columns: 1fr; } }
.tm-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 28px;
  transition: transform var(--dur-2), box-shadow var(--dur-2);
  contain: layout style;
}
.tm-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.tm-card.featured { background: linear-gradient(165deg, var(--paper) 0%, var(--wash-gold) 100%); }
.tm-card.dark { background: var(--forest); color: var(--cream); border-color: transparent; }
.tm-quote {
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.57;
  color: var(--ink);
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.tm-card.dark .tm-quote { color: var(--cream); }
.tm-card.featured .tm-quote em { font-style: italic; color: var(--forest); }
.tm-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.tm-card.dark .tm-author { border-color: rgba(245,240,232,0.16); }
.tm-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--wash-gold);
  background-size: cover;
  background-position: center;
  flex: none;
  border: 1px solid var(--line);
}
.tm-author-text { display: flex; flex-direction: column; gap: 2px; }
.tm-author-text .name {
  font-weight: 600; font-size: 15px; color: var(--ink);
}
.tm-author-text .role { font-size: 14px; color: var(--ink-3); }
.tm-card.dark .tm-author-text .name { color: var(--cream); }
.tm-card.dark .tm-author-text .role { color: rgba(245,240,232,0.6); }

.stats-strip {
  padding: 80px var(--gutter);
  background: var(--cream-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: end;
}
@media (max-width: 800px) { .stats-grid { grid-template-columns: 1fr 1fr; } }
.stat {
  display: flex; flex-direction: column; gap: 8px;
}
.stat-n {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 5.16vw, 75px);
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.stat-n em { font-style: italic; color: var(--forest); }
.stat-lbl {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}

.cta-final {
  padding: 120px var(--gutter);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.cta-final-inner {
  max-width: 980px; margin: 0 auto;
  position: relative;
  background: linear-gradient(165deg, #F0E6D2 0%, #E8DCC2 50%, #D9C99E 100%);
  border-radius: var(--r-card-lg);
  padding: clamp(64px, 7vw, 120px) clamp(40px, 6vw, 80px);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.cta-final-inner::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url('assets/logo-crest-gold.png');
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 70% auto;
  opacity: 0.10;
  z-index: 0;
  animation: aa-breathe 16s ease-in-out infinite alternate;
}
.cta-final .orb.c1 { width: 400px; height: 400px; top: -100px; left: -100px; background: var(--wash-peach); opacity: 0.6; }
.cta-final .orb.c2 { width: 400px; height: 400px; bottom: -100px; right: -100px; background: var(--wash-sage); opacity: 0.55; }

.cta-final h2 {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(41px, 5.85vw, 89px);
  line-height: 1.11;
  letter-spacing: -0.025em;
  color: var(--forest);
  margin: 0 0 24px;
  max-width: 14ch;
  margin-inline: auto;
  text-wrap: balance;
}
.cta-final h2 em { font-style: italic; color: var(--gold); }
.cta-final p {
  position: relative; z-index: 1;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 52ch;
  margin: 0 auto 32px;
}
.cta-final .actions {
  position: relative; z-index: 1;
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

.footer {
  padding: 80px var(--gutter) 40px;
  background: var(--forest-night);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.footer .aa-tile { z-index: 0; opacity: 0.04; }
.footer-top {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
}
@media (max-width: 980px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; } }

.footer-brand img { height: 80px; width: auto; }
.footer-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: rgba(245,240,232,0.7);
  margin: 20px 0 0;
  max-width: 22ch;
}
.footer-col h5 {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 15px;
  color: rgba(245,240,232,0.76);
  text-decoration: none;
  transition: color var(--dur-1);
  cursor: pointer;
}
.footer-col a:hover { color: var(--gold-soft); }

.footer-bottom {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(245,240,232,0.14);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 14px;
  color: rgba(245,240,232,0.5);
}
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-soft); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-leaf {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold-soft);
}
.footer-leaf::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 8px rgba(217,186,103,0.6);
  animation: leaf-pulse 2.4s ease-in-out infinite;
}
@keyframes leaf-pulse {
  0%,100% { opacity: 0.5; }
  50%     { opacity: 1; }
}

.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 80ms; }
.reveal.d2 { transition-delay: 200ms; }
.reveal.d3 { transition-delay: 320ms; }
.reveal.d4 { transition-delay: 440ms; }

.head-rule {
  width: 0;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
  margin: 8px auto 0;
  transition: width 1200ms var(--ease) 600ms;
}
.head-rule.in { width: 80px; }

.float-pill {
  animation: float-y 4.6s ease-in-out infinite;
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

.hero-cta .btn { transition: transform 350ms var(--ease), background var(--dur-1), color var(--dur-1), border-color var(--dur-1); }

.stat .stat-n {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

.svc-card { transition: transform 360ms var(--ease), box-shadow 360ms var(--ease); }
.svc-card:hover .svc-card-bg .orb { transform: scale(1.15); opacity: 0.85; }
.svc-card .svc-card-bg .orb { transition: transform 700ms var(--ease), opacity 700ms var(--ease); }

.hotel-card { contain: layout style; }
.hotel-card .hotel-img { transition: background-position 1200ms var(--ease), transform 800ms var(--ease); }
.hotel-card:hover .hotel-img { background-size: 110%; }

.logos-track { animation-duration: 65s !important; }

.cta-final-inner::after {
  transform-origin: 50% 50%;
}

.nav-brand:hover img { filter: brightness(1.1) drop-shadow(0 0 8px rgba(184,150,46,0.4)); transition: filter 400ms var(--ease); }
.nav-brand img { transition: filter 400ms var(--ease); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

.hero, .logos, .services, .madefor, .brands, .hotels, .philosophy,
.testimonials, .stats-strip, .cta-final, .footer {
  contain: layout paint;
}
.hotel-card, .svc-card, .tm-card, .madefor-card {
  contain: layout paint;
}
.aa-tile, .aa-crest-bg, .logos-track, .aa-marquee-track {
  will-change: transform, background-position;
  contain: strict;
}

html { scroll-behavior: smooth; scroll-padding-top: 96px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
a { color: inherit; }

.nav-brand, .nav-signin, .nav-links a { text-decoration: none; }
.nav-links a {
  display: inline-block;
  padding: 8px 14px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-2);
  border-radius: var(--r-pill);
  transition: background var(--dur-1), color var(--dur-1);
}
.nav-links a:hover { background: rgba(30,30,26,0.04); color: var(--ink); }
.nav-signin { display: inline-block; }
.nav { position: relative; }
.nav-links .nav-links-cta { display: none; }

.nav-menu {
  display: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  padding: 0;
}
.nav-menu span {
  display: block; width: 16px; height: 1.5px;
  background: var(--ink);
  transition: transform var(--dur-2) var(--ease);
}
@media (max-width: 900px) {
  .nav-menu { display: inline-flex; }
  .nav-signin { display: none; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; left: 0; right: 0; top: calc(100% + 8px);
    padding: 10px;
    background: var(--paper);          
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    z-index: 5;
  }
  .nav.open .nav-links a { padding: 12px 16px; font-size: 16px; }
  .nav.open .nav-menu span:first-child { transform: translateY(3.25px) rotate(45deg); }
  .nav.open .nav-menu span:last-child  { transform: translateY(-3.25px) rotate(-45deg); }
}
@media (max-width: 560px) {
  .nav-right > .btn { display: none; }
  .nav.open .nav-links .nav-links-cta { display: inline-flex; margin-top: 6px; }
}

.section-head.left { align-items: flex-start; text-align: left; }
.section-head.left h2 { text-align: left; }

.madefor-card[hidden] { display: none; }
.madefor-card-visual .mock-row .valwrap { display: flex; align-items: center; gap: 8px; }

.hero .orb { translate: var(--px, 0px) var(--py, 0px); transition: translate 600ms var(--ease); }

.hero-mock-bg, .bd-preview-img, .madefor-card-visual, .tm-avatar { background-size: cover; background-position: center; }

.btn:focus-visible, .nav-links a:focus-visible, .nav-signin:focus-visible, .nav-menu:focus-visible,
.madefor-tab:focus-visible, .bd-row:focus-visible, .hot-arrow:focus-visible, .link-arrow:focus-visible,
.banner:focus-visible, .footer a:focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px;
}
.bd-row:focus { outline: none; }
.bd-row:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }

.logos-track { contain: layout style paint; }

@media (max-width: 740px) {
  .hero-mock { aspect-ratio: auto; }
  .hero-mock-overlay { position: relative; min-height: 380px; gap: 40px; }
}
@media (max-width: 900px) {
  .madefor-card-visual { min-height: 400px; }
}

.nav .nav-links a.nav-links-cta,
.nav .nav-links a.nav-links-cta:hover { color: var(--cream); background: var(--forest); justify-content: center; }
.nav .nav-links a.nav-links-cta:hover { background: var(--forest-deep); }

.logos-track.static { animation: none !important; width: auto; flex-wrap: wrap; justify-content: center; gap: 20px 44px; max-width: 1280px; margin: 0 auto; }
.logos-track.static .logos-item { opacity: 1; white-space: normal; text-align: left; }
.logos-track.static .logos-item .upper { font-weight: 500; font-size: 15px; letter-spacing: 0.02em; color: var(--ink-2); }

.svc-more { max-width: 1280px; margin: 40px auto 0; display: flex; flex-wrap: wrap; align-items: center; gap: 10px 8px; }
.svc-more .lbl { font-family: var(--font-display); font-style: italic; font-size: 16px; color: var(--ink-2); margin-right: 8px; }
.svc-more span:not(.lbl) { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 7px 14px; font-size: 14px; font-weight: 500; color: var(--ink); }

.madefor-card-visual .mock-row .val.long { font-family: var(--font-ui); font-size: 14px; text-align: right; color: var(--ink-2); max-width: 60%; line-height: 1.4; }
.madefor-card-visual .mock-head { font-family: var(--font-ui); font-weight: 500; font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--forest); padding: 4px 6px 6px; }

.hotel-img.panel { background: linear-gradient(160deg, #1F362D 0%, #2C4A3E 100%); display: flex; align-items: flex-end; padding: 24px; color: var(--cream); }
.hotel-img.panel::before { background: none; }
.hotel-img.panel::after { content: ""; position: absolute; right: -40px; top: -20px; width: 240px; height: 240px; background: url('assets/logo-crest-cream.png') no-repeat center / contain; opacity: 0.12; }
.hotel-img.panel .panel-list { position: relative; z-index: 1; font-family: var(--font-display); font-size: 20px; line-height: 1.4; margin: 0; padding: 0; list-style: none; }
.hotel-img.panel .panel-list li + li { margin-top: 4px; }
.hotel-role { font-size: 14px; color: var(--ink-2); line-height: 1.5; margin-top: 8px; }
.hotel-role b { font-weight: 500; color: var(--ink); }
.work-also { max-width: 1280px; margin: 36px auto 0; padding-right: var(--gutter); font-size: 15px; line-height: 1.7; color: var(--ink-2); }
.work-also b { font-weight: 500; color: var(--ink); }

.tm-card h4 { font-family: var(--font-display); font-weight: 400; font-size: 22px; line-height: 1.27; letter-spacing: -0.01em; color: var(--ink); margin: 0 0 10px; }
.tm-card .body { font-family: var(--font-ui); font-size: 16px; line-height: 1.6; color: var(--ink-2); margin: 0; }
.step-n { font-family: var(--font-display); font-style: italic; font-size: 19px; color: var(--gold); margin-bottom: 14px; }
.steps-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .steps-grid { grid-template-columns: 1fr; } }
.timeline { list-style: none; padding: 0; margin: 40px auto 0; max-width: 1100px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.timeline li { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 8px 16px; font-size: 14px; color: var(--ink-2); }
.timeline li b { font-weight: 500; color: var(--ink); }
.timeline-lbl { text-align: center; margin: 40px 0 0; font-family: var(--font-display); font-style: italic; font-size: 16px; color: var(--ink-2); }
.timeline-lbl + .timeline { margin-top: 16px; }

.tm-avatar.initials { display: flex; align-items: center; justify-content: center; background: var(--forest); color: var(--cream); font-family: var(--font-display); font-size: 17px; letter-spacing: 0.06em; border-color: transparent; }
.person-bio { font-family: var(--font-ui); font-size: 16px; line-height: 1.6; color: var(--ink-2); margin: 0 0 18px; }

.cta-final .addr { position: relative; z-index: 1; margin: 28px auto 0; font-size: 15px; line-height: 1.7; color: var(--ink-3); max-width: 52ch; }
.cta-final .addr a { color: var(--forest); text-decoration: none; }

.person-feature {
  max-width: 1280px; margin: 0 auto 24px;
  display: grid; grid-template-columns: minmax(240px, 360px) 1fr; gap: 48px; align-items: center;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-card-lg);
  padding: 40px; box-shadow: var(--shadow-card);
}
@media (max-width: 860px) { .person-feature { grid-template-columns: 1fr; padding: 24px; gap: 24px; } }
.person-feature .photo { aspect-ratio: 4 / 5; border-radius: 28px; overflow: hidden; background: var(--cream-deep); }
.person-feature .photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.person-feature .role { font-family: var(--font-ui); font-weight: 500; font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.person-feature h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(31px, 2.92vw, 44px); line-height: 1.16; letter-spacing: -0.02em; color: var(--ink); margin: 8px 0 0; }
.person-feature p { font-size: 17px; line-height: 1.65; color: var(--ink-2); margin: 16px 0 0; max-width: 62ch; }
.person-feature .facts { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 0; padding: 0; list-style: none; }
.person-feature .facts li { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 6px 14px; font-size: 14px; font-weight: 500; color: var(--ink); }

.dusit-card {
  max-width: 1280px; margin: 0 auto 24px;
  display: grid; grid-template-columns: 300px 1fr; gap: 40px; align-items: center;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-card-lg);
  padding: 36px 48px; box-shadow: var(--shadow-card);
}
.dusit-card .logo { display: flex; align-items: center; justify-content: center; padding: 16px 32px 16px 0; border-right: 1px solid var(--line); }
.dusit-card .logo img { width: 220px; height: auto; }
.dusit-card h4 { font-family: var(--font-display); font-weight: 400; font-size: 24px; line-height: 1.27; color: var(--ink); margin: 0 0 10px; }
.dusit-card p { font-size: 16px; line-height: 1.6; color: var(--ink-2); margin: 0; max-width: 64ch; }
@media (max-width: 860px) {
  .dusit-card { grid-template-columns: 1fr; padding: 28px; gap: 20px; }
  .dusit-card .logo { border-right: 0; border-bottom: 1px solid var(--line); padding: 0 0 20px; }
}

.footer .aa-tile { display: none; }
.footer-crest { position: absolute; right: -40px; bottom: -160px; width: 640px; height: auto; opacity: 0.05; pointer-events: none; z-index: 0; }
.footer-brand img { height: 96px; }
.footer-brand .footer-line { font-size: 14px; color: rgba(245,240,232,0.5); margin: 14px 0 0; }
.footer-credits { position: relative; z-index: 1; max-width: 1280px; margin: 18px auto 0; font-size: 11.5px; line-height: 1.7; color: rgba(245,240,232,0.38); }
.footer-credits a { color: inherit; text-decoration: underline; text-decoration-color: rgba(245,240,232,0.25); }

.madefor-card-visual .mock-row { display: grid; grid-template-columns: 88px 1fr; gap: 14px; align-items: start; }
.madefor-card-visual .mock-row .lbl { padding-top: 1px; }
.madefor-card-visual .mock-row .valwrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-start; gap: 6px 8px; }
.madefor-card-visual .mock-row .val.long { text-align: left; max-width: none; }
.person-feature .photo { max-width: 320px; }

.hero-slides { position: relative; }
.hero-slides:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 700ms var(--ease); pointer-events: none; }
.hero-slide.is-active { opacity: 1; pointer-events: auto; z-index: 1; }
.hero-slide .hero-mock-overlay { position: absolute; }           
.hero-slide .hero-mock-top .place { color: rgba(245,240,232,0.9); padding-right: 150px; }
.hero-slides-nav {
  position: absolute; right: 44px; top: 30px; z-index: 3;
  display: flex; align-items: center; gap: 10px;
}
.hero-slides-count { font-size: 12.5px; letter-spacing: 0.12em; color: rgba(245,240,232,0.85); font-variant-numeric: tabular-nums; min-width: 52px; text-align: center; }
.hero-arrow {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(245,240,232,0.4);
  background: rgba(20,36,29,0.35);
  color: var(--cream);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 16px; padding: 0;
  transition: background var(--dur-1), color var(--dur-1), border-color var(--dur-1);
}
.hero-arrow:hover { background: var(--cream); color: var(--forest); border-color: var(--cream); }
.hero-arrow:focus-visible { outline: 2px solid var(--gold-soft); outline-offset: 2px; }
@media (max-width: 740px) {
  .hero-slides { aspect-ratio: auto; min-height: 440px; }
  .hero-slide .hero-mock-overlay { position: absolute; min-height: 0; gap: 0; }
  .hero-slide .hero-mock-top .place { display: none; }
  .hero-slides-nav { right: 20px; top: 18px; }
  .hero-slide .hero-mock-top { padding-right: 150px; }
}

.nav-wrap { padding-top: 16px; }
.nav-wrap { top: 16px; }

.svc-more { justify-content: center; text-align: center; }
.svc-more .lbl { width: 100%; margin: 0 0 6px; }

.hero-slide .hero-mock-top .place { display: none; }
.hero-slide .hero-mock-top { padding-right: 150px; }
.hero-slide .hero-mock-headline { max-width: 24ch; }
.hero-slide .hero-mock-bot { margin-top: 26px; }
@media (max-width: 740px) { .hero-slide .hero-mock-bot { margin-top: 18px; } }

.dusit-card a.logo { text-decoration: none; transition: opacity var(--dur-1); }
.dusit-card a.logo:hover { opacity: 0.75; }
.dusit-card a.logo:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 8px; }
.dusit-card .dusit-link { margin: 14px 0 0; }

#people .tm-grid, #dusit .tm-grid, #process .tm-grid { align-items: stretch; }
#people .tm-card, #dusit .tm-card, #process .tm-card { display: flex; flex-direction: column; }
#people .tm-card .person-bio { flex: 1 0 auto; }
#people .tm-card .tm-author { margin-top: auto; }

.hero-slide .hero-mock-tint { background: linear-gradient(180deg, rgba(20,36,29,0.22) 0%, rgba(20,36,29,0.04) 40%, rgba(20,36,29,0.30) 68%, rgba(20,36,29,0.80) 100%); }
.hero-slide .hero-mock-tint::after { opacity: 0.12; }

.hero-slide .hero-mock-tint { background: linear-gradient(180deg, rgba(20,36,29,0.46) 0%, rgba(20,36,29,0.06) 34%, rgba(20,36,29,0.28) 66%, rgba(20,36,29,0.82) 100%); }
.hero-slide .hero-mock-top, .hero-slides-count { text-shadow: 0 1px 10px rgba(20,36,29,0.55); }

  .legal { max-width: 760px; margin: 0 auto; padding: 72px var(--gutter) 120px; }
  .legal h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(38px, 4.64vw, 61px); line-height: 1.14; letter-spacing: -0.025em; color: var(--ink); margin: 18px 0 14px; }
  .legal h1 em { font-style: italic; color: var(--forest); }
  .legal .updated { font-size: 14px; color: var(--ink-3); margin: 0 0 40px; }
  .legal h2 { font-family: var(--font-display); font-weight: 400; font-size: 24px; line-height: 1.27; color: var(--ink); margin: 40px 0 10px; }
  .legal p, .legal li { font-size: 17px; line-height: 1.65; color: var(--ink-2); }
  .legal p { margin: 0 0 14px; }
  .legal ul { padding-left: 20px; margin: 0 0 14px; }
  .legal a { color: var(--forest); text-decoration: underline; text-decoration-color: rgba(44,74,62,0.35); }
  .footer-simple { padding: 40px var(--gutter); background: var(--forest-night); color: rgba(245,240,232,0.7); font-size: 14px; }
  .footer-simple .row { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
  .footer-simple a { color: inherit; text-decoration: none; }
  .footer-simple a:hover { color: var(--gold-soft); }

:root { --gold-text: #8A6D1C; }                              
.eyebrow.gold, .step-n, .person-feature .role { color: var(--gold-text); }
.hero-mock-stat .l, .hotel-tag, .hotel-status, .madefor-card-visual .mock-head { font-size: 12.5px; }
.footer-col ul { gap: 2px; }
.footer-col a, .footer-bottom-links a, .footer-credits a { display: inline-block; padding: 5px 0; }
.link-arrow { padding: 6px 0; }
.philo-actions { margin-top: 8px; display: flex; gap: 12px; flex-wrap: wrap; }

.hero-mock-bg img, .madefor-card-visual > img, .hotel-img > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 0;
}
.hotel-img::before { z-index: 1; }
.hotel-img > img { transition: transform 900ms var(--ease); }
.hotel-card:hover .hotel-img { background-size: auto; }
.hotel-card:hover .hotel-img > img { transform: scale(1.06); }
.madefor-card-visual-tint { z-index: 0; }
.notfound { max-width: 760px; margin: 0 auto; padding: 120px var(--gutter) 160px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.notfound h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(41px, 5.16vw, 75px); line-height: 1.14; letter-spacing: -0.025em; color: var(--ink); margin: 0; }
.notfound h1 em { font-style: italic; color: var(--forest); }
.notfound p { color: var(--ink-2); font-size: 18px; max-width: 46ch; margin: 0; }

.footer-credits { font-size: 12.5px; }

.logos-track.static .logos-item { flex: 0 1 auto; min-width: 0; max-width: 100%; }
.logos-track.static .logos-item .upper { white-space: normal; }
@media (max-width: 740px) {
  .logos { padding: 44px var(--gutter) 40px; }
  .logos-track.static { flex-direction: column; align-items: flex-start; gap: 14px; }
  .logos-track.static .logos-item { text-align: left; align-items: flex-start; gap: 12px; }
  .logos-track.static .logos-item .crest { height: 18px; margin-top: 2px; flex: none; }
  .logos-track.static .logos-item .upper { font-size: 15px; line-height: 1.4; }
}

@media (max-width: 740px) {
  .hero-slides { aspect-ratio: 4 / 5; min-height: 0; margin-top: 40px; }
  .hero-slide .hero-mock-overlay { padding: 20px 18px 18px; min-height: 0; }
  .hero-slide .hero-mock-top { padding-right: 0; font-size: 12.5px; }
  .hero-slide .hero-mock-headline { font-size: 25px; max-width: 12ch; }
  .hero-slide .hero-mock-bot { display: flex; gap: 22px; margin-top: 14px; padding-right: 128px; }
  .hero-slide .hero-mock-stat:nth-child(n+3) { display: none; }
  .hero-slide .hero-mock-stat .n { font-size: 25px; }
  .hero-slide .hero-mock-stat .l { font-size: 12px; letter-spacing: 0.12em; }
  .hero-slides-nav { top: auto; bottom: 20px; right: 16px; gap: 8px; }
  .hero-slides-count { min-width: 44px; }
  .hero-arrow { width: 36px; height: 36px; }
}

@media (max-width: 740px) { .hero-slide .hero-mock-stat .l { font-size: 12.5px; } }

@media (max-width: 740px) {
  .hero-slide .hero-mock-headline { max-width: none; font-size: 25px; }
  .hero-slide .hero-mock-stat:nth-child(n+2) { display: none; }
  .hero-slide .hero-mock-bot { padding-right: 150px; }
}

@media (max-width: 900px) {
  .madefor-card-visual { min-height: 0; padding: 200px 18px 18px; display: flex; align-items: flex-end; }
  .madefor-card-visual .mock { position: static; inset: auto; width: 100%; }
}
@media (max-width: 560px) {
  .madefor-card-visual { padding: 150px 14px 14px; }
  .madefor-card-visual .mock { padding: 14px; gap: 6px; border-radius: 18px; }
  .madefor-card-visual .mock-row { grid-template-columns: 1fr; gap: 3px; padding: 10px 12px; }
  .madefor-card-visual .mock-row .lbl { font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage); }
  .madefor-card-visual .mock-row .val.long { font-size: 15px; line-height: 1.4; }
  .madefor-card-visual .mock-head { padding: 2px 4px 4px; }
}

.hotel-card, .svc-card, .svc-more, .work-also { scroll-margin-top: 96px; }
.tag-pill .dot::after { content: none; }
.svc-card, .hotel-card { cursor: default; }
.svc-card:hover { transform: none; box-shadow: var(--shadow-card); }
.svc-card-arrow { display: none; }
.nav-links .nav-links-tel { display: none; }
@media (max-width: 900px) { .nav.open .nav-links .nav-links-tel { display: inline-block; } }
.link-arrow.external::after { content: "↗"; }
.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; }
.footer-col li { font-size: 15px; color: rgba(245,240,232,0.76); padding: 5px 0; line-height: 1.5; }
.footer-col li a { padding: 0; }

html { font-synthesis: none; }

.bd-row-num .n, .cta-final h2 em, .display em, .footer-tag, .hero-mock-headline em, .hero-title .hl, .hero-title em, .legal h1 em, .logos-item, .madefor-card-text h3 em, .nav-brand .wordmark, .notfound h1 em, .philo-lead h2 em, .philo-pillar-num, .philo-quote, .section-head h2 em, .stat-n em, .step-n, .svc-more .lbl, .svc-num, .svc-title em, .timeline-lbl, .tm-card.featured .tm-quote em { font-style: normal; }
.display, .nav-brand .wordmark, .hero-title, .hero-mock-stat .n, .hero-mock-headline, .logos-item, .section-head h2, .svc-num, .svc-title, .madefor-card-text h3, .madefor-card-visual .mock-row .val, .bd-row-num .n, .bd-row-name, .bd-row-arrow, .bd-preview-name, .hotel-name, .philo-lead h2, .philo-quote, .philo-pillar-num, .philo-pillar-text h4, .tm-quote, .stat-n, .cta-final h2, .footer-tag, .svc-more .lbl, .hotel-img.panel .panel-list, .tm-card h4, .step-n, .timeline-lbl, .tm-avatar.initials, .person-feature h3, .dusit-card h4, .legal h1, .legal h2, .notfound h1 { font-weight: 400; letter-spacing: -0.015em; }
.hero-title, .section-head h2, .philo-lead h2, .cta-final h2 { line-height: 1.12; }
@media (max-width: 430px) { .hero-pill .tag-pill, .hero-pill { font-size: 13px; letter-spacing: 0; } }

.hero-slide.focus-left .hero-mock-bg img { object-position: 38% 50%; }

.madefor-card-visual .mock-row, .madefor-card-visual .mock, .nav.open .nav-links, .person-feature .photo, .hotels-progress, .hotels-progress > span, .hero-title .hl::before, .dusit-card a.logo:focus-visible, .hero-arrow, .hot-arrow, .nav-menu, .svc-card-arrow { border-radius: 3px; }

.hero-copy { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 28px; }
.hero-media.hero-slides { position: relative; overflow: hidden; background: var(--paper); border: 0; box-shadow: var(--shadow-card); }
.hero-media .hero-mock-tint { background: linear-gradient(180deg, rgba(20,36,29,0) 52%, rgba(20,36,29,0.6) 100%); }
.hero-media .hero-mock-tint::after { content: none; }
.hero-cap { position: absolute; left: 22px; bottom: 22px; right: 176px; z-index: 2; display: flex; align-items: center; gap: 10px; font-family: var(--font-ui); font-weight: 500; font-size: 13.5px; line-height: 1.4; color: rgba(245,240,232,0.95); text-shadow: 0 1px 10px rgba(20,36,29,0.55); }
.hero-cap .dot { flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--gold-soft); box-shadow: 0 0 12px var(--gold-soft); }
.hero-media .hero-slides-nav { top: auto; bottom: 18px; right: 18px; }
@media (min-width: 901px) {
  .hero { padding-right: 0; }
  .hero-inner { max-width: none; margin: 0 0 0 max(0px, calc((100vw - 1280px) / 2 - var(--gutter))); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr); align-items: center; gap: 56px; text-align: left; }
  .hero-copy { align-items: flex-start; text-align: left; gap: 24px; }
  .hero-title { font-size: clamp(46px, 5.6vw, 84px); max-width: none; }
  .hero-sub { max-width: 46ch; }
  .hero-cta { justify-content: flex-start; }
  .hero-media.hero-slides { height: clamp(520px, 74vh, 760px); margin: 0; aspect-ratio: auto; border-radius: 3px 0 0 3px; }
}
@media (max-width: 900px) {
  .hero-media.hero-slides { width: calc(100% + 2 * var(--gutter)); margin: 8px calc(-1 * var(--gutter)) 0; height: auto; aspect-ratio: 4 / 3; border-radius: 0; box-shadow: none; }
}
@media (max-width: 740px) {
  .hero-media.hero-slides { aspect-ratio: 4 / 5; margin-top: 8px; }
  .hero-cap { left: 18px; bottom: 18px; right: 150px; font-size: 12.5px; }
}

.page-main { padding-top: 24px; }
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 var(--gutter); }

.crumbs { font-family: var(--font-ui); font-size: 13.5px; line-height: 1.5; color: var(--ink-3); margin: 0 0 26px; }
.crumbs a { color: var(--ink-3); text-decoration: none; padding: 4px 0; }
.crumbs a:hover { color: var(--forest); }
.crumbs a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.crumbs span { color: var(--ink); }

.page-hero { background: var(--cream); padding: 56px 0 8px; text-align: left; }
.page-hero .eyebrow { display: block; margin: 0 0 18px; }
.page-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(40px, 5vw, 72px); line-height: 1.12; letter-spacing: -0.025em; color: var(--ink); margin: 0 0 22px; max-width: 20ch; }
.page-title em { font-style: normal; color: var(--forest); }
.page-lede { font-family: var(--font-ui); font-size: 19px; line-height: 1.6; color: var(--ink-2); margin: 0; max-width: 60ch; }

.page-facts { list-style: none; margin: 40px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 28px 64px; }
.page-facts li { display: flex; flex-direction: column; gap: 8px; max-width: 260px; }
.page-facts b { font-family: var(--font-display); font-weight: 400; font-size: 40px; line-height: 1; letter-spacing: -0.02em; color: var(--forest); }
.page-facts span { font-family: var(--font-ui); font-weight: 500; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; line-height: 1.5; color: var(--ink-3); }

.page-band { max-width: 1280px; margin: 48px auto 0; padding: 0 var(--gutter); }
.page-band img { width: 100%; height: clamp(360px, 40vw, 560px); object-fit: cover; object-position: center; border-radius: var(--r-card); }
.page-band figcaption { font-family: var(--font-ui); font-size: 13px; line-height: 1.5; color: var(--ink-3); margin: 10px 0 0; }

.page-section { padding: 72px 0; background: var(--cream); }
.page-section.alt { background: var(--paper); }

.page-section:not(.alt) + .page-section:not(.alt) { padding-top: 0; }
.page-section > .wrap > h2 { font-family: var(--font-display); font-weight: 400; font-size: 34px; line-height: 1.2; letter-spacing: -0.02em; color: var(--ink); margin: 0 0 16px; max-width: 22ch; }
.page-section > .wrap > h2 em { font-style: normal; color: var(--forest); }
.page-section > .wrap > .page-lede { margin: 0; }

.prose { max-width: 68ch; }

.wrap.prose { max-width: 1280px; }
.wrap.prose > * { max-width: 68ch; }
.prose > :first-child { margin-top: 0; }
.prose > :last-child { margin-bottom: 0; }
.prose h2 { font-family: var(--font-display); font-weight: 400; font-size: 34px; line-height: 1.2; letter-spacing: -0.02em; color: var(--ink); margin: 0 0 18px; }
.prose h2 em { font-style: normal; color: var(--forest); }
.prose h3 { font-family: var(--font-display); font-weight: 400; font-size: 22px; line-height: 1.3; letter-spacing: -0.015em; color: var(--ink); margin: 30px 0 10px; }
.prose p { font-size: 17px; line-height: 1.6; color: var(--ink-2); margin: 0 0 16px; }
.prose b { font-weight: 600; color: var(--ink); }
.prose a { color: var(--forest); text-decoration: underline; text-decoration-color: rgba(44,74,62,0.35); }
.prose ul { list-style: none; margin: 0 0 20px; padding: 0; }
.prose ul li { position: relative; padding-left: 22px; font-size: 17px; line-height: 1.6; color: var(--ink-2); margin: 0 0 10px; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 11px; width: 6px; height: 6px; background: var(--gold); }
.pull, .prose .pull { font-family: var(--font-display); font-weight: 400; font-style: normal; font-size: 24px; line-height: 1.4; letter-spacing: -0.015em; color: var(--forest); margin: 28px 0; padding: 2px 0 2px 22px; border-left: 2px solid var(--gold); max-width: 46ch; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-top: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 32px; }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-card); padding: 28px; box-shadow: var(--shadow-card); }
.page-section.alt .card { background: var(--cream); }
.card h3 { font-family: var(--font-display); font-weight: 400; font-size: 24px; line-height: 1.27; letter-spacing: -0.015em; color: var(--ink); margin: 0 0 10px; }
.card p { font-size: 16px; line-height: 1.6; color: var(--ink-2); margin: 0; }
.card ul { list-style: none; margin: 14px 0 0; padding: 0; }
.card li { position: relative; padding-left: 18px; font-size: 15px; line-height: 1.55; color: var(--ink-2); margin: 0 0 7px; }
.card li:last-child { margin-bottom: 0; }
.card li::before { content: ""; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; background: var(--gold); }

.steps { list-style: none; counter-reset: step; margin: 32px 0 0; padding: 0; max-width: 900px; }
.steps li { counter-increment: step; display: grid; grid-template-columns: 64px minmax(0, 1fr); column-gap: 20px; padding: 22px 0; border-top: 1px solid var(--line); }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps li::before { content: counter(step, upper-roman); grid-column: 1; grid-row: 1; font-family: var(--font-display); font-weight: 400; font-size: 19px; line-height: 1.35; letter-spacing: 0.02em; color: var(--gold-text); }
.steps li > * { grid-column: 2; }
.steps h3 { font-family: var(--font-display); font-weight: 400; font-size: 22px; line-height: 1.3; letter-spacing: -0.015em; color: var(--ink); margin: 0 0 6px; }
.steps p { font-size: 16px; line-height: 1.6; color: var(--ink-2); margin: 0; }

.facts { margin: 32px 0 0; max-width: 900px; }
.facts > div { display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: 6px 24px; padding: 16px 0; border-top: 1px solid var(--line); }
.facts > div:last-child { border-bottom: 1px solid var(--line); }
.facts dt { font-family: var(--font-ui); font-weight: 500; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; line-height: 1.6; color: var(--ink-3); padding-top: 2px; }
.facts dd { font-size: 17px; line-height: 1.6; color: var(--ink); margin: 0; }

.related > h2 { font-family: var(--font-display); font-weight: 400; font-size: 26px; line-height: 1.27; letter-spacing: -0.02em; color: var(--ink); margin: 0; }
.related-card { position: relative; display: block; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-card); padding: 24px 56px 24px 26px; text-decoration: none; box-shadow: var(--shadow-card); transition: transform var(--dur-1) var(--ease), box-shadow var(--dur-2) var(--ease), border-color var(--dur-1); }
.related-card::after { content: "→"; position: absolute; right: 24px; top: 22px; font-size: 18px; line-height: 1.4; color: var(--gold-text); transition: transform var(--dur-1) var(--ease); }
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); border-color: var(--line-strong); }
.related-card:hover::after { transform: translateX(4px); }
.related-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.related-card b { display: block; font-family: var(--font-display); font-weight: 400; font-size: 22px; line-height: 1.3; letter-spacing: -0.015em; color: var(--ink); margin: 0 0 8px; }
.related-card span { display: block; font-family: var(--font-ui); font-size: 15px; line-height: 1.55; color: var(--ink-2); }

@media (max-width: 900px) {
  .grid-2, .grid-3 { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 740px) {
  .page-hero { padding-top: 40px; }
  .page-title { font-size: 38px; max-width: none; }
  .page-lede { font-size: 17.5px; }
  .page-facts { gap: 22px 36px; margin-top: 32px; }
  .page-facts b { font-size: 34px; }
  .page-band { margin-top: 36px; }
  .page-band img { height: auto; aspect-ratio: 4 / 5; max-height: 420px; }
  .page-section { padding: 48px 0; }
  .prose h2, .page-section > .wrap > h2 { font-size: 28px; }
  .pull, .prose .pull { font-size: 21px; }
  .card { padding: 22px; }
  .steps li, .facts > div { grid-template-columns: minmax(0, 1fr); }
  .steps li > *, .steps li::before { grid-column: 1; }
  .steps li::before { grid-row: auto; margin-bottom: 8px; }
}

.hero { padding-right: var(--gutter); padding-bottom: 56px; }
.hero-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 28px; max-width: 1280px; margin: 0 auto; }
.hero-copy { align-items: center; text-align: center; gap: 28px; }
.hero-title { font-size: clamp(48px, 7.2vw, 112px); max-width: 14ch; }
.hero-sub { max-width: 56ch; }
.hero-cta { justify-content: center; }
.hero-strip { position: relative; align-self: flex-start; width: 100vw; max-width: 100vw; margin: 36px 0 0 calc(50% - 50vw); }
.strip-track { display: flex; gap: 14px; margin: 0; padding: 0; list-style: none; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scroll-padding-inline: 0; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.strip-track::-webkit-scrollbar { display: none; }
.strip-track:focus-visible { outline: 2px solid var(--gold); outline-offset: 6px; }
.strip-card { position: relative; flex: 0 0 clamp(280px, 29vw, 560px); aspect-ratio: 5 / 6; scroll-snap-align: start; border-radius: 3px; overflow: hidden; background: var(--paper); box-shadow: var(--shadow-card); }
.strip-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.strip-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,36,29,0) 58%, rgba(20,36,29,0.58) 100%); pointer-events: none; }
.strip-cap { position: absolute; left: 18px; right: 18px; bottom: 18px; z-index: 1; display: flex; align-items: center; gap: 10px; font-family: var(--font-ui); font-weight: 500; font-size: 13.5px; line-height: 1.4; color: rgba(245,240,232,0.95); text-shadow: 0 1px 10px rgba(20,36,29,0.55); text-align: left; }
.strip-cap .dot { flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--gold-soft); box-shadow: 0 0 12px var(--gold-soft); }
.strip-nav { position: absolute; right: var(--gutter); top: -54px; display: flex; gap: 8px; z-index: 2; }
.strip-arrow { width: 40px; height: 40px; border-radius: 3px; border: 1px solid var(--line); background: var(--paper); color: var(--ink); font-size: 16px; line-height: 1; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: background 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease); }
.strip-arrow:hover { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.strip-arrow:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
@media (max-width: 740px) {
  .hero { padding-bottom: 96px; }
  .hero-strip { margin-top: 24px; }
  .strip-track { gap: 10px; }
  .strip-card { flex-basis: 76vw; aspect-ratio: 4 / 5; }
  .strip-cap { left: 14px; right: 14px; bottom: 14px; font-size: 12.5px; }
  .strip-nav { top: auto; bottom: -50px; right: var(--gutter); }
  .strip-arrow { width: 36px; height: 36px; }
}

.card .hotel-img { margin-bottom: 18px; }
.svc-link { display: inline-flex; margin-top: 18px; }

@media (max-width: 740px) {
  .services, .madefor, .brands, .hotels, .philosophy, .testimonials, .cta-final { padding-top: 64px; padding-bottom: 64px; }
  .section-head { margin-bottom: 26px; }
  .section-head h2 { font-size: 34px; }
  
  .svc-list, .svc-more { display: none; }
  .svc-card { padding: 26px 22px; }
  .svc-link { margin-top: 12px; }
  
  .tabs-scroller { position: relative; margin: 0 calc(-1 * var(--gutter)) 0 0; }
  .tabs-scroller::after { content: ""; position: absolute; top: 0; right: 0; bottom: 8px; width: 72px; background: linear-gradient(90deg, rgba(247,241,232,0) 0%, var(--cream-warm) 85%); pointer-events: none; transition: opacity 200ms var(--ease); }
  .tabs-scroller.at-end::after { opacity: 0; }
  .tabs-scroller .hint { position: absolute; right: 12px; top: 50%; transform: translateY(-60%); font-size: 16px; color: var(--ink-3); pointer-events: none; transition: opacity 200ms var(--ease); }
  .tabs-scroller.at-end .hint { opacity: 0; }
  .madefor-tabs { display: flex; flex-wrap: nowrap; justify-content: flex-start; gap: 8px; overflow-x: auto; scroll-snap-type: x proximity; padding: 0 var(--gutter) 8px 0; margin: 0; scrollbar-width: none; }
  .madefor-tabs::-webkit-scrollbar { display: none; }
  .madefor-tab { flex: none; scroll-snap-align: start; font-size: 14px; padding: 9px 14px; }
  .madefor-card-visual { padding-top: 110px; }
  .madefor-card-visual .mock-row:nth-child(4) { display: none; }
  
  #dusit .tm-grid { display: none; }
  
  .hotel-card .hotel-img { height: 220px; aspect-ratio: auto; }
  .hotel-role, .work-also { display: none; }
  
  .steps-grid { gap: 10px; }
  .steps-grid .tm-card { padding: 18px 20px; display: grid; grid-template-columns: 40px 1fr; column-gap: 12px; align-items: start; }
  .steps-grid .step-n { margin: 0; font-size: 18px; line-height: 1.3; }
  .steps-grid h4 { margin: 0 0 4px; font-size: 20px; }
  .steps-grid .tm-card .body { grid-column: 2; font-size: 15px; margin: 0; }
  .timeline, .timeline-lbl { display: none; }
  
  .person-feature .photo { height: 240px; aspect-ratio: auto; }
  .person-feature .facts li:nth-child(n+3) { display: none; }
  #people .tm-grid .tm-card { display: flex; flex-direction: column; }
  #people .tm-grid .tm-author { order: -1; margin: 0 0 10px; }
  
  .footer-col:not(.footer-contact) { display: none; }
}
@media (max-width: 560px) { .madefor-card-visual { padding-top: 90px; } }

.work-all { margin: 18px 0 0; }
@media (max-width: 740px) { .work-all { margin-top: 12px; } }

@media (max-width: 740px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand img { height: auto; width: 200px; max-width: 100%; }
}

img.tm-avatar { width: 48px; height: 48px; flex: none; object-fit: cover; border: 1px solid var(--line); background: var(--paper); }
@media (max-width: 740px) { #people .tm-grid .tm-author { border-top: 0; padding-top: 0; } }

.stat-n.text { font-size: clamp(30px, 3.1vw, 44px); line-height: 1.15; padding-top: clamp(6px, 1.4vw, 22px); }

@media (max-width: 900px) {
  .nav { transition: transform 260ms var(--ease), opacity 200ms var(--ease); will-change: transform; }
  .nav.nav-hidden { transform: translateY(calc(-100% - 28px)); opacity: 0; pointer-events: none; }
}
@media (prefers-reduced-motion: reduce) { .nav { transition: none; } }

.faq { padding: 120px var(--gutter); background: var(--cream); }
.faq-list { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 20px 0; font-family: var(--font-display); font-size: 22px; line-height: 1.25; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; flex: none; font-family: var(--font-ui); font-size: 24px; line-height: 1; color: var(--gold-text); transition: transform 200ms var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.faq-item p { margin: 0 0 22px; font-size: 17px; line-height: 1.6; color: var(--ink-2); max-width: 68ch; }
@media (max-width: 740px) { .faq { padding: 64px var(--gutter); } .faq-item summary { font-size: 19px; padding: 16px 0; } .faq-item p { font-size: 16px; } }

.nav-brand .wordmark { position: relative; top: 2px; }
