*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0d1b2a;
  --ink:    #1a2535;
  --gold:   #c8973f;
  --gold-lt:#f0c97a;
  --cream:  #faf8f4;
  --muted:  #6b7280;
  --border: #e5e1d8;
  --white:  #ffffff;
  --green:  #1d6b44;
  --radius: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

.security-banner {
  background: #1d6b44;
  color: #fff;
  text-align: center;
  font-size: 12px;
  padding: 6px 16px;
  letter-spacing: 0.02em;
}
.security-banner strong { font-weight: 600; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--navy);
  color: #fff;
  padding: 8px 16px;
  font-size: 14px;
  z-index: 9999;
  border-radius: 0 0 6px 0;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.logo img { height: 38px; width: auto; display: block; }
.logo { text-decoration: none; }

nav { display: flex; align-items: center; gap: 6px; }
nav a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background .15s, color .15s;
}
nav a:hover, nav a[aria-current="page"] {
  background: rgba(255,255,255,.1);
  color: #fff;
}

.nav-switch {
  display: flex;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 3px;
  gap: 2px;
  margin-left: 8px;
}
.nav-switch a {
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 6px;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-weight: 500;
  transition: background .15s, color .15s;
}
.nav-switch a.active {
  background: var(--gold);
  color: var(--navy);
}

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  white-space: nowrap;
  text-decoration: none;
  transition: background .15s !important;
}
.nav-cta:hover { background: var(--gold-lt) !important; color: var(--navy) !important; }

.hero {
  background: var(--navy);
  color: #fff;
  padding: 72px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,151,63,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 720px; margin: 0 auto; position: relative; }

.hero h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.hero h1 em { font-style: italic; color: var(--gold-lt); }

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.hero-address {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.hero-address svg { flex-shrink: 0; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .15s, transform .12s;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.85);
  font-weight: 500;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color .15s, background .15s;
}
.btn-outline:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.5); }

.partners-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
  overflow: hidden;
}
.partners-strip p {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 20px;
}
.partners-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: center;
  align-items: center;
}
.partners-grid img {
  height: 32px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .6;
  transition: filter .2s, opacity .2s;
}
.partners-grid img:hover { filter: grayscale(0); opacity: 1; }

section { padding: 72px 24px; }
.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: 12px;
}
h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 16px;
}
h2 em { font-style: italic; color: var(--muted); }
h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

#about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }

.about-text p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.stat strong {
  display: block;
  font-family: 'Instrument Serif', serif;
  font-size: 2rem;
  color: var(--gold);
}
.stat span { font-size: 13px; color: var(--muted); }

.about-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.about-imgs img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}
.about-imgs img:first-child {
  grid-column: 1 / -1;
  height: 220px;
}
.about-imgs img:not(:first-child) { height: 140px; }

#services { background: var(--navy); color: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.service-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: background .2s, border-color .2s;
}
.service-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(200,151,63,.4);
}
.service-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}
.service-card h3 { color: #fff; margin-bottom: 6px; }
.service-card p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.6; }

#testimonials { background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
article.review {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.review-stars { color: var(--gold); font-size: 13px; margin-bottom: 10px; }
.review blockquote {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.review-author strong { font-size: 14px; color: var(--ink); display: block; }
.review-author span  { font-size: 12px; color: var(--muted); }

#contact-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #162233 100%);
  color: #fff;
  text-align: center;
}
#contact-cta h2 { color: #fff; margin-bottom: 12px; }
#contact-cta p {
  color: rgba(255,255,255,.65);
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 15px;
  line-height: 1.7;
}

#contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info p { color: var(--muted); font-size: 14px; margin-bottom: 24px; line-height: 1.7; }
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 14px;
}
.contact-item-text strong { display: block; font-size: 13px; color: var(--ink); }
.contact-item-text a, .contact-item-text span {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}
.contact-item-text a:hover { color: var(--gold); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}
.contact-form h3 { margin-bottom: 20px; font-size: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  background: var(--cream);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,151,63,.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.honeypot-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
  aria-hidden: true;
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.5;
}
.btn-submit {
  width: 100%;
  padding: 12px 24px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
}
.btn-submit:hover { background: #1a2f47; }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; }

.form-success {
  display: none;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  border-radius: 8px;
  padding: 16px;
  font-size: 14px;
  color: var(--green);
  text-align: center;
  margin-top: 12px;
}

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform .15s, box-shadow .15s;
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(37,211,102,.5); }
.wa-float svg { width: 26px; height: 26px; fill: #fff; }

footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  padding: 48px 24px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 640px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand img { height: 34px; width: auto; margin-bottom: 14px; display: block; }
.footer-brand p { font-size: 13px; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: 13px; font-weight: 600; margin-bottom: 12px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .15s;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,.35);
}
.footer-bottom a {
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .15s;
}
.footer-bottom a:hover { color: rgba(255,255,255,.8); }
.footer-bottom-links { display: flex; gap: 16px; }

@media (max-width: 640px) {
  section { padding: 48px 16px; }
  .hero { padding: 48px 16px 40px; }
  .nav-inner { height: 56px; padding: 0 16px; }
  .logo img { height: 30px; }
}

