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

:root {
  --midnight: #0a1628;
  --midnight-light: #132744;
  --midnight-mid: #1a3a5c;
  --mint: #98d4c8;
  --mint-light: #b8e6dc;
  --mint-pale: #e0f5f0;
  --cream: #faf9f7;
  --warm-white: #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, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text-primary);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  -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 24px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--midnight);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius);
  z-index: 200;
  font-size: 14px;
}
.skip-link:focus {
  top: 16px;
}

/* ─── HEADER ─── */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 249, 247, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--transition);
}

#site-header.scrolled {
  box-shadow: 0 1px 20px rgba(10, 22, 40, 0.06);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--midnight);
  letter-spacing: -0.01em;
}

.logo-icon {
  color: var(--midnight);
}

#primary-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

#primary-nav a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
  transition: color var(--transition);
  position: relative;
}

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

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

#primary-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--midnight);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background var(--transition), transform var(--transition) !important;
}

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

.nav-cta:hover {
  background: var(--midnight-light);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--midnight);
}

.hamburger {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 1px;
  background: currentColor;
  left: 0;
  transition: var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--midnight);
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #1a5276, transparent 70%);
  top: -10%;
  left: -5%;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(152, 212, 200, 0.4), transparent 70%);
  bottom: -10%;
  right: -5%;
  animation-delay: -7s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(152, 212, 200, 0.25), transparent 70%);
  top: 30%;
  right: 20%;
  animation-delay: -14s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 7vw, 82px);
  font-weight: 300;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.15s forwards;
}

.hero-title .accent {
  color: var(--mint);
  font-style: italic;
  font-weight: 300;
}

.hero-desc {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.45s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--mint-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(152, 212, 200, 0.3);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

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

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--mint);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeUp 0.8s ease 0.8s forwards;
  opacity: 0;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ─── SECTION COMMON ─── */
.section-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-title .accent {
  font-style: italic;
  color: var(--midnight-mid);
}

.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7;
  font-weight: 300;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ─── ABOUT ─── */
.about {
  padding: 120px 0;
  background: var(--cream);
}

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

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

.about-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-image-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--mint);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-content {
  max-width: 480px;
}

.about-content p {
  color: var(--text-secondary);
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.8;
}

.about-signature {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.about-seal {
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.85;
}

.signature-text {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--text-muted);
}

/* ─── OFFERINGS ─── */
.offerings {
  padding: 120px 0;
  background: var(--warm-white);
}

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

.offering-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.offering-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--mint), var(--mint-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.offering-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.08);
  border-color: transparent;
}

.offering-card:hover::before {
  opacity: 1;
}

.offering-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--mint-pale);
  color: var(--midnight);
  margin-bottom: 24px;
  transition: all var(--transition);
}

.offering-card:hover .offering-icon {
  background: var(--midnight);
  color: var(--mint);
}

.offering-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.offering-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.offering-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--midnight);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.offering-link:hover {
  gap: 10px;
  color: var(--midnight-mid);
}

/* ─── GALLERY ─── */
.gallery {
  padding: 120px 0;
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item--wide {
  grid-column: span 7;
}

.gallery-item:not(.gallery-item--wide) {
  grid-column: span 5;
}

.gallery-item:nth-child(2) { grid-column: 7 / span 5; }
.gallery-item:nth-child(3) { grid-column: 1 / span 5; }
.gallery-item:nth-child(4) { grid-column: 1 / span 5; }
.gallery-item:nth-child(5) { grid-column: span 7; }

/* ─── VISIT ─── */
.visit {
  padding: 120px 0;
  background: var(--midnight);
  color: #fff;
}

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

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

.visit .section-title {
  color: #fff;
}

.visit-details {
  font-style: normal;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.visit-address,
.visit-phone,
.visit-email {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
}

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

.visit-address a,
.visit-phone a,
.visit-email a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition);
  line-height: 1.6;
}

.visit-address a:hover,
.visit-phone a:hover,
.visit-email a:hover {
  color: var(--mint);
}

.visit-hours {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.visit-hours h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #fff;
}

.visit-hours ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.visit-hours li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 15px;
}

.visit-hours .day {
  color: rgba(255, 255, 255, 0.6);
}

.visit-hours .time {
  color: var(--mint);
  font-weight: 400;
}

.hours-note {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
}

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 480px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ─── CONTACT ─── */
.contact {
  padding: 120px 0;
  background: var(--cream);
}

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

.contact-text p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-direct-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.contact-direct-item:hover {
  color: var(--midnight);
}

.contact-direct-item svg {
  color: var(--mint);
}

/* ─── FORM ─── */
.contact-form {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.optional {
  font-weight: 300;
  text-transform: none;
  color: var(--text-muted);
  font-size: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-primary);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(152, 212, 200, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: var(--mint-pale);
  border-radius: var(--radius);
  color: var(--midnight);
  font-size: 14px;
  font-weight: 500;
}

.form-success svg {
  color: var(--mint);
  flex-shrink: 0;
}

/* ─── FOOTER ─── */
#footer {
  background: var(--midnight);
  color: rgba(255, 255, 255, 0.5);
  padding: 64px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand .logo-icon {
  color: var(--mint);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

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

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

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

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .about-grid,
  .visit-grid,
  .contact-inner {
    gap: 48px;
  }

  .gallery-item--wide {
    grid-column: span 8;
  }

  .gallery-item:not(.gallery-item--wide) {
    grid-column: span 4;
  }

  .gallery-item:nth-child(2) { grid-column: 4 / span 8; }
  .gallery-item:nth-child(3) { grid-column: 1 / span 4; }
  .gallery-item:nth-child(4) { grid-column: 9 / span 4; }
  .gallery-item:nth-child(5) { grid-column: span 8; }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    z-index: 110;
  }

  #primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background: var(--cream);
    padding: 100px 32px 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }

  #primary-nav.open {
    transform: translateX(0);
  }

  #primary-nav ul {
    flex-direction: column;
    gap: 0;
    align-items: start;
  }

  #primary-nav li {
    width: 100%;
  }

  #primary-nav a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
    width: 100%;
  }

  #primary-nav a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 16px;
    text-align: center;
    display: block;
    border-bottom: none !important;
  }

  .hero {
    min-height: 100svh;
    padding: 100px 20px 60px;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-number {
    font-size: 26px;
  }

  .about-grid,
  .visit-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-wrap {
    order: -1;
  }

  .about-image-wrap img {
    height: 360px;
  }

  .about-image-accent {
    display: none;
  }

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

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

  .gallery-item--wide,
  .gallery-item:not(.gallery-item--wide) {
    grid-column: span 1;
  }

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) {
    grid-column: span 1;
  }

  .gallery-item img {
    height: 220px;
  }

  .visit-map {
    min-height: 300px;
  }

  .contact-form {
    padding: 28px;
  }

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

  .section-header {
    margin-bottom: 48px;
  }

  .about,
  .offerings,
  .gallery,
  .visit,
  .contact {
    padding: 80px 0;
  }
}

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

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

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

  .footer-links ul {
    flex-direction: column;
    gap: 14px;
  }
}
