/* =========================================================
   Sydney Remedial & Maintenance — Heritage restoration
   Palette: charcoal / sandstone / heritage green / brass / indian red / warm paper
   ========================================================= */

:root {
  --char: #1E1E1C;        /* near-black: primary text, anchoring */
  --green: #3A4A3F;       /* heritage green: buttons, headers, dark fills */
  --green-deep: #2E3A31;  /* darker green for depth */
  --sand: #C9B79C;        /* warm stone: fills */
  --sand-light: #E8DFD1;  /* lighter stone: soft fills */
  --brass: #A6832B;       /* muted gold: sparing accents, hover */
  --brass-soft: #c2a04a;
  --indian: #B0473C;      /* warm indian red: secondary pop accent */
  --indian-deep: #8F3628; /* deeper indian red: text / hover */
  --paper: #F7F3EC;       /* warm off-white: main background */
  --white: #ffffff;

  --ink-700: #4a4a44;
  --ink-500: #6f6f66;
  --line: #e0d6c4;
  --line-dark: rgba(247, 243, 236, 0.16);

  --shadow-sm: 0 2px 10px rgba(30, 30, 28, 0.07);
  --shadow-md: 0 14px 34px rgba(30, 30, 28, 0.12);
  --shadow-lg: 0 28px 64px rgba(30, 30, 28, 0.20);

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

  --radius: 14px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 0.75, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--char);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; color: var(--char); }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass);
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--indian); display: inline-block; }
.eyebrow.center::before { display: none; }

.section { padding: 100px 0; position: relative; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(2.1rem, 4.2vw, 3.1rem); margin: 16px 0 14px; }
.section-head p { color: var(--ink-700); font-size: 1.08rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 32px; border-radius: 4px; font-family: var(--sans);
  font-weight: 600; font-size: 0.98rem; cursor: pointer; border: 1.5px solid transparent;
  position: relative; overflow: hidden; letter-spacing: 0.01em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
/* shine sweep */
.btn::after {
  content: ""; position: absolute; top: 0; left: -75%; width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg); transition: left .6s var(--ease);
}
.btn:hover::after { left: 130%; }

.btn-primary { background: var(--green); color: var(--paper); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--brass); color: var(--char); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-light { background: var(--paper); color: var(--green); }
.btn-light:hover { background: var(--brass); color: var(--char); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--paper); border-color: rgba(247, 243, 236, 0.4); }
.btn-ghost:hover { border-color: var(--brass); color: var(--brass-soft); }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }

/* ---------- Scroll progress ---------- */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--brass), var(--brass-soft)); z-index: 200; transition: width .1s linear;
}

