@font-face {
  font-family: "AnaktoriaRegular";
  src: url("assets/anaktoria-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --forest: #26382d;
  --forest-deep: #18251d;
  --moss: #69785c;
  --sage: #a8b29b;
  --fern: #d8dfcf;
  --cream: #f5f0e6;
  --paper: #fbf8f1;
  --white: #fffdf8;
  --clay: #a95f43;
  --ochre: #c59b58;
  --ink: #1f2822;
  --muted: #667069;
  --line: rgba(38, 56, 45, .17);
  --shadow: 0 24px 65px rgba(41, 52, 44, .13);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --wordmark: "AnaktoriaRegular", Anaktoria, Georgia, serif;
  --shell: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: .7rem 1rem;
  background: var(--forest-deep);
  color: white;
}
.skip-link:focus { top: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.section { padding: 90px 0; }

.notice {
  min-height: 32px;
  display: grid;
  place-items: center;
  padding: 6px 20px;
  background: var(--forest-deep);
  color: #e8eadf;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-align: center;
  text-transform: uppercase;
}
.notice p { margin: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 241, .93);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 30px rgba(38,56,45,.05); }

.nav-wrap { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--forest-deep); text-decoration: none; }
.brand-mark { width: 54px; height: 54px; overflow: hidden; border: 1px solid var(--line); border-radius: 50%; background: var(--white); }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.8); }
.brand-type { display: flex; flex-direction: column; }
.brand-type strong { font-family: var(--wordmark); font-size: 25px; font-weight: 400; letter-spacing: .015em; line-height: 1; }
.brand-type small { margin-top: 4px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { position: relative; color: #3b473f; font-size: 13px; font-weight: 700; text-decoration: none; }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 1px; background: var(--clay); transition: right .2s ease; }
.site-nav > a:not(.nav-cta):hover::after { right: 0; }
.nav-cta { padding: 12px 18px; border: 1px solid var(--forest); border-radius: 100px; transition: .2s ease; }
.nav-cta:hover { background: var(--forest); color: var(--white); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px; border: 1px solid var(--line); border-radius: 50%; background: transparent; }
.menu-toggle > span:not(.sr-only) { display: block; width: 100%; height: 1px; margin: 5px 0; background: var(--forest); }

.hero { position: relative; min-height: 760px; display: flex; align-items: center; overflow: hidden; background: var(--cream); }
.hero::before { content: ""; position: absolute; top: 0; right: -8%; width: 46%; height: 100%; background: #e1e7d9; border-radius: 0 0 0 48%; opacity: .74; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 66px; padding: 72px 0 82px; }
.eyebrow { margin: 0 0 18px; color: var(--clay); font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; font-family: var(--serif); font-weight: 400; color: var(--forest-deep); }
h1 { max-width: 710px; margin-bottom: 26px; font-size: clamp(54px, 6vw, 86px); line-height: .98; letter-spacing: -.045em; }
h1 em, h2 em { color: var(--moss); font-weight: 400; }
.hero-intro { max-width: 620px; margin: 0 0 32px; color: #4b574f; font-size: 18px; line-height: 1.65; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 12px 22px; border: 1px solid var(--forest); border-radius: 100px; font-size: 12px; font-weight: 800; letter-spacing: .045em; text-decoration: none; transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--forest); color: var(--white); box-shadow: 0 12px 28px rgba(38,56,45,.18); }
.button-primary:hover { background: var(--forest-deep); box-shadow: 0 16px 34px rgba(38,56,45,.25); }
.button-quiet { background: transparent; color: var(--forest); }
.button-quiet:hover { background: rgba(255,255,255,.6); }
.trust-list { display: flex; flex-wrap: wrap; gap: 22px; margin: 32px 0 0; padding: 0; list-style: none; color: #647068; font-size: 12px; font-weight: 700; }
.trust-list li::before { content: "✦"; margin-right: 8px; color: var(--ochre); }
.hero-visual { position: relative; justify-self: end; width: min(100%, 520px); }
.hero-image-wrap { aspect-ratio: .87; overflow: hidden; border-radius: 48% 48% 16px 16px; box-shadow: var(--shadow); }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-trees { position: absolute; left: -70px; bottom: -105px; width: 500px; opacity: .11; pointer-events: none; }

.section-heading { margin-bottom: 42px; }
.section-heading h2, .about h2, .repair-card h2, .enquiry-intro h2 { margin-bottom: 18px; font-size: clamp(40px, 4.8vw, 62px); line-height: 1.08; letter-spacing: -.035em; }
.section-heading > p:last-child { color: var(--muted); }
.section-heading.centered { max-width: 790px; margin-inline: auto; text-align: center; }
.section-heading.centered > p:last-child { max-width: 650px; margin-inline: auto; }
.section-heading.split { display: grid; grid-template-columns: 1.35fr .65fr; gap: 80px; align-items: end; }
.section-heading.split h2 { margin-bottom: 0; }
.section-heading.split > p { margin: 0 0 6px; }

.gatherings { background: var(--paper); }
.occasion-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 0 0 52px; }
.occasion-list span { display: inline-flex; align-items: center; padding: 12px 17px; border: 1px solid var(--line); border-radius: 100px; background: rgba(255,255,255,.55); color: #4e5c53; font-size: 12px; font-weight: 700; }
.gathering-feature { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 520px; background: var(--forest); color: #dfe4da; box-shadow: var(--shadow); }
.gathering-image { min-height: 460px; overflow: hidden; }
.gathering-image img { width: 100%; height: 100%; object-fit: cover; }
.gathering-copy { display: flex; flex-direction: column; justify-content: center; padding: 56px 64px; }
.gathering-copy h3 { margin-bottom: 18px; color: var(--white); font-size: clamp(34px, 4vw, 51px); line-height: 1.08; }
.gathering-copy > p:not(.hand-note) { margin: 0 0 25px; color: #c8d0c7; }
.hand-note { margin: 0 0 18px; color: #e0c98f; font-family: var(--serif); font-size: 17px; font-style: italic; }
.text-link { width: fit-content; padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.4); color: var(--white); font-size: 12px; font-weight: 800; text-decoration: none; }
.text-link span { margin-left: 8px; }

.workshops { background: var(--cream); }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin: -8px 0 34px; }
.filter { padding: 10px 15px; border: 1px solid rgba(38,56,45,.18); border-radius: 100px; background: transparent; color: var(--forest); font-size: 11px; font-weight: 800; cursor: pointer; }
.filter:hover, .filter.is-active { background: var(--forest); color: white; }
.workshop-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.workshop-card { display: flex; flex-direction: column; min-width: 0; background: var(--white); border: 1px solid rgba(38,56,45,.08); box-shadow: 0 12px 30px rgba(38,56,45,.04); transition: transform .25s ease, box-shadow .25s ease; }
.workshop-card:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(38,56,45,.11); }
.workshop-card[hidden] { display: none; }
.card-image { aspect-ratio: 1.18; overflow: hidden; background: #eee4d2; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.workshop-card:hover .card-image img { transform: scale(1.035); }
.card-image-soft img { object-position: center; }
.card-image-top img { object-position: center 20%; }
.card-image-broom img { object-position: center 72%; }
.card-image-mushroom img { object-position: center 40%; }
.card-body { flex: 1; display: flex; flex-direction: column; padding: 24px 24px 25px; }
.card-kicker { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 13px; color: var(--moss); font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.card-kicker span:last-child { color: #858e87; text-align: right; }
.card-kicker span.seasonal-tag { display: inline-flex; align-items: center; padding: 4px 8px; border-radius: 999px; background: var(--clay); color: var(--white); line-height: 1; text-align: center; }
.card-body h3 { margin-bottom: 10px; font-size: 28px; line-height: 1.12; }
.card-body p { margin: 0 0 22px; color: #68736c; font-size: 13px; line-height: 1.65; }
.card-link { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: auto; padding: 14px 0 0; border: 0; border-top: 1px solid var(--line); background: transparent; color: var(--forest); font-size: 11px; font-weight: 800; text-align: left; cursor: pointer; }
.card-link span { font-size: 17px; font-weight: 400; transition: transform .2s ease; }
.card-link:hover span { transform: translate(3px,-3px); }
.catalogue-note { max-width: 780px; margin: 32px auto 0; color: #657168; font-size: 13px; text-align: center; }
.photo-story { margin-top: 52px; }
.photo-story-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 20px; }
.photo-story-head .eyebrow { margin: 0; }
.photo-story-head > p:last-child { max-width: 480px; margin: 0; color: #657168; font-size: 13px; text-align: right; }
.photo-story-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; grid-auto-rows: 220px; gap: 14px; }
.photo-story-grid figure { min-width: 0; margin: 0; overflow: hidden; background: #eee4d2; }
.photo-story-grid .photo-story-large { grid-row: span 2; }
.photo-story-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.photo-story-grid figure:hover img { transform: scale(1.025); }
.photo-story-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 14px; }
.photo-story-strip figure { aspect-ratio: 1.55; min-width: 0; margin: 0; overflow: hidden; background: #eee4d2; }
.photo-story-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.photo-story-strip figure:hover img { transform: scale(1.025); }

.about { position: relative; overflow: hidden; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 100px; align-items: stretch; }
.about-art { position: relative; min-height: 0; aspect-ratio: .87; align-self: end; display: grid; place-items: center; border-radius: 48% 48% 16px 16px; background: #eee4d2; overflow: hidden; }
.about-art::before { content: ""; position: absolute; inset: 55% 0 0; z-index: 1; background: linear-gradient(transparent, rgba(18,27,21,.58)); pointer-events: none; }
.about-art::after { content: ""; position: absolute; inset: 28px; z-index: 2; border: 1px solid rgba(255,255,255,.5); border-radius: inherit; pointer-events: none; }
.about-art img { width: 100%; height: 100%; object-fit: cover; object-position: 47% center; }
.about-art p { position: absolute; bottom: 34px; z-index: 3; margin: 0; color: white; font-family: var(--serif); font-size: 15px; font-style: italic; text-shadow: 0 1px 15px rgba(18,27,21,.55); }
.about-copy { display: flex; flex-direction: column; padding-top: 14px; }
.about-copy .lead { max-width: 650px; color: var(--forest); font-family: var(--serif); font-size: 22px; line-height: 1.5; }
.about-copy > p:not(.eyebrow):not(.lead) { color: var(--muted); }
.about-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: auto; padding-top: 18px; }
.about-points span { padding: 11px 10px; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; line-height: 1.35; }
.about-points strong { display: block; margin-bottom: 3px; color: var(--forest); font-family: var(--serif); font-size: 16px; font-weight: 500; }

.process { background: var(--paper); }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 0; padding: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); list-style: none; }
.process-list li { display: flex; gap: 17px; padding: 30px 25px; border-right: 1px solid var(--line); }
.process-list li:last-child { border-right: 0; }
.process-list > li > span { width: 32px; height: 32px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid var(--sage); border-radius: 50%; color: var(--moss); font-family: var(--serif); font-size: 13px; }
.process-list h3 { margin-bottom: 7px; font-size: 20px; }
.process-list p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }

.faq { padding-top: 0; background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.faq .section-heading { margin: 0; }
.faq .section-heading h2 { font-size: clamp(38px, 4.3vw, 56px); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 24px 48px 24px 0; color: var(--forest); font-family: var(--serif); font-size: 20px; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; top: 21px; right: 8px; color: var(--clay); font-family: var(--sans); font-size: 24px; font-weight: 300; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: -8px 60px 24px 0; color: var(--muted); font-size: 13px; }

.repairs { padding-top: 0; background: var(--paper); }
.repair-card { display: grid; grid-template-columns: .85fr 1.15fr; min-height: 380px; border: 1px solid var(--line); background: var(--cream); }
.repair-image { min-height: 330px; overflow: hidden; }
.repair-image img { width: 100%; height: 100%; object-fit: cover; }
.repair-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 48px 66px; }
.repair-copy h2 { margin-bottom: 12px; }
.repair-copy p:not(.eyebrow) { max-width: 610px; margin: 0 0 25px; color: var(--muted); }

.enquire { position: relative; overflow: hidden; background: var(--forest-deep); color: #d7ddd5; }
.enquire::after { content: ""; position: absolute; right: -100px; bottom: -200px; width: 550px; height: 550px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255,255,255,.025), 0 0 0 120px rgba(255,255,255,.018); }
.enquiry-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: start; }
.enquiry-intro h2 { color: var(--white); }
.enquiry-intro > p:not(.eyebrow):not(.response-note) { color: #bfc8be; font-size: 17px; }
.direct-contact { margin-top: 36px; }
.direct-contact a { display: block; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.13); color: white; text-decoration: none; }
.direct-contact a:last-child { border-bottom: 1px solid rgba(255,255,255,.13); }
.direct-contact small, .direct-contact strong { display: block; }
.direct-contact small { color: #91a092; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.direct-contact strong { margin-top: 4px; font-family: var(--serif); font-size: 18px; font-weight: 400; }
.response-note { margin-top: 25px; color: #89978a; font-size: 11px; line-height: 1.6; }
.enquiry-form { padding: 38px; background: var(--paper); color: var(--ink); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 19px; }
.form-grid label { min-width: 0; }
.form-grid label > span { display: block; margin: 0 0 7px; color: #4b584f; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.form-span { grid-column: 1 / -1; }
input, select, textarea { width: 100%; border: 1px solid rgba(38,56,45,.2); border-radius: 0; outline: none; background: rgba(255,255,255,.72); color: var(--ink); transition: border .2s ease, box-shadow .2s ease; }
input, select { height: 48px; padding: 0 13px; }
textarea { display: block; padding: 12px 13px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--moss); box-shadow: 0 0 0 3px rgba(105,120,92,.12); }
::placeholder { color: #9ba29d; opacity: 1; }
.submit-button { margin-top: 24px; border: 0; cursor: pointer; }
.form-help { max-width: 600px; margin: 14px 0 0; color: #869088; font-size: 10px; line-height: 1.5; }
.form-status { min-height: 0; margin-top: 12px; color: var(--forest); font-size: 12px; font-weight: 700; }

.site-footer { padding: 50px 0 22px; background: #121b15; color: #a8b3aa; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 45px; align-items: start; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { width: 78px; height: 65px; object-fit: cover; filter: grayscale(1) brightness(1.8); opacity: .65; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { color: white; font-family: var(--wordmark); font-size: 30px; font-weight: 400; }
.footer-brand span { margin-top: 3px; color: #7f8d82; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.site-footer nav, .footer-contact { display: flex; flex-direction: column; gap: 9px; }
.site-footer nav a, .footer-contact a { width: fit-content; color: #a8b3aa; font-size: 12px; text-decoration: none; }
.site-footer a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.09); color: #627066; font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .75s ease, transform .75s ease; }
.reveal-delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: none; }

:focus-visible { outline: 2px solid var(--ochre); outline-offset: 3px; }

@media (max-width: 980px) {
  .section { padding: 72px 0; }
  .menu-toggle { display: block; }
  .site-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 14px 20px 22px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 22px 40px rgba(38,56,45,.12); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 3px; border-bottom: 1px solid var(--line); }
  .site-nav a::after { display: none; }
  .site-nav .nav-cta { margin-top: 13px; padding: 12px 18px; text-align: center; border-bottom: 1px solid var(--forest); }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 38px; padding: 56px 0 70px; }
  h1 { font-size: clamp(48px, 7vw, 68px); }
  .section-heading.split { gap: 38px; }
  .workshop-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .about-grid { gap: 55px; }
  .about-points { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .process-list li:nth-child(2) { border-right: 0; }
  .process-list li:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .enquiry-grid { grid-template-columns: 1fr; gap: 44px; }
  .faq-grid { grid-template-columns: 1fr; gap: 35px; }
}

@media (max-width: 720px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .notice { min-height: 38px; font-size: 9px; }
  .nav-wrap { min-height: 75px; }
  .brand-mark { width: 46px; height: 46px; }
  .brand-type strong { font-size: 18px; }
  .brand-type small { font-size: 8px; }
  .section { padding: 60px 0; }
  .hero::before { top: auto; bottom: 0; width: 95%; height: 49%; }
  .hero-grid { grid-template-columns: 1fr; gap: 42px; padding: 46px 0 64px; }
  h1 { font-size: clamp(48px, 13vw, 65px); }
  .hero-intro { font-size: 16px; }
  .hero-visual { justify-self: center; width: min(90%, 480px); }
  .hero-trees { display: none; }
  .section-heading.split { grid-template-columns: 1fr; gap: 10px; }
  .section-heading h2, .about h2, .repair-card h2, .enquiry-intro h2 { font-size: clamp(39px, 11vw, 53px); }
  .occasion-list { justify-content: flex-start; margin-bottom: 42px; }
  .gathering-feature { grid-template-columns: 1fr; }
  .gathering-image { min-height: 330px; }
  .gathering-copy { padding: 38px 27px 42px; }
  .workshop-grid { grid-template-columns: 1fr; }
  .card-image { aspect-ratio: 1.28; }
  .photo-story-head { display: block; }
  .photo-story-head .eyebrow { margin-bottom: 10px; }
  .photo-story-head > p:last-child { max-width: 560px; text-align: left; }
  .photo-story-grid { grid-template-columns: 1.2fr 1fr; grid-auto-rows: 210px; }
  .about-grid { grid-template-columns: 1fr; gap: 45px; }
  .about-art { width: min(90%, 480px); min-height: 0; justify-self: center; }
  .about-copy { display: block; padding-top: 0; }
  .about-points { grid-template-columns: repeat(3, 1fr); margin-top: 32px; padding-top: 0; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li { border-right: 0; border-bottom: 1px solid var(--line); }
  .process-list li:nth-child(3) { border-bottom: 1px solid var(--line); }
  .process-list li:last-child { border-bottom: 0; }
  .repair-card { grid-template-columns: 1fr; }
  .repair-image { min-height: 280px; }
  .repair-copy { padding: 36px 26px 42px; }
  .enquiry-form { padding: 27px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-span { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 460px) {
  .button-row { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .trust-list { gap: 10px 16px; }
  .filters { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none; }
  .filters::-webkit-scrollbar { display: none; }
  .filter { flex: 0 0 auto; }
  .photo-story-grid { grid-template-columns: 1fr; grid-auto-rows: 245px; }
  .photo-story-grid .photo-story-large { grid-row: auto; }
  .photo-story-strip { grid-template-columns: 1fr; }
  .photo-story-strip figure { aspect-ratio: 1.35; }
  .about-points { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
