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

:root {
  --teal:        #0d9488;
  --teal-dark:   #0f766e;
  --teal-light:  #99f6e4;
  --slate:       #1e293b;
  --slate-mid:   #334155;
  --slate-light: #64748b;
  --cream:       #f8fafc;
  --cream-dark:  #f1f5f9;
  --white:       #ffffff;
  --font-serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;
  --max-w:       1280px;
  --radius:      8px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-sans);
  color: var(--slate);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }
ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--slate);
  margin-bottom: 24px;
}

.section-heading em {
  font-style: italic;
  color: var(--teal);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn--primary {
  background: var(--teal);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--slate);
  border: 1.5px solid var(--slate);
}
.btn--ghost:hover {
  background: var(--slate);
  color: var(--white);
}

.btn--nav {
  background: var(--teal);
  color: var(--white);
  padding: 10px 24px;
  font-size: 0.8125rem;
}
.btn--nav:hover { background: var(--teal-dark); }

.btn--full { width: 100%; }

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30, 41, 59, 0.08);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(248, 250, 252, 0.95);
  box-shadow: 0 2px 20px rgba(30, 41, 59, 0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--teal);
  border-radius: 50%;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: -0.01em;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate-mid);
  transition: var(--transition);
  position: relative;
}

.main-nav a:not(.btn):hover { color: var(--teal); }

.main-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--teal);
  transition: var(--transition);
}

.main-nav a:not(.btn):hover::after { width: 100%; }

/* ─── MOBILE NAV ─── */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-toggle:hover { background: var(--cream-dark); }

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--slate);
  border-radius: 2px;
  transition: var(--transition);
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

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

.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); }

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

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    padding: 40px 24px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
  }

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

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .main-nav a {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--slate);
  }

  .main-nav .btn--nav {
    font-size: 1rem;
    padding: 12px 28px;
  }
}

/* ─── HERO ─── */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(13, 148, 136, 0.06) 0%, transparent 60%),
    var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 40px;
  flex: 1;
}

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

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--slate);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-headline em {
  font-style: italic;
  color: var(--teal);
}

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--slate-light);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  padding-left: 40px;
}

.hero-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(30, 41, 59, 0.15);
}

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

.hero-img-secondary {
  position: absolute;
  bottom: -32px;
  left: -48px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(30, 41, 59, 0.18);
  border: 4px solid var(--cream);
}

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

/* Marquee */
.hero-marquee {
  overflow: hidden;
  background: var(--slate);
  padding: 16px 0;
  white-space: nowrap;
}

.hero-marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 30s linear infinite;
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-image {
    order: -1;
    padding-left: 0;
    max-width: 500px;
    margin: 0 auto;
  }
  .hero-img-secondary { left: -16px; }
  .hero-headline { font-size: clamp(2.5rem, 8vw, 4rem); }
}

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

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

.about-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(30, 41, 59, 0.12);
}

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

.about-copy p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--slate-light);
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--cream-dark);
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--slate-light);
  font-weight: 500;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about { padding: 80px 0; }
  .about-stats { gap: 24px; }
}

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

.offerings-header {
  max-width: 560px;
  margin-bottom: 64px;
}

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

.offering-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.offering-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(30, 41, 59, 0.1);
  border-color: var(--teal-light);
}

.offering-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(13, 148, 136, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--teal);
}

.offering-icon svg {
  width: 28px;
  height: 28px;
}

.offering-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--slate);
  margin-bottom: 12px;
}

.offering-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--slate-light);
}

@media (max-width: 1000px) {
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .offerings-grid { grid-template-columns: 1fr; }
  .offerings { padding: 80px 0; }
}

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

.gallery .section-heading { margin-bottom: 48px; }

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

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
}

.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--tall  { grid-column: span 4; grid-row: span 2; }
.gallery-item--wide  { grid-column: span 8; }

@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--tall,
  .gallery-item--wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery-item { height: 240px; }
  .gallery-item--tall { height: 320px; }
  .gallery { padding: 80px 0 60px; }
}

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

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

.visit .section-eyebrow { color: var(--teal-light); }
.visit .section-heading { color: var(--white); }

.visit-address {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.visit-details {
  margin-bottom: 40px;
}

.visit-details li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.visit-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-light);
  min-width: 60px;
}

.visit-details a {
  color: var(--white);
  transition: var(--transition);
}

.visit-details a:hover { color: var(--teal-light); }

.visit-hours { margin-top: 32px; }

.visit-hours li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9375rem;
}

.visit-hours li span:first-child {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.visit-hours li span:last-child {
  color: var(--white);
  font-weight: 600;
}

.visit-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
  min-height: 400px;
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

@media (max-width: 900px) {
  .visit-grid { grid-template-columns: 1fr; gap: 48px; }
  .visit { padding: 80px 0; }
}

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

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

.contact-copy p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--slate-light);
  margin-top: 16px;
}

.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 16px 48px rgba(30, 41, 59, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate-mid);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--slate);
  background: var(--cream);
  transition: var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

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

.form-success {
  margin-top: 16px;
  padding: 16px 20px;
  background: rgba(13, 148, 136, 0.1);
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: var(--radius);
  color: var(--teal-dark);
  font-size: 0.9375rem;
  font-weight: 500;
}

@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .contact { padding: 80px 0; }
}

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

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-brand .logo-mark {
  width: 48px;
  height: 48px;
  font-size: 1.75rem;
}

.footer-brand .logo-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

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

.footer-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-nav a:hover { color: var(--teal-light); }

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  text-align: center;
}

@media (max-width: 500px) {
  .footer-nav ul { gap: 16px; }
}
