:root {
  --cream:        oklch(97%   0.010 82);
  --cream-mid:    oklch(93%   0.018 78);
  --cream-dark:   oklch(87%   0.028 72);
  --brown:        oklch(22%   0.035 52);
  --brown-mid:    oklch(42%   0.048 58);
  --brown-light:  oklch(62%   0.040 60);
  --sage:         oklch(54%   0.080 148);
  --sage-light:   oklch(75%   0.055 148);
  --sage-pale:    oklch(90%   0.030 148);
  --tan:          oklch(70%   0.055 70);
  --tan-pale:     oklch(91%   0.022 75);
  --warm-white:   oklch(99%   0.005 80);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --nav-h: 76px;
  --ease:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--brown);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── NAV ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 48px;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled {
  background: oklch(97% 0.010 82 / 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 oklch(22% 0.035 52 / 0.08);
}
.nav-logo {
  font-family: 'Cinzel Decorative', serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brown);
  text-decoration: none;
  flex: 1;
}
.nav-logo span { color: var(--sage); display: inline-flex; align-items: center; }
.nav-o { height: 1em; width: auto; }
.nav-logo-img { height: 50px; width: auto; display: block; margin-left: 79px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown-mid);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: var(--brown); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--brown); }
.nav-links a.active::after { transform: scaleX(1); }

.btn-inquire {
  margin-left: 20px;
  padding: 10px 28px;
  background: #4A72B0;
  color: #000000 !important;
  border: none;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.btn-inquire::after { display: none; }
.nav-links .btn-inquire:hover {
  background: #2e4f80;
  color: #000000 !important;
  transform: translateY(-1px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 10px 28px;
  border: 1px solid var(--brown);
  color: var(--brown);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.btn-primary:hover {
  background: var(--brown);
  color: var(--cream);
  transform: translateY(-1px);
}

/* ─── SCROLL REVEAL ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── IMAGE PLACEHOLDER ─────────────────────────────────── */
.img-placeholder {
  position: relative;
  overflow: hidden;
  display: block;
}
.img-placeholder svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.img-placeholder .ph-label {
  position: absolute;
  bottom: 16px; left: 16px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown-mid);
  opacity: 0.7;
  font-family: var(--font-body);
}

/* ─── MARQUEE ────────────────────────────────────────────── */
.marquee-strip {
  background: var(--brown);
  color: var(--cream);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0.1em;
  padding: 0 40px;
  color: var(--tan);
}
.marquee-track span.dot {
  color: var(--sage-light);
  padding: 0;
  font-style: normal;
  font-size: 8px;
  line-height: 2;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--brown);
  color: var(--cream-mid);
  padding: 64px 48px 40px;
  margin-top: 120px;
}
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid oklch(97% 0.010 82 / 0.12);
  padding-bottom: 48px;
  margin-bottom: 32px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: oklch(97% 0.010 82 / 0.5);
  line-height: 1.7;
}
.footer-col h5 {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 16px;
  font-weight: 400;
}
.footer-col a {
  display: block;
  color: oklch(97% 0.010 82 / 0.55);
  text-decoration: none;
  font-size: 13px;
  font-weight: 300;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: oklch(97% 0.010 82 / 0.3);
  letter-spacing: 0.08em;
}

/* ─── SECTION LABELS ────────────────────────────────────── */
.section-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 400;
  font-family: var(--font-body);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--brown);
}
.section-title em {
  font-style: italic;
  color: var(--brown-mid);
}

/* ─── INQUIRE MODAL ─────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: oklch(22% 0.035 52 / 0);
  backdrop-filter: blur(0px);
  pointer-events: none;
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-overlay.open {
  background: oklch(22% 0.035 52 / 0.55);
  backdrop-filter: blur(4px);
  pointer-events: all;
}
.modal-panel {
  background: var(--cream);
  width: 100%;
  max-width: 560px;
  padding: 64px 56px;
  position: relative;
  transform: translateY(40px);
  opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out);
}
.modal-overlay.open .modal-panel {
  transform: translateY(0);
  opacity: 1;
}
.modal-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: var(--brown-light);
  line-height: 1;
  transition: color 0.2s;
  padding: 4px;
}
.modal-close:hover { color: var(--brown); }
.modal-panel .section-label { margin-bottom: 8px; }
.modal-panel h2 {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 32px;
  line-height: 1.2;
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown-mid);
  margin-bottom: 8px;
  font-weight: 400;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  background: var(--cream-mid);
  border: 1px solid var(--cream-dark);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--brown);
  outline: none;
  transition: border-color 0.25s;
  border-radius: 0;
  appearance: none;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--sage);
}
.form-row textarea { height: 110px; resize: vertical; }
.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--sage);
  color: var(--warm-white);
  border: none;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 8px;
}
.btn-submit:hover { background: var(--brown); }
.form-success {
  text-align: center;
  padding: 40px 0;
}
.form-success .check {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
  color: var(--sage);
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 10px;
}
.form-success p {
  font-size: 13px;
  color: var(--brown-mid);
}
