:root {
  --navy-900: #0c1626;
  --navy-800: #12213a;
  --navy-700: #16233f;
  --gold: #f2a93b;
  --gold-dark: #d98f22;
  --red: #e0483e;
  --gray-50: #f7f8fa;
  --gray-100: #eef0f3;
  --gray-300: #cfd4dd;
  --gray-500: #6b7280;
  --gray-700: #384153;
  --text: #1a2130;
  --max-width: 1120px;
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Placeholder callouts ---------- */
.placeholder {
  border: 2px dashed var(--gold-dark);
  background: #fff8ec;
  border-radius: 10px;
  padding: 18px 20px;
  position: relative;
}
.placeholder::before {
  content: "EDIT ME";
  position: absolute;
  top: -11px;
  left: 16px;
  background: var(--gold-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: 4px;
}
.placeholder p { margin: 0; color: var(--gray-700); font-style: italic; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo-link { display: flex; align-items: center; height: 48px; }
.logo-link img { height: 48px; width: auto; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: #dfe3ea;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--navy-900);
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(circle at 80% 0%, #1a2c4d 0%, var(--navy-900) 55%);
  color: #fff;
  padding: 96px 0 110px;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  display: inline-block;
}
.hero h1 {
  font-size: 46px;
  line-height: 1.15;
  margin: 0 0 20px;
  font-weight: 800;
}
.hero h1 span { color: var(--gold); }
.hero p.lead {
  font-size: 18px;
  color: #c4cadb;
  max-width: 46ch;
  margin: 0 0 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 9px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--gold); color: var(--navy-900); }
.btn-primary:hover { background: var(--gold-dark); }
.btn-outline { border-color: rgba(255,255,255,0.35); color: #fff; }
.btn-outline:hover { border-color: #fff; }

.hero-badge-wrap { display: flex; justify-content: center; }
.hero-badge-wrap img { width: 220px; height: 220px; }

/* ---------- Sections ---------- */
section { padding: 88px 0; }
.section-alt { background: var(--gray-50); }

.section-eyebrow {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.section-title {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 18px;
  color: var(--navy-900);
}
.section-lead {
  color: var(--gray-700);
  font-size: 17px;
  max-width: 68ch;
  margin: 0 0 40px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.about-photo {
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-weight: 600;
  text-align: center;
  padding: 24px;
  border: 2px dashed var(--gray-300);
  overflow: hidden;
}
.about-photo.has-photo {
  border: none;
  padding: 0;
  box-shadow: 0 1px 2px rgba(16,24,40,0.06);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 1px 2px rgba(16,24,40,0.04);
}
.service-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--navy-900);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 16px;
}
.service-card h3 { margin: 0 0 8px; font-size: 18px; }
.service-card p { margin: 0; color: var(--gray-700); font-size: 15px; }

.accordion {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--gray-300);
}
.accordion-item {
  border-bottom: 1px solid var(--gray-300);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 4px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-900);
  text-align: left;
}
.accordion-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-left: 16px;
}
.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  background: var(--gold-dark);
  border-radius: 2px;
  transition: transform 0.2s ease;
}
.accordion-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.accordion-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
.accordion-trigger[aria-expanded="true"] .accordion-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.accordion-panel p {
  margin: 0 4px 20px;
  color: var(--gray-700);
  font-size: 15px;
  max-width: 62ch;
}

/* Rates / CTA band */
.rates-band {
  background: var(--navy-900);
  color: #fff;
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
}
.rates-band h2 { font-size: 28px; margin: 0 0 14px; }
.rates-band p { color: #c4cadb; max-width: 56ch; margin: 0 auto 28px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--gray-700);
}
.contact-info-list .label {
  font-weight: 700;
  color: var(--navy-900);
  min-width: 70px;
}

form.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 14px; font-weight: 700; color: var(--navy-900); }
.form-row input, .form-row textarea {
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  resize: vertical;
}
.form-row input:focus, .form-row textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}
.form-note { font-size: 13px; color: var(--gray-500); margin-top: -4px; }
.form-status { font-size: 14px; font-weight: 600; margin: 0; min-height: 20px; }
.form-status-success { color: #1a7f4b; }
.form-status-error { color: var(--red); }

/* Footer */
.site-footer {
  background: var(--navy-900);
  color: #9aa4b8;
  padding: 40px 0;
  font-size: 14px;
}
.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer a { color: #c4cadb; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-badge-wrap { order: -1; }
  .hero-badge-wrap img { width: 140px; height: 140px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .site-header.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--navy-900);
    padding: 20px 24px 28px;
    gap: 18px;
  }
  .site-header.nav-open .nav-cta {
    display: inline-block;
    margin: 8px 24px 24px;
  }
  .hero h1 { font-size: 34px; }
  .rates-band { padding: 40px 24px; }
}
