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

:root {
  --navy:        #1a2744;
  --navy-light:  #243352;
  --navy-dark:   #111c30;
  --gold:        #c8a45e;
  --gold-light:  #dbb96e;
  --gold-pale:   #f5e6c4;
  --cream:       #faf6f0;
  --cream-dark:  #f0e8d8;
  --blush:       #f7ece4;
  --sage:        #e8efe6;
  --white:       #ffffff;
  --text-dark:   #1a1a1a;
  --text-mid:    #4a4a4a;
  --text-light:  #7a7a7a;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --shadow-sm:   0 1px 4px rgba(26,39,68,.06);
  --shadow-md:   0 4px 20px rgba(26,39,68,.08);
  --shadow-lg:   0 12px 40px rgba(26,39,68,.12);
  --transition:  .3s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ── Typography ─────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
}

em {
  font-style: italic;
  color: var(--gold);
}

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

/* ── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: .95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,39,68,.25);
}
.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,39,68,.3);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

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

/* ── Nav ────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250,246,240,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,39,68,.06);
  transition: var(--transition);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
}

.nav-logo-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

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

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: .85rem;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--navy-light); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero ───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 60px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--blush) 50%, var(--gold-pale) 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: radial-gradient(circle at 25% 25%, var(--navy) 1px, transparent 1px),
                    radial-gradient(circle at 75% 75%, var(--gold) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  position: relative;
}

.hero-badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(26,39,68,.08);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--navy);
}

.hero-accent {
  color: var(--gold);
  font-style: italic;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.hero-stat-label {
  font-size: .8rem;
  color: var(--text-light);
  letter-spacing: .04em;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(26,39,68,.15);
}

.hero-image-wrap {
  position: relative;
  height: 600px;
}

.hero-image-main {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.hero-image-float {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

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

.hero-image-float--1 {
  width: 160px;
  height: 160px;
  bottom: 40px;
  left: -40px;
  animation: float 6s ease-in-out infinite;
}

.hero-image-float--2 {
  width: 140px;
  height: 140px;
  top: 40px;
  right: -30px;
  animation: float 6s ease-in-out infinite 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

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

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 600px;
}

.about-img-main {
  width: 75%;
  height: 80%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: absolute;
  top: 0;
  left: 0;
}

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

.about-img-side {
  width: 55%;
  height: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: absolute;
  bottom: 0;
  right: 0;
  border: 5px solid var(--white);
}

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

.about-badge {
  position: absolute;
  bottom: 45%;
  right: 10%;
  background: var(--navy);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .85rem;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.about-badge svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
}

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

.about-content > p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 1.02rem;
  line-height: 1.75;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}

.about-feature-icon svg { width: 22px; height: 22px; }

.about-feature strong {
  display: block;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.about-feature p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── Specialties ────────────────────────────────── */
.specialties {
  padding: 120px 24px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 100%);
}

.specialties .section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.specialties .section-header p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.7;
}

.specialty-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.specialty-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.specialty-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.specialty-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.specialty-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.specialty-card:hover .specialty-card-img img {
  transform: scale(1.06);
}

.specialty-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,39,68,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.specialty-card:hover .specialty-card-overlay { opacity: 1; }

.specialty-card-overlay svg {
  width: 40px;
  height: 40px;
  color: var(--white);
}

.specialty-card-body {
  padding: 24px 28px 28px;
}

.specialty-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.specialty-card-body p {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── Gallery ────────────────────────────────────── */
.gallery {
  padding: 120px 24px;
  background: var(--white);
}

.gallery .section-header {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 64px;
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

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

.gallery-item--tall { grid-column: span 4; grid-row: span 2; }
.gallery-item--wide { grid-column: span 6; }

/* ── Visit ──────────────────────────────────────── */
.visit {
  padding: 120px 24px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
}

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

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

.visit .section-label { color: var(--gold-light); }
.visit .section-title { color: var(--white); }
.visit .section-title em { color: var(--gold-light); }

.visit-desc {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 40px;
}

.visit-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.visit-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.visit-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(200,164,94,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-light);
}

.visit-detail-icon svg { width: 22px; height: 22px; }

.visit-detail strong {
  display: block;
  font-size: .95rem;
  color: var(--white);
  margin-bottom: 4px;
}

.visit-detail p,
.visit-detail a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
}

.visit-detail a:hover { color: var(--gold-light); }

.visit-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 460px;
  box-shadow: var(--shadow-lg);
}

/* ── Contact ────────────────────────────────────── */
.contact {
  padding: 120px 24px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--sage) 100%);
}

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

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

.contact-text .section-title em { color: var(--gold); }

.contact-text p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-top: 20px;
}

.contact-form-wrap {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: .85rem;
  font-weight: 500;
  color: var(--navy);
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(26,39,68,.12);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,164,94,.15);
}

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

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--navy);
}

.form-success-icon svg { width: 32px; height: 32px; }

.form-success h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-light);
  font-size: .95rem;
}

/* ── Footer ─────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 80px 24px 32px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.footer-brand p {
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-links strong {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

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

.footer-links a,
.footer-links span {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
  line-height: 1.5;
}

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

.footer-links li { display: flex; justify-content: space-between; gap: 12px; }

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

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

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

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

/* ── Scroll Reveal (progressive enhancement) ───── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .hero-image-wrap { height: 480px; }
  .about-grid { gap: 48px; }
  .specialty-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250,246,240,.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(26,39,68,.08);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-toggle { display: flex; }

  .hero { min-height: auto; padding: 120px 24px 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-image-wrap { height: 400px; order: -1; }
  .hero-image-float--1 { width: 120px; height: 120px; left: -20px; bottom: 20px; }
  .hero-image-float--2 { width: 110px; height: 110px; right: -16px; top: 20px; }
  .hero-stats { gap: 16px; }

  .about { padding: 80px 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 400px; }

  .specialties { padding: 80px 24px; }
  .specialty-grid { grid-template-columns: 1fr; gap: 24px; }

  .gallery { padding: 80px 24px; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
  }
  .gallery-item--tall { grid-column: span 2; grid-row: span 1; }
  .gallery-item--wide { grid-column: span 2; }

  .visit { padding: 80px 24px; }
  .visit-grid { grid-template-columns: 1fr; gap: 40px; }
  .visit-map { min-height: 300px; }

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

  .footer { padding: 60px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-stat-divider { display: none; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item--tall,
  .gallery-item--wide { grid-column: span 1; }
  .gallery-item { height: 220px; }
}
