/* ========== 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: 400;
  line-height: 1.7;
  color: #1e3a5f;
  background: #fdfcfa;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.25; }

/* ========== CUSTOM PROPERTIES ========== */
:root {
  --navy: #1e3a5f;
  --navy-deep: #142942;
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --gold-pale: #faf3d8;
  --cream: #fdfcfa;
  --blush: #f7f0eb;
  --sage: #e8efea;
  --lavender: #f2f0f7;
  --text: #1e3a5f;
  --text-muted: #5a7a9a;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(30,58,95,.06);
  --shadow-md: 0 8px 32px rgba(30,58,95,.09);
  --shadow-lg: 0 16px 48px rgba(30,58,95,.12);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ========== UTILITY ========== */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: .938rem;
  padding: 12px 28px; border-radius: 50px; border: 2px solid transparent;
  cursor: pointer; transition: var(--transition); white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-deep); border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201,168,76,.3);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.4); }
.btn-outline-light {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.6);
}
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ========== HEADER / NAV ========== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253,252,250,.88);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(30,58,95,.06);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-weight: 600; font-size: 1rem; color: var(--navy); }
.logo-icon { width: 32px; height: 32px; color: var(--gold); }
.logo-text { max-width: 200px; line-height: 1.2; }
#main-nav ul { display: flex; align-items: center; gap: 8px; }
#main-nav a { font-size: .9rem; font-weight: 500; color: var(--text-muted); padding: 8px 14px; border-radius: 8px; transition: var(--transition); }
#main-nav a:hover { color: var(--navy); background: var(--blush); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 40px; height: 40px; position: relative; }
.hamburger, .hamburger::before, .hamburger::after { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.hamburger { position: relative; }
.hamburger::before, .hamburger::after { content: ''; position: absolute; left: 0; }
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.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); }

/* ========== HERO ========== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.pexels.com/photos/11211050/pexels-photo-11211050.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1280') center/cover no-repeat;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(20,41,66,.82) 0%, rgba(30,58,95,.65) 50%, rgba(201,168,76,.25) 100%);
}
.hero-content {
  position: relative; z-index: 2; padding: 120px 0 100px; max-width: 720px;
}
.hero-eyebrow {
  font-size: .85rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.5rem); color: var(--white);
  margin-bottom: 24px; font-weight: 700;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,.8);
  max-width: 540px; margin-bottom: 40px; line-height: 1.8;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 40px; border: 2px solid rgba(255,255,255,.4); border-radius: 12px;
}
.hero-scroll span {
  display: block; width: 4px; height: 8px; background: var(--gold-light);
  border-radius: 2px; margin: 6px auto 0; animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100%{transform:translateY(0);opacity:1} 50%{transform:translateY(8px);opacity:.4} }

/* ========== SECTIONS ========== */
section { padding: 100px 0; }
.section-label {
  font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--navy);
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 1.05rem; color: var(--text-muted); max-width: 600px; line-height: 1.8;
  margin-bottom: 56px;
}
.section-label.light { color: var(--gold-light); }

/* ========== SERVICES ========== */
.services { background: var(--cream); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px;
  border: 1px solid rgba(30,58,95,.05); box-shadow: var(--shadow-sm);
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left; transition: transform .4s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--gold-pale); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: .92rem; color: var(--text-muted); line-height: 1.75; }

/* ========== ABOUT ========== */
.about { background: var(--blush); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-content .section-sub { margin-bottom: 24px; }
.about-list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.about-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: .95rem; color: var(--text); font-weight: 500;
}
.about-list svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

/* ========== WHY US ========== */
.why { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.why-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 40px 32px;
  border: 1px solid rgba(30,58,95,.05); box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.why-number {
  font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700;
  color: var(--gold-pale); line-height: 1; margin-bottom: 16px;
}
.why-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 10px; }
.why-card p { font-size: .92rem; color: var(--text-muted); line-height: 1.8; }

/* ========== VISIT / CTA ========== */
.visit { position: relative; padding: 120px 0; overflow: hidden; }
.visit-bg {
  position: absolute; inset: 0;
  background: url('https://images.pexels.com/photos/32418225/pexels-photo-32418225.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=900') center/cover no-repeat;
}
.visit-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(20,41,66,.88) 0%, rgba(30,58,95,.75) 100%);
}
.visit-content { position: relative; z-index: 2; text-align: center; max-width: 680px; margin: 0 auto; }
.visit-content .section-sub { margin-bottom: 32px; }
.visit-text { font-size: 1.05rem; color: rgba(255,255,255,.8); margin-bottom: 40px; line-height: 1.8; }
.visit-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ========== CONTACT ========== */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-intro { font-size: 1rem; color: var(--text-muted); margin-bottom: 36px; line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.contact-item dt {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600;
  color: var(--navy); margin-bottom: 4px;
}
.contact-item dt svg { width: 20px; height: 20px; color: var(--gold); }
.contact-item dd { font-size: .95rem; color: var(--text-muted); line-height: 1.7; padding-left: 30px; }
.contact-item dd a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; transition: color var(--transition); }
.contact-item dd a:hover { color: var(--gold); }

/* ========== FORM ========== */
.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-md); border: 1px solid rgba(30,58,95,.05);
}
.contact-form h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: .82rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px;
}
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid rgba(30,58,95,.12);
  border-radius: var(--radius); font-family: 'Inter', sans-serif; font-size: .95rem;
  color: var(--navy); background: var(--cream); transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #b0bec5; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .8rem; color: var(--text-muted); margin-top: 12px; text-align: center; }
.form-success {
  text-align: center; padding: 48px 24px;
}
.form-success svg { width: 56px; height: 56px; color: #4caf82; margin: 0 auto 20px; }
.form-success h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 8px; }
.form-success p { color: var(--text-muted); font-size: .95rem; }

/* ========== FOOTER ========== */
.footer { background: var(--navy-deep); color: rgba(255,255,255,.7); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; }
.footer-logo { margin-bottom: 16px; color: var(--white); }
.footer-logo .logo-icon { color: var(--gold); }
.footer-brand p { font-size: .9rem; line-height: 1.8; max-width: 300px; }
.footer-links h4, .footer-hours h4 {
  font-family: 'Inter', sans-serif; font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .9rem; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-hours p { font-size: .9rem; line-height: 1.8; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0; text-align: center;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.4); margin-bottom: 4px; }
.footer-bottom a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ========== ANIMATIONS ========== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ========== MOBILE NAV ========== */
@media (max-width: 900px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  #main-nav {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(253,252,250,.98); backdrop-filter: blur(20px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity .3s ease;
  }
  #main-nav.open { opacity: 1; pointer-events: all; }
  #main-nav ul { flex-direction: column; gap: 8px; text-align: center; }
  #main-nav a { font-size: 1.1rem; padding: 14px 24px; }
  .hero-title { font-size: clamp(2rem, 8vw, 3.2rem); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap { max-width: 480px; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  section { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .visit-actions { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-form-wrap { padding: 28px 20px; }
}
