/* ============= J Franks Marine — Site Stylesheet ============= */
:root {
  --navy: #111111;
  --navy-deep: #000000;
  --copper: #8A6A3C;
  --copper-bright: #B89058;
  --bg: #EFE9DC;
  --ink: #0A0A0A;
  --orange: #B33D1F;
  --orange-bright: #D4502B;
  --line: rgba(17,17,17,0.14);
  --line-dark: rgba(255,255,255,0.14);
  --muted: rgba(10,10,10,0.65);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--bg); color: var(--ink); -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', system-ui, sans-serif; line-height: 1.5; }

h1, h2, h3, h4 { font-family: 'Barlow Condensed', 'Inter', sans-serif; font-weight: 700; line-height: 1.05; letter-spacing: -0.01em; text-transform: none; }
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }

a { color: inherit; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 4px; font-weight: 600;
  font-size: 15px; cursor: pointer; border: none; text-decoration: none;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.01em;
}
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 6px 16px -8px rgba(179,61,31,0.7); }
.btn-primary:hover { background: var(--orange-bright); transform: translateY(-1px); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.btn-outline:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-deep); }
.btn-ghost { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-lg { padding: 18px 28px; font-size: 17px; }

/* ===== Header ===== */
.header { position: sticky; top: 0; z-index: 50; background: var(--navy); color: #fff; border-bottom: 1px solid var(--line-dark); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: #fff; }
.logo-mark { flex-shrink: 0; }
.logo-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 22px; line-height: 1; letter-spacing: 0.02em; text-transform: uppercase; white-space: nowrap; display: none; }
.logo-img { height: 44px; width: auto; display: block; filter: invert(1) brightness(2); }
.logo-img.dark { filter: none; }
.logo-sub { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 4px; white-space: nowrap; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav-links { display: flex; gap: 24px; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--copper-bright); }
.nav-links a.active { color: var(--copper-bright); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { color: #fff; text-decoration: none; font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.header-phone:hover { color: var(--copper-bright); }

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .header-phone span.lbl { display: none; }
}
@media (max-width: 600px) {
  .header-cta .btn { display: none; }
}

/* ===== Mobile Sticky Call Bar ===== */
.call-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; background: var(--orange); color: #fff; padding: 14px 20px; text-align: center; font-weight: 700; font-size: 16px; text-decoration: none; box-shadow: 0 -4px 12px rgba(0,0,0,0.2); }
.call-bar:hover { background: var(--orange-bright); }
@media (max-width: 768px) { .call-bar { display: flex; align-items: center; justify-content: center; gap: 10px; } body { padding-bottom: 56px; } }

/* ===== Hero ===== */
.hero { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; opacity: 0.55; }
.hero-bg svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-bg.hero-photo { opacity: 1; background-size: cover; background-position: center top; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(17,17,17,0.55) 0%, rgba(10,10,10,0.85) 60%, rgba(0,0,0,0.95) 100%); }
.hero-bg.hero-photo::after { background: linear-gradient(180deg, rgba(17,17,17,0.55) 0%, rgba(10,10,10,0.55) 40%, rgba(0,0,0,0.92) 100%); }
.hero-inner { position: relative; z-index: 2; padding-top: 100px; padding-bottom: 80px; }
@media (max-width: 768px) { .hero-inner { padding-top: 24px; padding-bottom: 24px; } }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--copper-bright); font-weight: 600; margin-bottom: 24px; }
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--copper-bright); }
.hero h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(44px, 7vw, 88px); font-weight: 800; line-height: 0.95; max-width: 1000px; text-transform: uppercase; letter-spacing: -0.005em; }
.hero h1 .accent { color: var(--copper-bright); }
.hero-sub { font-size: clamp(17px, 1.6vw, 21px); margin-top: 24px; max-width: 640px; color: rgba(255,255,255,0.85); line-height: 1.5; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }

/* Trust bar */
.trust-bar { background: var(--navy-deep); color: #fff; border-top: 1px solid var(--line-dark); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.trust-item { padding: 26px 24px; display: flex; align-items: center; gap: 14px; border-right: 1px solid var(--line-dark); }
.trust-item:last-child { border-right: none; }
.trust-item .ti-icon { flex-shrink: 0; color: var(--copper-bright); }
.trust-item .ti-txt { font-weight: 600; font-size: 15px; line-height: 1.3; }
@media (max-width: 768px) { .trust-grid { grid-template-columns: 1fr; } .trust-item { border-right: none; border-bottom: 1px solid var(--line-dark); } .trust-bar { display: none; } }

/* ===== Sections ===== */
section { padding: 90px 0; }
@media (max-width: 768px) { section { padding: 64px 0; } }
.section-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--copper); font-weight: 600; margin-bottom: 16px; }
.section-eyebrow .bar { width: 32px; height: 2px; background: var(--copper); }
h2.section-title { font-size: clamp(34px, 4.5vw, 56px); font-weight: 800; text-transform: uppercase; max-width: 900px; }
.section-lede { font-size: 18px; max-width: 620px; color: var(--muted); margin-top: 16px; }

