/* ── 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, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #1a1a2e;
  background: #fff;
  overflow-x: hidden;
}
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; }

/* ── Custom Properties ────────────────────────────── */
:root {
  --burgundy:    #7B2D3B;
  --burgundy-dk: #5C1F2B;
  --burgundy-lt: #9E3D4E;
  --blush:       #F5E6E0;
  --blush-lt:    #FBF5F2;
  --cream:       #FDF8F6;
  --navy:        #1a1a2e;
  --gray-100:    #f7f7f8;
  --gray-200:    #e8e8ec;
  --gray-400:    #9494a8;
  --gray-600:    #5a5a72;
  --white:       #ffffff;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 3px rgba(26,26,46,.06), 0 1px 2px rgba(26,26,46,.04);
  --shadow-md:   0 4px 16px rgba(26,26,46,.08), 0 2px 4px rgba(26,26,46,.04);
  --shadow-lg:   0 12px 40px rgba(26,26,46,.12), 0 4px 10px rgba(26,26,46,.06);
  --transition:  .3s cubic-bezier(.4,0,.2,1);
}

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

/* ── Typography ───────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; font-weight: 700; }

.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-sub { margin: 0 auto; }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--burgundy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(123,45,59,.35);
}
.btn-primary:hover {
  background: var(--burgundy-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123,45,59,.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn-full { width: 100%; justify-content: center; }

/* ── Header ───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  flex-shrink: 0;
}
.logo-icon { color: var(--burgundy); flex-shrink: 0; }
.logo-line1 { display: block; font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gray-600); }
.logo-line2 { display: block; font-size: 1.1rem; font-weight: 700; }
.amp { color: var(--burgundy); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--burgundy); background: var(--blush-lt); }
.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--burgundy);
  color: var(--white) !important;
  font-weight: 600;
  margin-left: 8px;
}
.btn-nav:hover { background: var(--burgundy-dk); color: var(--white) !important; }

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

/* ── Hero ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(123,45,59,.55) 0%, transparent 70%),
    linear-gradient(180deg, rgba(26,26,46,.4) 0%, rgba(123,45,59,.65) 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,46,.2) 0%, rgba(123,45,59,.3) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 40px 20px;
}
.hero-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero-headline .accent {
  color: var(--blush);
  font-style: italic;
  font-weight: 600;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
}
.hero-trust svg { color: var(--blush); flex-shrink: 0; }

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,.6);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Trust Bar ────────────────────────────────────── */
.trust-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--gray-200);
  padding: 40px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.trust-item svg { color: var(--burgundy); flex-shrink: 0; margin-top: 2px; }
.trust-item strong { display: block; font-size: .9rem; color: var(--navy); margin-bottom: 2px; }
.trust-item span { font-size: .82rem; color: var(--gray-600); line-height: 1.4; }

/* ── Sections ─────────────────────────────────────── */
.section { padding: 100px 0; }
.section:nth-child(even) { background: var(--cream); }

/* ── Selection Grid ───────────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-img {
  height: 220px;
  overflow: hidden;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 24px; }
.card-body h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.card-body p { font-size: .92rem; color: var(--gray-600); line-height: 1.6; }

/* ── About ────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-float {
  position: absolute;
  bottom: -32px;
  right: -24px;
  width: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-title { margin-top: 4px; }
.about-content p { color: var(--gray-600); margin-bottom: 16px; line-height: 1.75; }
.about-list { margin-top: 24px; display: grid; gap: 12px; }
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  color: var(--navy);
  font-weight: 500;
}
.about-list svg { color: var(--burgundy); flex-shrink: 0; }

/* ── Visit ────────────────────────────────────────── */
.visit { background: var(--cream); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.visit-info { padding: 20px 0; }
.visit-desc { font-size: 1.05rem; color: var(--gray-600); margin-bottom: 32px; line-height: 1.7; }
.info-list { display: grid; gap: 24px; }
.info-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
}
.info-row dt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
}
.info-row dt svg { color: var(--burgundy); }
.info-row dd a,
.info-row dd span {
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.6;
}
.info-row dd a:hover { color: var(--burgundy); }
.visit-map { min-height: 400px; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }

/* ── Contact ──────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-left .section-title { margin-top: 4px; }
.contact-desc { color: var(--gray-600); margin-bottom: 28px; line-height: 1.7; }
.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--burgundy);
  transition: var(--transition);
}
.contact-phone:hover { color: var(--burgundy-dk); }
.contact-phone svg { color: var(--burgundy); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--navy);
  background: var(--gray-100);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(123,45,59,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-note { font-size: .82rem; color: var(--gray-400); margin-top: 12px; text-align: center; }
.form-success {
  text-align: center;
  padding: 48px 36px;
}
.form-success svg { margin: 0 auto 16px; }
.form-success h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 8px; }
.form-success p { color: var(--gray-600); }

/* ── Footer ───────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-tagline { font-size: .9rem; line-height: 1.7; max-width: 300px; }
.footer-links h4,
.footer-contact h4 {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
}
.footer-links ul { display: grid; gap: 10px; }
.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--blush); }
.footer-contact address { font-size: .9rem; line-height: 1.8; }
.footer-contact a { color: rgba(255,255,255,.7); transition: var(--transition); }
.footer-contact a:hover { color: var(--blush); }

.footer-bottom { padding: 24px 0; }
.footer-bottom-inner {
  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-legal { font-size: .78rem; }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 32px 24px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform var(--transition);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; padding: 12px 16px; width: 100%; }
  .btn-nav { margin-left: 0; justify-content: center; }
  .nav-toggle { display: flex; }

  .hero { min-height: 100svh; padding: 100px 20px 60px; }
  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-trust { gap: 16px; }

  .trust-grid { grid-template-columns: 1fr; gap: 20px; }
  .trust-item { gap: 12px; }

  .section { padding: 72px 0; }
  .section-header { margin-bottom: 40px; }

  .grid-3 { grid-template-columns: 1fr; gap: 20px; }

  .about-grid,
  .visit-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-float { width: 60%; right: -12px; bottom: -20px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }

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

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-headline { font-size: 2rem; }
  .section-title { font-size: 1.75rem; }
}

/* ── Scroll Animations ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
