/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  color: #0d1b2a;
  background: #fafbfb;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ── Tokens ───────────────────────────────────────── */
:root {
  --blue: #0d1b2a;
  --blue-mid: #1b3a54;
  --mint: #a8e6cf;
  --mint-dark: #7ccfb0;
  --offwhite: #f4f7f6;
  --white: #ffffff;
  --gray: #6b7f8e;
  --line: rgba(13,27,42,.08);
  --line-strong: rgba(13,27,42,.15);
  --radius: 6px;
  --container: 1200px;
  --gutter: 24px;
}
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--blue); color: var(--mint); padding: 8px 16px; z-index: 100; font-size: 14px; }
.skip-link:focus { left: 16px; }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 500; font-size: 14px; letter-spacing: .04em;
  padding: 12px 28px; border-radius: var(--radius);
  transition: background .2s, color .2s, transform .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--mint { background: var(--mint); color: var(--blue); }
.btn--mint:hover { background: var(--mint-dark); }
.btn--ghost { color: var(--white); border: 1px solid rgba(255,255,255,.35); }
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
.btn--outline { color: var(--blue); border: 1px solid var(--line-strong); padding: 10px 24px; }
.btn--outline:hover { border-color: var(--blue); background: rgba(13,27,42,.04); }
.btn--full { width: 100%; justify-content: center; padding: 14px 28px; }
.btn--lg { padding: 16px 36px; font-size: 15px; }

/* ── Section labels ───────────────────────────────── */
.section-label {
  font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500; font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15; color: var(--blue); margin-bottom: 48px;
}

/* ── Header ───────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(250,251,251,.85); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 1px 16px rgba(13,27,42,.07); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 500; font-size: 15px; color: var(--blue); letter-spacing: .02em; }
.logo-icon { color: var(--mint-dark); }
.nav-list { display: flex; align-items: center; gap: 32px; }
.nav-list a { font-size: 13px; font-weight: 400; letter-spacing: .06em; color: var(--gray); transition: color .2s; }
.nav-list a:hover { color: var(--blue); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 20px; height: 1.5px; background: var(--blue); transition: transform .25s, opacity .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,27,42,.78) 0%, rgba(13,27,42,.45) 60%, transparent 100%); }
.hero-content { position: relative; z-index: 1; max-width: 680px; padding-top: 64px; }
.hero-eyebrow {
  font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: var(--mint); margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500; font-size: clamp(38px, 6vw, 72px);
  line-height: 1.08; color: var(--white); margin-bottom: 24px;
}
.hero-headline br { display: none; }
.hero-sub { font-size: 17px; color: rgba(255,255,255,.72); line-height: 1.7; max-width: 480px; margin-bottom: 40px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.hero-scroll span { display: block; width: 1px; background: rgba(255,255,255,.35); }
.hero-scroll span:nth-child(1) { height: 20px; animation: scroll-line 1.8s ease-in-out infinite; }
.hero-scroll span:nth-child(2) { height: 32px; animation: scroll-line 1.8s ease-in-out .2s infinite; }
.hero-scroll span:nth-child(3) { height: 16px; animation: scroll-line 1.8s ease-in-out .4s infinite; }
@keyframes scroll-line { 0%,100%{opacity:.3;transform:scaleY(.6)} 50%{opacity:1;transform:scaleY(1)} }

/* ── Services ─────────────────────────────────────── */
.services { padding: 120px 0; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  background: var(--white); padding: 40px 32px;
  transition: background .25s; position: relative;
}
.service-card:hover { background: var(--offwhite); }
.service-num { font-size: 11px; font-weight: 500; letter-spacing: .12em; color: var(--mint-dark); display: block; margin-bottom: 16px; }
.service-card h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 500; font-size: 20px; color: var(--blue); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.service-tag {
  display: inline-block; font-size: 11px; font-weight: 500; letter-spacing: .08em;
  color: var(--blue); border: 1px solid var(--line-strong); padding: 4px 10px; border-radius: 20px;
}

