:root {
  --navy: #14213d;
  --navy-light: #1f2f52;
  --gold: #d8a13a;
  --gold-light: #f0c468;
  --cream: #fbf6ec;
  --cream-dark: #f3e9d4;
  --text-dark: #1b1b1b;
  --text-muted: #5a5a5a;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(20, 33, 61, 0.08);
  --max-width: 1180px;
  font-size: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; border-radius: var(--radius); }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
  display: inline-block;
}
h1, h2, h3, h4 { font-family: Georgia, 'Times New Roman', serif; margin: 0 0 14px; line-height: 1.2; }
h1 { font-size: clamp(2.1rem, 4vw, 3.1rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
p { color: var(--text-muted); margin: 0 0 16px; }
.italic-accent { font-style: italic; color: var(--gold); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { box-shadow: 0 8px 20px rgba(216, 161, 58, 0.4); }
.btn-secondary { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.btn-on-dark { border-color: var(--white); color: var(--white); }
.btn-on-dark:hover { background: var(--white); color: var(--navy); }

/* Header */
.topbar {
  background: var(--navy);
  color: var(--cream-dark);
  font-size: 0.82rem;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 6px; }
.topbar a { color: var(--gold-light); }

header.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--white); }
.brand .mark {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: block;
  object-fit: cover;
}
.brand .name { font-weight: 700; line-height: 1.1; }
.brand .tagline { font-size: 0.72rem; letter-spacing: 0.06em; color: var(--gold-light); text-transform: uppercase; }
nav.main-nav { display: flex; align-items: center; gap: 26px; }
nav.main-nav a { color: var(--cream-dark); font-weight: 600; font-size: 0.95rem; }
nav.main-nav a:hover { color: var(--gold-light); }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.6rem; cursor: pointer; }

@media (max-width: 880px) {
  nav.main-nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); flex-direction: column; align-items: flex-start; padding: 16px 24px; gap: 16px; display: none; }
  nav.main-nav.open { display: flex; }
  .nav-toggle { display: block; }
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 70px;
}
.hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background: var(--navy-light) center/cover no-repeat;
  display: flex;
  align-items: flex-end;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.hero p.lead { color: var(--cream-dark); max-width: 540px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
@media (max-width: 880px) {
  .hero .container { grid-template-columns: 1fr; padding-top: 40px; padding-bottom: 40px; }
  .hero-image { order: -1; }
}

/* Trust strip */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid #eee;
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  padding: 18px 24px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
}
.trust-strip span { display: flex; align-items: center; gap: 8px; }
.trust-strip span::before { content: "✓"; color: var(--gold); font-weight: 800; }

/* Section */
section { padding: 70px 0; }
.section-head { max-width: 680px; margin-bottom: 40px; }
.section-alt { background: var(--cream-dark); }
.section-dark { background: var(--navy); color: var(--cream-dark); }
.section-dark h2, .section-dark .eyebrow { color: var(--white); }
.section-dark .eyebrow { color: var(--gold-light); }
.section-dark p { color: #c7cfdf; }

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

/* Bento services grid */
.bento-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  grid-auto-flow: dense;
  gap: 24px;
}
.bento-services .card.featured {
  grid-column: span 2;
  grid-row: span 2;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 280px;
}
.bento-services .card.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,33,61,0.15) 0%, rgba(20,33,61,0.92) 100%);
}
.bento-services .card.featured > * { position: relative; z-index: 1; }
.bento-services .card.featured .icon {
  background: rgba(255,255,255,0.12);
  box-shadow: none;
}
.bento-services .card.featured h3 { font-size: 1.4rem; }
.bento-services .card.featured p { color: #dbe1ee; }
@media (max-width: 880px) {
  .bento-services { grid-template-columns: 1fr; }
  .bento-services .card.featured { grid-column: span 1; grid-row: span 1; min-height: 220px; }
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 3px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  position: relative;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(20, 33, 61, 0.14);
  border-top-color: var(--gold);
}
.card .icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 6px 16px rgba(20, 33, 61, 0.25);
}
.card .icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1.15rem; margin-bottom: 8px; font-family: 'Segoe UI', sans-serif; }
.card a.more { color: var(--gold); font-weight: 700; font-size: 0.9rem; }

