*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --c-primary: #44675F;
  --c-primary-dark: #2E4940;
  --c-secondary: #97AB95;
  --c-accent: #C8AA6E;
  --c-accent-light: #DCC392;
  --c-accent2: #7B6557;
  --c-bg: #F2F5F0;
  --c-bg-alt: #E7ECE6;
  --c-mist: #DCE4DD;
  --c-text: #28302D;
  --c-text-muted: #5A6660;
  --c-white: #ffffff;
  --c-border: rgba(68, 103, 95, 0.15);
  --c-border-strong: rgba(68, 103, 95, 0.28);

  --grad-hero: linear-gradient(160deg, #44675F 0%, #6E887F 50%, #97AB95 100%);
  --grad-btn: linear-gradient(135deg, #C8AA6E 0%, #DCC392 100%);
  --grad-bg: linear-gradient(180deg, #F2F5F0 0%, #E7ECE6 100%);
  --grad-depth: linear-gradient(135deg, #44675F 0%, #6E887F 100%);
  --overlay: rgba(28, 38, 34, 0.54);
  --overlay-teal: rgba(68, 103, 95, 0.58);
  --overlay-light: rgba(68, 103, 95, 0.18);

  --font-display: 'Canela', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Neue Montreal', Manrope, system-ui, sans-serif;
  --font-ui: 'Satoshi', system-ui, sans-serif;
  --font-location: 'Cormorant Garamond', Georgia, serif;

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-full: 9999px;

  --s-sm: 0 2px 12px rgba(40, 48, 45, 0.07);
  --s-md: 0 6px 32px rgba(40, 48, 45, 0.11);
  --s-lg: 0 16px 64px rgba(40, 48, 45, 0.16);
  --s-hover: 0 24px 80px rgba(40, 48, 45, 0.24);

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --t: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-fast: 0.22s ease;
  --t-slow: 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --py: clamp(72px, 9vw, 130px);
  --gap: clamp(20px, 3vw, 40px);
  --nav-h: 80px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--c-text);
  background-color: var(--c-bg);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  max-width: 100vw;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--t-fast);
}

ul,
ol {
  list-style: none;
}

button {
  font-family: var(--font-ui);
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

input,
textarea,
select {
  font-family: var(--font-body);
  width: 100%;
  outline: none;
  border: none;
}

h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(50px, 7.5vw, 110px);
  line-height: 0.97;
  letter-spacing: -0.03em;
}

h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 4.8vw, 74px);
  line-height: 1.04;
  letter-spacing: -0.025em;
}

h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h4 {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: clamp(16px, 1.4vw, 21px);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

p {
  line-height: 1.72;
  color: var(--c-text);
}

.label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
}

.location-name {
  font-family: var(--font-location);
  font-style: italic;
  font-size: clamp(18px, 2vw, 28px);
  color: var(--c-accent2);
  font-weight: 300;
}

section,
header,
footer,
.js-marquee-wrap {
  overflow-x: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

.container {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.container--narrow {
  max-width: 960px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.container--wide {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-44px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(44px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.18s; }
.delay-3 { transition-delay: 0.28s; }
.delay-4 { transition-delay: 0.38s; }
.delay-5 { transition-delay: 0.48s; }
.delay-6 { transition-delay: 0.58s; }

.body-locked {
  overflow: hidden;
}

html,
body {
  overflow-x: hidden !important;
  max-width: 100vw;
}
