/* ===========================================================
   Jalaque Interiors — shared stylesheet
   Brand palette taken from the logo (warm cream + espresso + brown)
   Change a value here and it updates everywhere.
   =========================================================== */
:root {
  --cream:        #f7f1e6;
  --cream-soft:   #fbf7ee;
  --cream-panel:  #f1e8d8;
  --espresso:     #4a3b2a;
  --espresso-soft:#6a5742;
  --brown:        #9b7b54;
  --brown-deep:   #7d6140;
  --line:         #d8cab2;
  --line-soft:    #e7ddca;
  --white:        #ffffff;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1180px;
  --radius: 14px;
  --shadow-sm: 0 2px 10px rgba(74, 59, 42, .06);
  --shadow-md: 0 10px 34px rgba(74, 59, 42, .12);
  --ease: cubic-bezier(.4, 0, .2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--espresso);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

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

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.08; color: var(--espresso); }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); letter-spacing: .5px; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
p  { color: var(--espresso-soft); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.center { text-align: center; }
.eyebrow {
  font-family: var(--sans); font-size: .74rem; font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase; color: var(--brown);
}
.lead { font-size: 1.12rem; max-width: 62ch; }
section { padding: 84px 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--sans); font-size: .92rem; font-weight: 600;
  letter-spacing: .04em;
  padding: 14px 30px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid var(--espresso); background: var(--espresso); color: var(--cream-soft);
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--brown-deep); border-color: var(--brown-deep); }
.btn.ghost { background: transparent; color: var(--espresso); }
.btn.ghost:hover { background: var(--espresso); color: var(--cream-soft); }
.arrow { transition: transform .25s var(--ease); }
.link-arrow:hover .arrow { transform: translateX(4px); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 241, 230, .86);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
/* transparent overlay header on pages with a full-bleed image hero */
body.hero-overlay .site-header {
  position: fixed; left: 0; right: 0; top: 0;
  background: transparent; backdrop-filter: none; border-bottom-color: transparent;
}
/* once scrolled, solidify so links stay readable over light content */
body.hero-overlay .site-header.scrolled {
  background: rgba(247, 241, 230, .9);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom-color: var(--line-soft); box-shadow: var(--shadow-sm);
}
/* pull the image hero up under the floating header */
body.hero-overlay .img-hero { margin-top: -74px; }
body.hero-overlay .img-hero .img-hero-inner { padding-top: 168px; padding-bottom: 80px; }
.site-header .bar { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark { width: 40px; height: 40px; border-radius: 9px; object-fit: cover; box-shadow: var(--shadow-sm); }
.brand .name { font-family: var(--serif); font-size: 1.42rem; font-weight: 600; letter-spacing: 2px; line-height: 1; }
.brand .name small { display: block; font-family: var(--sans); font-size: .56rem; font-weight: 600; letter-spacing: .34em; color: var(--brown); margin-top: 3px; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: .9rem; font-weight: 500; color: var(--espresso-soft); position: relative; padding: 4px 0; transition: color .2s; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px; background: var(--brown); transition: width .25s var(--ease); }
.nav a:hover, .nav a.active { color: var(--espresso); }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav .btn { padding: 9px 20px; color: var(--cream-soft); }
.nav .btn:hover { color: var(--cream-soft); }
.nav .btn::after { display: none; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; font-size: 1.5rem; color: var(--espresso); }

/* ---------- hero ---------- */
.hero { padding: 130px 0 96px; position: relative; overflow: hidden; }
.hero .arc {
  position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: min(760px, 92vw); aspect-ratio: 1; border: 1px solid var(--line);
  border-radius: 50%; opacity: .55; pointer-events: none;
}
.hero-inner { position: relative; }
.hero h1 { margin: 0 0 14px; }
.hero .eyebrow { display: inline-block; margin-bottom: 16px; }
.hero .lead { margin: 0 auto 34px; }
.hero .cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- service cards (home) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--cream-soft); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 40px 32px 34px;
  display: flex; flex-direction: column; align-items: flex-start;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line); }
.card .ico { width: 64px; height: 64px; color: var(--brown); margin-bottom: 22px; }
.card .ico svg { width: 100%; height: 100%; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .98rem; margin-bottom: 22px; }
.card .link-arrow { margin-top: auto; font-weight: 600; color: var(--brown-deep); font-size: .92rem; display: inline-flex; gap: .5em; align-items: center; }