/* Testimonials */
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.testimonial .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }
.testimonial .who { font-weight: 700; margin-top: 14px; color: var(--navy); }
.testimonial .where { color: var(--text-muted); font-size: 0.85rem; }

/* Area / image split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }
.split img { width: 100%; aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow); }

/* Suburb chips */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  background: var(--white);
  border: 1px solid #e4dac0;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
}
.chip:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  border-radius: 24px;
  padding: 50px;
  text-align: center;
  margin: 0 24px;
}
.cta-band .container { padding: 0; }
.cta-band h2 { color: var(--white); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }

/* Footer */
footer.site-footer {
  background: var(--navy);
  color: #b9c2d6;
  padding: 50px 0 24px;
  font-size: 0.92rem;
}
footer.site-footer .grid { grid-template-columns: 2fr 1fr 1fr; margin-bottom: 30px; }
footer.site-footer h4 { color: var(--white); font-family: 'Segoe UI', sans-serif; font-size: 1rem; }
footer.site-footer a:hover { color: var(--gold-light); }
footer.site-footer .bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 18px; font-size: 0.8rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
@media (max-width: 880px) { footer.site-footer .grid { grid-template-columns: 1fr; } }

/* Breadcrumb */
.breadcrumb { font-size: 0.85rem; color: var(--cream-dark); margin-bottom: 18px; }
.breadcrumb a { color: var(--gold-light); }

/* List with check icons */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { display: flex; gap: 10px; margin-bottom: 12px; }
.check-list li::before { content: "✓"; color: var(--gold); font-weight: 800; flex-shrink: 0; }

/* Suburb grid on areas overview */
.area-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.area-card img { border-radius: 0; aspect-ratio: 16/10; object-fit: cover; }
.area-card .body { padding: 20px; }

