/* =========================================================================
   FRONTIER REMODELING, the customer front door
   Warm walnut & copper palette. The public landing page; the owner command
   center lives one click away at /frontier-remodeling/command/.
   ========================================================================= */
:root {
  --cream:   #FAF6F0;
  --surface: #FFFFFF;
  --warm:    #F0E8DC;
  --ink:     #1A120B;
  --body:    #5C4A3A;
  --muted:   #8A7565;
  --line:    #E8DFD4;
  --copper:        #A05A2C;
  --copper-deep:   #7A3E18;
  --copper-bright: #C87D3A;
  --copper-soft:   rgba(160,90,44,.12);
  --gold:    #F2A81D;
  --gold-deep: #B87A12;
  --gold-soft: rgba(242, 168, 29,.14);
  --serif: "Fraunces", Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono:  "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --r: 16px; --r-lg: 24px; --r-xl: 32px;
  --shadow: 0 20px 50px rgba(26,18,11,.12);
  --shadow-sm: 0 8px 24px rgba(26,18,11,.08);
  --ease: cubic-bezier(.22,.61,.36,1);
  --maxw: 1160px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; overflow-x: clip; }
section[id], div[id] { scroll-margin-top: 84px; }
body { font-family: var(--sans); background: var(--cream); color: var(--body); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; overflow-x: clip; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
:selection { background: #f0d9c0; color: #1A120B; }
:focus-visible { outline: 2px solid var(--copper); outline-offset: 2px; border-radius: 4px; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.eyebrow { font-size: .74rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font-weight: 650; font-size: .95rem; padding: .85rem 1.5rem; border-radius: 999px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s; white-space: nowrap; }
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: translateY(1px); }
.btn-primary { color: #fff; background: linear-gradient(180deg, var(--copper-bright), var(--copper)); box-shadow: 0 10px 26px rgba(160,90,44,.32); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(160,90,44,.42); }
.btn-ghost { color: var(--ink); border: 1px solid var(--line); background: #fff; }
.btn-ghost:hover { border-color: var(--copper); color: var(--copper); }
.btn-on-dark { color: var(--ink); background: #fff; box-shadow: 0 14px 34px rgba(0,0,0,.22); }
.btn-on-dark:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(0,0,0,.3); }
.btn-outline-light { color: #fff; border: 1px solid rgba(255,255,255,.5); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }

/* reveal on scroll, content visible by default; JS arms the hide */
[data-reveal] { opacity: 1; }
body.rv-armed [data-reveal] { opacity: 0; animation: rvFail .01s linear 2.6s forwards; }
body.rv-armed [data-reveal].in { opacity: 1; animation: rise .72s var(--ease) both; }
.svc-grid [data-reveal].in:nth-child(2), .rev-grid [data-reveal].in:nth-child(2) { animation-delay: .06s; }
.svc-grid [data-reveal].in:nth-child(3), .rev-grid [data-reveal].in:nth-child(3) { animation-delay: .12s; }
.svc-grid [data-reveal].in:nth-child(4), .rev-grid [data-reveal].in:nth-child(4) { animation-delay: .18s; }
.svc-grid [data-reveal].in:nth-child(5) { animation-delay: .24s; }
.svc-grid [data-reveal].in:nth-child(6) { animation-delay: .30s; }
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@keyframes rvFail { to { opacity: 1; } }

/* ---- header ----------------------------------------------------------- */
.site-header { position: fixed; left: 0; right: 0; top: 0; z-index: 40; padding-top: env(safe-area-inset-top, 0px); background: linear-gradient(180deg, rgba(26,18,11,.62) 0%, rgba(26,18,11,.24) 62%, rgba(26,18,11,0) 100%); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); border-bottom: 1px solid transparent; transition: background .3s, border-color .3s, box-shadow .3s; }
.site-header.scrolled { background: rgba(26,18,11,.94); -webkit-backdrop-filter: blur(18px) saturate(1.3); backdrop-filter: blur(18px) saturate(1.3); border-bottom-color: rgba(255,255,255,.10); box-shadow: 0 10px 34px rgba(26,18,11,.4); }
.site-header .logo { color: #fff; text-shadow: 0 1px 10px rgba(26,18,11,.55); }
.site-header .logo em { color: var(--copper-bright); }
.site-header .hdr-toggle { color: #fff; border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.1); }
@media (min-width: 901px) {
  .site-header .site-nav a:not(.btn) { color: #fff; text-shadow: 0 1px 10px rgba(26,18,11,.55); }
  .site-header .site-nav a:not(.btn):hover { color: var(--copper-bright); }
  .site-header .btn-ghost { color: #fff; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.4); }
  .site-header .btn-ghost:hover { border-color: var(--copper-bright); color: var(--copper-bright); }
}
.site-header .container { display: flex; align-items: center; gap: 1.2rem; padding-top: .8rem; padding-bottom: .8rem; }
.logo { display: flex; align-items: center; gap: .6rem; font-family: var(--serif); font-weight: 600; font-size: 1.2rem; color: var(--ink); }
.logo .mk { width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(145deg, var(--copper), var(--copper-deep)); display: grid; place-items: center; flex: none; }
.logo .mk svg { width: 20px; height: 20px; color: #fff; }
.logo em { color: var(--copper); font-style: italic; }
.site-nav { display: flex; align-items: center; gap: 1.6rem; margin-left: auto; }
.site-nav a { font-size: .9rem; font-weight: 550; color: var(--body); transition: color .2s; }
.site-nav a:hover { color: var(--copper); }
.site-nav .btn { padding: .6rem 1.1rem; font-size: .86rem; }
.hdr-toggle { display: none; }

/* ---- hero ------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; color: #fff; isolation: isolate; min-height: clamp(600px, 94vh, 940px); display: flex; align-items: flex-end; padding: calc(96px + env(safe-area-inset-top, 0px)) 0 clamp(3rem, 6vw, 5rem); background:
  radial-gradient(115% 75% at 68% 32%, rgba(200,125,58,.10), transparent 58%),
  linear-gradient(180deg, rgba(26,18,11,.62) 0%, rgba(26,18,11,.22) 26%, rgba(26,18,11,.30) 52%, rgba(26,18,11,.74) 80%, rgba(26,18,11,.97) 100%),
  linear-gradient(100deg, rgba(26,18,11,.86) 0%, rgba(26,18,11,.44) 45%, rgba(26,18,11,.08) 74%),
  url('/skins/_shared/photos/painting/hero-stain-brush.jpg') center 38% / cover no-repeat #1A120B; }
@media (max-width: 720px) {
  .hero { min-height: clamp(560px, 90vh, 800px); background:
    radial-gradient(140% 60% at 60% 30%, rgba(200,125,58,.12), transparent 60%),
    linear-gradient(180deg, rgba(26,18,11,.74) 0%, rgba(26,18,11,.34) 28%, rgba(26,18,11,.58) 62%, rgba(26,18,11,.97) 100%),
    url('/skins/_shared/photos/painting/hero-stain-brush.jpg') 62% center / cover no-repeat #1A120B; }
}
/* subtle dot-grid texture over hero background */
.hero:before { content: ""; position: absolute; inset: 0; opacity: .06; background-image: radial-gradient(circle, rgba(255,255,255,.7) 1px, transparent 1px); background-size: 32px 32px; pointer-events: none; z-index: 0; }
.hero-inner { position: relative; z-index: 1; width: 100%; display: flex; flex-wrap: wrap; gap: clamp(2rem, 4vw, 3.2rem); align-items: flex-end; justify-content: space-between; }
.hero-copy { flex: 1 1 460px; min-width: min(300px, 100%); max-width: 640px; }
.hero-kicker { display: inline-flex; align-items: center; gap: .55rem; font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #f0d9c0; margin-bottom: 1.3rem; padding: .4rem .8rem .4rem .55rem; border: 1px solid rgba(200,125,58,.4); border-radius: 999px; background: rgba(26,18,11,.4); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); white-space: nowrap; }
.hero-kicker .dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--copper-bright); }
.hero-kicker .ping { position: absolute; inset: 0; border-radius: 50%; background: var(--copper-bright); animation: ping 2.4s var(--ease) infinite; }
@keyframes ping { 0% { transform: scale(.5); opacity: .85; } 100% { transform: scale(2.1); opacity: 0; } }
.hero h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(2.8rem, 6.2vw, 4.7rem); line-height: 1.05; letter-spacing: -.022em; text-wrap: balance; text-shadow: 0 3px 30px rgba(26,18,11,.6); }
.hero h1 em { font-style: italic; color: var(--gold); text-decoration: underline; text-decoration-color: rgba(242,168,29,.55); text-decoration-thickness: .07em; text-underline-offset: .14em; }
.hero-lead { margin-top: 1.4rem; font-size: clamp(1.04rem, 1.4vw, 1.18rem); color: #e8d8c8; max-width: 48ch; text-wrap: pretty; text-shadow: 0 1px 18px rgba(26,18,11,.6); }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: .9rem; margin-top: 1.7rem; font-size: .9rem; color: #d4c4b4; text-shadow: 0 1px 12px rgba(26,18,11,.55); }

/* hero feature card, a glassy inset showing the command center preview */
.hero-proof { position: relative; z-index: 1; flex: 0 1 300px; align-self: flex-end; width: min(320px, 84vw); background: linear-gradient(158deg, rgba(26,18,11,.58), rgba(26,18,11,.62)); -webkit-backdrop-filter: blur(20px) saturate(1.4); backdrop-filter: blur(20px) saturate(1.4); border: 1px solid rgba(255,255,255,.2); border-radius: 24px; padding: 1.1rem 1.2rem; box-shadow: 0 36px 84px rgba(0,0,0,.52), inset 0 1px 0 rgba(255,255,255,.16); color: #fff; }
.hp-head { display: flex; align-items: center; gap: .65rem; margin-bottom: .85rem; }
.hp-icon { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(145deg, var(--copper), var(--copper-deep)); display: grid; place-items: center; flex: none; }
.hp-icon svg { width: 20px; height: 20px; color: #fff; }
.hp-head strong { font-family: var(--serif); font-size: 1rem; display: block; color: #fff; line-height: 1.2; }
.hp-head span { font-size: .76rem; color: #c4b4a4; }
.hp-features { display: flex; flex-direction: column; gap: .5rem; }
.hp-feat { display: flex; align-items: center; gap: .55rem; font-size: .82rem; color: #e8d8c8; }
.hp-feat .hp-tick { width: 22px; height: 22px; border-radius: 50%; background: rgba(200,125,58,.22); color: var(--copper-bright); display: grid; place-items: center; flex: none; }
.hp-feat .hp-tick svg { width: 12px; height: 12px; }
.hp-cta { display: block; margin-top: 1rem; text-align: center; font-size: .82rem; font-weight: 650; color: #fff; background: rgba(200,125,58,.28); border: 1px solid rgba(200,125,58,.4); border-radius: 999px; padding: .55rem 1rem; transition: background .2s; }
.hp-cta:hover { background: rgba(200,125,58,.42); }
@media (min-width: 721px) and (prefers-reduced-motion: no-preference) { .hero-proof { animation: floaty 7s var(--ease) infinite; } }
@keyframes floaty { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-10px); } }
@media (max-width: 720px) { .hero-proof { align-self: stretch; width: 100%; max-width: 420px; margin-top: .4rem; } }

/* ---- trust strip ------------------------------------------------------ */
.trust { position: relative; z-index: 2; margin-top: -3.4rem; }
.trust-bar { background: #fff; border-top: 3px solid var(--gold); border-radius: var(--r-lg); box-shadow: var(--shadow); display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); overflow: hidden; }
.trust-bar > div { padding: 1.55rem 1rem; text-align: center; border-right: 1px solid var(--line); }
.trust-bar > div:last-child { border-right: none; }
.trust-bar .n { font-family: var(--serif); font-weight: 600; font-size: 2rem; color: var(--copper); line-height: 1; }
.trust-bar .l { font-size: .74rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); margin-top: .45rem; }

/* ---- sections --------------------------------------------------------- */
.section { padding: clamp(3.5rem, 7vw, 5.75rem) 0; }
.section-head { text-align: center; max-width: 40ch; margin: 0 auto 2.2rem; }
.section-head h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(2rem, 4.5vw, 2.9rem); line-height: 1.08; color: var(--ink); margin-top: .6rem; letter-spacing: -.01em; text-wrap: balance; }
.section-head h2 em { font-style: italic; color: var(--copper); }
.section-head p { margin-top: .9rem; font-size: 1.05rem; }

/* services, photo-topped cards with a copper icon badge at the seam */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 1.3rem; }
.svc { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(160,90,44,.35); }
.svc-photo { position: relative; aspect-ratio: 16 / 9.5; overflow: hidden; background: var(--warm); }
.svc-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.svc:hover .svc-photo img { transform: scale(1.06); }
.svc-photo:after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,18,11,.05) 55%, rgba(26,18,11,.32) 100%); pointer-events: none; }
.svc-ic { position: relative; z-index: 2; width: 62px; height: 62px; border-radius: 18px; margin: -31px 0 0 1.4rem; background: linear-gradient(150deg, var(--copper-bright) 0%, var(--copper) 55%, var(--copper-deep) 100%); border: 3px solid var(--surface); color: #fff; display: grid; place-items: center; box-shadow: 0 14px 28px -10px rgba(122,62,24,.55), inset 0 1px 0 rgba(255,255,255,.35); transition: transform .3s var(--ease), box-shadow .3s; }
.svc-ic svg { width: 32px; height: 32px; filter: drop-shadow(0 1px 2px rgba(26,18,11,.3)); }
.svc:hover .svc-ic { transform: rotate(-5deg) scale(1.1); box-shadow: 0 18px 34px -10px rgba(122,62,24,.65), inset 0 1px 0 rgba(255,255,255,.45); }
.svc-body { display: flex; flex-direction: column; flex: 1; padding: .85rem 1.4rem 1.5rem; }
.svc h3 { font-family: var(--serif); font-weight: 600; font-size: 1.28rem; color: var(--ink); }
.svc p { font-size: .92rem; margin-top: .6rem; flex: 1; }
.svc .from { display: inline-flex; align-items: center; gap: .4rem; align-self: flex-start; margin-top: 1.1rem; font-size: .8rem; font-weight: 700; color: var(--gold-deep); background: var(--gold-soft); border: 1px solid rgba(242,168,29,.3); padding: .38rem .9rem; border-radius: 999px; }

/* proof band */
.proof { position: relative; overflow: hidden; background: linear-gradient(160deg, #1A120B, #3A2A1A); color: #fff; }
.proof:before { content: ""; position: absolute; inset: 0; opacity: .35; background: repeating-linear-gradient(108deg, rgba(200,125,58,.018) 0 70px, rgba(200,125,58,.05) 70px 140px); -webkit-mask-image: radial-gradient(110% 90% at 30% 30%, #000, transparent 72%); mask-image: radial-gradient(110% 90% at 30% 30%, #000, transparent 72%); }
.proof-inner { position: relative; display: flex; flex-wrap: wrap; gap: clamp(2.4rem, 5vw, 4rem); align-items: center; justify-content: center; }
.proof-copy { flex: 1 1 380px; min-width: min(300px, 100%); max-width: 560px; }
.proof .eyebrow { color: var(--gold); }
.proof h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(2rem, 4.5vw, 2.9rem); line-height: 1.08; margin-top: .6rem; letter-spacing: -.01em; }
.proof h2 em { font-style: italic; color: var(--copper-bright); text-decoration: underline; text-decoration-color: var(--gold); text-decoration-thickness: .07em; text-underline-offset: .14em; }
.proof p.lead { margin-top: 1.1rem; font-size: 1.08rem; color: #d6c6b6; max-width: 46ch; }
.proof-list { margin-top: 1.8rem; display: flex; flex-direction: column; gap: 1.05rem; }
.proof-list li { display: flex; gap: .85rem; align-items: flex-start; list-style: none; }
.proof-list .tick { width: 27px; height: 27px; border-radius: 50%; background: rgba(200,125,58,.18); color: var(--copper-bright); display: grid; place-items: center; flex: none; margin-top: 1px; }
.proof-list .tick svg { width: 15px; height: 15px; }
.proof-list b { color: #fff; } .proof-list span { color: #c5b3a3; font-size: .96rem; }

/* proof visual, dashboard mock */
.proof-visual { flex: 0 1 380px; min-width: 260px; }
.dash-mock { background: rgba(26,18,11,.5); border: 1px solid rgba(255,255,255,.12); border-radius: 20px; padding: 1.2rem; box-shadow: 0 44px 90px rgba(0,0,0,.4); }
.dash-mock .dm-bar { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; }
.dash-mock .dm-dots { display: flex; gap: 5px; }
.dash-mock .dm-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.15); }
.dash-mock .dm-dots span:first-child { background: #e55; }
.dash-mock .dm-dots span:nth-child(2) { background: #fb3; }
.dash-mock .dm-dots span:nth-child(3) { background: #4c4; }
.dash-mock .dm-title { font-family: var(--mono); font-size: .68rem; font-weight: 600; color: rgba(255,255,255,.5); margin-left: auto; letter-spacing: .04em; }
.dash-mock .dm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; }
.dash-mock .dm-stat { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: .7rem .65rem; text-align: center; }
.dash-mock .dm-stat .dm-n { font-family: var(--serif); font-weight: 600; font-size: 1.3rem; color: var(--copper-bright); }
.dash-mock .dm-stat .dm-l { font-size: .6rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: .2rem; }
.dash-mock .dm-row { margin-top: .6rem; display: flex; align-items: center; gap: .55rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07); border-radius: 12px; padding: .6rem .65rem; }
.dash-mock .dm-row .dm-ico { width: 28px; height: 28px; border-radius: 8px; background: rgba(200,125,58,.2); color: var(--copper-bright); display: grid; place-items: center; flex: none; }
.dash-mock .dm-row .dm-ico svg { width: 14px; height: 14px; }
.dash-mock .dm-row .dm-txt { font-size: .74rem; color: rgba(255,255,255,.7); }
.dash-mock .dm-row .dm-txt strong { color: #fff; font-size: .8rem; display: block; }
.dash-mock .dm-row .dm-badge { margin-left: auto; font-size: .62rem; font-weight: 700; color: #4c4; background: rgba(68,204,68,.12); padding: .2rem .5rem; border-radius: 999px; }

/* areas */
.areas { text-align: center; padding: clamp(3.5rem, 7vw, 5.5rem) 0; background: linear-gradient(180deg, #F0E8DC 0%, #E8DFD4 100%); }
.area-pills { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin-top: 1.5rem; }
.area-pills span { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: .6rem 1.2rem; font-weight: 600; font-size: .92rem; color: var(--ink); transition: border-color .2s, box-shadow .2s; }
.area-pills span:hover { border-color: var(--gold); box-shadow: 0 4px 14px rgba(242, 168, 29,.18); }

/* reviews */
.rev-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); gap: 1.2rem; }
.rev { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.9rem; }
.rev .stars { color: var(--gold); letter-spacing: .1em; font-size: 1rem; }
.rev p { margin-top: .8rem; color: var(--ink); font-size: 1rem; text-wrap: pretty; }
.rev .who { margin-top: 1.3rem; display: flex; align-items: center; gap: .75rem; }
.rev .av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(145deg, var(--copper-soft), var(--warm)); border: 1px solid var(--line); display: grid; place-items: center; flex: none; font-size: 1.3rem; color: var(--copper); }
.rev .who b { display: block; color: var(--ink); font-size: .92rem; }
.rev .who span { font-size: .8rem; color: var(--muted); }

/* quote */
.quote { background: var(--warm); }
.quote-card { background: #fff; border-radius: var(--r-xl); box-shadow: var(--shadow); display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); overflow: hidden; }
.quote-aside { background:
  linear-gradient(160deg, rgba(26,18,11,.93) 0%, rgba(26,18,11,.78) 45%, rgba(122,62,24,.82) 100%),
  url('/skins/_shared/photos/handyman/arrival-toolbag.jpg') center / cover no-repeat #1A120B;
  color: #fff; padding: clamp(2rem, 4vw, 2.8rem); display: flex; flex-direction: column; justify-content: center; }
.quote-aside h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.7rem, 3vw, 2.1rem); line-height: 1.12; }
.quote-aside p { margin-top: .9rem; color: #d6c6b6; }
.quote-aside .qa-li { display: flex; align-items: center; gap: .6rem; margin-top: 1rem; font-size: .92rem; color: #f0e0d0; }
.quote-aside .qa-li svg { width: 18px; height: 18px; color: var(--gold); }
.quote-form { padding: clamp(2rem, 4vw, 2.8rem); }
.qf-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem; }
.qf-field { margin-bottom: 1rem; }
.qf-field label { display: block; font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: .4rem; }
.qf-field input, .qf-field select { width: 100%; padding: .8rem .9rem; border: 1px solid var(--line); border-radius: 12px; font-size: .95rem; font-family: var(--sans); color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s; -webkit-appearance: none; }
.qf-field input:focus, .qf-field select:focus { outline: none; border-color: var(--copper); box-shadow: 0 0 0 4px var(--copper-soft); }
.quote-form .btn { width: 100%; margin-top: .4rem; }
.qf-note { text-align: center; margin-top: .9rem; font-size: .8rem; color: var(--muted); }
.qf-success { text-align: center; padding: 1rem; }
.qf-success .big { width: 70px; height: 70px; border-radius: 50%; background: var(--copper-soft); color: var(--copper); display: grid; place-items: center; margin: 0 auto 1rem; }
.qf-success .big svg { width: 34px; height: 34px; }
.qf-success h3 { font-family: var(--serif); font-size: 1.6rem; color: var(--ink); }
.qf-success p { margin-top: .5rem; }

/* footer */
.site-footer { background: #1A120B; color: #c5b3a3; padding: 3.2rem 0 2rem; }
.foot-grid { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: flex-start; }
.foot-brand { max-width: 30ch; }
.foot-brand .logo { color: #fff; }
.foot-brand p { margin-top: .8rem; font-size: .9rem; color: #8A7565; }
.foot-cols { display: flex; gap: 3.5rem; flex-wrap: wrap; }
.foot-col h4 { font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: .8rem; }
.foot-col a { display: block; font-size: .9rem; padding: .25rem 0; color: #c5b3a3; }
.foot-col a:hover { color: var(--copper-bright); }
.foot-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .82rem; color: #8A7565; }
.foot-bottom a { color: var(--copper-bright); font-weight: 600; }

.toast-wrap { position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 80; display: flex; flex-direction: column; gap: .6rem; align-items: center; pointer-events: none; }
.toast { display: flex; align-items: center; gap: .6rem; padding: .85rem 1.2rem; border-radius: 999px; background: var(--ink); color: #fff; font-size: .9rem; font-weight: 600; box-shadow: var(--shadow); animation: tin .4s var(--ease) both; }
.toast svg { width: 18px; height: 18px; color: var(--copper-bright); }
@keyframes tin { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ---- responsive ------------------------------------------------------- */
@media (max-width: 900px) {
  .site-nav { position: fixed; inset: calc(64px + env(safe-area-inset-top, 0px)) 1rem auto 1rem; flex-direction: column; align-items: stretch; gap: .3rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow); padding: 1rem; transform: translateY(calc(-100% - 64px - env(safe-area-inset-top, 0px) - 40px)); visibility: hidden; transition: transform .3s var(--ease), visibility 0s .3s; }
  .site-nav.open { transform: none; visibility: visible; transition: transform .3s var(--ease); }
  .site-nav a { padding: .7rem .5rem; }
  .hdr-toggle { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 10px; border: 1px solid rgba(255,255,255,.4); color: #fff; margin-left: auto; }
}
@media (max-width: 540px) {
  .container { padding: 0 1.1rem; }
}
@media (max-width: 660px) {
  .trust-bar > div:nth-child(2n) { border-right: none; }
  .trust-bar > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *:before, *:after { animation-duration: .001ms !important; transition: none !important; } [data-reveal], body.rv-armed [data-reveal] { opacity: 1; transform: none; animation: none; } }