/* ---------- section page hero ---------- */
.page-hero { padding: 80px 0 54px; }
.page-hero .eyebrow { margin-bottom: 14px; display: inline-block; }
.page-hero h1 { margin-bottom: 18px; }

/* ---------- image hero (section pages) ---------- */
.img-hero {
  position: relative; min-height: 520px; display: flex; align-items: center;
  padding: 0; overflow: hidden;
  background-color: var(--cream-panel);
  background-image: var(--bg);
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.img-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(247,241,230,.82) 0%, rgba(247,241,230,.5) 32%, rgba(247,241,230,.12) 55%, rgba(247,241,230,0) 75%);
}
.img-hero-inner { position: relative; max-width: 520px; padding-top: 60px; padding-bottom: 60px; }

/* centered variant (home hero) — content centered, lighter even overlay */
.img-hero.center-hero { min-height: 780px; justify-content: center; background-position: center 8%; }
.img-hero.center-hero::before {
  background: radial-gradient(ellipse 60% 55% at 50% 42%, rgba(247,241,230,.78) 0%, rgba(247,241,230,.4) 55%, rgba(247,241,230,.12) 100%);
}
.img-hero.center-hero .img-hero-inner { max-width: 760px; margin: 0 auto; }
/* full-image hero — height follows the image ratio so the whole photo shows, no crop */
.img-hero.hero-full { min-height: 0; aspect-ratio: 1535 / 1024; background-position: center; background-size: cover; }
.img-hero.center-hero .cta-row { display: flex; justify-content: center; }
body.hero-overlay .img-hero.center-hero .img-hero-inner { padding-top: 150px; padding-bottom: 130px; }
.img-hero .eyebrow { display: inline-block; margin-bottom: 14px; }
.img-hero h1 { margin-bottom: 16px; }
.img-hero .lead { font-size: 1.05rem; margin-bottom: 30px; }

/* ---------- featured project (text + image) ---------- */
.feature { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center; }
.feature-text .eyebrow { display: inline-block; margin-bottom: 14px; }
.feature-text h2 { margin-bottom: 8px; }
.feature-sub { font-size: 1.02rem; color: var(--espresso); font-weight: 500; }
.feature-text .rule { display: block; width: 56px; height: 1.5px; background: var(--line); margin: 22px 0; }
.feature-text .link-arrow { margin-top: 22px; font-weight: 600; color: var(--brown-deep); display: inline-flex; gap: .5em; align-items: center; }
.feature-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.feature-img img { width: 100%; height: 100%; object-fit: cover; }

/* stacked feature rows (home) — image left / text right, alternating */
.feature-stack { display: flex; flex-direction: column; gap: 72px; }
.feature-stack .feature { grid-template-columns: 1.25fr 1fr; }
.feature-stack .feature .feature-img { aspect-ratio: 16/11; }
.feature-stack .feature.reverse { grid-template-columns: 1fr 1.25fr; }
.feature-stack .feature.reverse .feature-img { order: 2; }
.feature-stack .feature.reverse .feature-text { order: 1; }

/* ---------- project grid (photo cards) ---------- */
.row-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; }
.row-head .eyebrow { display: inline-block; }
.row-head .link-arrow { font-weight: 600; color: var(--brown-deep); font-size: .86rem; display: inline-flex; gap: .5em; align-items: center; }
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.proj { display: flex; flex-direction: column; }
.proj-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3.4; box-shadow: var(--shadow-sm); }
.proj-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.proj:hover .proj-img img { transform: scale(1.04); }
.proj-body { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding: 16px 2px 0; }
.proj-body h4 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; }
.proj-body p { font-size: .9rem; }
.proj-body .arrow { color: var(--brown-deep); margin-top: 4px; transition: transform .25s var(--ease); }
.proj:hover .proj-body .arrow { transform: translateX(4px); }

