@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Outfit:wght@300;400;500;600;700&family=Manrope:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&family=IBM+Plex+Mono:wght@300;400;500&display=swap');

:root {
  --clr-primary: #3F6A5A;
  --clr-secondary: #93AA94;
  --clr-accent: #BC9A5B;
  --clr-accent2: #6E5B4E;
  --clr-bg: #F3F6F2;
  --clr-bg-alt: #E7ECE7;
  --clr-bg-dark: #5A6B62;
  --clr-text: #262F2C;
  --clr-text-muted: rgba(38, 47, 44, 0.55);
  --clr-white: #FFFFFF;
  --clr-border: rgba(38, 47, 44, 0.10);
  --grad-hero: linear-gradient(135deg, #3F6A5A 0%, #6F8D7F 50%, #D9E3DC 100%);
  --grad-btn: linear-gradient(135deg, #BC9A5B 0%, #D4B57C 100%);
  --grad-bg: linear-gradient(180deg, #F3F6F2 0%, #E7ECE7 100%);
  --grad-nature: linear-gradient(135deg, #3F6A5A 0%, #55776A 100%);
  --overlay: rgba(63, 106, 90, 0.42);
  --ff-hero: 'Cormorant Garamond', Georgia, serif;
  --ff-heading: 'Outfit', sans-serif;
  --ff-body: 'Manrope', sans-serif;
  --ff-nav: 'Inter', sans-serif;
  --ff-mono: 'IBM Plex Mono', monospace;
  --fs-hero: clamp(3.5rem, 8vw, 8.5rem);
  --fs-h1: clamp(2.5rem, 5vw, 5.25rem);
  --fs-h2: clamp(2rem, 3.5vw, 3.5rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.75rem);
  --fs-body: clamp(0.9375rem, 1vw, 1.0625rem);
  --fs-small: 0.875rem;
  --fs-mono: 0.8125rem;
  --fs-label: 0.7rem;
  --lh: 1.55;
  --ls: -0.02em;
  --ls-heading: -0.03em;
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 999px;
  --shadow-sm: 0 2px 8px rgba(38, 47, 44, 0.06);
  --shadow-md: 0 8px 32px rgba(38, 47, 44, 0.10);
  --shadow-lg: 0 24px 64px rgba(38, 47, 44, 0.14);
  --shadow-hover: 0 32px 80px rgba(38, 47, 44, 0.18);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --trans: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1280px;
  --container-sm: 960px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(5rem, 10vw, 10rem);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: var(--clr-text);
  background-color: var(--clr-bg);
  line-height: var(--lh);
  letter-spacing: var(--ls);
  position: relative;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--trans-fast);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

input, textarea, select {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.15;
  letter-spacing: var(--ls-heading);
  font-weight: 600;
}

.label {
  font-family: var(--ff-mono);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
}

.label-primary {
  font-family: var(--ff-mono);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-primary);
}

.label-white {
  font-family: var(--ff-mono);
  font-size: var(--fs-label);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--ff-nav);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 2.25rem;
  border-radius: var(--radius-full);
  transition: var(--trans);
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--grad-btn);
  color: var(--clr-white);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(188, 154, 91, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(188, 154, 91, 0.40);
  color: var(--clr-white);
}

.btn-outline {
  background: transparent;
  color: var(--clr-primary);
  border-color: rgba(63, 106, 90, 0.5);
}

.btn-outline:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  border-color: var(--clr-primary);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline-white:hover {
  background: var(--clr-white);
  color: var(--clr-primary);
  border-color: var(--clr-white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--clr-primary);
  color: var(--clr-white);
  border-color: transparent;
}

.btn-dark:hover {
  background: var(--clr-bg-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 1.125rem 3rem;
  font-size: 0.9375rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-family: var(--ff-nav);
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--clr-text);
  letter-spacing: 0.02em;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: var(--clr-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  color: var(--clr-text);
  transition: var(--trans-fast);
  font-size: var(--fs-body);
  font-family: var(--ff-body);
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(63, 106, 90, 0.12);
}

.form-control::placeholder {
  color: var(--clr-text-muted);
}

textarea.form-control {
  resize: vertical;
  min-height: 148px;
  line-height: var(--lh);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--ff-mono);
  font-size: var(--fs-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.875rem;
  border-radius: var(--radius-full);
  font-weight: 500;
}

.badge-primary {
  background: rgba(63, 106, 90, 0.10);
  color: var(--clr-primary);
  border: 1px solid rgba(63, 106, 90, 0.20);
}

.badge-accent {
  background: rgba(188, 154, 91, 0.10);
  color: var(--clr-accent2);
  border: 1px solid rgba(188, 154, 91, 0.25);
}

.badge-white {
  background: rgba(255, 255, 255, 0.15);
  color: var(--clr-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--grad-btn);
  border-radius: var(--radius-full);
  margin: 1.5rem 0;
}

.divider-center {
  margin-left: auto;
  margin-right: auto;
}

.divider-white {
  width: 48px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-full);
  margin: 1.5rem 0;
}

.text-primary { color: var(--clr-primary); }
.text-accent { color: var(--clr-accent); }
.text-muted { color: var(--clr-text-muted); }
.text-white { color: var(--clr-white); }
.text-center { text-align: center; }

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-44px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(44px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal-scale.in-view {
  opacity: 1;
  transform: scale(1);
}

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }
[data-delay="7"] { transition-delay: 0.7s; }
