:root {
  --emerald: #45695A;
  --sage: #9AAE9A;
  --gold: #B99657;
  --stone: #7C7065;
  --mist: #F5F4EE;
  --ink: #29302D;
  --white: #FFFFFF;
  --ink-light: rgba(41, 48, 45, 0.55);
  --ink-faint: rgba(41, 48, 45, 0.08);

  --grad-hero: linear-gradient(160deg, #45695A 0%, #7D9887 55%, #DDE4DE 100%);
  --grad-btn: linear-gradient(135deg, #B99657 0%, #D3B77D 100%);
  --grad-bg: linear-gradient(180deg, #F5F4EE 0%, #ECE9E0 100%);
  --overlay: rgba(69, 105, 90, 0.28);
  --overlay-dark: rgba(41, 48, 45, 0.52);

  --ff-display: 'Cormorant Garamond', 'Georgia', serif;
  --ff-heading: 'Plus Jakarta Sans', sans-serif;
  --ff-body: 'Manrope', sans-serif;
  --ff-ui: 'Outfit', sans-serif;
  --ff-mono: 'IBM Plex Mono', monospace;

  --fs-hero: clamp(52px, 7vw, 110px);
  --fs-h1: clamp(38px, 5vw, 72px);
  --fs-h2: clamp(28px, 3.5vw, 52px);
  --fs-h3: clamp(20px, 2.5vw, 32px);
  --fs-h4: clamp(16px, 1.8vw, 22px);
  --fs-body: clamp(14px, 1.05vw, 17px);
  --fs-small: 13px;
  --fs-label: 11px;
  --fs-marquee: clamp(20px, 3vw, 38px);

  --container: 1280px;
  --container-narrow: 960px;

  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 48px;
  --sp-6: 64px;
  --sp-7: 80px;
  --sp-8: 96px;
  --sp-9: 120px;
  --sp-10: 160px;

  --r-xs: 2px;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-full: 9999px;

  --sh-xs: 0 1px 4px rgba(41,48,45,0.05);
  --sh-sm: 0 2px 12px rgba(41,48,45,0.07);
  --sh-md: 0 8px 28px rgba(41,48,45,0.10);
  --sh-lg: 0 20px 56px rgba(41,48,45,0.13);
  --sh-xl: 0 40px 96px rgba(41,48,45,0.16);

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 200ms;
  --dur-base: 400ms;
  --dur-slow: 700ms;
  --dur-slower: 1000ms;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--mist);
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

section, header, footer {
  overflow-x: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}

ul, ol { list-style: none; }

button {
  font-family: var(--ff-ui);
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

input, textarea, select {
  font-family: var(--ff-body);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}

.container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--sp-5);
}

.t-display {
  font-family: var(--ff-display);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.08;
  font-style: italic;
}

.t-heading {
  font-family: var(--ff-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.t-body {
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.7;
}

.t-ui {
  font-family: var(--ff-ui);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.t-mono {
  font-family: var(--ff-mono);
  font-weight: 400;
  letter-spacing: 0.06em;
}

.t-label {
  font-family: var(--ff-mono);
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 400;
}

.c-emerald { color: var(--emerald); }
.c-gold { color: var(--gold); }
.c-sage { color: var(--sage); }
.c-stone { color: var(--stone); }
.c-mist { color: var(--mist); }
.c-light { color: rgba(245,244,238,0.75); }

.bg-emerald { background-color: var(--emerald); }
.bg-mist { background: var(--grad-bg); }
.bg-ink { background-color: var(--ink); }
.bg-dark { background-color: #1E2420; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 14px 36px;
  font-family: var(--ff-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  transition: all var(--dur-base) var(--ease);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--grad-btn);
  color: #fff;
  box-shadow: 0 4px 20px rgba(185,150,87,0.30);
}

.btn--primary:hover {
  box-shadow: 0 10px 36px rgba(185,150,87,0.48);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--mist);
  border: 1px solid rgba(245,244,238,0.38);
}

.btn--outline:hover {
  background: rgba(245,244,238,0.10);
  border-color: rgba(245,244,238,0.70);
}

.btn--outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(41,48,45,0.20);
}

.btn--outline-dark:hover {
  background: var(--ink);
  color: var(--mist);
}

.btn--dark {
  background: var(--ink);
  color: var(--mist);
}

.btn--dark:hover {
  background: var(--emerald);
  transform: translateY(-2px);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--r-full);
  background: rgba(69,105,90,0.10);
  color: var(--emerald);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tag--gold {
  background: rgba(185,150,87,0.12);
  color: var(--gold);
}

.tag--light {
  background: rgba(245,244,238,0.14);
  color: rgba(245,244,238,0.80);
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--ink-faint);
}

.divider--light {
  background: rgba(245,244,238,0.14);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }
.reveal-delay-5 { transition-delay: 400ms; }
.reveal-delay-6 { transition-delay: 480ms; }

.card-hover {
  transition: transform var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
}

.card-hover:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-lg);
}

.section {
  padding: var(--sp-10) 0;
}

.section--sm {
  padding: var(--sp-7) 0;
}

.section--lg {
  padding: calc(var(--sp-10) * 1.4) 0;
}

@media (max-width: 768px) {
  .section { padding: var(--sp-8) 0; }
  .section--sm { padding: var(--sp-6) 0; }
  .section--lg { padding: var(--sp-9) 0; }
}

html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}
