/* =====================================================================
   Ridgeline · Roofing · premium multi-page roofing-contractor template
   Concept: sturdy, grounded, trustworthy. The signature idea is a
   ROOFLINE / peak. A shallow gable clips the top of the hero image, and
   a thin two-segment brick chevron (a small roof peak) sits under every
   eyebrow as the recurring accent mark. Crisp 6px corners elsewhere and
   a confident modern sans display face keep it established, never clip-arty.
   ---------------------------------------------------------------------
   EDIT YOUR COLORS & FONTS in the :root block below (see CUSTOMIZE.md).
   One stylesheet is shared across all four pages.
   ===================================================================== */
:root {
  /* ---- palette (edit here) ---- */
  --stone:      #F3EFE8;   /* page background (warm off-white) */
  --surface:    #FFFFFF;   /* cards, raised panels */
  --surface-2:  #E6DFD3;   /* warm alternate bands */
  --line:       #D9D1C4;   /* borders, hairlines */
  --ink:        #1E1B18;   /* primary text + dark headings + primary button */
  --ink-soft:   #56504A;   /* secondary text (AA on light) */
  --ink-mute:   #8B8278;   /* decorative / faint labels only */

  --slate:      #35414A;   /* cool trust accent + text accent (AA on light) */
  --slate-soft: #DEE3E6;   /* cool plate fill */
  --brick:      #8F3C22;   /* roof-tile warm accent for eyebrows/labels/marks (AA small text on stone) */
  --brick-soft: #EFDDD2;   /* warm plate fill */
  --charcoal:   #23272B;   /* dark storm/CTA band background */

  /* ---- derived on-dark accents (clear AA on --charcoal, dark bands only) ---- */
  --brick-hi:   #D98A5E;   /* warm roof-tile accent text/marks on --charcoal */
  --stone-dim:  #CDC7BD;   /* muted paper for body text on --charcoal */

  /* ---- type (edit here) ---- */
  --font-display: "General Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* ---- metrics ---- */
  --maxw: 1180px;
  --pad: clamp(1.1rem, 4vw, 2.5rem);
  --radius: 6px;
  --radius-btn: 6px;
  --shadow: 0 22px 50px -30px rgba(30, 27, 24, .34);
  --shadow-soft: 0 12px 34px -26px rgba(30, 27, 24, .40);
}

/* ---------- reset-ish ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--stone);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--brick); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; margin: 0; overflow-wrap: break-word; letter-spacing: -.015em; }
p { margin: 0 0 1rem; }
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--stone); padding: .7rem 1.1rem; z-index: 200; border-radius: 0 0 var(--radius) 0; }
.skip-link:focus { left: 0; }

/* ---------- demo notice bar (slim, above the nav, non-intrusive) ---------- */
.demo-bar {
  background: var(--charcoal); color: var(--stone-dim);
  font-size: .76rem; line-height: 1.5; letter-spacing: .01em;
  text-align: center; padding: .5rem var(--pad);
  border-bottom: 1px solid rgba(243, 239, 232, .14);
}
.demo-bar b { color: var(--stone); font-weight: 600; }

