@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --navy: #0f1c2e;
  --navy-mid: #1a2d45;
  --navy-light: #243d5c;
  --gold: #c9973f;
  --gold-light: #e8c97a;
  --gold-pale: #f5eed8;
  --off-white: #f9f7f3;
  --cream: #f0ece2;
  --stone: #7a7570;
  --border: #e0d9cc;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--off-white);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--navy);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo-link { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 50px; width: auto; }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: #fff; }

.nav-cta {
  background: var(--gold) !important;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 3px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 300;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 150;
  flex-direction: column;
  padding: 40px 5%;
  gap: 8px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 24px;
  font-family: var(--serif);
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
  letter-spacing: -0.3px;
}

.mobile-menu a:hover,
.mobile-menu a.active { color: var(--gold); }

.mobile-menu .mobile-cta {
  margin-top: 24px;
  background: var(--gold);
  color: #fff !important;
  text-align: center;
  padding: 18px !important;
  border-radius: 3px;
  border: none !important;
  font-size: 16px !important;
  font-family: var(--sans) !important;
  font-weight: 500 !important;
}

/* PAGE */
.page { padding-top: 72px; min-height: 100vh; }

/* HERO */
.hero {
  padding: 100px 5% 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 24px;
  color: var(--navy);
}

.hero p {
  font-size: 17px;
  color: var(--stone);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 440px;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 16px 36px;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.1s;
  margin-right: 20px;
}

.btn-primary:hover { background: var(--navy); transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  color: var(--navy);
  padding: 16px 0;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 1.5px solid var(--navy);
  transition: color 0.2s, border-color 0.2s;
}

.btn-secondary:hover { color: var(--gold); border-color: var(--gold); }

.hero-visual {
  background: var(--cream);
  border-radius: 4px;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* TRUST BAR */
.trust-bar {
  background: var(--navy);
  padding: 28px 5%;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-item span { color: var(--gold); font-size: 14px; }

/* SECTIONS */
section {
  padding: 80px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--navy);
}

.section-sub {
  font-size: 16px;
  color: var(--stone);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 56px;
}

/* SERVICE CARDS */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.service-card {
  background: #fff;
  padding: 44px 36px;
  transition: background 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card:hover { background: var(--navy); }
.service-card:hover h3, .service-card:hover p { color: rgba(255,255,255,0.9); }
.service-card:hover p { color: rgba(255,255,255,0.6); }
.service-card:hover .card-link { color: var(--gold); }

.service-icon { font-size: 36px; margin-bottom: 20px; display: block; }

.service-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  color: var(--navy);
  transition: color 0.2s;
}

.service-card p {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.7;
  transition: color 0.2s;
}

.service-card .card-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* CTA BAND */
.cta-band {
  background: var(--navy);
  padding: 80px 5%;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  color: #fff;
}

.cta-band p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.cta-band .btn-primary { background: var(--gold); }
.cta-band .btn-primary:hover { background: var(--gold-light); color: var(--navy); }

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

.about-visual {
  background: var(--navy);
  border-radius: 4px;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
}

.about-text h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  color: var(--navy);
}

.about-text p {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.stat {
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}

.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.stat span { font-size: 13px; color: var(--stone); }

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  color: var(--navy);
}

.contact-info p {
  font-size: 15px;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-detail-icon { font-size: 20px; margin-top: 2px; }

.contact-detail-text strong {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 2px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

.contact-detail-text span { font-size: 14px; color: var(--stone); }

/* FORM */
.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 48px 40px;
}

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

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

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--navy);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--navy);
  background: var(--off-white);
  outline: none;
  transition: border-color 0.15s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}

.form-submit:hover { background: var(--gold); }

/* SERVICE DETAIL */
.service-hero {
  padding: 80px 5% 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: 700px;
  color: var(--navy);
}

.service-hero p {
  font-size: 17px;
  color: var(--stone);
  line-height: 1.75;
  max-width: 560px;
}

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

.what-included { margin-top: 40px; }

.what-included h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--navy);
}

.included-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--stone);
  line-height: 1.5;
}

.included-item::before {
  content: '+';
  color: var(--gold);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  flex-shrink: 0;
}

.service-sidebar {
  background: var(--navy);
  border-radius: 4px;
  padding: 36px 32px;
  position: sticky;
  top: 96px;
}

.service-sidebar h3 {
  font-family: var(--serif);
  font-size: 24px;
  margin-bottom: 16px;
  color: #fff;
}

.service-sidebar p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-sidebar .btn-primary { display: block; text-align: center; margin-bottom: 12px; background: var(--gold); }
.service-sidebar .btn-secondary { display: block; text-align: center; color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.3); }
.service-sidebar .btn-secondary:hover { color: #fff; border-color: #fff; }

/* FOOTER */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.4);
  padding: 48px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo { height: 42px; width: auto; }
footer p { font-size: 13px; }
footer a { color: rgba(255,255,255,0.4); text-decoration: none; }
footer a:hover { color: var(--gold); }

/* MOBILE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero, .about-grid, .contact-grid, .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-bar { gap: 24px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .hero { padding: 60px 5% 60px; }
  .contact-form { padding: 32px 24px; }
}