/* =================== Header =================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding: 14px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}
.site-header.scrolled {
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { height: 46px; width: auto; flex: none; transition: transform .5s var(--ease); }
.brand:hover .brand__mark { transform: scale(1.03); }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--paper); letter-spacing: 0.01em; }
.brand__tag { font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass-soft); }
.scrolled .brand__name { color: var(--char); }
.scrolled .brand__tag { color: var(--brass); }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { position: relative; font-size: 0.92rem; font-weight: 500; color: var(--ink-700); opacity: 1; transition: opacity .2s, color .2s; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px; background: var(--brass); transition: width .3s var(--ease); }
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { width: 100%; }
.scrolled .nav__links a { color: var(--ink-700); }
.scrolled .nav__links a:hover { color: var(--char); }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__toggle span { display: block; width: 26px; height: 2px; background: var(--char); margin: 5px 0; transition: .3s var(--ease); }
.scrolled .nav__toggle span { background: var(--char); }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =================== Hero =================== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden; color: var(--paper); padding: 150px 0 90px;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 26s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.02) translateY(0); } to { transform: scale(1.14) translateY(-14px); } }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, rgba(16,16,15,0.90) 0%, rgba(24,24,22,0.72) 45%, rgba(24,24,22,0.30) 100%),
    linear-gradient(0deg, rgba(16,16,15,0.55), rgba(16,16,15,0) 40%);
}
.hero__inner { position: relative; z-index: 2; max-width: 720px; }
.hero h1 { font-size: clamp(2.7rem, 6vw, 4.7rem); color: var(--paper); margin: 22px 0 22px; letter-spacing: -0.01em; }
.hero h1 em { font-style: italic; color: var(--brass-soft); }
.hero__lead { font-size: 1.22rem; color: rgba(247, 243, 236, 0.92); max-width: 600px; margin-bottom: 34px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__points { display: flex; gap: 28px; margin-top: 44px; flex-wrap: wrap; }
.hero__point { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: rgba(247, 243, 236, 0.9); }
.hero__point svg { width: 20px; height: 20px; flex: none; }
.scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(247,243,236,0.65); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-hint span { width: 1px; height: 34px; background: linear-gradient(var(--brass-soft), transparent); animation: scrollpulse 2s infinite; }
@keyframes scrollpulse { 0%,100% { opacity: .3; } 50% { opacity: 1; } }

/* =================== Trust bar =================== */
.trust { background: var(--green); color: var(--paper); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust__item { padding: 42px 28px; text-align: center; border-right: 1px solid var(--line-dark); }
.trust__item:last-child { border-right: none; }
.trust__num { font-family: var(--serif); font-size: 3rem; color: var(--brass-soft); line-height: 1; }
.trust__num span { font-size: 1.5rem; }
.trust__label { font-size: 0.86rem; letter-spacing: 0.03em; color: rgba(247,243,236,0.8); margin-top: 8px; }

/* =================== Before / After =================== */
.ba { background: linear-gradient(180deg, var(--paper), var(--sand-light)); }
.ba__slider { max-width: 920px; margin: 0 auto; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; user-select: none; aspect-ratio: 16 / 10; border: 1px solid var(--line); }
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; }
.ba__img img { width: 100%; height: 100%; object-fit: cover; }
.ba__after { z-index: 1; }
.ba__before { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba__label { position: absolute; bottom: 18px; z-index: 3; background: rgba(30,30,28,0.82); color: var(--paper); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 7px 15px; border-radius: 3px; }
.ba__label--before { left: 18px; }
.ba__label--after { right: 18px; }
.ba__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: var(--paper); z-index: 4; transform: translateX(-50%); cursor: ew-resize; }
.ba__handle::after {
  content: "\2194"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 48px; height: 48px; border-radius: 50%; background: var(--indian); color: var(--paper);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; box-shadow: var(--shadow-md);
}
.ba input[type="range"] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 5; margin: 0; }
.ba__hint { text-align: center; margin-top: 20px; color: var(--ink-500); font-size: 0.9rem; }
.ba__note { text-align: center; margin-top: 6px; color: var(--ink-500); font-size: 0.78rem; font-style: italic; }

/* =================== Services =================== */
.services { background: var(--paper); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.service-card::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: var(--indian); transition: width .4s var(--ease); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--sand); }
.service-card:hover::before { width: 100%; }
.service-card__icon { width: 56px; height: 56px; border-radius: 10px; background: var(--sand-light); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: background .35s; }
.service-card:hover .service-card__icon { background: var(--sand); }
.service-card__icon svg { width: 30px; height: 30px; }
.service-card__num { font-family: var(--serif); font-size: 0.9rem; color: var(--brass); letter-spacing: 0.1em; }
.service-card h3 { font-size: 1.5rem; margin: 4px 0 10px; }
.service-card p { color: var(--ink-700); font-size: 0.98rem; }

/* =================== How it works =================== */
.how { background: linear-gradient(180deg, var(--sand-light), var(--paper)); }
.how__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.step { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 26px; position: relative; box-shadow: var(--shadow-sm); }
.step__no { width: 48px; height: 48px; border-radius: 50%; background: var(--green); color: var(--brass-soft); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.35rem; margin-bottom: 18px; }
.step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.step p { color: var(--ink-700); font-size: 0.94rem; }
.step__line { position: absolute; top: 58px; right: -14px; width: 28px; height: 2px; background: var(--brass); z-index: 2; transform: scaleX(0); transform-origin: left; }
.how__steps.is-in .step__line { animation: lineGrow .5s var(--ease) forwards; }
.how__steps.is-in .step:nth-child(1) .step__line { animation-delay: .35s; }
.how__steps.is-in .step:nth-child(2) .step__line { animation-delay: .55s; }
.how__steps.is-in .step:nth-child(3) .step__line { animation-delay: .75s; }
@keyframes lineGrow { to { transform: scaleX(1); } }
.step:last-child .step__line { display: none; }