/* ---------- eyebrow (small brick label with a roofline peak mark) ----------
   The ::after is a small two-segment chevron (a shallow roof peak), the one
   recurring motif of the template. It echoes the gable that clips the hero. */
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .2em;
  font-size: .72rem; color: var(--brick); margin: 0 0 1.25rem; font-weight: 700;
  font-family: var(--font-body); padding-bottom: 1rem; position: relative;
}
.eyebrow::after {
  content: ""; position: absolute; left: 2px; bottom: 3px;
  width: 12px; height: 12px;
  border-top: 2.5px solid var(--brick); border-left: 2.5px solid var(--brick);
  border-radius: 3px 0 0 0;
  transform: rotate(45deg); transform-origin: center;
}
.section__head--center .eyebrow::after, .eyebrow--center::after { left: 50%; margin-left: -6px; }
.eyebrow--slate { color: var(--slate); }
.eyebrow--slate::after { border-color: var(--slate); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--ink); color: var(--stone);
  padding: .92rem 1.7rem; border-radius: var(--radius-btn); text-decoration: none;
  font-weight: 600; letter-spacing: .01em; border: 1.5px solid var(--ink);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
  cursor: pointer; font-family: var(--font-body); font-size: 1rem;
}
.btn:hover { transform: translateY(-2px); background: #000; border-color: #000; box-shadow: 0 16px 30px -16px rgba(30, 27, 24, .55); }
.btn:focus-visible { outline: 3px solid var(--slate); outline-offset: 3px; }
a:focus-visible, .nav__toggle:focus-visible, button:focus-visible { outline: 3px solid var(--slate); outline-offset: 2px; border-radius: 4px; }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--stone); box-shadow: none; transform: translateY(-2px); }
.btn--sm { padding: .58rem 1.2rem; font-size: .92rem; }
.btn--wide { width: 100%; padding: 1rem; font-size: 1.05rem; }
.btn--light { background: var(--stone); color: var(--ink); border-color: var(--stone); }
.btn--light:hover { background: #fff; border-color: #fff; color: var(--ink); box-shadow: none; }
.btn--outline-light { background: transparent; color: var(--stone); border-color: rgba(243, 239, 232, .55); }
.btn--outline-light:hover { background: rgba(243, 239, 232, .12); color: #fff; border-color: rgba(243, 239, 232, .85); box-shadow: none; }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(243, 239, 232, .90); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--ink); }
.brand__mark { width: 32px; height: 32px; flex: none; }
.brand__mark svg { width: 100%; height: 100%; display: block; }
.brand__name { font-family: var(--font-display); font-size: 1.42rem; font-weight: 700; letter-spacing: -.01em; line-height: 1; }
.brand__name small { display: block; font-family: var(--font-body); font-size: .55rem; letter-spacing: .24em; text-transform: uppercase; color: var(--brick); font-weight: 700; margin-top: 5px; }
.nav__links { display: flex; align-items: center; gap: 1.7rem; }
.nav__links a:not(.btn) { text-decoration: none; color: var(--ink-soft); font-size: .96rem; font-weight: 500; transition: color .2s; }
.nav__links a:not(.btn):hover { color: var(--ink); }
.nav__links a[aria-current="page"]:not(.btn) { color: var(--ink); font-weight: 600; }
.nav__phone { color: var(--ink) !important; font-weight: 600; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 25px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav__mobile { display: none; flex-direction: column; padding: .5rem var(--pad) 1.4rem; gap: .1rem; border-bottom: 1px solid var(--line); background: var(--stone); }
.nav__mobile a:not(.btn) { padding: .85rem .2rem; text-decoration: none; color: var(--ink); border-bottom: 1px solid var(--line); font-weight: 500; }
.nav__mobile a[aria-current="page"]:not(.btn) { color: var(--brick); }
.nav__mobile .btn { margin-top: 1rem; }
.nav__mobile.open { display: flex; }

/* ---------- image placeholders ---------- */
.placeholder {
  position: relative; display: grid; place-items: center; text-align: center;
  background:
    repeating-linear-gradient(45deg, rgba(53, 65, 74, .05) 0 14px, transparent 14px 28px),
    linear-gradient(150deg, var(--slate-soft), var(--brick-soft));
  border: 1px dashed #c4b9a6; border-radius: var(--radius); color: var(--ink-soft);
  min-height: 160px; gap: .9rem; padding: 1.4rem;
}
.placeholder__icon { width: 48px; height: 48px; fill: none; stroke: var(--slate); stroke-width: 1.4; opacity: .7; }
.placeholder__label { text-transform: uppercase; letter-spacing: .12em; font-size: .64rem; color: var(--ink-soft); font-weight: 700; }
.placeholder--hero { aspect-ratio: 7 / 8; }
.placeholder--tall { aspect-ratio: 10 / 13; }
.placeholder--wide { aspect-ratio: 16 / 10; }
.placeholder--portrait { aspect-ratio: 4 / 5; }
.framed { border: 1px solid var(--line); box-shadow: var(--shadow); overflow: hidden; }

/* ---------- generic sections ---------- */
.section { padding-block: clamp(3.4rem, 8vw, 7rem); }
.section--tint { background: var(--surface-2); border-block: 1px solid var(--line); }
.section--dark { background: var(--charcoal); color: var(--stone); }
.section__head { max-width: 54ch; margin-bottom: 3rem; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__title { font-size: clamp(1.9rem, 4.4vw, 3rem); }
.section__sub { color: var(--ink-soft); margin-top: 1.1rem; font-size: 1.08rem; }
.section--dark .section__title, .section--dark h2, .section--dark h3 { color: var(--stone); }
.section--dark .eyebrow { color: var(--brick-hi); }
.section--dark .eyebrow::after { border-color: var(--brick-hi); }
.section--dark .section__sub { color: var(--stone-dim); }

/* ---------- page header (interior pages) ---------- */
.pagehead { background: linear-gradient(170deg, #ece5d8, var(--stone) 66%); border-bottom: 1px solid var(--line); padding-block: clamp(2.8rem, 6vw, 4.6rem); }
.pagehead__inner { max-width: 64ch; }
.pagehead h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); }
.pagehead__lede { color: var(--ink-soft); font-size: 1.16rem; margin-top: 1.2rem; }
.crumbs { font-size: .8rem; color: var(--ink-soft); margin-bottom: 1.1rem; letter-spacing: .04em; text-transform: uppercase; }
.crumbs a { text-decoration: none; color: var(--ink-soft); }
.crumbs a:hover { color: var(--brick); }
.crumbs span { color: var(--slate); margin-inline: .5rem; }

/* ---------- hero (home) ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(175deg, #ece5d8 0%, var(--stone) 56%); }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: center; padding-block: clamp(3rem, 6vw, 5.5rem); }
.hero__title { font-size: clamp(2.4rem, 6vw, 4.2rem); }
.hero__title .accent { color: var(--brick); }
.hero__lede { font-size: 1.2rem; color: var(--ink-soft); max-width: 48ch; margin: 1.5rem 0 2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.8rem; }
.hero__trust { display: flex; align-items: flex-start; gap: .55rem; color: var(--ink-soft); font-size: .92rem; max-width: 48ch; }
.hero__trust svg { width: 18px; height: 18px; fill: none; stroke: var(--slate); stroke-width: 1.7; flex: none; margin-top: 3px; }
.hero__art { position: relative; filter: drop-shadow(0 24px 40px rgba(30, 27, 24, .26)); }
/* the roofline: a shallow gable clips the top of the hero image */
.hero__art .placeholder--hero { clip-path: polygon(0 7%, 50% 0, 100% 7%, 100% 100%, 0 100%); border: 0; box-shadow: none; }

/* ---------- storm / leak band (dark charcoal, calm not alarming) ---------- */
.emergency { background: var(--charcoal); color: var(--stone); border-top: 3px solid var(--brick); }
.emergency__inner { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.4rem); flex-wrap: wrap; padding-block: clamp(1.6rem, 3.5vw, 2.2rem); }
.emergency__icon { width: 40px; height: 40px; flex: none; fill: none; stroke: var(--brick-hi); stroke-width: 1.6; opacity: .95; }
.emergency__text { flex: 1 1 340px; }
.emergency__text b { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; display: block; margin-bottom: .25rem; color: var(--stone); letter-spacing: -.01em; }
.emergency__text p { margin: 0; color: var(--stone-dim); font-size: .98rem; }
.emergency__text a.tel { color: var(--brick-hi); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.emergency__cta { flex: none; }
.emergency--panel { background: var(--surface); color: var(--ink); border: 1px solid var(--line); border-left: 4px solid var(--brick); border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 1.9rem); }
.emergency--panel .emergency__icon { stroke: var(--brick); }
.emergency--panel .emergency__text b { color: var(--ink); }
.emergency--panel .emergency__text p { color: var(--ink-soft); }
.emergency--panel .emergency__text a.tel { color: var(--brick); }

/* ---------- services grid ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.svc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem 1.7rem; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.svc::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--slate); }
.svc--brick::before { background: var(--brick); }
.svc__icon { width: 32px; height: 32px; fill: none; stroke: var(--slate); stroke-width: 1.5; margin-bottom: 1rem; }
.svc--brick .svc__icon { stroke: var(--brick); }
.svc__name { font-family: var(--font-display); font-size: 1.24rem; font-weight: 600; color: var(--ink); margin: 0 0 .5rem; line-height: 1.25; }
.svc__desc { color: var(--ink-soft); font-size: .96rem; margin: 0; }

/* ---------- before / after ---------- */
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem, 3vw, 2rem); }
.ba__item { position: relative; }
.ba__frame { position: relative; }
.ba__tag { position: absolute; top: 1rem; left: 1rem; z-index: 2; text-transform: uppercase; letter-spacing: .12em; font-size: .68rem; font-weight: 700; padding: .35rem .8rem; border-radius: 4px; }
.ba__tag--before { background: var(--slate); color: var(--stone); }
.ba__tag--after { background: var(--brick); color: var(--stone); }
.ba__note { display: flex; align-items: flex-start; gap: .6rem; margin-top: 1.6rem; color: var(--ink-soft); font-size: .95rem; max-width: 62ch; }
.ba__note svg { width: 18px; height: 18px; fill: none; stroke: var(--slate); stroke-width: 1.7; flex: none; margin-top: 3px; }

/* ---------- credibility block + stat row ---------- */
.cred { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3.4rem); align-items: start; }
.cred__list { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: 1.4rem; }
.cred__list li { position: relative; padding-left: 2.4rem; }
.cred__list b { display: block; font-family: var(--font-display); font-size: 1.14rem; font-weight: 600; color: var(--ink); margin-bottom: .2rem; }
.cred__list span { color: var(--ink-soft); font-size: .97rem; }
.cred__list li::before { content: ""; position: absolute; left: 0; top: .15em; width: 22px; height: 22px; border-radius: var(--radius); background: var(--slate-soft); }
.cred__list li::after { content: ""; position: absolute; left: 7px; top: .46em; width: 8px; height: 5px; border-left: 2px solid var(--slate); border-bottom: 2px solid var(--slate); transform: rotate(-45deg); }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 3rem; border-top: 1px solid var(--line); padding-top: 2.4rem; }
.stat { text-align: left; }
.stat b { display: block; font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.4rem); color: var(--ink); font-weight: 700; line-height: 1; letter-spacing: -.02em; }
.stat span { display: block; color: var(--ink-soft); font-size: .84rem; margin-top: .5rem; letter-spacing: .02em; }

