/* ============================================
   Maids of Honor — azmaidsofhonor.com redesign
   Palette from logo: bright teal + black + white
   Fonts: Montserrat (headings) + Inter (body)
   ============================================ */
:root {
  --teal: #2fbdb4;
  --teal-bright: #14d8cc;
  --dark: #1d2e2d;
  --teal-dark: #1e948c;
  --teal-deep: #146b66;
  --teal-tint: #eaf6f5;
  --ink: #1f2d2c;
  --ink-soft: #4e5c5e;
  --bg: #f7fcfb;
  --sand: #e3f2f0;
  --white: #ffffff;
  --star: #f5b301;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(20, 107, 102, 0.10);
  --shadow-lg: 0 14px 40px rgba(20, 107, 102, 0.16);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", "Segoe UI", -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
}

h1, h2, h3, h4 { font-family: "Montserrat", "Segoe UI", sans-serif; font-weight: 800; line-height: 1.2; color: var(--ink); }

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

a { color: var(--teal-deep); }

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

/* ---------- Top bar ---------- */
.topbar {
  background: var(--dark);
  color: #b9d8d5;
  font-size: 14px;
  text-align: center;
  padding: 8px 16px;
}
.topbar strong { color: #7fd8d2; }
.topbar a { color: #7fd8d2; text-decoration: none; font-weight: 700; }

/* ---------- Header / nav ---------- */
header.site {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(20, 107, 102, 0.10);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  padding: 10px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.brand { display: flex; align-items: center; text-decoration: none; margin-right: auto; }
.brand-logo { height: 56px; width: auto; }

nav.main { display: flex; align-items: center; gap: 28px; }
nav.main > a, .nav-item > a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 15.5px;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  display: inline-block;
}
nav.main > a:hover, nav.main > a.active, .nav-item > a:hover { color: var(--teal-deep); border-bottom-color: var(--teal); }

/* Dropdowns */
.nav-item { position: relative; }
.nav-item .caret { font-size: 11px; color: var(--teal-dark); }
.nav-item .drop {
  display: none;
  position: absolute;
  top: 100%;
  left: -14px;
  background: var(--white);
  min-width: 190px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  border-top: 3px solid var(--teal);
}
.nav-item:hover .drop, .nav-item:focus-within .drop { display: block; }
.nav-item .drop a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
}
.nav-item .drop a:hover { background: var(--teal-tint); color: var(--teal-deep); }

.nav-cta {
  background: var(--teal);
  color: var(--ink) !important;
  padding: 12px 22px !important;
  border-radius: 999px;
  border-bottom: none !important;
  font-weight: 700 !important;
  white-space: nowrap;
  transition: background .2s;
}
.nav-cta:hover { background: var(--teal-dark); color: var(--white) !important; }

.nav-phone { font-weight: 700; color: var(--ink); text-decoration: none; white-space: nowrap; font-size: 15.5px; }
.nav-phone span { color: var(--teal-dark); margin-right: 4px; }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; font-size: 28px; color: var(--teal-dark); cursor: pointer; }
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  nav.main {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column; align-items: flex-start;
    padding: 16px 24px 22px;
    box-shadow: var(--shadow-lg);
    gap: 6px;
  }
  nav.main.open { display: flex; }
  .nav-item .drop {
    display: block;
    position: static;
    box-shadow: none;
    border-top: none;
    padding: 0 0 4px 16px;
    min-width: 0;
  }
  .nav-item .drop a { padding: 6px 0; font-weight: 500; color: var(--ink-soft); }
  .nav-item .caret { display: none; }
  .nav-phone-desktop { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  background:
    linear-gradient(100deg, rgba(23,36,34,.95) 0%, rgba(26,48,45,.88) 42%, rgba(30,58,54,.55) 75%, rgba(30,58,54,.35) 100%),
    url("../images/team-kitchen.jpg") center 30% / cover no-repeat,
    linear-gradient(135deg, #1c2b2a 0%, #21403d 60%, #23504b 100%);
  color: var(--white);
  padding: 84px 0 92px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 18%, rgba(47,189,180,.16), transparent 45%),
    radial-gradient(circle at 8% 92%, rgba(47,189,180,.08), transparent 40%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-kicker {
  display: inline-block;
  background: rgba(47,189,180,.16);
  border: 1px solid rgba(127,216,210,.45);
  color: #8fdcd6;
  font-size: 13px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 { color: var(--white); font-size: clamp(34px, 5vw, 52px); max-width: 700px; margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: #7fd8d2; }
.hero p.lead { font-size: clamp(17px, 2vw, 20px); max-width: 600px; color: #c9e5e2; margin-bottom: 34px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16.5px;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-gold { background: var(--teal); color: var(--ink); }        /* primary (teal) */
.btn-gold:hover { background: #49cfc7; }
.btn-outline { border: 2px solid rgba(255,255,255,.75); color: var(--white); }
.btn-burgundy { background: var(--dark); color: var(--white); }   /* secondary (charcoal) */
.btn-burgundy:hover { background: #2b4341; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 26px; font-size: 14.5px; color: #b8dbd8; }
.hero-trust div { display: flex; align-items: center; gap: 8px; }
.hero-trust .tick { color: #7fd8d2; font-weight: 700; }

/* ---------- Offer ribbon ---------- */
.offer {
  background: var(--teal);
  padding: 16px 24px;
  text-align: center;
  font-weight: 600;
  color: var(--ink);
  font-size: 16.5px;
}
.offer a { color: var(--ink); font-weight: 800; }

/* ---------- Sections ---------- */
section.block { padding: 72px 0; }
section.block.alt { background: var(--white); }
.section-kicker {
  color: var(--teal-dark);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 10px;
}
section.block h2 { font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 16px; max-width: 720px; }
.section-intro { max-width: 680px; color: var(--ink-soft); margin-bottom: 42px; font-size: 18px; }
.center { text-align: center; }
.center .section-intro, .center h2 { margin-left: auto; margin-right: auto; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.cards.four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .cards, .cards.four { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .cards, .cards.two, .cards.four { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--teal);
}
section.block.alt .card { background: var(--bg); }
.card .icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--dark);
  color: #7fd8d2;
  font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 15.5px; }
.card ul { margin: 12px 0 0 18px; color: var(--ink-soft); font-size: 15.5px; }
.card ul li { margin-bottom: 7px; }

/* Numbered steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .steps { grid-template-columns: 1fr; } }
.step { background: var(--white); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow); }
.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal); color: var(--ink);
  font-family: "Montserrat", sans-serif;
  font-weight: 800; font-size: 19px;
  margin-bottom: 16px;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--ink-soft); }

/* Stats band */
.stats {
  background: var(--dark);
  color: var(--white);
  padding: 54px 0;
}
.stats .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
@media (max-width: 760px) { .stats .container { grid-template-columns: 1fr 1fr; } }
.stat .num { font-family: "Montserrat", sans-serif; font-size: 40px; font-weight: 800; color: #7fd8d2; }
.stat .lbl { font-size: 14.5px; color: #9fc4c1; margin-top: 4px; }

/* Testimonials */
.quote {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.quote::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 64px;
  color: var(--teal);
  position: absolute; top: 6px; left: 20px;
  line-height: 1;
}
.quote p { font-size: 16px; color: var(--ink-soft); font-style: italic; margin: 26px 0 16px; }
.quote cite { font-style: normal; font-weight: 700; color: var(--teal-deep); font-size: 15px; }
.stars { color: var(--star); letter-spacing: 3px; font-size: 15px; }

/* Checklist columns */
.check-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .check-cols { grid-template-columns: 1fr; } }
.check-col { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.check-col h3 {
  background: var(--dark); color: var(--white);
  padding: 18px 24px; font-size: 19px;
}
.check-col ul { list-style: none; padding: 20px 24px 26px; }
.check-col li { padding: 8px 0 8px 30px; position: relative; color: var(--ink-soft); font-size: 15.5px; border-bottom: 1px solid var(--sand); }
.check-col li:last-child { border-bottom: none; }
.check-col li::before { content: "✓"; position: absolute; left: 0; color: var(--teal-dark); font-weight: 800; }

/* FAQ */
details.faq {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 14px;
  overflow: hidden;
}
details.faq summary {
  cursor: pointer;
  padding: 20px 54px 20px 26px;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  list-style: none;
  position: relative;
  font-family: "Montserrat", sans-serif;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  position: absolute; right: 24px; top: 50%;
  transform: translateY(-50%);
  font-size: 26px; color: var(--teal-dark); font-weight: 400;
}
details.faq[open] summary::after { content: "–"; }
details.faq .answer { padding: 0 26px 22px; color: var(--ink-soft); font-size: 16px; }

/* Big CTA band */
.cta-band {
  background: linear-gradient(120deg, #1c2b2a 0%, #23504b 100%);
  color: var(--white);
  text-align: center;
  padding: 72px 24px;
}
.cta-band h2 { color: var(--white); font-size: clamp(26px, 3.4vw, 36px); margin-bottom: 12px; }
.cta-band p { color: #b8dbd8; max-width: 560px; margin: 0 auto 30px; }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .full { grid-column: 1 / -1; }
label { font-weight: 700; font-size: 14.5px; display: block; margin-bottom: 6px; color: var(--ink); }
input, select, textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid #c8e2df;
  border-radius: 10px;
  font-family: inherit;
  font-size: 16px;
  background: var(--white);
  color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--teal); border-color: var(--teal); }
button.btn { border: none; cursor: pointer; font-family: inherit; }

.contact-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }
.info-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px; margin-bottom: 24px; }
.info-card h3 { margin-bottom: 14px; font-size: 19px; }
.info-card p { color: var(--ink-soft); margin-bottom: 8px; }
.info-card a { font-weight: 700; }

.map-embed { border: 0; width: 100%; height: 300px; border-radius: var(--radius); box-shadow: var(--shadow); }

/* Service areas */
.areas { display: flex; flex-wrap: wrap; gap: 10px; }
.areas span {
  background: var(--white);
  border: 1.5px solid var(--sand);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: var(--teal-deep);
  box-shadow: 0 2px 8px rgba(20,107,102,.06);
}

/* Page hero (interior pages) */
.page-hero {
  background: linear-gradient(120deg, #1c2b2a, #23504b);
  color: var(--white);
  padding: 58px 0 62px;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(30px, 4vw, 42px); margin-bottom: 10px; }
.page-hero p { color: #b8dbd8; max-width: 620px; margin: 0 auto; font-size: 18px; }
.page-hero a { color: #7fd8d2; }

/* Footer */
footer.site {
  background: #1a2827;
  color: #a9c8c5;
  padding: 60px 0 0;
  font-size: 15px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 44px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .footer-grid { grid-template-columns: 1fr; } }
footer.site h4 { color: #7fd8d2; font-size: 15px; margin-bottom: 16px; letter-spacing: .08em; text-transform: uppercase; }
footer.site a { color: #c4e0dd; text-decoration: none; }
footer.site a:hover { color: var(--white); text-decoration: underline; }
footer.site ul { list-style: none; }
footer.site li { margin-bottom: 10px; }
.footer-brand { font-family: "Montserrat", sans-serif; color: var(--white); font-size: 21px; font-weight: 800; margin-bottom: 10px; }
.footer-brand span { color: #7fd8d2; }
.footer-bottom {
  border-top: 1px solid rgba(159,196,193,.25);
  padding: 20px 0;
  text-align: center;
  font-size: 13.5px;
  color: #7da5a2;
}

/* Sticky mobile call button */
.mobile-call {
  display: none;
  position: fixed; bottom: 18px; left: 16px; right: 16px;
  background: var(--teal);
  color: var(--ink);
  text-align: center;
  padding: 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 17px;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  z-index: 60;
}
@media (max-width: 620px) { .mobile-call { display: block; } body { padding-bottom: 80px; } }

/* ---------- Gold offer bubble ---------- */
.gold-pill {
  display: inline-block;
  background: linear-gradient(180deg, #ffd34d 0%, #f5b301 100%);
  color: #4a3400;
  font-weight: 800;
  padding: 2px 13px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(245,179,1,.35), inset 0 1px 0 rgba(255,255,255,.55);
  white-space: nowrap;
}
.topbar .gold-pill, .cta-band .gold-pill { font-size: 13.5px; }
.gold-pill.wrap { white-space: normal; line-height: 1.5; padding: 6px 20px; }

/* ---------- Accreditation strip ---------- */
.accred { background: var(--white); border-top: 1px solid var(--sand); padding: 64px 0 70px; }
.accred .container { display: flex; align-items: center; justify-content: center; column-gap: 64px; row-gap: 18px; flex-wrap: wrap; }
.accred .accred-title { width: 100%; text-align: center; margin-bottom: 0; }
.accred img { height: 104px; width: auto; transition: transform .2s; }
.accred img.tall { height: 126px; }
.accred a:hover img, .accred img:hover { transform: scale(1.06); }
@media (max-width: 620px) { .accred .container { column-gap: 34px; row-gap: 14px; } .accred img { height: 68px; } .accred img.tall { height: 84px; } }

/* ---------- Service-area map ---------- */
.area-map { max-width: 780px; margin: 0 auto 36px; }
.split .area-map { margin: 0; max-width: none; }
.area-map svg { width: 100%; height: auto; display: block; filter: drop-shadow(0 8px 22px rgba(20,107,102,.12)); }

/* ---------- Split text + image layout ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: center; text-align: left; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }
.split .photo-strip img { height: 320px; }

/* ---------- Team photo strip ---------- */
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.photo-strip.two { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 720px) { .photo-strip, .photo-strip.two { grid-template-columns: 1fr; } }
.photo-strip figure { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.photo-strip img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform .4s ease; }
.photo-strip figure:hover img { transform: scale(1.04); }
.photo-strip figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 34px 18px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(23,36,34,.82) 100%);
  color: var(--white);
  font-weight: 600; font-size: 14.5px;
}

/* ---------- Scroll-reveal animation (added by js/main.js) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* ---------- "Why?" reveal cards ---------- */
.why-card { cursor: pointer; user-select: none; transition: transform .15s, box-shadow .2s; text-align: center; }
.why-card .icon { margin-left: auto; margin-right: auto; }
.why-card h3 { font-size: 26px; letter-spacing: .08em; margin-bottom: 0; }
.why-card .why { text-align: left; }
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.why-card .why { display: none; margin-top: 14px; padding-top: 14px; border-top: 1.5px dashed var(--sand); }
.why-card.open .why { display: block; }
.why-card .why p { color: var(--ink-soft); font-size: 15px; }
.why-hint {
  display: inline-block;
  margin-top: 16px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal-dark);
}