/* =================== Why choose us =================== */
.why { background: var(--green); color: var(--paper); position: relative; overflow: hidden; }
.why::after { content:""; position:absolute; right:-120px; top:-120px; width: 360px; height: 360px; border-radius: 50%; border: 1px solid rgba(166,131,43,0.22); }
.why::before { content:""; position:absolute; right:-40px; bottom:-160px; width: 300px; height: 300px; border-radius: 50%; border: 1px solid rgba(166,131,43,0.16); }
.why .section-head h2 { color: var(--paper); }
.why .section-head p { color: rgba(247,243,236,0.82); }
.why__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 46px; position: relative; z-index: 1; }
.why__item { display: flex; gap: 18px; }
.why__item-icon { width: 48px; height: 48px; flex: none; border-radius: 10px; border: 1px solid rgba(166,131,43,0.45); display: flex; align-items: center; justify-content: center; transition: background .35s, transform .35s var(--ease); }
.why__item:hover .why__item-icon { background: rgba(166,131,43,0.15); transform: translateY(-4px); }
.why__item-icon svg { width: 26px; height: 26px; }
.why__item h3 { font-size: 1.35rem; color: var(--paper); margin-bottom: 6px; }
.why__item p { color: rgba(247,243,236,0.8); font-size: 0.96rem; }

/* =================== Owner ===================*/
.owner { background: var(--paper); }
.owner__card { display: grid; grid-template-columns: 0.9fr 1.4fr; gap: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.owner__photo { background: linear-gradient(160deg, var(--green), var(--green-deep)); position: relative; min-height: 360px; display: flex; align-items: flex-end; padding: 30px; color: var(--paper); }
.owner__photo-badge { position: absolute; top: 26px; left: 26px; background: var(--brass); color: var(--char); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.04em; padding: 8px 16px; border-radius: 3px; }
.owner__photo-name { font-family: var(--serif); font-size: 1.6rem; }
.owner__photo-role { font-size: 0.85rem; color: var(--brass-soft); letter-spacing: 0.08em; text-transform: uppercase; }
.owner__body { background: var(--white); padding: 48px 44px; }
.owner__body .eyebrow { margin-bottom: 16px; }
.owner__body h2 { font-size: 2.1rem; margin-bottom: 18px; }
.owner__body p { color: var(--ink-700); margin-bottom: 16px; }
.owner__quote { font-family: var(--serif); font-size: 1.4rem; font-style: italic; color: var(--green); border-left: 3px solid var(--indian); padding-left: 20px; margin: 24px 0 0; }

/* =================== Materials =================== */
.materials { background: var(--sand-light); }
.materials__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.material { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 26px 22px; display: flex; flex-direction: column; gap: 12px; transition: border-color .3s, transform .3s var(--ease), box-shadow .3s; }
.material:hover { border-color: var(--sand); transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.material__icon { width: 44px; height: 44px; }
.material h3 { font-size: 1.18rem; }
.material p { font-size: 0.88rem; color: var(--ink-500); }

/* =================== FAQ =================== */
.faq { background: var(--paper); }
.faq__list { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; padding: 26px 46px 26px 0; position: relative; font-family: var(--serif); font-size: 1.35rem; color: var(--char); transition: color .25s; }
.faq__q:hover { color: var(--green); }
.faq__q::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-family: var(--sans); font-size: 1.6rem; color: var(--indian); transition: transform .3s var(--ease); }
.faq__item.open .faq__q::after { transform: translateY(-50%) rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a p { padding: 0 46px 26px 0; color: var(--ink-700); font-size: 1rem; }

/* =================== Quote / final CTA =================== */
.quote { background: var(--green); color: var(--paper); position: relative; overflow: hidden; }
.quote::before { content:""; position:absolute; left:-140px; top:-140px; width: 340px; height: 340px; border-radius: 50%; border: 1px solid rgba(166,131,43,0.18); }
.quote__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.quote__info .eyebrow { color: var(--brass-soft); }
.quote__info h2 { color: var(--paper); font-size: clamp(2.1rem, 3.6vw, 3rem); margin: 14px 0 18px; }
.quote__info p { color: rgba(247,243,236,0.84); margin-bottom: 28px; }
.quote__list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.quote__list li { display: flex; gap: 12px; align-items: flex-start; color: rgba(247,243,236,0.92); font-size: 0.98rem; }
.quote__list svg { width: 22px; height: 22px; flex: none; margin-top: 1px; }
.form-card { background: var(--white); border-radius: var(--radius); padding: 40px 34px; box-shadow: var(--shadow-lg); color: var(--char); }
.form-card h3 { font-size: 1.65rem; margin-bottom: 6px; }
.form-card p.sub { color: var(--ink-500); font-size: 0.9rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--ink-700); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--sans); font-size: 0.95rem; color: var(--char); background: var(--paper);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brass); box-shadow: 0 0 0 3px rgba(166,131,43,0.18); background: var(--white); }
.field textarea { resize: vertical; min-height: 92px; }
.form-card .btn { width: 100%; margin-top: 6px; }
.form-note { text-align: center; font-size: 0.82rem; color: var(--ink-500); margin-top: 14px; }
.form-note a { color: var(--brass); font-weight: 600; }
.quote__contact { margin-top: 52px; position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 22px; }
.nap { font-style: normal; text-align: center; display: flex; flex-direction: column; gap: 5px; color: rgba(247,243,236,0.9); }
.nap strong { font-family: var(--serif); font-size: 1.4rem; color: var(--paper); }
.nap a { color: var(--brass-soft); font-weight: 600; font-size: 1.05rem; }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(166,131,43,0.35); box-shadow: var(--shadow-md); }
.map-embed iframe { width: 100%; height: 340px; border: 0; display: block; }