/* ---------- financing callout ---------- */
.finance { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2rem); flex-wrap: wrap; background: var(--slate-soft); border: 1px solid #c3d2da; border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 1.9rem); }
.finance__icon { width: 40px; height: 40px; flex: none; fill: none; stroke: var(--slate); stroke-width: 1.6; }
.finance__text { flex: 1 1 300px; }
.finance__text b { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: var(--ink); display: block; margin-bottom: .2rem; }
.finance__text p { margin: 0; color: var(--ink-soft); font-size: .96rem; }

/* ---------- service area ---------- */
.area { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3.4rem); align-items: start; }
.area__list { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 1.2rem; }
.area__list li { position: relative; padding-left: 1.6rem; color: var(--ink); font-size: .98rem; }
.area__list li::before { content: ""; position: absolute; left: 0; top: .5em; width: 9px; height: 9px; border-radius: 50%; border: 2px solid var(--slate); }

/* ---------- steps (what to expect) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.step__num { font-family: var(--font-display); color: var(--brick); font-size: 1.05rem; font-weight: 700; letter-spacing: .02em; }
.step h3 { font-size: 1.24rem; margin: .5rem 0; }
.step p { color: var(--ink-soft); font-size: .98rem; margin: 0; }

/* ---------- values / approach ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.value__num { font-family: var(--font-display); color: var(--brick); font-size: 1.05rem; font-weight: 700; letter-spacing: .02em; }
.value h3 { font-size: 1.22rem; margin: .5rem 0; }
.value p { color: var(--ink-soft); font-size: .98rem; margin: 0; }

/* ---------- split / feature blocks ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.6rem); align-items: center; }
.split--reverse .split__art { order: 2; }
.split__text p { color: var(--ink-soft); }
.checklist { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .75rem; }
.checklist li { position: relative; padding-left: 1.9rem; color: var(--ink); }
.checklist li::before { content: ""; position: absolute; left: 0; top: .2em; width: 20px; height: 20px; border-radius: var(--radius); background: var(--slate-soft); }
.checklist li::after { content: ""; position: absolute; left: 6px; top: .46em; width: 8px; height: 5px; border-left: 2px solid var(--slate); border-bottom: 2px solid var(--slate); transform: rotate(-45deg); }

/* ---------- insurance-claim explainer ---------- */
.claim { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1rem; }
.claim__step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.5rem; position: relative; }
.claim__step .step__num { display: block; margin-bottom: .3rem; }
.claim__step h3 { font-size: 1.14rem; margin: 0 0 .4rem; }
.claim__step p { color: var(--ink-soft); font-size: .94rem; margin: 0; }

