/* ══════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════ */
:root {
  --ink:         #11110f;
  --paper:       #efe0c2;
  --paper-light: #fff2d2;
  --teal:        #0aa6a6;
  --deep-teal:   #006f76;
  --lake:        #00b8c8;
  --sunset:      #f26b38;
  --gold:        #f6b32b;
  --pine:        #184f2b;
  --grass:       #7fa629;
  --wood:        #d39b54;
  --cream:       #f8e6bd;
  --shadow:      rgba(17, 17, 15, 0.22);

  --radius:      6px;
  --transition:  .2s ease;

  font-size: 16px;
}

/* ══════════════════════════════════════
   RESET & BASE
══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--ink);
  background: var(--paper-light);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ══════════════════════════════════════
   UTILITIES
══════════════════════════════════════ */
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-heading h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 14px; color: var(--pine); }
.section-heading p  { color: var(--ink); font-size: 1.05rem; opacity: .75; }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-primary {
  background: var(--sunset);
  color: var(--paper-light);
}
.btn-primary:hover { background: #d95a28; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(242,107,56,.38); }

.btn-outline {
  background: transparent;
  color: var(--paper-light);
  border: 2px solid rgba(255,242,210,.6);
}
.btn-outline:hover { background: rgba(255,242,210,.12); border-color: var(--paper-light); }

.btn-water {
  background: var(--teal);
  color: var(--paper-light);
}
.btn-water:hover { background: var(--lake); transform: translateY(-1px); }

/* ══════════════════════════════════════
   TOP BAR
══════════════════════════════════════ */
.top-bar {
  background: var(--pine);
  color: rgba(255,242,210,.85);
  text-align: center;
  padding: 9px 16px;
  font-size: .875rem;
  letter-spacing: .02em;
}
.top-bar a { color: var(--gold); font-weight: 700; }
.top-bar a:hover { text-decoration: underline; }

/* ══════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--deep-teal);
  box-shadow: 0 2px 12px var(--shadow);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.1;
}
.nav-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
}
.nav-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--paper-light);
  letter-spacing: .01em;
}
.nav-brand .brand-phone {
  font-size: .8rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .04em;
}
.nav-brand:hover .brand-name { color: var(--cream); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: rgba(255,242,210,.78);
  font-size: .9rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
  letter-spacing: .04em;
}
.nav-links a:hover { color: var(--paper-light); background: rgba(255,242,210,.10); }

.nav-cta { margin-left: 8px; padding: 10px 22px; font-size: .875rem; }

.menu-toggle {
  display: none;
  background: none;
  border: 2px solid rgba(255,242,210,.4);
  color: var(--paper-light);
  padding: 8px 16px;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: .875rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color var(--transition);
}
.menu-toggle:hover { border-color: var(--paper-light); }

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--pine);
    flex-direction: column;
    padding: 20px 24px;
    gap: 4px;
    border-top: 1px solid rgba(255,242,210,.10);
  }
  nav { position: relative; }
  nav.open .nav-links { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: 4px; width: 100%; }
  .nav-cta { display: none; }
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  background: linear-gradient(150deg, #12324a 0%, #0e4b60 52%, #1f6a78 100%);
  color: var(--paper-light);
  overflow: hidden;
  padding: 96px 0 80px;
}

/* Subtle water ripple decoration */
.hero::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -10%;
  right: -10%;
  height: 160px;
  background: var(--paper);
  border-radius: 50% 50% 0 0 / 60px;
  opacity: .06;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 82% 45%, rgba(246,179,43,.12) 0%, transparent 62%),
    radial-gradient(ellipse at 18% 78%, rgba(255,242,210,.09) 0%, transparent 56%),
    linear-gradient(180deg, rgba(9, 24, 39, .22), rgba(9, 24, 39, .35));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: start;
}