.form-success { background: var(--sand-light); border: 1px solid var(--brass); border-radius: var(--radius-sm); padding: 32px; text-align: center; }
.form-success h3 { color: var(--green); margin-bottom: 8px; }
.form-success p { color: var(--ink-700); font-size: 0.95rem; }

/* =================== Footer (slim, no distractions) =================== */
.footer { background: var(--char); color: rgba(247,243,236,0.6); padding: 26px 0; }
.footer__row { display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 0.8rem; }
.footer__row a { color: rgba(247,243,236,0.7); }
.footer__row a:hover { color: var(--brass-soft); }
.footer__credit { font-size: 0.72rem; color: rgba(247,243,236,0.4); }

/* =================== Scroll reveal system =================== */
[data-reveal] {
  opacity: 0;
  transition: opacity .85s var(--ease), transform .85s var(--ease), filter .85s var(--ease), clip-path .95s var(--ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
[data-reveal="up"]      { transform: translateY(46px); }
[data-reveal="down"]    { transform: translateY(-40px); }
[data-reveal="left"]    { transform: translateX(-56px); }
[data-reveal="right"]   { transform: translateX(56px); }
[data-reveal="zoom"]    { transform: scale(0.9); }
[data-reveal="zoom-out"]{ transform: scale(1.08); }
[data-reveal="flip"]    { transform: perspective(900px) rotateX(14deg) translateY(34px); transform-origin: top center; }
[data-reveal="blur"]    { filter: blur(14px); transform: translateY(22px); }
[data-reveal="mask"]    { clip-path: inset(0 100% 0 0); }
[data-reveal].is-in     { opacity: 1; transform: none; filter: none; clip-path: inset(0 0 0 0); }

/* Staggered children */
[data-stagger] > * { opacity: 0; transform: translateY(34px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-stagger].is-in > * { opacity: 1; transform: none; }
[data-stagger].is-in > *:nth-child(1) { transition-delay: .06s; }
[data-stagger].is-in > *:nth-child(2) { transition-delay: .14s; }
[data-stagger].is-in > *:nth-child(3) { transition-delay: .22s; }
[data-stagger].is-in > *:nth-child(4) { transition-delay: .30s; }
[data-stagger].is-in > *:nth-child(5) { transition-delay: .38s; }
[data-stagger].is-in > *:nth-child(6) { transition-delay: .46s; }
[data-stagger].is-in > *:nth-child(7) { transition-delay: .54s; }
[data-stagger].is-in > *:nth-child(8) { transition-delay: .62s; }

/* variant: stagger from the side */
[data-stagger="left"] > * { transform: translateX(-40px); }
[data-stagger="zoom"] > * { transform: scale(0.88); }
[data-stagger].is-in > * { transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  [data-reveal], [data-stagger] > * { opacity: 1 !important; transform: none !important; filter: none !important; clip-path: none !important; transition: none !important; }
  .hero__bg img { animation: none !important; }
}

/* =================== Responsive =================== */
@media (max-width: 980px) {
  .services__grid, .how__steps, .why__grid, .materials__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__item:nth-child(2) { border-right: none; }
  .trust__item:nth-child(1), .trust__item:nth-child(2) { border-bottom: 1px solid var(--line-dark); }
  .quote__grid { grid-template-columns: 1fr; gap: 40px; }
  .owner__card { grid-template-columns: 1fr; }
  .step__line { display: none; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 72px 0; }
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .brand__tag { display: none; }
  .brand__mark { height: 40px; width: auto; }
  .brand__name { font-size: 1.1rem; }
  .nav__links.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--paper); padding: 22px 24px; gap: 20px; box-shadow: var(--shadow-md); border-bottom: 1px solid var(--line); }
  .nav__links.open a { color: var(--char); }
  .services__grid, .how__steps, .why__grid, .materials__grid, .trust__grid { grid-template-columns: 1fr; }
  .trust__item { border-right: none !important; border-bottom: 1px solid var(--line-dark); }
  .form-row { grid-template-columns: 1fr; }
  .footer__row { justify-content: center; text-align: center; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
}

/* =================== Sub-pages (services + blog) =================== */
.subhero { background: linear-gradient(150deg, var(--green) 0%, var(--green-deep) 100%); color: var(--paper); padding: 150px 0 66px; position: relative; overflow: hidden; }
.subhero::after { content:""; position:absolute; right:-110px; top:-110px; width:320px; height:320px; border-radius:50%; border:1px solid rgba(166,131,43,0.18); }
.subhero__inner { max-width: 760px; position: relative; z-index: 1; }
.subhero h1 { color: var(--paper); font-size: clamp(2.1rem, 4.6vw, 3.3rem); margin: 16px 0 16px; }
.subhero p.lead { color: rgba(247,243,236,0.9); font-size: 1.15rem; max-width: 640px; }
.subhero .btn { margin-top: 26px; }

.breadcrumb { font-size: 0.82rem; letter-spacing: 0.02em; color: rgba(247,243,236,0.72); display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { color: var(--brass-soft); }
.breadcrumb a:hover { color: var(--paper); }
.breadcrumb span.sep { opacity: 0.5; }

/* Prose / article body */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 42px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink-700); margin-bottom: 18px; }
.prose ul { list-style: none; margin: 0 0 22px; padding: 0; }
.prose li { position: relative; padding-left: 28px; margin-bottom: 10px; color: var(--ink-700); }
.prose li::before { content:""; position:absolute; left: 4px; top: 11px; width: 8px; height: 8px; border-radius: 50%; background: var(--indian); }
.prose a { color: var(--green); font-weight: 600; text-decoration: underline; text-decoration-color: var(--brass); text-underline-offset: 3px; }
.prose a:hover { color: var(--brass); }

.article { padding: 72px 0 88px; }
.article__meta { max-width: 760px; margin: 0 auto 26px; display: flex; gap: 14px; align-items: center; font-size: 0.85rem; color: var(--ink-500); }
.tag { display:inline-block; background: var(--sand-light); color: var(--green); border:1px solid var(--line); padding: 4px 12px; border-radius: 999px; font-size: 0.7rem; font-weight:600; letter-spacing:0.08em; text-transform:uppercase; }

/* Service page sections */
.svc-section { padding: 66px 0; background: var(--paper); }
.svc-section.alt { background: var(--sand-light); }
.svc-block { max-width: 820px; margin: 0 auto; }
.svc-block h2 { font-size: clamp(1.55rem, 3vw, 2.05rem); margin-bottom: 14px; }
.svc-block p { color: var(--ink-700); margin-bottom: 16px; }
.svc-block ul { list-style: none; margin: 0 0 18px; padding: 0; }
.svc-block li { position: relative; padding-left: 28px; margin-bottom: 10px; color: var(--ink-700); }
.svc-block li::before { content:""; position:absolute; left:4px; top:11px; width:8px; height:8px; border-radius:50%; background: var(--indian); }

/* Related cards */
.related { background: var(--white); border-top: 1px solid var(--line); }
.related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rel-card { display:block; background: var(--paper); border:1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.rel-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--sand); }
.rel-card h3 { font-size: 1.28rem; margin-bottom: 8px; }
.rel-card p { color: var(--ink-500); font-size: 0.92rem; margin-bottom: 12px; }
.rel-card .more { color: var(--brass); font-weight:600; font-size:0.9rem; }

