/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;

  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  --font-sans: 'Inter', system-ui, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--slate-800);
  background: #ffffff;
  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; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

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

/* ── Typography ── */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--slate-900);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--slate-500);
  max-width: 560px;
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal-600);
  color: #fff;
  box-shadow: 0 4px 16px rgba(13,148,136,0.3);
}
.btn-primary:hover {
  background: var(--teal-700);
  box-shadow: 0 6px 24px rgba(13,148,136,0.4);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
}

.btn-full { width: 100%; }

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--slate-200);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.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: 1.15rem;
  font-weight: 500;
  color: var(--slate-900);
}
.logo-mark {
  width: 28px;
  height: 28px;
  background: var(--teal-600);
  border-radius: 50%;
  position: relative;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 50%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.main-nav a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--slate-600);
  transition: color var(--transition);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--teal-600);
  transition: width var(--transition);
}
.main-nav a:hover { color: var(--teal-600); }
.main-nav a:hover::after { width: 100%; }

.nav-cta {
  background: var(--teal-600) !important;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 500 !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--teal-700) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle-line {
  width: 22px;
  height: 1.5px;
  background: var(--slate-700);
  transition: var(--transition);
  transform-origin: center;
}
.nav-toggle.active .nav-toggle-line:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav-toggle.active .nav-toggle-line:nth-child(2) { opacity: 0; }
.nav-toggle.active .nav-toggle-line:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(15,23,42,0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.nav-overlay.open { opacity: 1; pointer-events: all; }
.nav-overlay-inner {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: #fff;
  padding: 100px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform var(--transition);
}
.nav-overlay.open .nav-overlay-inner { transform: translateX(0); }
.nav-overlay-inner a {
  font-size: 1.1rem;
  color: var(--slate-700);
  padding: 12px 0;
  border-bottom: 1px solid var(--slate-100);
  transition: color var(--transition);
}
.nav-overlay-inner a:hover { color: var(--teal-600); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  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;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,23,42,0.82) 0%,
    rgba(13,148,136,0.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  padding: 120px 24px 80px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-200);
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 24px;
}
.hero-accent {
  font-style: italic;
  color: var(--teal-200);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  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;
}
.hero-scroll svg { opacity: 0.5; }

/* ── Intro Strip ── */
.intro-strip {
  background: var(--slate-50);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  padding: 32px 0;
}
.intro-grid {
  display: flex;
  align-items: center;
  gap: 0;
}
.intro-item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}
.intro-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 4px;
}
.intro-value {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--slate-800);
}
.intro-divider {
  width: 1px;
  height: 32px;
  background: var(--slate-200);
  flex-shrink: 0;
}

/* ── Services ── */
.services {
  padding: 120px 0;
  background: #fff;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.service-card {
  padding: 40px 32px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  background: #fff;
}
.service-card:hover {
  border-color: var(--teal-200);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--teal-50);
  color: var(--teal-600);
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--teal-600);
  color: #fff;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--slate-900);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.925rem;
  color: var(--slate-500);
  line-height: 1.7;
}
.services-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--slate-400);
}

/* ── About ── */
.about {
  padding: 120px 0;
  background: var(--slate-50);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about-image-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--teal-200);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.about-content .section-title { margin-bottom: 24px; }
.about-content > p {
  color: var(--slate-600);
  margin-bottom: 16px;
  font-size: 1rem;
}
.about-list {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--slate-700);
}
.about-list-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-500);
  flex-shrink: 0;
  margin-top: 9px;
}

/* ── Gallery ── */
.gallery {
  padding: 120px 0;
  background: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  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.05); }
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(1) img { height: 100%; min-height: 400px; }
.gallery-item:nth-child(3) { grid-row: span 2; }
.gallery-item:nth-child(3) img { height: 100%; min-height: 400px; }
.gallery-item:nth-child(2) img,
.gallery-item:nth-child(4) img,
.gallery-item:nth-child(5) img,
.gallery-item:nth-child(6) img { height: 200px; }
.gallery-item:nth-child(5) img { height: 100%; min-height: 300px; }

/* ── Hours ── */
.hours {
  padding: 120px 0;
  background: var(--slate-800);
}
.hours-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hours .section-eyebrow { color: var(--teal-400); }
.hours .section-title { color: #fff; }
.hours-table {
  margin: 32px 0;
  border-top: 1px solid var(--slate-700);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--slate-700);
}
.hours-day {
  font-weight: 400;
  color: var(--slate-300);
  font-size: 0.95rem;
}
.hours-time {
  color: var(--slate-200);
  font-size: 0.95rem;
}
.hours-closed .hours-day,
.hours-closed .hours-time { color: var(--slate-500); }
.hours-note {
  font-size: 0.825rem;
  color: var(--slate-500);
}
.hours-visual img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ── Contact ── */
.contact {
  padding: 120px 0;
  background: #fff;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--slate-200);
}
.contact-card:first-child { padding-top: 0; }
.contact-card:last-child { border-bottom: none; }
.contact-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--teal-50);
  color: var(--teal-600);
  flex-shrink: 0;
}
.contact-card h4 {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 6px;
}
.contact-card p {
  font-size: 1rem;
  color: var(--slate-800);
  line-height: 1.6;
}
.contact-card a {
  color: var(--teal-600);
  transition: color var(--transition);
}
.contact-card a:hover { color: var(--teal-700); }

.contact-form-wrap {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--slate-800);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(13,148,136,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--slate-300); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  border-radius: var(--radius);
  color: var(--teal-800);
  font-size: 0.925rem;
}

/* ── Map ── */
.map-section { padding: 0; }
.map-container { height: 380px; }

/* ── Footer ── */
.footer {
  background: var(--slate-900);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--slate-800);
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand .logo-mark { background: var(--teal-500); }
.footer-brand p {
  font-size: 0.925rem;
  color: var(--slate-400);
  line-height: 1.7;
  max-width: 280px;
}
.footer-links h4,
.footer-contact h4 {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 0.925rem;
  color: var(--slate-400);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--teal-400); }
.footer-contact p {
  font-size: 0.925rem;
  color: var(--slate-400);
  line-height: 1.8;
  margin-bottom: 4px;
}
.footer-contact a {
  color: var(--slate-400);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--teal-400); }

.footer-bottom {
  padding: 28px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.825rem;
  color: var(--slate-600);
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid,
  .hours-wrapper { gap: 48px; }
  .footer-grid { gap: 40px; }
}

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

  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-content { padding: 100px 24px 80px; }

  .intro-grid { flex-wrap: wrap; gap: 16px; }
  .intro-item { flex: none; width: 50%; }
  .intro-divider { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .services { padding: 80px 0; }

  .about { padding: 80px 0; }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image img { height: 350px; }
  .about-image-accent { display: none; }

  .gallery { padding: 80px 0; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(3) { grid-row: span 1; }
  .gallery-item:nth-child(1) img,
  .gallery-item:nth-child(3) img { height: 250px; min-height: auto; }
  .gallery-item img { height: 200px; }

  .hours { padding: 80px 0; }
  .hours-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .hours-visual img { height: 300px; }

  .contact { padding: 80px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

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

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .intro-item { width: 100%; }
  .gallery-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