/* ── Accessibility Suite ───────────────────────────────────────────────── */
:root{ --a11y-brand:#d8a13a; }
@font-face{font-family:'OpenDyslexic';src:url('https://cdn.jsdelivr.net/npm/@fontsource/opendyslexic@5.0.0/files/opendyslexic-latin-400-normal.woff2') format('woff2');font-weight:400;font-display:swap}
#a11y-toggle{position:fixed;bottom:20px;z-index:2147483000;width:56px;height:56px;border-radius:50%;border:none;background:var(--a11y-brand);color:#fff;cursor:pointer;box-shadow:0 4px 14px rgba(0,0,0,.28);display:flex;align-items:center;justify-content:center;transition:transform .15s,background .15s}
#a11y-toggle.pos-left{left:20px}#a11y-toggle.pos-right{right:20px}
#a11y-toggle:hover{transform:scale(1.05)}
#a11y-toggle:focus-visible{outline:3px solid #fff;outline-offset:3px}
#a11y-toggle svg{width:30px;height:30px;fill:#fff}
#a11y-panel{position:fixed;bottom:88px;z-index:2147483000;width:340px;max-width:calc(100vw - 32px);max-height:80vh;overflow-y:auto;background:#fff;color:#1a1320;border-radius:16px;box-shadow:0 12px 48px rgba(0,0,0,.32);border:1px solid #e6e0f0;font-family:'Segoe UI',system-ui,sans-serif;display:none}
#a11y-panel.pos-left{left:20px}#a11y-panel.pos-right{right:20px}
#a11y-panel.open{display:block}
.a11y-head{display:flex;align-items:center;justify-content:space-between;padding:16px 18px;border-bottom:1px solid #eee;position:sticky;top:0;background:#fff;border-radius:16px 16px 0 0}
.a11y-head h2{margin:0;font-size:17px;color:#14213d;font-family:'Segoe UI',sans-serif}
.a11y-head button{background:none;border:none;cursor:pointer;color:#888;font-size:22px;line-height:1;padding:4px}
.a11y-lang{display:flex;align-items:center;gap:8px;padding:10px 18px;font-size:13px;color:#555;border-bottom:1px solid #f0f0f0}
.a11y-lang .dot{width:18px;height:18px;border-radius:50%;background:var(--a11y-brand);color:#14213d;font-size:9px;font-weight:700;display:flex;align-items:center;justify-content:center}
.a11y-section{padding:14px 18px}
.a11y-section h3{margin:0 0 10px;font-size:11px;letter-spacing:.1em;text-transform:uppercase;color:#9890a8}
.a11y-profiles{display:grid;grid-template-columns:1fr 1fr;gap:8px}
.a11y-prof{display:flex;align-items:center;gap:8px;padding:10px;border:1.5px solid #e6e0f0;border-radius:10px;background:#faf8ff;cursor:pointer;font-size:12.5px;font-weight:600;color:#14213d;text-align:left}
.a11y-prof:hover{border-color:var(--a11y-brand)}
.a11y-prof[aria-pressed="true"]{background:var(--a11y-brand);border-color:var(--a11y-brand);color:#14213d}
.a11y-prof svg{width:18px;height:18px;fill:currentColor;flex-shrink:0}
.a11y-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px}
.a11y-btn{display:flex;flex-direction:column;align-items:center;gap:6px;padding:12px 6px;border:1.5px solid #e6e0f0;border-radius:10px;background:#faf8ff;color:#14213d;cursor:pointer;font-size:12px;font-weight:600;text-align:center}
.a11y-btn:hover{border-color:var(--a11y-brand)}
.a11y-btn:focus-visible{outline:3px solid var(--a11y-brand);outline-offset:2px}
.a11y-btn[aria-pressed="true"]{background:var(--a11y-brand);border-color:var(--a11y-brand);color:#14213d}
.a11y-btn svg{width:22px;height:22px;fill:currentColor}
.a11y-btn .lvl{font-size:10px;opacity:.8}
.a11y-reset{margin:6px 18px 14px;width:calc(100% - 36px);padding:11px;border-radius:10px;border:1.5px solid #d33;background:#fff;color:#c00;font-weight:600;cursor:pointer}
.a11y-reset:hover{background:#fff5f5}
.a11y-foot{font-size:10.5px;color:#9890a8;text-align:center;padding:0 18px 16px}
#a11y-dict{position:fixed;z-index:2147483001;max-width:300px;background:#14213d;color:#fff;border-radius:10px;padding:12px 14px;box-shadow:0 8px 30px rgba(0,0,0,.4);font-size:13.5px;line-height:1.5;display:none}
#a11y-dict strong{display:block;font-size:15px;margin-bottom:4px;color:var(--a11y-brand);text-transform:capitalize}
#a11y-dict .pos{font-style:italic;opacity:.7;font-size:11.5px}
.a11y-spacing *{letter-spacing:.06em !important;word-spacing:.16em !important}
.a11y-lh-1 *{line-height:1.9 !important}
.a11y-lh-2 *{line-height:2.4 !important}
.a11y-dyslexia, .a11y-dyslexia *{font-family:'OpenDyslexic',Verdana,sans-serif !important}
.a11y-links a{text-decoration:underline !important;outline:2px solid #d8a13a !important;background:#fff8e1 !important;color:#14213d !important}
.a11y-hideimg img, .a11y-hideimg svg:not(.a11y-keep){visibility:hidden !important}
.a11y-pause *{animation-play-state:paused !important;transition:none !important}
.a11y-structure h1,.a11y-structure h2,.a11y-structure h3,.a11y-structure h4{outline:2px dashed var(--a11y-brand) !important;outline-offset:3px;background:rgba(216,161,58,.07)}
.a11y-structure a{text-decoration:underline !important;font-weight:600}
.a11y-hc, .a11y-hc *{background-color:#000 !important;color:#fff !important;border-color:#fff !important}
.a11y-hc a, .a11y-hc a *{color:#ff0 !important}
.a11y-dark img,.a11y-dark video{filter:invert(1) hue-rotate(180deg)}
.a11y-speak-mode *{cursor:help}
.a11y-speak-mode :hover{outline:2px dotted var(--a11y-brand)}
.a11y-dict-mode{cursor:cell}

/* Booking section */
.booking-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.booking-bg {
  position: absolute;
  inset: 0;
}
.booking-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}
.booking-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(20,33,61,0.93) 0%, rgba(31,47,82,0.90) 100%);
}
.booking-inner { position: relative; z-index: 2; }
.booking-head { max-width: 620px; margin-bottom: 36px; }
.booking-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
}
@media (max-width: 880px) { .booking-cards { grid-template-columns: 1fr; } }
.booking-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(20,33,61,0.35);
}
.booking-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.booking-badge--remote { background: var(--gold); color: var(--navy); }
.booking-price {
  font-family: Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 12px;
}
.booking-price span { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); font-family: 'Segoe UI', sans-serif; }
.booking-desc { margin-bottom: 16px; }
.booking-checks { margin-bottom: 24px; }
.postcode-label { font-weight: 600; font-size: 0.9rem; color: var(--navy); margin-bottom: 10px; }
.postcode-row { display: flex; gap: 10px; }
.postcode-row input {
  flex: 1;
  padding: 11px 14px;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-dark);
  transition: border-color 0.15s;
}
.postcode-row input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(216,161,58,0.15); }
#onsite-pc-result { margin-top: 12px; min-height: 24px; font-size: 0.9rem; }
.pc-ok { color: #1a7a1a; font-weight: 700; }
.pc-error { color: #b00000; font-weight: 600; }
.pc-book-link {
  display: inline-flex;
  margin-top: 14px;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.pc-book-link:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(216,161,58,0.4); }
.booking-btn { width: 100%; justify-content: center; margin-top: 4px; }
.booking-note { text-align: center; font-size: 0.82rem; color: var(--text-muted); margin-top: 10px; margin-bottom: 0; }
.contact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 16px;
  padding: 24px 28px;
}
@media (max-width: 880px) { .contact-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .contact-strip { grid-template-columns: 1fr; } }
.cs-item { display: flex; flex-direction: column; gap: 4px; }
.cs-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-light); }
.cs-item a, .cs-item > span { color: var(--white); font-weight: 600; font-size: 0.9rem; }
.cs-item a:hover { color: var(--gold-light); }

/* Project enquiry section */
.enquiry-split { align-items: flex-start; gap: 60px; }
.enquiry-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.enquiry-form .form-group { margin-bottom: 14px; }
.enquiry-form label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 5px; color: var(--text-dark); }
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid #ddd; border-radius: 10px;
  font-size: 0.95rem; font-family: inherit; color: var(--text-dark);
  background: var(--white); transition: border-color 0.15s;
  box-sizing: border-box;
}
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(216,161,58,0.15); }
.enquiry-form textarea { resize: vertical; }
@media (max-width: 880px) { .enquiry-split { grid-template-columns: 1fr; } }

/* FAQ accordion */
.faq-section { background: var(--cream-dark); }
.faq-list { max-width: 780px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item summary {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 24px 20px;
  margin: 0;
  border-top: 1px solid var(--cream-dark);
  padding-top: 16px;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* Booking Modal */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(20,33,61,0.72);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s ease;
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white);
  border-radius: 20px;
  width: 100%; max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(28px);
  transition: transform 0.25s ease;
  box-shadow: 0 32px 80px rgba(20,33,61,0.35);
}
.modal-backdrop.open .modal { transform: translateY(0); }
.modal-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 28px 32px 22px;
  border-radius: 20px 20px 0 0;
  position: relative;
}
.modal-header h3 { color: var(--white); margin: 0; font-size: 1.3rem; font-family: Georgia, serif; }
.modal-header p { color: var(--cream-dark); margin: 6px 0 0; font-size: 0.88rem; }
.modal-close {
  position: absolute; top: 18px; right: 18px;
  background: rgba(255,255,255,0.14); border: none; color: var(--white);
  width: 32px; height: 32px; border-radius: 50%;
  cursor: pointer; font-size: 1.2rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.modal-close:hover { background: rgba(255,255,255,0.28); }
.modal-body { padding: 26px 32px 32px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 5px; color: var(--text-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid #ddd; border-radius: 10px;
  font-size: 0.95rem; font-family: inherit; color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(216,161,58,0.15); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } .modal-body { padding: 20px; } }
.form-group textarea { resize: vertical; min-height: 88px; }
.modal-submit { width: 100%; margin-top: 8px; }
.form-success { display: none; text-align: center; padding: 16px 0 8px; }
.form-success .check-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold-light); font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.form-success h4 { color: var(--navy); font-size: 1.2rem; margin-bottom: 8px; }
.form-success p { font-size: 0.95rem; }
.form-success a { color: var(--gold); font-weight: 700; }
