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

:root {
  --midnight: #0a1628;
  --midnight-light: #132238;
  --midnight-mid: #1a2d47;
  --mint: #4ecdc4;
  --mint-light: #7edcd5;
  --mint-pale: #e8f5f4;
  --cream: #faf9f7;
  --cream-warm: #f5f3ef;
  --text-primary: #0a1628;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --line: rgba(10, 22, 40, 0.08);
  --line-strong: rgba(10, 22, 40, 0.15);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text-primary);
  background: var(--cream);
  line-height: 1.7;
  font-size: 15px;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.5s var(--ease-out), backdrop-filter 0.5s var(--ease-out);
}

.nav.scrolled {
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.nav.scrolled .nav-logo {
  color: var(--text-primary);
}

.nav.scrolled .nav-links a {
  color: var(--text-secondary);
}

.nav.scrolled .nav-links a:hover {
  color: var(--text-primary);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.4s;
}

.nav-logo-icon {
  width: 22px;
  height: 22px;
  color: var(--mint);
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--mint);
  transition: width 0.4s var(--ease-out);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #fff;
}

.nav-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #fff;
  transition: color 0.3s;
}

.nav-menu-btn svg {
  width: 22px;
  height: 22px;
}

.nav.scrolled .nav-menu-btn {
  color: var(--text-primary);
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 22, 40, 0.45) 0%,
    rgba(10, 22, 40, 0.35) 50%,
    rgba(10, 22, 40, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 24px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 300;
  color: #fff;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

.hero-scroll svg {
  width: 18px;
  height: 18px;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: #fff;
  color: var(--text-primary);
  border-color: #fff;
}

.btn-dark {
  background: var(--midnight);
  color: #fff;
  border: 1px solid var(--midnight);
}

.btn-dark:hover {
  background: var(--midnight-light);
  border-color: var(--midnight-light);
}

.btn-white {
  background: #fff;
  color: var(--text-primary);
  border: 1px solid #fff;
}

.btn-white:hover {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

/* ── LABELS ── */
.label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint);
  font-weight: 400;
  margin-bottom: 16px;
  display: block;
}

.label.light {
  color: var(--mint-light);
}

/* ── SECTION TITLE ── */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 48px;
}

/* ── INTRO ── */
.intro {
  padding: 140px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-text .label {
  margin-bottom: 20px;
}

.intro-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: var(--text-primary);
}

.intro-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 16px;
}

.intro-image {
  position: relative;
}

.intro-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.intro-image::after {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  right: -24px;
  bottom: -24px;
  border: 1px solid var(--mint);
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: var(--line-strong);
  max-width: 1200px;
  margin: 0 auto;
}

/* ── SPACES ── */
.spaces {
  padding: 120px 0;
}

.spaces .container {
  max-width: 1200px;
}

.spaces .label {
  margin-bottom: 16px;
}

.spaces-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.space-card {
  text-decoration: none;
  color: inherit;
  display: block;
  group: card;
}

.space-card-img {
  overflow: hidden;
  margin-bottom: 20px;
}

.space-card-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}

.space-card:hover .space-card-img img {
  transform: scale(1.04);
}

.space-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.space-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ── EXPERIENCE ── */
.experience {
  padding: 120px 0;
}

.experience-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.experience-text .label {
  margin-bottom: 16px;
}

.experience-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 48px;
  color: var(--text-primary);
}

.experience-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.exp-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.exp-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--mint);
}

.exp-icon svg {
  width: 18px;
  height: 18px;
}

.exp-item h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.exp-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.experience-images {
  position: relative;
}

.experience-images > img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.exp-img-bottom {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 55%;
}

.exp-img-bottom img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  border: 4px solid var(--cream);
}

/* ── SURROUNDINGS ── */
.surroundings {
  padding: 120px 0;
}

.surroundings .container {
  max-width: 1200px;
}

.surroundings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.surround-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.surround-img {
  overflow: hidden;
  margin-bottom: 16px;
}

.surround-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}

.surround-card:hover .surround-img img {
  transform: scale(1.05);
}

.surround-card h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.surround-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── CTA SECTION ── */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 22, 40, 0.88) 0%,
    rgba(10, 22, 40, 0.72) 60%,
    rgba(10, 22, 40, 0.55) 100%
  );
}

.cta-section .container {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.cta-section .label {
  margin-bottom: 20px;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.cta-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.85;
  margin-bottom: 40px;
}

/* ── CONTACT ── */
.contact {
  padding: 120px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info .label {
  margin-bottom: 16px;
}

.contact-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.contact-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-row svg {
  width: 20px;
  height: 20px;
  color: var(--mint);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-row > div span:last-child,
.contact-row a {
  font-size: 0.95rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-row a:hover {
  color: var(--mint);
}

/* ── FORM ── */
.contact-form-wrap {
  background: var(--cream-warm);
  padding: 48px;
  border: 1px solid var(--line);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}

.form-group input,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-primary);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 10px 0;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--mint);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px 20px;
  text-align: center;
}

.form-success svg {
  width: 48px;
  height: 48px;
  color: var(--mint);
}

.form-success p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── FOOTER ── */
.footer {
  background: var(--midnight);
  color: rgba(255, 255, 255, 0.6);
  padding: 64px 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.15rem;
}

.footer-logo {
  width: 20px;
  height: 20px;
  color: var(--mint);
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--mint);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}

.footer-bottom a {
  color: var(--mint);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--mint-light);
}

/* ── MOBILE NAV OVERLAY ── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.nav-overlay.active {
  display: flex;
}

.nav-overlay a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: #fff;
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s;
}

.nav-overlay a:hover {
  color: var(--mint);
}

.nav-overlay-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 8px;
}

.nav-overlay-close svg {
  width: 24px;
  height: 24px;
}

/* ── ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  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; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .intro-grid,
  .experience-layout,
  .contact-layout {
    gap: 48px;
  }

  .surroundings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-menu-btn {
    display: flex;
  }

  .nav-inner {
    height: 64px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 12vw, 4.5rem);
  }

  .intro {
    padding: 80px 0;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .intro-image {
    order: -1;
  }

  .intro-image img {
    height: 360px;
  }

  .intro-image::after {
    display: none;
  }

  .spaces {
    padding: 80px 0;
  }

  .spaces-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .experience {
    padding: 80px 0;
  }

  .experience-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .experience-images {
    order: -1;
  }

  .experience-images > img {
    height: 320px;
  }

  .exp-img-bottom {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 16px;
    width: 100%;
  }

  .exp-img-bottom img {
    border: none;
    height: 200px;
  }

  .surroundings {
    padding: 80px 0;
  }

  .surroundings-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .surround-img img {
    height: 240px;
  }

  .cta-section {
    padding: 80px 0;
  }

  .contact {
    padding: 80px 0;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form-wrap {
    padding: 32px 24px;
  }

  .footer-top {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }

  .hero-scroll {
    bottom: 28px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.75rem;
  }
}