/* ---------- options / what we offer ---------- */
.options-band { background: var(--cream-panel); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.options-band .eyebrow { display: inline-block; margin-bottom: 34px; }
.options { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.options.cols-3 { grid-template-columns: repeat(3, 1fr); max-width: 960px; margin-left: auto; margin-right: auto; }
.options.cols-6 { grid-template-columns: repeat(6, 1fr); }
.opt { background: var(--cream-soft); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 26px 18px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.opt:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.opt-ico { display: grid; place-items: center; width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 50%; border: 1.5px solid var(--line); color: var(--brown-deep); }
.opt-ico svg { width: 28px; height: 28px; }
.opt h4 { font-family: var(--serif); font-size: 1.18rem; font-weight: 600; margin-bottom: 8px; }
.opt p { font-size: .86rem; }

/* ---------- offer cards (image + text, styling/services) ---------- */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.offer { background: var(--cream-soft); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.offer:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.offer-img { aspect-ratio: 16/11; overflow: hidden; }
.offer-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.offer:hover .offer-img img { transform: scale(1.05); }
.offer-body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.offer-body h3 { margin-bottom: 8px; }
.offer-body p { font-size: .94rem; margin-bottom: 18px; }
.offer-body .link-arrow { margin-top: auto; font-weight: 600; color: var(--brown-deep); font-size: .9rem; display: inline-flex; gap: .5em; align-items: center; }

/* ---------- cta band (image background) ---------- */
.cta-band { position: relative; padding: 0; overflow: hidden; background: var(--bg) center/cover no-repeat, var(--cream-panel); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--cream) 28%, rgba(247,241,230,.7) 50%, rgba(247,241,230,.15) 100%); }
.cta-inner { position: relative; padding: 92px 28px; max-width: 560px; }
.cta-inner .eyebrow { display: inline-block; margin-bottom: 14px; }
.cta-inner h2 { margin-bottom: 28px; }

/* ---------- service flow stepper ---------- */
.flow-band { background: var(--cream-panel); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.flow { display: flex; align-items: stretch; gap: 0; flex-wrap: wrap; justify-content: center; }
.step { flex: 1 1 0; min-width: 150px; text-align: center; position: relative; padding: 8px 14px; }
.step .num {
  width: 50px; height: 50px; margin: 0 auto 14px; border-radius: 50%;
  border: 1.5px solid var(--brown); color: var(--brown-deep);
  display: grid; place-items: center; font-family: var(--serif); font-size: 1.4rem; font-weight: 600;
  background: var(--cream-soft);
}
.step h4 { font-family: var(--sans); font-size: .82rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--espresso); margin-bottom: 6px; }
.step p { font-size: .86rem; }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 25px; right: -8px; width: 16px; height: 16px;
  border-top: 1.5px solid var(--line); border-right: 1.5px solid var(--line);
  transform: rotate(45deg);
}

/* ---------- video gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vcard {
  background: var(--cream-soft); border: 1px solid var(--line-soft);
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.vcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.vthumb { position: relative; aspect-ratio: 16/10; background: var(--cream-panel); overflow: hidden; }
.vthumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.vcard:hover .vthumb img { transform: scale(1.05); }
.vthumb .play {
  position: absolute; inset: 0; margin: auto; width: 62px; height: 62px;
  background: rgba(247, 241, 230, .92); border-radius: 50%;
  display: grid; place-items: center; box-shadow: var(--shadow-md);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.vthumb .play svg { width: 22px; height: 22px; margin-left: 3px; color: var(--espresso); }
.vcard:hover .vthumb .play { transform: scale(1.08); background: var(--cream-soft); }
.vbody { padding: 18px 20px 22px; }
.vbody h4 { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; margin-bottom: 6px; }
.vbody p { font-size: .9rem; }
.gallery-empty { text-align: center; padding: 60px 20px; color: var(--espresso-soft); grid-column: 1 / -1; }

/* ---------- lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(40, 31, 21, .8); backdrop-filter: blur(6px); }
.lightbox.open { display: flex; }
.lightbox .frame { width: min(960px, 100%); }
.lightbox .ratio { position: relative; aspect-ratio: 16/9; background: #000; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-md); }
.lightbox iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lightbox .lb-title { color: var(--cream-soft); font-family: var(--serif); font-size: 1.4rem; margin-top: 16px; text-align: center; }
.lightbox .close { position: absolute; top: 20px; right: 24px; background: none; border: 0; color: var(--cream-soft); font-size: 2.2rem; line-height: 1; cursor: pointer; opacity: .85; }
.lightbox .close:hover { opacity: 1; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-info .item { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line-soft); }
.contact-info .item:last-child { border-bottom: 0; }
.contact-info .item svg { width: 26px; height: 26px; color: var(--brown); flex: none; margin-top: 3px; }
.contact-info .item .label { font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brown); font-weight: 600; }
.contact-info .item a, .contact-info .item span { font-size: 1.14rem; color: var(--espresso); }

.form { background: var(--cream-soft); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--espresso-soft); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--espresso);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px; background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--brown); box-shadow: 0 0 0 3px rgba(155, 123, 84, .15); }
.field textarea { resize: vertical; min-height: 120px; }
.form .btn { width: 100%; justify-content: center; }
.form-ok { display: none; text-align: center; padding: 30px 10px; }
.form-ok.show { display: block; }
.form-ok .tick { width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 50%; background: var(--brown); color: var(--cream-soft); display: grid; place-items: center; }
.form-ok .tick svg { width: 30px; height: 30px; }
/* Honeypot — off-screen rather than display:none, which some bots detect. */
.form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-error { display: none; margin-top: 14px; padding: 12px 14px; border-radius: 10px; background: #fdeceb; border: 1px solid #e9b7b3; color: #8d3a33; font-size: .9rem; }

/* The admin mockup's styles lived here. The mockup is gone — the real console
   is the React app at /admin, which ships its own stylesheet — so these rules
   no longer have a consumer and were removed rather than shipped to every
   visitor of the marketing site. */

/* ---------- faq ---------- */
.faq-band { background: var(--cream-panel); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.faq-band .eyebrow, .faq-band h2 { display: block; text-align: center; }
.faq-band h2 { margin: 10px 0 40px; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--cream-soft); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 4px 26px; }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 20px 0; font-family: var(--serif);
  font-size: 1.12rem; font-weight: 600; color: var(--espresso);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-family: var(--sans); font-size: 1.3rem; font-weight: 400; color: var(--brown-deep); flex: none;
  transition: transform .25s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: .96rem; padding: 0 0 22px; margin: 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--espresso); color: var(--cream); padding: 64px 0 30px; }