/* Blog grid */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post-card { display:flex; flex-direction:column; background: var(--white); border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--sand); }
.post-card__top { height: 180px; background: var(--green-deep); overflow: hidden; }
.post-card__top img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.post-card:hover .post-card__top img { transform: scale(1.05); }
.post-card__top svg { width: 42px; height: 42px; margin: 69px auto; display: block; }

/* Blog post banner image */
.post-banner { padding: 46px 0 0; background: var(--paper); }
.post-banner img { width: 100%; height: 340px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-md); display: block; }
@media (max-width: 620px){ .post-banner img { height: 220px; } }
.post-card__body { padding: 24px 26px 26px; display:flex; flex-direction:column; gap:10px; flex:1; }
.post-card h3 { font-size: 1.32rem; }
.post-card p { color: var(--ink-700); font-size: 0.94rem; flex:1; }
.post-card__more { color: var(--brass); font-weight:600; font-size:0.9rem; margin-top: 4px; }

/* Full footer */
.footer--full { padding: 58px 0 26px; }
.footer__cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 32px; border-bottom: 1px solid rgba(247,243,236,0.12); text-align: left; }
.footer__brand-name { font-family: var(--serif); font-size: 1.3rem; color: var(--paper); margin-bottom: 10px; display:block; }
.footer__cols p { font-size: 0.9rem; color: rgba(247,243,236,0.6); margin-bottom: 8px; max-width: 300px; }
.footer__cols a.tel { color: var(--brass-soft); font-weight: 600; }
.footer__cols h4 { color: var(--paper); font-family: var(--sans); font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 15px; }
.footer__cols ul { list-style:none; display:flex; flex-direction:column; gap: 10px; }
.footer__cols ul a { font-size: 0.92rem; color: rgba(247,243,236,0.7); }
.footer__cols ul a:hover { color: var(--brass-soft); }
.footer--full .footer__row { padding-top: 22px; }

