/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1a2744;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.25; }

/* ── Tokens ── */
:root {
  --navy: #0f2b4c;
  --navy-light: #163a63;
  --gold: #d4a843;
  --gold-light: #e8c36a;
  --gold-dark: #b8912e;
  --cream: #faf6ee;
  --light: #f4f0e8;
  --white: #ffffff;
  --gray-100: #f7f7f7;
  --gray-200: #e8e8e8;
  --gray-400: #999;
  --gray-600: #666;
  --shadow-sm: 0 2px 8px rgba(15,43,76,.08);
  --shadow-md: 0 8px 30px rgba(15,43,76,.12);
  --shadow-lg: 0 16px 50px rgba(15,43,76,.16);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: .3s ease;
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: .9375rem; padding: 14px 28px;
  border-radius: 50px; border: 2px solid transparent;
  cursor: pointer; transition: all var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold); color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-outline-navy {
  background: transparent; color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: 10px 20px; font-size: .875rem; }
.btn-lg { padding: 18px 36px; font-size: 1.0625rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Section helpers ── */
.section-eyebrow {
  font-size: .8125rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--navy); margin-bottom: 16px;
}
.section-sub { font-size: 1.0625rem; color: var(--gray-600); max-width: 600px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-sub { margin: 0 auto; }

/* ── Header ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15,43,76,.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212,168,67,.15);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 1.125rem; font-weight: 700; color: var(--white); }
.logo-text .gold { color: var(--gold); }
.logo-icon { flex-shrink: 0; }

/* Nav */
.nav-list { display: flex; align-items: center; gap: 8px; }
.nav-list a {
  color: rgba(255,255,255,.8); font-size: .9375rem; font-weight: 500;
  padding: 8px 16px; border-radius: 50px; transition: all var(--transition);
}
.nav-list a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav-list .btn-gold { margin-left: 8px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 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 {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--navy); overflow: hidden; padding: 100px 0 60px;
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: .04; pointer-events: none;
  background-image: radial-gradient(circle at 25% 25%, var(--gold) 1px, transparent 1px), radial-gradient(circle at 75% 75%, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-eyebrow {
  font-size: .8125rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--white); font-weight: 700; margin-bottom: 24px;
  line-height: 1.1;
}
.hero-title .gold { color: var(--gold); font-style: italic; }
.hero-sub { font-size: 1.125rem; color: rgba(255,255,255,.75); margin-bottom: 36px; max-width: 520px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.badge {
  font-size: .8125rem; font-weight: 500; color: var(--navy);
  background: rgba(212,168,67,.2); border: 1px solid rgba(212,168,67,.35);
  padding: 8px 16px; border-radius: 50px;
}
.hero-image { position: relative; }
.hero-img-wrap {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 27/32;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-card {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--white); border-radius: var(--radius-sm);
  padding: 14px 20px; display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-md); font-size: .9375rem; font-weight: 600; color: var(--navy);
}

/* ── Services ── */
.services { padding: 100px 0; background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white); border-radius: var(--radius); padding: 36px 28px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.service-icon { margin-bottom: 20px; }
.service-card h3 { font-size: 1.3125rem; color: var(--navy); margin-bottom: 10px; }
.service-card p { color: var(--gray-600); font-size: .9375rem; line-height: 1.7; }

/* ── About ── */
.about { padding: 100px 0; background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 52/48; }
.about-content .section-title { margin-top: 0; }
.about-text { color: var(--gray-600); margin-bottom: 16px; line-height: 1.8; }
.about-stats { display: flex; gap: 40px; margin-top: 36px; }
.stat { text-align: center; }
.stat-number { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--navy); }
.stat-number .gold { color: var(--gold); }
.stat-label { font-size: .8125rem; color: var(--gray-600); text-transform: uppercase; letter-spacing: .08em; font-weight: 500; }

/* ── Gallery ── */
.gallery { padding: 100px 0; background: var(--light); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.06); }

/* ── CTA ── */
.cta {
  padding: 100px 0;
  background: var(--navy);
  position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212,168,67,.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 680px; margin: 0 auto; }
.cta-title { font-size: clamp(2rem, 4.5vw, 3rem); color: var(--white); margin-bottom: 20px; }
.cta-title .gold { color: var(--gold); font-style: italic; }
.cta-text { font-size: 1.125rem; color: rgba(255,255,255,.7); margin-bottom: 40px; line-height: 1.75; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }

/* ── Contact ── */
.contact { padding: 100px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-icon {
  flex-shrink: 0; width: 52px; height: 52px;
  background: rgba(212,168,67,.12); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.contact-item h4 { font-family: 'Inter', sans-serif; font-size: .9375rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.contact-item p { color: var(--gray-600); font-size: .9375rem; line-height: 1.65; }
.contact-item a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 3px; }
.contact-item a:hover { color: var(--navy); }

.contact-form-wrap {
  background: var(--cream); border-radius: var(--radius); padding: 40px;
  border: 1px solid var(--gray-200);
}
.contact-form-wrap h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 18px; }
.form-group label { font-size: .875rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  font-family: 'Inter', sans-serif; font-size: .9375rem;
  padding: 12px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200); background: var(--white);
  color: var(--navy); transition: border-color var(--transition);
  outline: none; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success { text-align: center; margin-top: 16px; font-weight: 600; color: #2d8a4e; font-size: .9375rem; }

/* ── Map ── */
.map-section { height: 320px; }
.map-section iframe { display: block; }

/* ── Footer ── */
.site-footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }
.footer-brand p { margin-top: 16px; font-size: .9375rem; line-height: 1.7; }
.footer-links h4, .footer-contact h4 {
  font-family: 'Inter', sans-serif; font-size: .875rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .9375rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact p { font-size: .9375rem; line-height: 1.8; }
.footer-contact a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; text-align: center; font-size: .8125rem; }

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

/* ── Responsive ── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-image { max-width: 480px; margin: 0 auto; }
  .hero-float-card { left: 50%; transform: translateX(-50%); }
  .about-inner { grid-template-columns: 1fr; }
  .about-image { max-width: 520px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-list {
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--navy); flex-direction: column;
    padding: 24px; gap: 4px;
    border-top: 1px solid rgba(255,255,255,.1);
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: all var(--transition);
  }
  .nav-list.open { transform: none; opacity: 1; pointer-events: all; }
  .nav-list a { width: 100%; text-align: center; padding: 12px; }
  .nav-list .btn-gold { margin-left: 0; margin-top: 8px; }
  .hero { padding: 120px 0 80px; }
  .hero-title { font-size: clamp(1.875rem, 7vw, 2.75rem); }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { gap: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