/* ── About ────────────────────────────────────────── */
.about { padding: 120px 0; background: var(--offwhite); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; border-radius: var(--radius); }
.about-accent {
  position: absolute; bottom: -24px; right: -24px;
  width: 160px; height: 160px; background: var(--mint);
  border-radius: var(--radius); z-index: -1;
}
.about-content .section-title { margin-bottom: 24px; }
.about-content p { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.about-stats {
  display: flex; align-items: center; gap: 24px;
  margin: 40px 0; padding: 32px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stat-num { display: block; font-family: 'Playfair Display', Georgia, serif; font-size: 32px; font-weight: 500; color: var(--blue); line-height: 1; }
.stat-label { font-size: 12px; color: var(--gray); margin-top: 6px; line-height: 1.4; }
.stat-divider { width: 1px; height: 40px; background: var(--line-strong); flex-shrink: 0; }

/* ── Gallery ──────────────────────────────────────── */
.gallery { padding: 120px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}
.gallery-item { overflow: hidden; border-radius: var(--radius); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:nth-child(1) { grid-column: 1 / 6; grid-row: 1 / 2; }
.gallery-item:nth-child(2) { grid-column: 6 / 9; grid-row: 1 / 2; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1 / 2; }
.gallery-item:nth-child(4) { grid-column: 1 / 5; grid-row: 2 / 3; }
.gallery-item:nth-child(5) { grid-column: 5 / 13; grid-row: 2 / 3; }

/* ── Visit ────────────────────────────────────────── */
.visit { padding: 120px 0; background: var(--blue); color: var(--white); }
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.visit .section-label { color: var(--mint); }
.visit .section-title { color: var(--white); margin-bottom: 40px; }
.visit-address a {
  display: inline-flex; align-items: flex-start; gap: 12px;
  font-size: 16px; line-height: 1.8; color: rgba(255,255,255,.75);
  border-bottom: 1px solid rgba(255,255,255,.15); padding-bottom: 4px;
  transition: color .2s, border-color .2s;
}
.visit-address a:hover { color: var(--white); border-color: rgba(255,255,255,.4); }
.visit-address svg { flex-shrink: 0; margin-top: 4px; color: var(--mint); }
.visit-phone { margin-top: 20px; }
.visit-phone a {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 400; color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.2); padding-bottom: 4px;
  transition: color .2s, border-color .2s;
}
.visit-phone a:hover { color: var(--mint); border-color: var(--mint); }
.visit-phone svg { color: var(--mint-dark); }
.visit-hours { margin-top: 40px; }
.visit-hours h3 { font-size: 13px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--mint); margin-bottom: 16px; }
.visit-hours ul li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 14px; color: rgba(255,255,255,.65); }
.visit-hours ul li span:last-child { color: rgba(255,255,255,.9); font-weight: 400; }

/* Form */
.visit-form-wrap {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 40px;
}
.visit-form-wrap h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 24px; font-weight: 500; margin-bottom: 8px; }
.form-note { font-size: 14px; color: rgba(255,255,255,.5); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 8px; }
.form-group input, .form-group textarea {
  width: 100%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 12px 14px; color: var(--white);
  font-family: inherit; font-size: 14px; line-height: 1.6;
  transition: border-color .2s, background .2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,.25); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--mint); background: rgba(255,255,255,.09); }
.form-success { margin-top: 16px; font-size: 14px; color: var(--mint); text-align: center; }

/* ── Footer ───────────────────────────────────────── */
.site-footer { padding: 48px 0; background: #091420; border-top: 1px solid rgba(255,255,255,.05); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.logo-footer { font-family: 'Playfair Display', Georgia, serif; font-weight: 500; font-size: 18px; color: var(--white); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.35); margin-top: 4px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.45); transition: color .2s; }
.footer-links a:hover { color: var(--mint); }
.footer-copy { width: 100%; font-size: 12px; color: rgba(255,255,255,.2); margin-top: 16px; }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 48px; }
  .visit-grid { gap: 48px; }
}
@media (max-width: 768px) {
  :root { --gutter: 20px; }
  .nav-toggle { display: flex; }
  .nav-list {
    position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: rgba(250,251,251,.97); backdrop-filter: blur(12px);
    flex-direction: column; justify-content: center; gap: 28px;
    transform: translateX(100%); transition: transform .35s ease;
  }
  .nav-list.open { transform: translateX(0); }
  .nav-list a { font-size: 18px; color: var(--blue); }
  .hero-headline br { display: block; }
  .hero-content { padding-top: 80px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { order: -1; }
  .about-accent { display: none; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
  }
  .gallery-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
  .gallery-item:nth-child(2) { grid-column: 1 / 2; grid-row: 2; }
  .gallery-item:nth-child(3) { grid-column: 2 / 3; grid-row: 2; }
  .gallery-item:nth-child(4) { grid-column: 1 / 2; grid-row: 3; }
  .gallery-item:nth-child(5) { grid-column: 2 / 3; grid-row: 3; }
  .visit-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .about-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-divider { display: none; }
}