.site-footer a { color: var(--cream); opacity: .8; transition: opacity .2s; }
.site-footer a:hover { opacity: 1; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.site-footer .fbrand .name { font-family: var(--serif); font-size: 1.7rem; letter-spacing: 2px; }
.site-footer .fbrand p { color: var(--cream); opacity: .72; margin-top: 12px; max-width: 32ch; }
.site-footer h5 { font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brown); margin-bottom: 16px; font-weight: 600; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 10px; font-size: .94rem; }
.foot-bottom { border-top: 1px solid rgba(247, 241, 230, .15); padding-top: 24px; text-align: center; font-size: .85rem; opacity: .7; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .cards, .gallery { grid-template-columns: repeat(2, 1fr); }
  .contact-grid, .admin-grid { grid-template-columns: 1fr; gap: 36px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .feature { grid-template-columns: 1fr; gap: 28px; }
  .proj-grid, .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .options, .options.cols-6, .options.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .img-hero::before { background: linear-gradient(180deg, rgba(247,241,230,.55) 0%, rgba(247,241,230,.35) 50%, rgba(247,241,230,.6) 100%); }
}
@media (max-width: 760px) {
  .nav { position: fixed; inset: 74px 0 auto 0; flex-direction: column; gap: 0; background: var(--cream-soft); border-bottom: 1px solid var(--line); padding: 12px 0; transform: translateY(-130%); transition: transform .3s var(--ease); }
  .nav.open { transform: translateY(0); }
  .nav a { width: 100%; text-align: center; padding: 14px 0; }
  .nav a::after { display: none; }
  .nav .btn { margin: 10px 28px; }
  .nav-toggle { display: block; }
  /* centered / full image heroes on mobile: don't let ratio squash them, shrink title, clear the nav */
  .img-hero.center-hero, .img-hero.hero-full { aspect-ratio: auto; min-height: 88vh; background-position: center; }
  .img-hero.center-hero h1 { font-size: clamp(1.75rem, 7vw, 2.4rem); line-height: 1.12; }
  body.hero-overlay .img-hero.center-hero .img-hero-inner { padding-top: 120px; padding-bottom: 90px; }
  .img-hero.center-hero .img-hero-inner { max-width: 100%; }
  .img-hero.center-hero .lead { font-size: .95rem; max-width: 30ch; margin-left: auto; margin-right: auto; }
}
@media (max-width: 560px) {
  section { padding: 60px 0; }
  .wrap { padding: 0 20px; }
  .hero { padding: 70px 0 54px; }
  .hero .lead { font-size: 1rem; }
  .lead { max-width: 100%; }
  .cards, .gallery { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .step { flex-basis: 100%; }
  .step:not(:last-child)::after { display: none; }
  .proj-grid, .offer-grid { grid-template-columns: 1fr; }
  .options, .options.cols-6, .options.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .img-hero { min-height: 440px; }
  .img-hero h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .cta-inner { padding: 64px 20px; }
  h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
}
