@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Manrope:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,700&display=swap');

:root {
  --c-primary: #4B6358;
  --c-secondary: #A0B09B;
  --c-accent: #C6A86A;
  --c-accent2: #8B6E5D;
  --c-bg: #F5F4EF;
  --c-bg2: #ECEAE2;
  --c-text: #2B302F;
  --c-white: #FFFFFF;
  --c-border: rgba(75, 99, 88, 0.14);
  --c-border-solid: #D8D4CC;
  --c-muted: rgba(43, 48, 47, 0.52);
  --c-overlay: rgba(75, 99, 88, 0.28);

  --f-display: 'Canela', 'Cormorant Garamond', 'Didot', Georgia, serif;
  --f-body: 'Neue Montreal', 'Manrope', 'Inter', sans-serif;
  --f-ui: 'Satoshi', 'Manrope', sans-serif;
  --f-location: 'Cormorant Garamond', Georgia, serif;
  --f-mono: 'IBM Plex Mono', 'Courier New', monospace;

  --g-hero: linear-gradient(150deg, #4B6358 0%, #A0B09B 55%, #E1E4DD 100%);
  --g-btn: linear-gradient(135deg, #C6A86A 0%, #D8C08F 100%);
  --g-bg: linear-gradient(180deg, #F5F4EF 0%, #ECEAE2 100%);

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 20px;
  --r-xl: 32px;
  --r-2xl: 52px;

  --s-xs: 0 1px 3px rgba(43, 48, 47, 0.04);
  --s-sm: 0 2px 12px rgba(43, 48, 47, 0.07);
  --s-md: 0 8px 32px rgba(43, 48, 47, 0.10);
  --s-lg: 0 24px 64px rgba(43, 48, 47, 0.14);
  --s-xl: 0 48px 96px rgba(43, 48, 47, 0.18);

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t: 0.4s var(--ease);
  --t-fast: 0.22s var(--ease);
  --t-slow: 0.85s var(--ease-out);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--f-body);
  background-color: var(--c-bg);
  color: var(--c-text);
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.65;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

input, textarea, select {
  font-family: var(--f-body);
  font-size: inherit;
}

h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.022em;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.container--wide {
  max-width: 1440px;
  padding: 0 60px;
}

.container--narrow {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .container--wide { padding: 0 32px; }
  .container--narrow { padding: 0 32px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .container--wide { padding: 0 20px; }
  .container--narrow { padding: 0 20px; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 36px;
  font-family: var(--f-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: all var(--t);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  border: none;
}

.btn--primary {
  background: var(--g-btn);
  color: var(--c-text);
  box-shadow: 0 4px 20px rgba(198, 168, 106, 0.28);
}

.btn--primary:hover {
  box-shadow: 0 8px 36px rgba(198, 168, 106, 0.48);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--c-primary);
  color: var(--c-white);
  box-shadow: var(--s-md);
}

.btn--dark:hover {
  background: #3d5247;
  box-shadow: var(--s-lg);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--c-primary);
  border: 1.5px solid var(--c-primary);
}

.btn--outline:hover {
  background: var(--c-primary);
  color: var(--c-white);
  transform: translateY(-2px);
}

.btn--ghost-white {
  background: rgba(255, 255, 255, 0.12);
  color: var(--c-white);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
}

.btn--ghost-white:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 18px;
}

.label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--c-accent);
  flex-shrink: 0;
}

.label--light {
  color: rgba(198, 168, 106, 0.85);
}

.label--light::before {
  background: rgba(198, 168, 106, 0.85);
}

.location-name {
  font-family: var(--f-location);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(13px, 1.1vw, 15px);
  color: var(--c-accent2);
  letter-spacing: 0.02em;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--c-border);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-left.in-view {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-right.in-view {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }

.text-accent { color: var(--c-accent); }
.text-primary { color: var(--c-primary); }
.text-muted { color: var(--c-muted); }
.text-white { color: var(--c-white); }

html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}