/* ---------- team / certifications (about) ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 4vw, 2.6rem); }
.team-grid--two { grid-template-columns: repeat(2, 1fr); max-width: 760px; }
.member { display: flex; flex-direction: column; }
.member__photo { margin-bottom: 1.3rem; }
.member__name { font-size: 1.32rem; }
.member__role { color: var(--slate); font-weight: 700; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; margin: .35rem 0 .9rem; }
.member__creds { list-style: none; padding: 0; margin: 0 0 1rem; display: flex; flex-wrap: wrap; gap: .4rem; }
.member__creds li { font-size: .72rem; background: var(--slate-soft); color: var(--slate); padding: .28rem .65rem; border-radius: 4px; font-weight: 700; letter-spacing: .02em; }
.member__bio { color: var(--ink-soft); font-size: .96rem; margin: 0; }
.member__interest { margin-top: 1rem; font-size: .88rem; color: var(--ink-soft); border-top: 1px solid var(--line); padding-top: 1rem; }
.member__interest b { color: var(--ink); font-family: var(--font-display); font-weight: 600; }

/* certification pills row */
.certs { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.6rem; }
.cert { display: inline-flex; align-items: center; gap: .5rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: .6rem 1rem; font-size: .88rem; font-weight: 600; color: var(--ink); }
.cert svg { width: 18px; height: 18px; fill: none; stroke: var(--slate); stroke-width: 1.7; flex: none; }