/* ===== Services Grid ===== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
@media (max-width: 1024px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 32px 28px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; display: flex; flex-direction: column; gap: 14px; text-decoration: none; color: inherit; overflow: hidden; }
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px -16px rgba(17,17,17,0.25); border-color: var(--copper); }
.svc-icon { width: 48px; height: 48px; border-radius: 8px; background: var(--navy); color: var(--copper-bright); display: flex; align-items: center; justify-content: center; }

/* Photo-led service card variant */
.svc-card-photo { padding: 0; }
.svc-card-photo .svc-photo { position: relative; aspect-ratio: 4/3; background-size: cover; background-position: center; background-color: var(--navy); }
.svc-card-photo .svc-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.45) 100%); }
.svc-card-photo .svc-photo .svc-icon { position: absolute; left: 16px; bottom: 16px; width: 44px; height: 44px; border-radius: 6px; z-index: 2; box-shadow: 0 8px 20px -6px rgba(0,0,0,0.5); }
.svc-card-photo .svc-body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.svc-card-photo:hover .svc-photo { filter: brightness(1.05); }
.svc-card h3 { font-size: 24px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.005em; }
.svc-card p { color: var(--muted); font-size: 15px; line-height: 1.55; flex: 1; }
.svc-link { color: var(--copper); font-weight: 600; font-size: 14px; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.svc-link:hover { color: var(--orange); }

/* ===== Why Section ===== */
.why { background: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }
.why-card { padding: 32px; border-left: 3px solid var(--copper); }
.why-card .why-icon { width: 56px; height: 56px; background: rgba(138,106,60,0.14); color: var(--copper); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.why-card h3 { font-size: 24px; font-weight: 700; text-transform: uppercase; margin-bottom: 12px; }
.why-card p { color: var(--muted); font-size: 16px; line-height: 1.55; }

/* ===== Reviews ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.stars { color: var(--orange); letter-spacing: 2px; font-size: 14px; }
.review-quote { font-size: 16px; line-height: 1.55; color: var(--ink); flex: 1; }
.review-author { font-weight: 600; font-size: 14px; color: var(--navy); }
.review-meta { font-size: 13px; color: var(--muted); }

/* ===== FAQ ===== */
.faq { background: var(--navy); color: #fff; }
.faq h2.section-title { color: #fff; }
.faq .section-eyebrow { color: var(--copper-bright); }
.faq .section-eyebrow .bar { background: var(--copper-bright); }
.faq-list { margin-top: 40px; max-width: 880px; border-top: 1px solid var(--line-dark); }
.faq-item { border-bottom: 1px solid var(--line-dark); }
.faq-q { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; padding: 24px 0; cursor: pointer; font-weight: 600; font-size: 18px; line-height: 1.4; background: none; border: none; color: #fff; width: 100%; text-align: left; font-family: inherit; }
.faq-q:hover { color: var(--copper-bright); }
.faq-q .pm { font-size: 28px; font-weight: 300; color: var(--copper-bright); flex-shrink: 0; line-height: 0.7; }
.faq-a { padding: 0 0 24px; color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.6; max-width: 680px; }

/* ===== Service Area ===== */
.area-section { background: var(--bg); }
.area-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; margin-top: 48px; align-items: start; }
@media (max-width: 900px) { .area-grid { grid-template-columns: 1fr; } }
.area-map { aspect-ratio: 4/3; border-radius: 12px; overflow: hidden; background: var(--navy); position: relative; border: 1px solid var(--line); }
.area-map iframe { width: 100%; height: 100%; border: 0; }
.area-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.area-chip { background: #fff; border: 1px solid var(--line); padding: 8px 14px; border-radius: 999px; font-size: 14px; font-weight: 500; }

/* ===== CTA Strip ===== */
.cta-strip { background: var(--navy); color: #fff; }
.cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
@media (max-width: 900px) { .cta-inner { grid-template-columns: 1fr; text-align: center; } }
.cta-strip h2 { font-size: clamp(34px, 4vw, 52px); font-weight: 800; text-transform: uppercase; }
.cta-strip .cta-info { display: flex; flex-direction: column; gap: 8px; margin: 24px 0; }
.cta-info a, .cta-info span { color: rgba(255,255,255,0.9); text-decoration: none; font-size: 17px; font-weight: 500; display: inline-flex; align-items: center; gap: 10px; }
.cta-info a:hover { color: var(--copper-bright); }
.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 900px) { .cta-buttons { justify-content: center; } }

/* ===== Footer ===== */
.footer { background: var(--navy-deep); color: rgba(255,255,255,0.7); padding: 48px 0 32px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; margin-bottom: 16px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer a:hover { color: var(--copper-bright); }
.footer-bottom { border-top: 1px solid var(--line-dark); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 13px; }

/* ===== Page header (interior pages) ===== */
.page-hero { background: var(--navy); color: #fff; padding: 80px 0 60px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(135deg, transparent 70%, rgba(138,106,60,0.18) 100%); pointer-events: none; }
.page-hero > .container { position: relative; z-index: 2; }
.page-hero-photo { background-size: cover; background-position: center; padding: 120px 0 100px; }
.page-hero-photo .page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.7) 80%, rgba(0,0,0,0.92) 100%), linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 70%); z-index: 1; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 16px; letter-spacing: 0.05em; }
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb a:hover { color: var(--copper-bright); }
.page-hero h1 { font-size: clamp(36px, 5.5vw, 64px); font-weight: 800; text-transform: uppercase; letter-spacing: -0.005em; max-width: 950px; }
.page-hero .lede { font-size: 18px; line-height: 1.5; color: rgba(255,255,255,0.85); margin-top: 20px; max-width: 700px; }

/* ===== Content sections (interior) ===== */
.prose { max-width: 820px; }
.prose h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 700; text-transform: uppercase; margin: 48px 0 16px; }
.prose h3 { font-size: 22px; font-weight: 700; text-transform: uppercase; margin: 32px 0 12px; }
.prose p { margin-bottom: 16px; line-height: 1.65; font-size: 17px; }
.prose ul { padding-left: 22px; margin-bottom: 20px; }
.prose ul li { margin-bottom: 8px; line-height: 1.55; font-size: 16px; }
.prose ol { padding-left: 22px; margin-bottom: 20px; }
.prose ol li { margin-bottom: 12px; line-height: 1.55; font-size: 16px; }
.callout { background: var(--navy); color: #fff; padding: 32px; border-radius: 8px; border-left: 4px solid var(--copper); margin: 32px 0; font-size: 18px; line-height: 1.5; }
.callout strong { color: var(--copper-bright); }

/* Two-col content */
.two-col { display: grid; grid-template-columns: 1fr 320px; gap: 56px; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }
.aside-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 28px; position: sticky; top: 100px; }
.aside-card h3 { font-size: 20px; font-weight: 700; text-transform: uppercase; margin-bottom: 12px; }
.aside-card p { color: var(--muted); font-size: 14px; line-height: 1.5; margin-bottom: 20px; }
.aside-card .btn { width: 100%; justify-content: center; }

/* Process steps */
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin: 32px 0; border-top: 1px solid var(--line); }
@media (max-width: 900px) { .process-steps { grid-template-columns: 1fr 1fr; } }
.process-step { padding: 28px 20px 28px 0; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
.process-step:last-child { border-right: none; }
.process-step .pn { font-family: 'JetBrains Mono', mono; font-size: 12px; color: var(--copper); letter-spacing: 0.1em; margin-bottom: 16px; }
.process-step h4 { font-size: 18px; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 36px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; color: var(--navy); }
.field input, .field textarea, .field select { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 6px; font-family: inherit; font-size: 15px; background: #fff; color: var(--ink); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--copper); box-shadow: 0 0 0 3px rgba(138,106,60,0.18); }
.field textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.contact-info-item { padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .lbl { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 6px; font-weight: 600; }
.contact-info-item .val { font-size: 17px; font-weight: 500; }
.contact-info-item .val a { color: var(--navy); text-decoration: none; }
.contact-info-item .val a:hover { color: var(--copper); }

/* Star rating */
.rating-banner { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 32px; text-align: center; margin-bottom: 48px; }
.rating-num { font-family: 'Barlow Condensed', sans-serif; font-size: 64px; font-weight: 800; color: var(--navy); line-height: 1; }
.rating-stars { color: var(--orange); font-size: 24px; letter-spacing: 4px; margin: 8px 0; }
.rating-label { font-size: 14px; color: var(--muted); }

/* Locations grid */
.loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 40px 0; }
@media (max-width: 900px) { .loc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .loc-grid { grid-template-columns: 1fr; } }
.loc-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 24px; }
.loc-card h4 { font-size: 18px; font-weight: 700; text-transform: uppercase; margin-bottom: 6px; color: var(--navy); }
.loc-card p { font-size: 14px; color: var(--muted); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Phone link emphasis */
a.tel-big { font-family: 'Barlow Condensed', sans-serif; font-size: 36px; font-weight: 800; color: var(--copper-bright); text-decoration: none; letter-spacing: 0.01em; }
a.tel-big:hover { color: #fff; }

/* Compare table */
.compare { width: 100%; border-collapse: collapse; margin: 24px 0; background: #fff; }
.compare th, .compare td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: 15px; vertical-align: top; }
.compare th { background: var(--navy); color: #fff; font-weight: 600; text-transform: uppercase; font-size: 13px; letter-spacing: 0.05em; }