/* =================== Premium service page components =================== */
/* Sub-hero refinement */
.subhero__inner .eyebrow { margin-bottom: 6px; }
.subhero p.lead { margin-top: 4px; }

/* Assurance band */
.assurance { background: var(--char); color: var(--paper); }
.assurance__row { display: flex; justify-content: center; flex-wrap: wrap; }
.assurance__item { padding: 20px 34px; font-size: 0.84rem; letter-spacing: 0.03em; color: rgba(247,243,236,0.82); display: flex; align-items: center; gap: 10px; border-right: 1px solid rgba(166,131,43,0.28); }
.assurance__item:last-child { border-right: none; }
.assurance__item b { color: var(--brass-soft); font-weight: 600; font-family: var(--serif); font-size: 1.15rem; }

/* Intro lead-in */
.svc-intro { background: var(--paper); padding: 74px 0 0; text-align: center; }
.svc-intro .inner { max-width: 760px; margin: 0 auto; }
.svc-intro p { font-size: 1.16rem; color: var(--ink-700); }
.svc-intro .rule { width: 60px; height: 2px; background: var(--brass); margin: 30px auto 0; }

/* Feature row: image beside information */
.feature { padding: 88px 0; background: var(--paper); }
.feature.alt { background: var(--sand-light); }
.feature .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature--rev .feature__media { order: 2; }
.feature__media { position: relative; aspect-ratio: 5 / 4; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.feature__media img { position: absolute; left: 0; top: -9%; width: 100%; height: 118%; object-fit: cover; display: block; }
.feature__media::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(166,131,43,0.5); border-radius: 6px; pointer-events: none; }
.feature__kicker { display: inline-flex; align-items: center; gap: 10px; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); margin-bottom: 14px; }
.feature__kicker::before { content: ""; width: 26px; height: 2px; background: var(--brass); }
.feature__body h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 16px; }
.feature__body p { color: var(--ink-700); margin-bottom: 15px; }
.feature__body ul { list-style: none; margin: 18px 0 0; padding: 0; }
.feature__body li { position: relative; padding-left: 30px; margin-bottom: 12px; color: var(--ink-700); }
.feature__body li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 14px; height: 2px; background: var(--brass); }