.hero-text .eyebrow { color: #ffd77a; font-size: .8rem; }
.hero-text h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: var(--paper-light);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero-text h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-text p {
  font-size: 1.1rem;
  color: rgba(255, 247, 230, .94);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-badge-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.hero-logo {
  width: min(100%, 320px);
  height: auto;
  object-fit: contain;
}

.hero-badges {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  margin-top: 8px;
}

.hero-badge {
  background: rgba(255, 249, 236, .16);
  border: 1px solid rgba(255, 249, 236, .38);
  border-radius: 10px;
  padding: 18px 22px;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background var(--transition), border-color var(--transition);
}
.hero-badge:hover {
  background: rgba(255, 249, 236, .24);
  border-color: rgba(255, 249, 236, .55);
}
.hero-badge-icon { font-size: 1.8rem; flex-shrink: 0; }
.hero-badge-text strong { display: block; color: var(--paper-light); font-size: .95rem; margin-bottom: 2px; }
.hero-badge-text span { color: rgba(255, 247, 230, .9); font-size: .82rem; }

@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-badge-col { align-items: flex-start; }
  .hero-badges { grid-template-columns: 1fr; }
  .hero-logo { width: min(100%, 260px); }
  .hero-text h1 { font-size: 2.2rem; }
}

/* ══════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════ */
.trust-strip {
  background: var(--paper);
  border-top: 3px solid var(--sunset);
  border-bottom: 1px solid var(--wood);
  padding: 24px 0;
}
.trust-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--pine);
}
.trust-item-icon { font-size: 1.3rem; }

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
#services { padding: 96px 0; background: var(--paper-light); }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.card {
  background: var(--cream);
  border: 1px solid var(--wood);
  border-radius: 12px;
  padding: 36px 30px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--lake));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.card:hover { box-shadow: 0 8px 32px var(--shadow); transform: translateY(-3px); border-color: var(--teal); }
.card:hover::before { transform: scaleX(1); }

.card-icon { font-size: 2.4rem; margin-bottom: 18px; }
.card h3 { font-size: 1.35rem; color: var(--pine); margin-bottom: 12px; }
.card p  { color: var(--ink); font-size: .97rem; line-height: 1.65; opacity: .8; }

/* ══════════════════════════════════════
   WHY US BAND
══════════════════════════════════════ */
.why-band {
  background: var(--pine);
  color: var(--paper-light);
  padding: 80px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-grid h2 { color: var(--paper-light); font-size: clamp(1.75rem, 3vw, 2.4rem); margin-bottom: 24px; }
.why-grid .eyebrow { color: var(--gold); }

.check-list { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: rgba(255,242,210,.88);
  font-size: 1rem;
}
.check-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--teal);
  color: var(--paper-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 900;
  margin-top: 2px;
}

.callout-box {
  background: rgba(255,242,210,.06);
  border: 1px solid rgba(255,242,210,.14);
  border-radius: 12px;
  padding: 40px 36px;
  text-align: center;
}
.callout-box .quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  line-height: .6;
  display: block;
  margin-bottom: 16px;
}
.callout-box p {
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,242,210,.9);
  margin-bottom: 28px;
  line-height: 1.6;
}
.callout-box .call-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ══════════════════════════════════════
   SERVICE AREA
══════════════════════════════════════ */
#area { padding: 96px 0; background: var(--paper); }
#area h2 { color: var(--pine); }

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.area-text p { color: var(--ink); margin-bottom: 20px; opacity: .8; }
.area-text h3 { font-size: 1.2rem; color: var(--pine); margin-bottom: 12px; margin-top: 24px; }

.area-towns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.area-towns li {
  background: var(--cream);
  border: 1px solid var(--wood);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--pine);
  display: flex;
  align-items: center;
  gap: 8px;
}
.area-towns li::before { content: '📍'; font-size: .9rem; }

