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

:root {
  --midnight: #0a2540;
  --midnight-light: #133a5c;
  --mint: #7dd3c0;
  --mint-light: #a8e6d8;
  --mint-pale: #e8f5f1;
  --cream: #fafbfb;
  --white: #ffffff;
  --text: #1a1a1a;
  --text-light: #4a5568;
  --text-muted: #718096;
  --line: #e2e8f0;
  --line-light: #f0f4f6;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 251, 251, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--midnight);
  letter-spacing: -0.01em;
}

.logo-icon {
  color: var(--mint);
  flex-shrink: 0;
}

.logo-accent {
  color: var(--mint);
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  list-style: none;
}

.nav a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.3s var(--ease);
  position: relative;
}

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

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

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

.nav-cta {
  color: var(--midnight) !important;
  border: 1px solid var(--midnight);
  padding: 0.5rem 1.2rem;
  transition: background 0.3s var(--ease), color 0.3s var(--ease) !important;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--midnight);
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--midnight);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Mobile Nav ── */
.mobile-nav {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(250, 251, 251, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--midnight);
  transition: color 0.3s var(--ease);
}

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

/* ── Hero ── */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--midnight);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-headline br {
  display: none;
}

.hero-sub {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-light);
  max-width: 460px;
  margin-bottom: 2.4rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-details {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hero-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.detail-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.detail-value {
  font-size: 0.9375rem;
  color: var(--midnight);
  font-weight: 400;
}

.hero-detail-divider {
  width: 1px;
  height: 32px;
  background: var(--line);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.btn-primary {
  background: var(--midnight);
  color: var(--white);
  border-color: var(--midnight);
}

.btn-primary:hover {
  background: var(--midnight-light);
  border-color: var(--midnight-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(10, 37, 64, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--midnight);
  border-color: var(--midnight);
}

.btn-ghost:hover {
  background: var(--midnight);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

.hero-image {
  position: relative;
}

.hero-img-wrapper {
  position: relative;
  overflow: hidden;
}

.hero-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.hero-img-wrapper:hover img {
  transform: scale(1.02);
}

.hero-accent-bar {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--mint);
  z-index: -1;
  opacity: 0.5;
}

/* ── Divider ── */
.section-divider {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}

.divider-icon {
  color: var(--mint);
  opacity: 0.6;
}

/* ── Section shared ── */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--midnight);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 520px;
  line-height: 1.75;
}

.lead-paragraph {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.centered {
  text-align: center;
}

/* ── About ── */
.about {
  padding: 8rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-col {
  position: relative;
}

.about-img-main {
  overflow: hidden;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 50%;
  overflow: hidden;
  border: 6px solid var(--cream);
}

.about-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content .section-heading {
  margin-top: 0.5rem;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--midnight);
  font-weight: 400;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--line);
}

/* ── Offerings ── */
.offerings {
  padding: 6rem 0 8rem;
  background: var(--white);
}

.section-header {
  margin-bottom: 4rem;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.offering-card {
  group: offering;
  cursor: default;
}

.offering-img {
  overflow: hidden;
  margin-bottom: 1.25rem;
  aspect-ratio: 4/3;
}

.offering-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

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

.offering-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--midnight);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.offering-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 400px;
}

/* ── Philosophy ── */
.philosophy {
  padding: 8rem 0;
  background: var(--midnight);
  color: var(--white);
}

.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.philosophy .section-eyebrow {
  color: var(--mint);
}

.philosophy .section-heading {
  color: var(--white);
}

.philosophy .lead-paragraph {
  color: rgba(255, 255, 255, 0.7);
}

.philosophy p:last-child {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
}

.philosophy-image {
  overflow: hidden;
}

.philosophy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Visit ── */
.visit {
  padding: 8rem 0;
  background: var(--cream);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.visit-content .section-heading {
  margin-top: 0.5rem;
}

.visit-info {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.visit-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.visit-info-item svg {
  color: var(--mint);
  flex-shrink: 0;
  margin-top: 2px;
}

.visit-info-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.visit-info-value {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.6;
}

.visit-info-link {
  font-size: 0.9375rem;
  color: var(--midnight);
  border-bottom: 1px solid var(--line);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.visit-info-link:hover {
  border-bottom-color: var(--mint);
  color: var(--midnight-light);
}

.visit-img {
  overflow: hidden;
}

.visit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Contact ── */
.contact {
  padding: 6rem 0 8rem;
  background: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-text .section-heading {
  margin-top: 0.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 0.875rem 1rem;
  outline: none;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(125, 211, 192, 0.15);
}

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

.form-success {
  display: none;
  padding: 1rem 1.25rem;
  background: var(--mint-pale);
  border: 1px solid var(--mint);
  color: var(--midnight);
  font-size: 0.9375rem;
  text-align: center;
}

.form-success.show {
  display: block;
}

/* ── Footer ── */
.footer {
  padding: 4rem 0 2rem;
  background: var(--midnight);
  color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-logo {
  color: var(--white);
}

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  max-width: 300px;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s var(--ease);
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-contact p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact a {
  transition: color 0.3s var(--ease);
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ── Scroll animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .philosophy-inner,
  .visit-grid,
  .contact-inner {
    gap: 2.5rem;
  }

  .about-img-float {
    right: -20px;
    bottom: -20px;
  }
}

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

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 4rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-headline br {
    display: block;
  }

  .hero-image {
    order: -1;
  }

  .hero-img-wrapper {
    aspect-ratio: 4/3;
  }

  .hero-accent-bar {
    display: none;
  }

  .about {
    padding: 5rem 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-img-float {
    width: 45%;
    right: 0;
    bottom: -30px;
  }

  .offerings {
    padding: 4rem 0 6rem;
  }

  .offerings-grid {
    grid-template-columns: 1fr;
  }

  .philosophy {
    padding: 5rem 0;
  }

  .philosophy-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .philosophy-image {
    order: -1;
  }

  .visit {
    padding: 5rem 0;
  }

  .visit-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .visit-img {
    aspect-ratio: 4/3;
  }

  .contact {
    padding: 4rem 0 5rem;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-links {
    gap: 1.25rem;
  }
}

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

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .hero-detail-divider {
    width: 40px;
    height: 1px;
  }

  .about-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }
}