/* ---------- services menu (services page) ---------- */
.menu-group { margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.menu-group:last-child { margin-bottom: 0; }
.menu-group__head { display: flex; align-items: baseline; gap: 1rem; border-bottom: 2px solid var(--slate); padding-bottom: 1rem; margin-bottom: .6rem; }
.menu-group--storm .menu-group__head { border-bottom-color: var(--brick); }
.menu-group__label { font-family: var(--font-body); text-transform: uppercase; letter-spacing: .16em; font-size: .74rem; font-weight: 700; flex: none; color: var(--brick); }
.menu-group__title { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; }
.menu-group__promise { color: var(--ink-soft); font-size: .96rem; margin: 0 0 1.4rem; }
.price-row { display: grid; grid-template-columns: 1fr auto; gap: .4rem 1.4rem; align-items: baseline; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.price-row__name { font-family: var(--font-display); font-size: 1.16rem; font-weight: 600; color: var(--ink); }
.price-row__desc { grid-column: 1 / 2; color: var(--ink-soft); font-size: .94rem; margin: 0; }
.price-row__price { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--ink); white-space: nowrap; text-align: right; }
.price-row__price small { display: block; font-family: var(--font-body); font-size: .62rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-soft); font-weight: 600; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font-display); font-size: 1.16rem; font-weight: 600; color: var(--ink);
  padding: 1.4rem 3rem 1.4rem 0; position: relative; line-height: 1.35;
}
.faq__q:focus-visible { outline: 3px solid var(--slate); outline-offset: 3px; border-radius: 4px; }
.faq__q::after { content: ""; position: absolute; right: .4rem; top: 50%; width: 11px; height: 11px; border-right: 2px solid var(--slate); border-bottom: 2px solid var(--slate); transform: translateY(-70%) rotate(45deg); transition: transform .25s ease; }
.faq__q[aria-expanded="true"]::after { transform: translateY(-30%) rotate(-135deg); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .3s ease; }
.faq__a-inner { padding: 0 3rem 1.5rem 0; color: var(--ink-soft); }
.faq__a p { margin: 0; }
@media (prefers-reduced-motion: reduce) { .faq__a { transition: none; } .faq__q::after { transition: none; } }