.area-aside {
  background: var(--deep-teal);
  border-radius: 12px;
  padding: 40px 36px;
  color: var(--paper-light);
}
.area-aside h3 { color: var(--paper-light); font-size: 1.3rem; margin-bottom: 16px; }
.area-aside p  { color: rgba(255,242,210,.82); font-size: .97rem; margin-bottom: 24px; line-height: 1.65; }
.area-aside .eyebrow { color: var(--gold); }

@media (max-width: 768px) {
  .area-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
#faq {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--paper-light), var(--paper));
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--cream);
  border: 1px solid var(--wood);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 56px 18px 20px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.12rem;
  line-height: 1.35;
  color: var(--pine);
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--teal);
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item p {
  padding: 0 20px 20px;
  color: var(--ink);
  opacity: .88;
  font-size: .98rem;
}

.faq-item a {
  color: var(--deep-teal);
  font-weight: 700;
  text-decoration: underline;
}

.faq-item summary:focus-visible {
  outline: 3px solid rgba(10,166,166,.35);
  outline-offset: -3px;
}

@media (max-width: 768px) {
  #faq { padding: 72px 0; }
  .faq-item summary { font-size: 1.02rem; padding-right: 48px; }
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
#contact { padding: 96px 0; background: var(--paper-light); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); color: var(--pine); margin-bottom: 16px; }
.contact-info .lead { font-size: 1.1rem; color: var(--ink); opacity: .75; margin-bottom: 32px; }

.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: center;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--cream);
  border: 1px solid var(--wood);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-detail-body strong { display: block; font-size: .8rem; color: var(--teal); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 2px; }
.contact-detail-body a { color: var(--pine); font-weight: 700; font-size: 1rem; }
.contact-detail-body a:hover { color: var(--teal); }
.contact-detail-body span { color: var(--pine); font-weight: 700; font-size: 1rem; }

/* Form */
.contact-form {
  background: var(--paper);
  border: 1px solid var(--wood);
  border-radius: 12px;
  padding: 40px 36px;
}
.contact-form h3 { font-size: 1.4rem; color: var(--pine); margin-bottom: 24px; }

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

label { display: flex; flex-direction: column; gap: 6px; font-size: .875rem; font-weight: 700; color: var(--pine); margin-bottom: 16px; }
label.full { grid-column: 1 / -1; }

input, select, textarea {
  border: 1.5px solid var(--wood);
  border-radius: 6px;
  padding: 12px 14px;
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(10,166,166,.18);
}
textarea { resize: vertical; min-height: 110px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: .92rem;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.form-status.error {
  background: #f8d7da;
  color: #721c24;
  border-color: #f5c6cb;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 22px; }
}

/* ══════════════════════════════════════
   THANK YOU PAGE
══════════════════════════════════════ */
.thanks-section {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--paper-light), var(--paper));
}

.thanks-wrap {
  display: grid;
  place-items: center;
}

.thanks-card {
  width: 100%;
  max-width: 760px;
  background: var(--cream);
  border: 1px solid var(--wood);
  border-radius: 14px;
  padding: 42px 36px;
  box-shadow: 0 8px 30px rgba(17, 17, 15, 0.12);
}

.thanks-card h1 {
  color: var(--pine);
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 14px;
}

.thanks-card p {
  color: var(--ink);
  opacity: .85;
}

.thanks-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.thanks-note {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(211, 155, 84, .45);
}

.thanks-note strong {
  display: block;
  color: var(--deep-teal);
  margin-bottom: 10px;
}

.thanks-note ul {
  list-style: disc;
  padding-left: 20px;
}

.thanks-note li {
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .thanks-section { padding: 72px 0; }
  .thanks-card { padding: 30px 22px; }
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--ink);
  color: rgba(239,224,194,.6);
  text-align: center;
  padding: 32px 24px;
  font-size: .875rem;
  line-height: 1.8;
}
footer a { color: var(--gold); }
footer a:hover { text-decoration: underline; }
footer strong { color: rgba(239,224,194,.9); }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-text { animation: fadeUp .7s ease both; }
.hero-badge-col { animation: fadeUp .7s .2s ease both; }