/* Sarasota Mold Pro — design system */
:root {
  --teal: #0E5E5E;
  --teal-dark: #0A4747;
  --teal-darker: #073838;
  --bg: #F8F7F2;
  --coral: #FF6B5B;
  --coral-dark: #E85546;
  --ink: #1F2A2A;
  --muted: #5A6A6A;
  --line: #E3DFD4;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(15,30,30,.06), 0 1px 3px rgba(15,30,30,.04);
  --shadow: 0 8px 24px rgba(15,30,30,.08), 0 2px 6px rgba(15,30,30,.05);
  --shadow-lg: 0 24px 48px rgba(15,30,30,.12);
  --radius: 16px;
  --radius-sm: 12px;
  --maxw: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Poppins', 'Inter', sans-serif; line-height: 1.2; color: var(--ink); margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 700; text-wrap: balance; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; text-wrap: balance; }
h3 { font-size: 1.25rem; font-weight: 600; }
p  { margin: 0 0 1em; }
a  { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
svg { display: inline-block; vertical-align: middle; flex-shrink: 0; }
/* Inline SVG icons get sensible default sizes — without this, browsers render them at full intrinsic size */
.btn svg { width: 18px; height: 18px; }
.hero-eyebrow svg { width: 16px; height: 16px; }
.trust-list svg { width: 18px; height: 18px; }
.card-icon svg { width: 24px; height: 24px; }
.contact-row .ico svg { width: 20px; height: 20px; }
.social svg { width: 18px; height: 18px; }
.t-stars svg { width: 18px; height: 18px; }
.faq-q svg { width: 22px; height: 22px; transition: transform .2s ease; color: var(--teal); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 22px; border-radius: var(--radius-sm); font-weight: 600; font-size: 1rem; text-decoration: none; border: 2px solid transparent; cursor: pointer; transition: transform .12s ease, background .12s ease, box-shadow .12s ease; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--coral); color: var(--white); }
.btn-primary:hover { background: var(--coral-dark); box-shadow: 0 6px 18px rgba(255,107,91,.35); }
.btn-secondary { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-secondary:hover { background: var(--teal); color: var(--white); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.muted { color: var(--muted); }
.center { text-align: center; }
.badge { display: inline-block; padding: 4px 10px; background: var(--coral); color: white; font-size: .75rem; font-weight: 700; border-radius: 100px; letter-spacing: .04em; text-transform: uppercase; }

/* HEADER */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(248,247,242,.92); backdrop-filter: saturate(140%) blur(8px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 0; }
.logo { display: flex; align-items: flex-start; gap: 10px; text-decoration: none; }
.logo-mark { width: 38px; height: 38px; border-radius: 10px; background: var(--teal); display: grid; place-items: center; color: white; font-weight: 800; font-family: 'Poppins'; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-name { font-family: 'Poppins'; font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.logo-sub { font-size: .72rem; font-style: italic; color: var(--muted); }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a { color: var(--ink); font-weight: 500; font-size: .95rem; }
.nav a:hover { color: var(--teal); text-decoration: none; }
.nav-dropdown { position: relative; }
.nav-dropdown-menu { display: none; position: absolute; top: 100%; left: 0; margin-top: 6px; background: white; box-shadow: var(--shadow); border-radius: 12px; padding: 8px; min-width: 180px; }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; padding: 8px 12px; border-radius: 8px; }
.nav-dropdown-menu a:hover { background: var(--bg); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.phone-link { color: var(--teal); font-weight: 700; font-size: 1rem; white-space: nowrap; }
.phone-link:hover { text-decoration: none; color: var(--teal-dark); }
.hamburger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--ink); }
.hamburger svg { width: 28px; height: 28px; }

/* HERO */
.hero { padding: 64px 0 48px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; background: rgba(14,94,94,.08); color: var(--teal); border-radius: 100px; font-weight: 600; font-size: .85rem; margin-bottom: 16px; }
.hero h1 { margin-bottom: 16px; }
.hero p.lead { font-size: 1.125rem; color: var(--muted); margin-bottom: 28px; max-width: 540px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image { aspect-ratio: 4/3; border-radius: 24px; background: linear-gradient(135deg, #0E5E5E 0%, #0A4747 100%); position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-image::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 30%, rgba(255,107,91,.25), transparent 50%); }
.hero-image .placeholder-text { position: absolute; bottom: 20px; left: 24px; color: rgba(255,255,255,.55); font-size: .8rem; }

/* TRUST STRIP */
.trust-strip { background: white; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; }
.trust-list { display: flex; flex-wrap: wrap; gap: 28px; justify-content: center; align-items: center; }
.trust-list li { list-style: none; display: flex; align-items: center; gap: 8px; font-size: .92rem; color: var(--muted); font-weight: 500; }
.trust-list li svg { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; }

/* SECTIONS */
section { padding: 72px 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.section-head .eyebrow { display: inline-block; color: var(--coral); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; margin-bottom: 10px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* CARDS / GRIDS */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.card { background: white; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform .12s, box-shadow .12s; position: relative; }
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.card.featured { border: 2px solid var(--coral); padding-top: 32px; }
.card .badge-top { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); box-shadow: 0 2px 8px rgba(15,30,30,.15); white-space: nowrap; }
.card-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(14,94,94,.1); color: var(--teal); display: grid; place-items: center; margin-bottom: 16px; }
.card-icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .95rem; margin-bottom: 16px; }
.card-link { color: var(--teal); font-weight: 600; font-size: .9rem; }
.card-link::after { content: " →"; transition: margin .12s; display: inline-block; }
.card-link:hover { text-decoration: none; }
.card-link:hover::after { margin-left: 4px; }
.card-price { font-family: 'Poppins'; font-weight: 700; font-size: 1.6rem; color: var(--ink); }
.card-price .per { font-size: .85rem; color: var(--muted); font-weight: 500; }

/* WHY MOLD */
.why-section { background: white; }
.why-card { background: var(--bg); border-radius: var(--radius); padding: 32px; }
.why-card .card-icon { background: rgba(255,107,91,.12); color: var(--coral); }

/* PROCESS */
.process-section { background: linear-gradient(180deg, var(--bg) 0%, white 100%); }
.process-list { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; counter-reset: step; }
.process-step { text-align: center; }
.process-num { width: 48px; height: 48px; border-radius: 50%; background: var(--teal); color: white; display: grid; place-items: center; font-family: 'Poppins'; font-weight: 700; margin: 0 auto 12px; font-size: 1.1rem; }
.process-step h4 { font-size: .95rem; margin-bottom: 4px; }
.process-step p { font-size: .85rem; color: var(--muted); margin: 0; }

/* BEFORE / AFTER */
.ba-section { background: white; }
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.ba-img { aspect-ratio: 4/3; position: relative; }
.ba-img.before { background: linear-gradient(135deg, #4a3838, #2a1a1a); }
.ba-img.after { background: linear-gradient(135deg, #0E5E5E, #0A4747); }
.ba-img .label { position: absolute; top: 10px; left: 10px; background: rgba(0,0,0,.55); color: white; font-size: .72rem; font-weight: 700; padding: 4px 8px; border-radius: 6px; letter-spacing: .08em; text-transform: uppercase; }
.ba-caption { font-size: .9rem; color: var(--muted); text-align: center; margin-top: 10px; }

/* TESTIMONIALS */
.testimonials-section { background: var(--bg); }
.t-card { background: white; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.t-stars { color: #F5B400; margin-bottom: 12px; display: inline-flex; gap: 3px; }
.t-quote { font-size: 1rem; color: var(--ink); margin-bottom: 16px; }
.t-name { font-weight: 700; font-size: .95rem; }
.t-city { color: var(--muted); font-size: .85rem; }

/* SERVICE AREA */
.areas-section { background: white; }
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.areas-map { aspect-ratio: 4/3; background: linear-gradient(135deg, #0E5E5E20, #0E5E5E40); border-radius: var(--radius); display: grid; place-items: center; color: var(--teal-dark); font-weight: 600; position: relative; overflow: hidden; }
.areas-map::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 25% 60%, rgba(255,107,91,.3), transparent 30%), radial-gradient(circle at 50% 40%, rgba(255,107,91,.3), transparent 30%), radial-gradient(circle at 75% 65%, rgba(255,107,91,.3), transparent 30%); }
.areas-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.area-block h4 { color: var(--teal); margin-bottom: 8px; }
.area-block ul { list-style: none; padding: 0; margin: 0; }
.area-block li { padding: 4px 0; color: var(--muted); font-size: .92rem; }

/* LEAD FORM */
.lead-section { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%); color: white; }
.lead-section h2, .lead-section .eyebrow { color: white; }
.lead-section .section-head p { color: rgba(255,255,255,.85); }
.lead-form { background: white; color: var(--ink); border-radius: var(--radius); padding: 32px; max-width: 720px; margin: 0 auto; box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr 120px; gap: 12px; }
.form-input { width: 100%; padding: 14px 16px; border: 2px solid var(--line); border-radius: 12px; font-family: inherit; font-size: 1rem; }
.form-input:focus { outline: none; border-color: var(--teal); }
.form-row textarea.form-input { grid-column: 1 / -1; min-height: 100px; resize: vertical; }
.form-help { color: var(--muted); font-size: .85rem; margin-top: 12px; text-align: center; }
.form-submit { margin-top: 16px; width: 100%; justify-content: center; }

/* FAQ */
.faq-section { background: white; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: 0; text-align: left; padding: 20px 0; font-family: inherit; font-size: 1.05rem; font-weight: 600; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; color: var(--muted); }
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 20px; }

/* FINAL CTA */
.final-cta { background: var(--coral); color: white; padding: 64px 0; }
.final-cta h2 { color: white; }
.final-cta p { color: rgba(255,255,255,.95); font-size: 1.1rem; }
.final-cta .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.final-cta .btn-primary { background: white; color: var(--teal); border-color: white; font-weight: 700; }
.final-cta .btn-primary:hover { background: var(--bg); color: var(--teal-dark); }
.final-cta .btn-ghost { color: white; border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.08); }
.final-cta .btn-ghost:hover { background: rgba(255,255,255,.18); }

/* FOOTER */
.site-footer { background: var(--teal-darker); color: rgba(255,255,255,.78); padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.site-footer h5 { font-family: 'Poppins'; color: white; font-size: 1rem; margin: 0 0 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; font-size: .92rem; }
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: white; }
.footer-brand .logo-name { color: white; }
.footer-brand .logo-sub { color: rgba(255,255,255,.6); }
.footer-bar { border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: .85rem; color: rgba(255,255,255,.6); }
.footer-bar a { color: rgba(255,255,255,.85); }
.social { display: flex; gap: 10px; }
.social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: white; }
.social a:hover { background: rgba(255,255,255,.15); }
.social svg { width: 18px; height: 18px; }

/* STICKY MOBILE BAR */
.mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; padding: 10px 12px; background: white; border-top: 1px solid var(--line); box-shadow: 0 -8px 20px rgba(15,30,30,.06); z-index: 100; gap: 8px; }
.mobile-cta .btn { flex: 1; padding: 12px; font-size: .95rem; justify-content: center; }

/* PAGE HERO (interior pages) */
.page-hero { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%); color: white; padding: 56px 0 48px; }
.page-hero h1 { color: white; max-width: 860px; }
.page-hero .crumbs { font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 12px; }
.page-hero .crumbs a { color: rgba(255,255,255,.85); }
.page-hero p { color: rgba(255,255,255,.9); max-width: 720px; font-size: 1.05rem; }

/* CONTENT BLOCKS (interior pages) */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 36px; }
.prose h3 { margin-top: 28px; }
.prose ul { padding-left: 22px; }
.prose li { margin-bottom: 6px; }
.callout { background: rgba(14,94,94,.06); border-left: 4px solid var(--teal); padding: 20px 24px; border-radius: 8px; margin: 28px 0; }
.callout strong { color: var(--teal); }

/* PRICING PLAN */
.plan-card { max-width: 540px; margin: 0 auto; background: white; border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); border: 2px solid var(--coral); position: relative; }
.plan-card .badge-top { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); }
.plan-card h3 { font-size: 1.5rem; }
.plan-card .plan-price { font-family: 'Poppins'; font-size: 3rem; font-weight: 700; color: var(--teal); }
.plan-card .plan-price .per { font-size: 1rem; color: var(--muted); font-weight: 500; }
.plan-card ul { list-style: none; padding: 0; margin: 20px 0 24px; }
.plan-card li { padding: 8px 0 8px 28px; position: relative; font-size: .95rem; color: var(--ink); }
.plan-card li::before { content: "✓"; position: absolute; left: 0; top: 8px; color: var(--coral); font-weight: 800; }

/* CONTACT GRID */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-card { background: white; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.contact-row { display: flex; align-items: flex-start; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border-bottom: 0; }
.contact-row .ico { width: 40px; height: 40px; border-radius: 10px; background: rgba(14,94,94,.1); color: var(--teal); display: grid; place-items: center; flex-shrink: 0; }
.contact-row .ico svg { width: 20px; height: 20px; }
.contact-row strong { display: block; font-size: .95rem; }
.contact-row .meta { color: var(--muted); font-size: .9rem; }

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { order: -1; max-width: 480px; margin: 0 auto; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .areas-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  /* Hamburger drawer kicks in here so phone + nav don't get clipped on iPad / small laptops */
  .nav, .header-cta .btn-primary, .header-cta .phone-link { display: none; }
  .hamburger { display: inline-flex; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 80px; }
  .nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; border-bottom: 1px solid var(--line); padding: 16px 24px; gap: 14px; box-shadow: var(--shadow); z-index: 60; }
  .nav.open a { padding: 8px 0; }
  .nav.open .nav-dropdown-menu { position: static; box-shadow: none; padding: 0 0 0 12px; min-width: 0; display: block; }
  .final-cta .container { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 720px) {
  section { padding: 56px 0; }
  .hero { padding: 40px 0 32px; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .ba-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  /* Trust strip 2-up on phones rather than a tall 4-row stack */
  .trust-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 16px; padding: 0 8px; }
  .trust-list li { font-size: .82rem; gap: 6px; }
  .hero h1 { font-size: 2rem; }
  .hero p.lead { font-size: 1rem; }
  .lead-form { padding: 22px; }
  .plan-card { padding: 28px 22px; }
  .plan-card .plan-price { font-size: 2.4rem; }
  .areas-list { grid-template-columns: 1fr; }
}
