:root {
  --burgundy: #ad1234;
  --burgundy-deep: #72051e;
  --gold: #f6ad2e;
  --gold-light: #ffd478;
  --cream: #fff7e8;
  --paper: #fffdf8;
  --ink: #191315;
  --muted: #6c6164;
  --line: rgba(25, 19, 21, .15);
  --white: #ffffff;
  --shell: min(1180px, calc(100% - 48px));
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 16px/1.65 var(--sans);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
section[id] { scroll-margin-top: var(--header-h); }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 2000;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.topbar { background: var(--ink); color: var(--white); font-size: .875rem; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar p { margin: 0; color: #d9cfd2; }
.topbar a { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-light); text-decoration: none; font-weight: 700; }
.topbar svg { width: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 253, 248, .96);
  border-bottom: 1px solid rgba(25, 19, 21, .09);
  backdrop-filter: blur(12px);
}
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.brand { position: relative; z-index: 2; width: 94px; flex: 0 0 auto; align-self: stretch; display: grid; place-items: center; }
.brand img { width: 82px; height: 82px; object-fit: contain; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: clamp(22px, 3vw, 42px); margin-left: auto; }
.site-nav a { position: relative; padding: 30px 0 26px; color: #372c2f; text-decoration: none; font-size: .9rem; font-weight: 700; }
.site-nav a::after { content: ""; position: absolute; right: 0; bottom: 22px; left: 0; height: 2px; background: var(--burgundy); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.site-nav a:is(:hover, :focus-visible, .active)::after { transform: scaleX(1); }
.nav-cta { padding: 11px 18px; border: 1px solid var(--burgundy); color: var(--burgundy); text-decoration: none; font-size: .86rem; font-weight: 700; transition: background .2s ease, color .2s ease; }
.nav-cta:hover { background: var(--burgundy); color: var(--white); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 10px; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--ink); transition: transform .25s ease, opacity .25s ease; }

.hero {
  position: relative;
  min-height: calc(100svh - 122px);
  background: var(--burgundy);
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 400px;
  height: 400px;
  top: -175px;
  left: -150px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(255,255,255,.035), 0 0 0 90px rgba(255,255,255,.025);
}
.hero::after {
  content: "KONAK";
  position: absolute;
  z-index: -1;
  right: -35px;
  bottom: -95px;
  color: rgba(85, 0, 20, .24);
  font: 700 clamp(8rem, 20vw, 18rem)/1 var(--serif);
  letter-spacing: -.08em;
}
.hero-grid { min-height: calc(100svh - 122px); display: grid; grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr); align-items: center; gap: clamp(40px, 6vw, 88px); padding-block: 72px 88px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 22px; color: var(--gold-light); font-size: .76rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow span { width: 34px; height: 2px; background: currentColor; }
.eyebrow-dark { color: var(--burgundy); }
.hero h1, .section h2 { margin: 0; font-family: var(--serif); font-weight: 700; letter-spacing: -.045em; }
.hero h1 { max-width: 690px; font-size: clamp(3.6rem, 6.8vw, 6.55rem); line-height: .9; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-text { max-width: 650px; margin: 30px 0 0; color: #f7e5e9; font-size: clamp(1rem, 1.5vw, 1.17rem); line-height: 1.75; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 27px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 14px 22px; border: 0; text-decoration: none; font-weight: 700; cursor: pointer; }
.button-gold { background: var(--gold); color: var(--ink); box-shadow: 7px 7px 0 var(--burgundy-deep); transition: transform .2s ease, box-shadow .2s ease; }
.button-gold:hover { transform: translate(3px, 3px); box-shadow: 4px 4px 0 var(--burgundy-deep); }
.text-link { color: var(--white); text-underline-offset: 5px; text-decoration-thickness: 1px; font-weight: 700; }
.text-link span { display: inline-block; margin-left: 5px; color: var(--gold); transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, -3px); }
.hero-proof { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; max-width: 650px; margin-top: 45px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.25); }
.hero-proof div { display: grid; gap: 2px; }
.hero-proof strong { color: var(--white); font-size: .95rem; }
.hero-proof span { color: #e9cfd6; font-size: .74rem; line-height: 1.35; }

.hero-visual { position: relative; min-height: 480px; }
.hero-photo { position: absolute; margin: 0; overflow: hidden; background: var(--burgundy-deep); box-shadow: 0 24px 60px rgba(42, 0, 10, .35); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-main { top: 82px; left: 24%; width: 225px; height: 300px; border: 7px solid var(--cream); transform: rotate(-2.5deg); }
.hero-photo-top { top: 26px; right: 4%; width: 160px; height: 226px; border: 6px solid var(--gold); transform: rotate(4deg); }
.hero-photo-bottom { right: 7%; bottom: 5px; width: 180px; height: 240px; border: 6px solid var(--cream); transform: rotate(2deg); }
.hero-stamp { position: absolute; left: 1%; bottom: 42px; width: 122px; height: 122px; display: grid; place-content: center; text-align: center; border: 1px solid rgba(255,255,255,.62); border-radius: 50%; transform: rotate(-9deg); }
.hero-stamp::before, .hero-stamp::after { content: ""; position: absolute; inset: 7px; border: 1px dashed rgba(255,255,255,.34); border-radius: inherit; }
.hero-stamp span { font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.hero-stamp strong { color: var(--gold); font: 700 1.35rem/1.1 var(--serif); }
.scroll-cue { position: absolute; left: 50%; bottom: 20px; display: flex; align-items: center; gap: 10px; color: #efd9df; text-decoration: none; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; transform: translateX(-50%); }
.scroll-cue i { display: block; width: 22px; height: 1px; background: var(--gold); }

.intro-strip { background: var(--gold); color: var(--ink); border-bottom: 1px solid rgba(25,19,21,.18); }
.intro-strip-grid { min-height: 86px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: clamp(32px, 6vw, 88px); }
.intro-strip p { margin: 0; font: 700 clamp(1.15rem, 2vw, 1.55rem)/1.2 var(--serif); }
.marquee { display: flex; align-items: center; justify-content: flex-end; gap: clamp(18px, 3vw, 42px); color: #68200d; font-size: .72rem; font-weight: 700; letter-spacing: .16em; }
.marquee i { width: 5px; height: 5px; background: var(--burgundy); transform: rotate(45deg); }

.section { padding: 112px 0; }
.section-heading { display: grid; grid-template-columns: 1fr minmax(280px, 440px); align-items: end; gap: 72px; margin-bottom: 58px; }
.section h2 { font-size: clamp(2.8rem, 5vw, 5rem); line-height: .98; }
.section-heading > p { margin: 0 0 6px; color: var(--muted); font-size: 1.05rem; }

.services { background: var(--cream); }
.service-list { border-top: 1px solid var(--line); }
.service-item { display: grid; grid-template-columns: 56px 62px minmax(0, 1fr); align-items: center; gap: 24px; padding: 28px 24px 28px 10px; border-bottom: 1px solid var(--line); transition: background .22s ease, padding-left .22s ease; }
.service-item:hover { padding-left: 20px; background: var(--paper); }
.service-number { color: var(--burgundy); font-size: .72rem; font-weight: 700; letter-spacing: .12em; }
.service-icon { width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid rgba(173,18,52,.3); color: var(--burgundy); }
.service-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.service-item > div:last-child { display: grid; grid-template-columns: minmax(210px, .7fr) minmax(280px, 1.3fr); align-items: center; gap: 60px; }
.service-item h3 { margin: 0; font: 600 clamp(1.45rem, 2.4vw, 2.15rem)/1.15 var(--serif); letter-spacing: -.025em; }
.service-item p { max-width: 650px; margin: 0; color: var(--muted); }

.about { position: relative; background: var(--ink); color: var(--white); overflow: hidden; }
.about::after { content: ""; position: absolute; top: 0; right: 0; width: 22%; height: 100%; border-left: 1px solid rgba(255,255,255,.07); border-right: 1px solid rgba(255,255,255,.07); transform: skewX(-10deg); pointer-events: none; }
.about-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(340px, .88fr) minmax(0, 1.12fr); align-items: center; gap: clamp(60px, 9vw, 120px); }
.about-visual { position: relative; max-width: 520px; padding: 36px 36px 86px 34px; border-left: 10px solid var(--gold); background: #100d0e; }
.about-visual figure { display: grid; grid-template-columns: minmax(0, 151px) minmax(0, 225px); align-items: end; justify-content: center; gap: 14px; max-width: 390px; height: auto; margin: 0 auto; overflow: visible; }
.about-visual figure img { width: 100%; height: auto; object-fit: contain; filter: saturate(.92) contrast(1.03); }
.about-caption { position: absolute; right: 0; bottom: 28px; min-width: 230px; padding: 18px 22px; background: var(--burgundy); box-shadow: 7px 7px 0 var(--gold); }
.about-caption strong, .about-caption span { display: block; }
.about-caption strong { font-family: var(--serif); font-size: 1.28rem; }
.about-caption span { color: #f1cbd5; font-size: .78rem; text-transform: uppercase; letter-spacing: .11em; }
.about-quote { position: absolute; left: 16px; bottom: 86px; max-width: 220px; margin: 0; padding: 15px 18px; background: rgba(25,19,21,.94); color: var(--gold-light); font-family: var(--serif); font-size: 1.02rem; line-height: 1.45; }
.about-copy h2 { max-width: 720px; color: var(--white); }
.about-copy .lead { margin-top: 32px; color: var(--gold-light); font-size: 1.18rem; line-height: 1.65; }
.about-copy p:not(.eyebrow):not(.lead) { color: #d6cbce; }
.signature-link { display: inline-flex; align-items: center; gap: 16px; margin-top: 14px; color: var(--white); text-underline-offset: 6px; font-weight: 700; }
.signature-link span { color: var(--gold); font-size: 1.5rem; }

.process { background: var(--gold); }
.process-head { max-width: 700px; margin-bottom: 52px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(25,19,21,.28); border-bottom: 1px solid rgba(25,19,21,.28); }
.process-step { min-height: 285px; padding: 30px 34px 38px; border-right: 1px solid rgba(25,19,21,.28); }
.process-step:last-child { border-right: 0; }
.process-step > span { display: inline-block; margin-bottom: 48px; color: var(--burgundy); font-size: .74rem; font-weight: 700; }
.process-step h3 { margin: 0 0 12px; font: 600 1.65rem/1.2 var(--serif); }
.process-step p { margin: 0; color: #52391e; }

.gallery { background: var(--burgundy-deep); color: var(--white); }
.gallery-heading > p { color: #dbc5ca; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 300px; gap: 14px; max-width: 780px; margin-inline: auto; }
.gallery-item { position: relative; display: grid; place-items: center; width: 100%; height: 300px; min-width: 0; padding: 0; border: 1px solid rgba(255,255,255,.09); background: #35000d; overflow: hidden; cursor: zoom-in; }
.gallery-item img { width: auto; height: auto; max-width: 100%; max-height: 100%; object-fit: contain; transition: filter .35s ease; }
.gallery-item span { position: absolute; right: 0; bottom: 0; left: 0; padding: 13px 17px; color: var(--white); background: rgba(20, 0, 5, .82); text-align: left; font-size: .79rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transform: translateY(100%); transition: transform .3s ease; }
.gallery-item:hover img, .gallery-item:focus-visible img { filter: saturate(1.08) contrast(1.02); }
.gallery-item:hover span, .gallery-item:focus-visible span { transform: translateY(0); }
.gallery-wide { grid-column: auto; }
.gallery-tall { grid-row: auto; }

.promise { background: var(--cream); }
.promise-grid { display: grid; grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr); gap: 90px; }
.promise-title { position: sticky; top: calc(var(--header-h) + 35px); align-self: start; }
.promise-title h2 em { color: var(--burgundy); font-style: normal; }
.promise-points { border-top: 1px solid var(--line); }
.promise-points article { display: grid; grid-template-columns: 46px minmax(180px, .8fr) minmax(220px, 1fr); gap: 20px; align-items: start; padding: 30px 0; border-bottom: 1px solid var(--line); }
.promise-points span { color: var(--burgundy); font-size: .72rem; font-weight: 700; }
.promise-points h3 { margin: 0; font: 600 1.35rem/1.2 var(--serif); }
.promise-points p { margin: 0; color: var(--muted); }

.contact { background: var(--burgundy); color: var(--white); }
.contact-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(430px, 1.15fr); align-items: start; gap: clamp(60px, 9vw, 120px); }
.contact-copy { position: sticky; top: calc(var(--header-h) + 35px); }
.contact-copy > p:not(.eyebrow) { max-width: 560px; color: #f3dce2; font-size: 1.05rem; }
.contact-details { display: grid; gap: 12px; margin-top: 36px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.24); }
.contact-details > a, .contact-details > div { display: flex; align-items: center; gap: 16px; color: var(--white); text-decoration: none; }
.contact-icon { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid rgba(255,255,255,.38); }
.contact-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--gold); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-details small, .contact-details strong { display: block; }
.contact-details small { color: #e1bdc7; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.contact-details strong { font-size: 1.02rem; }
.social-links { display: flex; gap: 24px; margin-top: 32px; }
.social-links a { color: var(--white); text-underline-offset: 5px; font-weight: 700; }
.social-links span { color: var(--gold); }

.enquiry-form { padding: clamp(28px, 4vw, 48px); background: var(--paper); color: var(--ink); box-shadow: 12px 12px 0 var(--burgundy-deep); }
.form-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 28px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.form-head span { font: 600 1.65rem/1.2 var(--serif); }
.form-head p { margin: 0; color: var(--muted); font-size: .75rem; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 21px 18px; }
.field-grid label { display: grid; gap: 7px; }
.field-grid label > span { font-size: .82rem; font-weight: 700; }
.field-grid input, .field-grid select, .field-grid textarea { width: 100%; min-height: 50px; padding: 12px 13px; border: 1px solid #d8ced0; border-radius: 0; background: var(--white); color: var(--ink); outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.field-grid textarea { resize: vertical; }
.field-grid input:focus, .field-grid select:focus, .field-grid textarea:focus { border-color: var(--burgundy); box-shadow: 0 0 0 3px rgba(173,18,52,.12); }
.field-grid input::placeholder, .field-grid textarea::placeholder { color: #95898c; }
.field-full { grid-column: 1 / -1; }
.form-submit { width: 100%; gap: 10px; margin-top: 26px; box-shadow: 6px 6px 0 #d58400; }
.form-submit:hover { box-shadow: 3px 3px 0 #d58400; }
.form-submit svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.form-submit .whatsapp-mark { width: 22px; height: 22px; flex: 0 0 auto; fill: currentColor; stroke: none; }
.form-note, .form-status { margin: 14px 0 0; color: var(--muted); font-size: .74rem; line-height: 1.45; }
.form-status { min-height: 18px; color: var(--burgundy); font-weight: 700; }

.site-footer { background: var(--ink); color: var(--white); }
.footer-main { display: grid; grid-template-columns: minmax(280px, 1.4fr) .6fr 1fr; gap: 80px; padding: 72px 0 50px; }
.footer-brand img { width: 140px; height: 140px; object-fit: contain; }
.footer-brand p { max-width: 350px; color: #bfb3b6; }
.footer-nav, .footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; padding-top: 24px; }
.footer-main h2 { margin: 0 0 12px; color: var(--gold); font: 600 .76rem/1 var(--sans); letter-spacing: .13em; text-transform: uppercase; }
.footer-main a { color: var(--white); text-decoration-color: rgba(255,255,255,.28); text-underline-offset: 4px; }
.footer-contact > a { font: 600 1.35rem/1.2 var(--serif); }
.footer-contact p { margin: 0; color: #bfb3b6; }
.footer-contact div { display: flex; gap: 18px; margin-top: 12px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px 0 22px; border-top: 1px solid rgba(255,255,255,.12); color: #9f9296; font-size: .75rem; }
.footer-bottom p { margin: 0; }

.floating-whatsapp { position: fixed; right: 20px; bottom: 20px; z-index: 900; display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: #25d366; color: var(--white); text-decoration: none; font-size: .84rem; font-weight: 700; box-shadow: 0 12px 28px rgba(0,0,0,.25); }
.floating-whatsapp svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.floating-whatsapp .whatsapp-mark { width: 23px; height: 23px; flex: 0 0 auto; fill: currentColor; stroke: none; }

.lightbox { width: fit-content; max-width: calc(100% - 32px); max-height: calc(100svh - 32px); padding: 0; border: 0; background: var(--ink); color: var(--white); box-shadow: 0 25px 80px rgba(0,0,0,.55); overflow: visible; }
.lightbox::backdrop { background: rgba(20, 4, 9, .9); backdrop-filter: blur(5px); }
.lightbox img { width: auto; height: auto; max-width: 100%; max-height: calc(100svh - 95px); margin-inline: auto; object-fit: contain; background: #0a0809; }
.lightbox p { position: absolute; right: 0; bottom: 0; left: 0; margin: 0; padding: 12px 18px; background: rgba(25,19,21,.88); }
.lightbox-close { position: absolute; z-index: 2; top: -14px; right: -14px; width: 42px; height: 42px; border: 0; background: var(--gold); color: var(--ink); font-size: 1.8rem; line-height: 1; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  :root { --shell: min(100% - 38px, 960px); }
  .site-nav { gap: 20px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(410px, .95fr); gap: 35px; }
  .hero h1 { font-size: clamp(3.4rem, 7vw, 5.3rem); }
  .hero-visual { min-height: 480px; }
  .hero-photo-main { height: 300px; }
  .hero-photo-bottom { height: 240px; }
  .service-item > div:last-child { gap: 30px; }
  .about-grid { grid-template-columns: .8fr 1.2fr; gap: 58px; }
  .about-visual figure { height: auto; }
  .promise-grid, .contact-grid { gap: 55px; }
  .gallery-grid { grid-auto-rows: 300px; }
  .gallery-item { height: 300px; }
}

@media (max-width: 850px) {
  :root { --header-h: 74px; }
  .site-header { height: var(--header-h); }
  .brand img { width: 70px; height: 70px; }
  .menu-toggle { display: block; margin-left: auto; cursor: pointer; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: absolute; inset: 100% 0 auto; display: grid; align-content: start; gap: 0; max-height: 0; padding: 0 24px; background: var(--paper); overflow: hidden; visibility: hidden; transition: max-height .3s ease, padding .3s ease, visibility .3s; border-bottom: 1px solid var(--line); }
  .site-nav.open { max-height: calc(100svh - 112px); padding-block: 18px 30px; visibility: visible; }
  .site-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font: 600 1.35rem/1.25 var(--serif); }
  .site-nav a::after { bottom: 8px; right: auto; width: 38px; }
  .nav-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr; padding-block: 70px 90px; }
  .hero-copy { max-width: 690px; }
  .hero-visual { min-height: 470px; max-width: 540px; width: 100%; margin: 0 auto; }
  .hero-photo-main { left: 22%; width: 225px; height: 300px; }
  .hero-photo-top { width: 160px; height: 226px; }
  .hero-photo-bottom { width: 180px; height: 240px; }
  .scroll-cue { display: none; }
  .section { padding: 88px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .service-item > div:last-child { grid-template-columns: .8fr 1.2fr; }
  .about-grid { grid-template-columns: minmax(0, 1fr); }
  .about-visual { max-width: 560px; }
  .about-visual figure { height: auto; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(25,19,21,.28); }
  .process-step:last-child { border-bottom: 0; }
  .process-step > span { margin-bottom: 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 280px; max-width: 520px; }
  .gallery-item { height: 280px; }
  .promise-grid { grid-template-columns: 1fr; }
  .promise-title, .contact-copy { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-copy { max-width: 690px; }
  .footer-main { grid-template-columns: 1.3fr .7fr; gap: 50px; }
  .footer-contact { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.12); }
}

@media (max-width: 600px) {
  :root { --shell: calc(100% - 32px); }
  .topbar-inner { min-height: 36px; }
  .topbar p { display: none; }
  .topbar-inner { justify-content: center; }
  .hero { min-height: auto; }
  .hero-grid { min-height: auto; padding: 54px 0 72px; }
  .eyebrow { margin-bottom: 16px; font-size: .68rem; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero-text { margin-top: 23px; font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; margin-top: 28px; }
  .hero-proof { grid-template-columns: 1fr; gap: 11px; margin-top: 35px; }
  .hero-proof div { grid-template-columns: 90px 1fr; align-items: baseline; }
  .hero-visual { min-height: 355px; margin-top: 10px; }
  .hero-photo-main { top: 36px; left: 7%; width: 60%; max-width: 225px; height: auto; aspect-ratio: 3 / 4; border-width: 6px; }
  .hero-photo-top { width: 34%; max-width: 160px; height: auto; aspect-ratio: 212 / 300; border-width: 5px; }
  .hero-photo-bottom { right: 0; bottom: 8px; width: 42%; max-width: 180px; height: auto; aspect-ratio: 3 / 4; border-width: 5px; }
  .hero-stamp { left: 0; bottom: 6px; width: 95px; height: 95px; }
  .hero-stamp strong { font-size: 1rem; }
  .hero-stamp span { font-size: .52rem; }
  .intro-strip-grid { grid-template-columns: 1fr; min-height: 72px; text-align: center; }
  .marquee { display: none; }
  .section { padding: 72px 0; }
  .section h2 { font-size: clamp(2.45rem, 12vw, 3.65rem); }
  .section-heading { margin-bottom: 40px; }
  .service-item { grid-template-columns: 34px 44px minmax(0, 1fr); gap: 12px; padding: 24px 0; }
  .service-item:hover { padding-left: 0; background: transparent; }
  .service-icon { width: 40px; height: 40px; }
  .service-icon svg { width: 21px; }
  .service-item > div:last-child { grid-template-columns: 1fr; gap: 8px; }
  .service-item h3 { font-size: 1.35rem; }
  .service-item p { font-size: .92rem; }
  .about-grid { gap: 50px; }
  .about-visual { padding: 24px 18px 82px 18px; border-left-width: 7px; }
  .about-visual figure { height: auto; }
  .about-caption { min-width: 190px; padding: 14px 17px; }
  .about-quote { left: 15px; bottom: 77px; max-width: 175px; font-size: .94rem; }
  .process-step { padding-inline: 10px; }
  .gallery-grid { grid-auto-rows: 220px; gap: 8px; }
  .gallery-wide { grid-column: auto; }
  .gallery-tall { grid-row: auto; }
  .gallery-item { height: 220px; }
  .gallery-item span { padding: 10px; font-size: .65rem; transform: none; }
  .promise-points article { grid-template-columns: 34px 1fr; gap: 8px 12px; }
  .promise-points p { grid-column: 2; }
  .contact-grid { gap: 44px; }
  .enquiry-form { padding: 26px 20px; box-shadow: 7px 7px 0 var(--burgundy-deep); }
  .form-head { align-items: start; flex-direction: column; gap: 5px; }
  .field-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .social-links { flex-wrap: wrap; }
  .footer-main { grid-template-columns: 1fr; gap: 18px; padding-top: 55px; }
  .footer-nav, .footer-contact { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 6px; }
  .floating-whatsapp { right: 12px; bottom: 12px; padding: 11px; }
  .floating-whatsapp span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .lightbox-close { top: 0; right: 0; }
}

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