/* ---------- CTA band (dark) ---------- */
.cta-band { text-align: center; }
.cta-band__mark { width: 52px; height: 52px; margin: 0 auto 1.2rem; display: block; }
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--stone); }
.cta-band p { color: var(--stone-dim); max-width: 54ch; margin: 1.1rem auto 2rem; font-size: 1.1rem; }
.cta-band__row { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }
.cta-band__phone { color: var(--stone-dim); margin-top: 1.6rem; font-size: .96rem; }
.cta-band__phone a { color: var(--brick-hi); font-weight: 600; }
.section--dark a:focus-visible { outline-color: var(--brick-hi); }

/* ---------- contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.8rem, 4vw, 3.4rem); align-items: start; }
.bookcard { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--shadow-soft); position: relative; }
.bookcard h2 { font-size: 1.7rem; margin-bottom: .4rem; }
.bookcard > p { color: var(--ink-soft); margin-bottom: 1.6rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); font-weight: 700; }
.field input, .field select, .field textarea {
  background: var(--stone); border: 1px solid var(--line); color: var(--ink);
  padding: .8rem .9rem; border-radius: var(--radius-btn); font: inherit; font-size: .98rem; width: 100%;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: 2px solid var(--slate); border-color: var(--slate); }
.form-note { font-size: .82rem; color: var(--ink-soft); margin-top: 1rem; }
.form-success { display: none; margin-top: 1.4rem; padding: 1.2rem 1.3rem; border: 1px solid var(--slate); border-left: 4px solid var(--slate); background: var(--slate-soft); border-radius: var(--radius); color: var(--ink); }
.form-success.is-visible { display: block; }
.form-success b { font-family: var(--font-display); font-weight: 600; }
.bookcard.is-sent form { opacity: .5; }

.info-block { margin-bottom: 2rem; }
.info-block h3 { font-size: 1.16rem; margin-bottom: .8rem; display: flex; align-items: center; gap: .6rem; }
.info-block h3 svg { width: 20px; height: 20px; fill: none; stroke: var(--slate); stroke-width: 1.7; flex: none; }

/* open / closed badge */
.open-badge { display: inline-flex; align-items: center; gap: .5rem; font-size: .84rem; font-weight: 700; padding: .35rem .8rem; border-radius: 50px; border: 1px solid var(--line); background: var(--surface); color: var(--ink-soft); margin-bottom: 1rem; }
.open-badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--ink-mute); flex: none; }
.open-badge.is-open { color: #1f5d3a; border-color: #b6d3bd; background: #eaf3ec; }
.open-badge.is-open::before { background: #2f7a49; }
.open-badge.is-closed { color: #8f3c26; border-color: #e3c9c2; background: #f7ece9; }
.open-badge.is-closed::before { background: #a8482f; }

.hours-list { display: grid; gap: 0; margin: 0; }
.hours-list > div { display: flex; justify-content: space-between; padding: .6rem 0; border-bottom: 1px solid var(--line); font-size: .96rem; }
.hours-list dt { color: var(--ink); font-weight: 600; margin: 0; }
.hours-list dd { color: var(--ink-soft); margin: 0; }
.hours-list .is-today dt, .hours-list .is-today dd { color: var(--brick); }
.contact-pending { font-size: .92rem; color: var(--ink-soft); margin: 0; padding: .8rem 1rem; background: var(--slate-soft); border-left: 3px solid var(--slate); border-radius: var(--radius); }
address.contact-addr { font-style: normal; color: var(--ink-soft); line-height: 1.85; }
address.contact-addr a { font-weight: 600; }
.map-ph { min-height: 300px; margin-top: 1.5rem; }

/* ---------- footer ---------- */
.footer { background: var(--charcoal); color: var(--stone-dim); padding-top: clamp(2.8rem, 6vw, 4rem); }
.footer a { color: var(--stone-dim); }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 2.4rem; border-bottom: 1px solid rgba(243, 239, 232, .14); }
.footer__brand .brand__name { color: var(--stone); }
.footer__brand .brand__name small { color: var(--brick-hi); }
.footer__brand p { color: var(--stone-dim); font-size: .95rem; margin: 1.1rem 0 0; max-width: 32ch; }
.footer__col h4 { color: var(--stone); font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 1rem; font-family: var(--font-body); font-weight: 700; }
.footer__col a { display: block; text-decoration: none; color: var(--stone-dim); font-size: .95rem; padding: .3rem 0; }
.footer__col a:hover { color: var(--stone); }
.footer__hours { font-size: .92rem; color: var(--stone-dim); line-height: 1.9; }
.footer__hours b { color: var(--stone); font-weight: 600; }
.footer__legal { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; padding-block: 1.5rem; color: #9aa4a9; font-size: .82rem; }
.footer__legal p { margin: 0; }
.footer__legal a { color: #9aa4a9; text-decoration: none; }
.footer a:focus-visible { outline-color: var(--brick-hi); }

/* ---------- scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; } }

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .hero__inner, .contact-grid, .split, .cred, .area { grid-template-columns: 1fr; }
  .split--reverse .split__art { order: -1; }
  .hero__art { max-width: 460px; }
  .svc-grid, .team-grid, .values, .steps, .claim { grid-template-columns: repeat(2, 1fr); }
  .stat-row { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .svc-grid, .team-grid, .values, .steps, .form-grid, .area__list, .ba, .claim { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .menu-group__head { flex-direction: column; gap: .3rem; }
}
</content>

/* ---------- illusztracios fotok (bemutato) ---------- */
.placeholder.has-ill { overflow: hidden; border-style: solid; border-color: rgba(35, 39, 43, .12); }
.ill-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ill-chip { position: absolute; right: 10px; bottom: 10px; z-index: 2; font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 999px; background: rgba(24, 24, 22, .72); color: #F3EFE8; pointer-events: none; }

/* ---------- vélemények (opcionális modul) ---------- */
.stars5 { display:flex; gap:2px; }
.stars5 svg { width:16px; height:16px; flex:none; display:block; fill:var(--brick); }
.reviews { display:grid; grid-template-columns:repeat(3,1fr); gap:1.1rem; margin-top:2.4rem; }
.review { background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); padding:1.5rem 1.4rem; box-shadow:var(--shadow-soft); display:flex; flex-direction:column; gap:.85rem; }
.review blockquote { margin:0; font-size:1rem; line-height:1.56; color:var(--ink); }
.review figcaption { display:flex; flex-direction:column; gap:.12rem; font-family:var(--font-body); margin-top:auto; }
.review figcaption b { color:var(--ink-soft); font-weight:700; font-size:.92rem; }
.review__meta { color:var(--ink-soft); font-size:.78rem; opacity:.85; }
.reviews__note { margin:1.6rem auto 0; color:var(--ink-soft); font-size:.85rem; text-align:center; max-width:74ch; line-height:1.5; }
@media (max-width:820px) { .reviews { grid-template-columns:1fr; } }