/* Timeline */
.timeline-sec { background: var(--green); color: var(--paper); position: relative; overflow: hidden; }
.timeline-sec::after { content:""; position:absolute; left:-120px; bottom:-120px; width:320px; height:320px; border-radius:50%; border:1px solid rgba(166,131,43,0.16); }
.timeline-sec .section-head h2 { color: var(--paper); }
.timeline-sec .section-head p { color: rgba(247,243,236,0.82); }
.timeline { max-width: 760px; margin: 0 auto; position: relative; }
.timeline::before { content: ""; position: absolute; left: 27px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--brass), rgba(166,131,43,0.15)); transform: scaleY(0); transform-origin: top; transition: transform 1.1s var(--ease); }
.timeline.is-in::before { transform: scaleY(1); }
.tl-item { position: relative; padding: 0 0 40px 82px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-node { position: absolute; left: 6px; top: -4px; width: 44px; height: 44px; border-radius: 50%; background: var(--green-deep); border: 2px solid var(--brass); color: var(--brass-soft); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.25rem; }
.tl-item h3 { color: var(--paper); font-size: 1.4rem; margin-bottom: 6px; }
.tl-item p { color: rgba(247,243,236,0.82); font-size: 0.98rem; }

/* Spec table */
.spec-sec { background: var(--paper); }
.spec-wrap { max-width: 920px; margin: 0 auto; overflow-x: auto; }
table.spec-table { width: 100%; border-collapse: collapse; font-size: 0.98rem; min-width: 520px; }
.spec-table thead th { text-align: left; font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); padding: 0 22px 14px; border-bottom: 2px solid var(--brass); }
.spec-table td { padding: 18px 22px; border-bottom: 1px solid var(--line); color: var(--ink-700); vertical-align: top; }
.spec-table tbody tr:nth-child(even) { background: var(--sand-light); }
.spec-table td:first-child { font-family: var(--serif); font-size: 1.14rem; color: var(--char); font-weight: 600; }
.spec-table tbody tr:last-child td { border-bottom: none; }

/* Parallax base */
.js-parallax { will-change: transform; }

/* Homepage: service card link + section CTA */
.service-card__link { display:inline-block; margin-top: 14px; color: var(--brass); font-weight: 600; font-size: 0.92rem; }
.service-card__link:hover { color: var(--green); }
.section-cta { text-align:center; margin-top: 44px; }

@media (max-width: 900px){
  .related__grid, .blog-grid { grid-template-columns: repeat(2,1fr); }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px){
  .feature .container { grid-template-columns: 1fr; gap: 34px; }
  .feature--rev .feature__media { order: 0; }
  .feature__media { aspect-ratio: 16 / 10; }
  .assurance__item { border-right: none; padding: 14px 22px; }
}
@media (max-width: 620px){
  .related__grid, .blog-grid { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer__cols p { margin-left:auto; margin-right:auto; }
  .subhero { padding-top: 120px; }
  .feature { padding: 56px 0; }
  .tl-item { padding-left: 66px; }
}
