@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Playfair+Display:ital,wght@0,500;0,600;1,500&display=swap');

:root {
  --navy: #08243a;
  --navy-dark: #051a2a;
  --navy-soft: #15354b;
  --gold: #b39a63;
  --gold-light: #d6c28f;
  --ivory: #f7f5f1;
  --ivory-deep: #efebe4;
  --white: #fff;
  --charcoal: #28323a;
  --muted: #687179;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --header-height: 94px;
  --shadow: 0 24px 70px rgba(5, 26, 42, .1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body { margin: 0; color: var(--charcoal); background: var(--ivory); font-family: var(--sans); font-size: 16px; line-height: 1.7; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 9999; padding: 10px 16px; color: white; background: var(--navy); }
.skip-link:focus { top: 12px; }
.section { padding: 130px 0; }
.eyebrow { margin: 0 0 22px; color: var(--gold); font-size: .72rem; font-weight: 600; letter-spacing: .22em; line-height: 1.4; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy); font-family: var(--serif); font-weight: 500; line-height: 1.12; }
h1 { margin-bottom: 30px; font-size: clamp(3.2rem, 6vw, 5.6rem); letter-spacing: -.045em; }
h1 em, h2 em { color: var(--gold); font-weight: 500; }
h2 { margin-bottom: 26px; font-size: clamp(2.6rem, 4.3vw, 4.3rem); letter-spacing: -.035em; }
h3 { font-size: 1.52rem; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 1000; height: var(--header-height); border-bottom: 1px solid transparent; transition: height .35s ease, background .35s ease, box-shadow .35s ease; }
.site-header.scrolled, .site-header.menu-open { height: 76px; border-color: rgba(8, 36, 58, .08); background: rgba(247, 245, 241, .94); box-shadow: 0 8px 30px rgba(5, 26, 42, .06); backdrop-filter: blur(18px); }
.header-inner { display: flex; height: 100%; align-items: center; justify-content: space-between; }
.brand { display: flex; width: 190px; height: 62px; align-items: center; transition: width .35s ease; }
.brand picture { display: block; width: 100%; }
.brand img { width: 100%; max-height: 55px; object-fit: contain; object-position: left center; }
.scrolled .brand { width: 164px; }
.site-nav { display: flex; align-items: center; gap: 31px; color: var(--navy); font-size: .86rem; font-weight: 500; }
.site-nav > a:not(.nav-cta) { position: relative; padding: 10px 0; }
.site-nav > a:not(.nav-cta)::after { position: absolute; right: 100%; bottom: 4px; left: 0; height: 1px; background: var(--gold); content: ""; transition: right .25s ease; }
.site-nav > a:hover::after, .site-nav > a.active::after { right: 0; }
.nav-cta { padding: 11px 19px; border: 1px solid rgba(8, 36, 58, .3); transition: color .25s, background .25s, border-color .25s; }
.nav-cta:hover { color: var(--white); border-color: var(--navy); background: var(--navy); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 24px; height: 1px; margin: 6px 0; background: var(--navy); transition: transform .3s, opacity .3s; }

.hero { position: relative; min-height: 780px; padding: 176px 0 80px; isolation: isolate; overflow: hidden; }
.hero-art { position: absolute; inset: 0; z-index: -2; background: url('../img/credence-hero-bg.png') center/cover no-repeat; }
.hero::after { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(247,245,241,.98) 0%, rgba(247,245,241,.9) 39%, rgba(247,245,241,.18) 66%, transparent 100%); content: ""; }
.hero-inner { position: relative; display: flex; min-height: 520px; align-items: center; }
.hero-copy { width: min(690px, 62%); }
.hero-lead { max-width: 620px; margin-bottom: 38px; color: #48545c; font-size: 1.08rem; line-height: 1.82; }
.hero-actions { display: flex; align-items: center; gap: 34px; }
.button { display: inline-flex; min-height: 54px; padding: 13px 23px; align-items: center; justify-content: center; gap: 22px; border: 1px solid transparent; font-size: .82rem; font-weight: 600; letter-spacing: .04em; transition: transform .25s, color .25s, background .25s, border-color .25s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--navy); }
.button-primary:hover { background: var(--navy-soft); }
.text-link { padding: 10px 0; border-bottom: 1px solid var(--gold); color: var(--navy); font-size: .85rem; font-weight: 600; }
.hero-note { position: absolute; right: 0; bottom: 8px; margin: 0; color: rgba(255,255,255,.75); font-family: var(--serif); font-size: .9rem; font-style: italic; letter-spacing: .04em; }
.hero-note span { margin: 0 8px; color: var(--gold-light); }

.about { position: relative; background: var(--white); overflow: hidden; }
.about-grid { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.gold-rule { width: 65px; height: 2px; background: var(--gold); }
.about-copy { padding-top: 51px; }
.about-copy p { max-width: 650px; color: var(--muted); }
.about-copy .lead-copy { color: var(--charcoal); font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.8rem); line-height: 1.55; }
.about-mark { position: absolute; right: -10px; bottom: -210px; color: rgba(179, 154, 99, .055); font-family: var(--serif); font-size: 20rem; line-height: 1; pointer-events: none; }

.services { position: relative; color: var(--white); background: var(--navy-dark); overflow: hidden; }
.services::before { position: absolute; top: -180px; right: -170px; width: 560px; height: 560px; border: 1px solid rgba(214,194,143,.16); border-radius: 50%; content: ""; }
.services-heading { position: relative; display: grid; margin-bottom: 72px; grid-template-columns: 1.15fr .85fr; gap: 90px; align-items: end; }
.services-heading h2 { margin-bottom: 0; color: var(--white); }
.services-heading > p { max-width: 470px; margin-bottom: 8px; color: rgba(255,255,255,.68); font-size: 1.02rem; }
.section-pill { display: inline-flex; width: fit-content; margin: 0 0 24px; padding: 8px 15px; border: 1px solid rgba(214,194,143,.4); border-radius: 999px; color: var(--gold-light); background: rgba(214,194,143,.07); font-size: .68rem; font-weight: 600; letter-spacing: .18em; line-height: 1; text-transform: uppercase; }
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: 1fr; gap: 28px; }
.service-card { position: relative; display: flex; min-width: 0; min-height: 590px; height: 100%; flex-direction: column; border-radius: 22px; background: var(--white); box-shadow: 0 22px 55px rgba(0,0,0,.22); overflow: hidden; transition: transform .35s ease, box-shadow .35s ease; }
.service-card:hover { box-shadow: 0 30px 70px rgba(0,0,0,.32); transform: translateY(-8px); }
.service-image { height: 224px; background: #d8d1c6; overflow: hidden; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
.service-card:hover .service-image img { transform: scale(1.045); }
.service-icon { position: absolute; top: 193px; left: 28px; display: grid; width: 62px; height: 62px; place-items: center; border: 6px solid var(--white); border-radius: 50%; color: var(--navy); background: var(--gold-light); box-shadow: 0 8px 20px rgba(5,26,42,.18); }
.service-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-body { display: flex; padding: 52px 30px 32px; flex: 1; flex-direction: column; }
.service-number { margin: 0 0 12px; color: var(--gold); font-size: .66rem; font-weight: 600; letter-spacing: .18em; }
.service-body h3 { margin-bottom: 16px; font-size: clamp(1.32rem, 1.8vw, 1.65rem); }
.service-body > p:last-of-type { margin: 0 0 24px; color: var(--muted); font-size: .9rem; line-height: 1.68; }
.service-enquire { display: flex; width: 100%; margin-top: auto; padding: 22px 0 0; align-items: center; justify-content: space-between; border: 0; border-top: 1px solid rgba(8,36,58,.13); color: var(--navy); background: transparent; font-family: var(--sans); font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-align: left; text-transform: uppercase; cursor: pointer; transition: color .25s ease; }
.service-enquire:hover { color: var(--gold); }
.service-enquire span { font-size: 1.05rem; transition: transform .25s ease; }
.service-enquire:hover span { transform: translate(3px, 3px); }
.services-cta { display: flex; margin-top: 58px; padding: 30px 34px; align-items: center; justify-content: space-between; gap: 35px; border: 1px solid rgba(214,194,143,.22); border-radius: 16px; background: rgba(255,255,255,.045); }
.services-cta p { margin: 0; color: rgba(255,255,255,.68); }
.services-cta strong { color: var(--white); font-family: var(--serif); font-size: 1.2rem; font-weight: 500; }
.button-outline-light { color: var(--white); border-color: rgba(255,255,255,.45); background: transparent; }
.button-outline-light:hover { color: var(--navy-dark); border-color: var(--white); background: var(--white); }

.enquiry { position: relative; background: var(--ivory); overflow: hidden; }
.enquiry::after { position: absolute; right: -90px; bottom: -150px; color: rgba(179,154,99,.055); font-family: var(--serif); font-size: 18rem; line-height: 1; content: "CA"; pointer-events: none; }
.enquiry-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .8fr 1.2fr; gap: 92px; align-items: center; }
.enquiry-intro { padding-left: 20px; }
.enquiry-intro h2 em { color: var(--gold); }
.enquiry-intro > p:not(.eyebrow) { max-width: 430px; color: var(--muted); font-size: 1.03rem; }
.enquiry-flow { display: grid; max-width: 410px; margin-top: 44px; border-top: 1px solid rgba(8,36,58,.15); }
.enquiry-flow span { display: grid; padding: 16px 0; grid-template-columns: 44px 1fr; border-bottom: 1px solid rgba(8,36,58,.15); color: var(--charcoal); font-size: .86rem; }
.enquiry-flow strong { color: var(--gold); font-size: .68rem; letter-spacing: .12em; }
.enquiry-card { padding: 48px; border: 1px solid rgba(8,36,58,.08); border-radius: 24px; background: var(--white); box-shadow: 0 28px 75px rgba(5,26,42,.12); }
.enquiry-form { position: relative; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { margin-bottom: 22px; }
.form-field label { display: block; margin-bottom: 9px; color: var(--navy); font-size: .75rem; font-weight: 600; letter-spacing: .04em; }
.form-field label span { color: var(--gold); }
.form-field input, .form-field select, .form-field textarea { width: 100%; border: 1px solid rgba(8,36,58,.18); border-radius: 12px; color: var(--charcoal); background: #fbfaf8; font: inherit; font-size: .91rem; outline: none; transition: border-color .25s ease, box-shadow .25s ease, background .25s ease; }
.form-field input, .form-field select { height: 56px; padding: 0 17px; }
.form-field textarea { min-height: 132px; padding: 15px 17px; line-height: 1.65; resize: vertical; }
.form-field input::placeholder, .form-field textarea::placeholder { color: #959ca1; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 4px rgba(179,154,99,.13); }
.form-field input:focus-visible, .form-field select:focus-visible, .form-field textarea:focus-visible { outline: none; }
.select-wrap { position: relative; }
.select-wrap::after { position: absolute; top: 50%; right: 18px; width: 8px; height: 8px; border-right: 1px solid var(--navy); border-bottom: 1px solid var(--navy); content: ""; pointer-events: none; transform: translateY(-70%) rotate(45deg); }
.form-field select { padding-right: 42px; appearance: none; cursor: pointer; }
.field-hint { margin: 7px 0 0; color: var(--muted); font-size: .7rem; }
.hp-field { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; border: 0 !important; clip: rect(0 0 0 0) !important; white-space: nowrap !important; overflow: hidden !important; }
.form-submit { width: 100%; min-height: 58px; color: var(--white); background: var(--navy); cursor: pointer; }
.form-submit:hover { background: var(--navy-soft); }
.form-submit:disabled { cursor: wait; opacity: .72; transform: none; }
.form-note { max-width: 500px; margin: 15px auto 0; color: var(--muted); font-size: .71rem; line-height: 1.5; text-align: center; }
.form-status { margin-bottom: 22px; padding: 13px 15px; border-radius: 10px; font-size: .83rem; line-height: 1.5; }
.form-status.is-error { color: #7a2e2e; border: 1px solid rgba(155,61,61,.22); background: #fff4f2; }
.form-status.is-success { color: #245b45; border: 1px solid rgba(44,113,82,.2); background: #eff9f4; }

.statement { position: relative; padding: 145px 0; color: var(--white); background: var(--navy-dark); overflow: hidden; }
.statement::after { position: absolute; top: 0; right: -15%; width: 62%; height: 100%; border-left: 1px solid rgba(179,154,99,.18); background: linear-gradient(135deg, transparent, rgba(179,154,99,.07)); clip-path: ellipse(75% 110% at 100% 50%); content: ""; }
.statement-mark { position: absolute; right: 3%; bottom: -115px; color: rgba(255,255,255,.035); font-family: var(--serif); font-size: 22rem; line-height: 1; }
.statement-inner { position: relative; z-index: 1; text-align: center; }
.statement-accent { display: block; width: 1px; height: 55px; margin: -12px auto 35px; background: var(--gold); }
.statement h2 { color: var(--white); }
.statement p:last-child { max-width: 620px; margin: 0 auto; color: rgba(255,255,255,.7); }

.approach { background: var(--white); }
.approach-heading { margin-bottom: 72px; text-align: center; }
.approach-heading h2 { margin-bottom: 18px; }
.approach-heading > p:last-child { color: var(--muted); }
.process-list { display: grid; margin: 0; padding: 0; grid-template-columns: repeat(4, 1fr); list-style: none; }
.process-step { position: relative; padding: 0 30px 0 0; }
.process-step:not(:last-child)::after { position: absolute; top: 24px; right: 16px; left: 55px; height: 1px; background: linear-gradient(90deg, var(--gold), rgba(179,154,99,.18)); content: ""; }
.step-number { position: relative; z-index: 1; display: grid; width: 48px; height: 48px; margin-bottom: 33px; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); background: var(--white); font-size: .7rem; font-weight: 600; }
.process-step h3 { margin-bottom: 14px; }
.process-step p { max-width: 235px; margin: 0; color: var(--muted); font-size: .9rem; }

.principles { padding: 120px 0; background: var(--ivory-deep); }
.principles-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.principles-title { align-self: center; }
.principles-list { border-top: 1px solid rgba(8,36,58,.18); }
.principle { display: grid; padding: 28px 0; grid-template-columns: 70px 1fr; border-bottom: 1px solid rgba(8,36,58,.18); }
.principle > span { padding-top: 6px; color: var(--gold); font-size: .7rem; font-weight: 600; letter-spacing: .15em; }
.principle h3 { margin-bottom: 8px; }
.principle p { max-width: 510px; margin: 0; color: var(--muted); font-size: .93rem; }

.contact { background: var(--ivory); }
.contact-heading { margin-bottom: 60px; text-align: center; }
.contact-heading > p:last-child { color: var(--muted); }
.location-panel { display: grid; min-height: 610px; grid-template-columns: .88fr 1.12fr; color: var(--white); background: var(--navy); box-shadow: var(--shadow); overflow: hidden; }
.location-details { display: flex; padding: 56px; flex-direction: column; justify-content: center; }
.location-details h3 { margin-bottom: 7px; color: var(--white); font-size: 2.15rem; }
.legal-name { margin-bottom: 3px; color: rgba(255,255,255,.86); font-size: .88rem; font-weight: 600; letter-spacing: .04em; }
.contact-label { margin-bottom: 30px; color: var(--gold-light); font-size: .7rem; font-style: normal; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.button-gold { color: var(--navy-dark); background: var(--gold-light); }
.button-gold:hover { background: var(--white); }
.company-number { margin-bottom: 32px; color: var(--gold-light); font-size: .8rem; }
.location-item { display: grid; margin: 0; padding: 20px 0; grid-template-columns: 76px 1fr; border-top: 1px solid rgba(255,255,255,.12); font-style: normal; }
.location-item > span { padding-top: 2px; color: var(--gold-light); font-size: .65rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.location-item p { margin: 0; color: rgba(255,255,255,.72); font-size: .88rem; line-height: 1.75; }
.location-item strong { color: var(--white); font-weight: 500; }
.location-actions { display: flex; margin-top: 28px; gap: 12px; }
.location-actions .button { padding-inline: 18px; gap: 13px; }
.map-wrap { position: relative; min-height: 610px; background: #d8d3ca; }
.map-wrap::before { position: absolute; inset: 0 auto 0 0; z-index: 1; width: 35px; background: linear-gradient(90deg, rgba(8,36,58,.16), transparent); content: ""; pointer-events: none; }
.map-wrap iframe { display: block; width: 100%; height: 100%; min-height: 610px; border: 0; filter: saturate(.72) contrast(1.04); }

.site-footer { padding-top: 82px; color: rgba(255,255,255,.62); background: #04131f; }
.footer-main { display: grid; padding-bottom: 66px; grid-template-columns: 1.15fr 1fr .55fr; gap: 70px; }
.footer-brand img { width: 210px; height: 82px; margin-bottom: 18px; filter: brightness(0) invert(1); object-fit: contain; object-position: left center; }
.footer-brand p { max-width: 320px; font-size: .86rem; }
.footer-detail { font-size: .82rem; line-height: 1.8; }
.footer-detail strong { color: var(--white); font-weight: 500; }
.footer-label { color: var(--gold-light); font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.footer-link { display: inline-block; padding-bottom: 2px; border-bottom: 1px solid rgba(214,194,143,.5); color: var(--white); }
.footer-bottom { display: flex; padding: 24px 0; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.09); font-size: .74rem; }
.footer-bottom p { margin: 0; }

.floating-whatsapp { position: fixed; right: 24px; bottom: 24px; z-index: 900; display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; color: var(--white); background: #1f9f63; box-shadow: 0 8px 25px rgba(5,26,42,.22); transition: transform .25s, box-shadow .25s; }
.floating-whatsapp:hover { box-shadow: 0 12px 32px rgba(5,26,42,.3); transform: translateY(-3px); }
.floating-whatsapp svg { width: 27px; height: 27px; fill: currentColor; }

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

@media (max-width: 1024px) {
  .site-nav { gap: 20px; }
  .hero { min-height: 720px; }
  .hero-copy { width: 68%; }
  .about-grid { gap: 55px; }
  .services-heading { gap: 50px; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .enquiry-layout { gap: 55px; }
  .enquiry-card { padding: 40px; }
  .process-step { padding-right: 22px; }
  .principles-grid { gap: 60px; }
  .location-panel { grid-template-columns: 1fr; }
  .location-details { padding: 52px; }
  .map-wrap, .map-wrap iframe { min-height: 440px; }
  .footer-main { gap: 42px; }
}

@media (max-width: 820px) {
  :root { --header-height: 78px; }
  .container { width: min(100% - 38px, 680px); }
  .section { padding: 95px 0; }
  .brand { width: 166px; height: 54px; }
  .menu-toggle { display: block; z-index: 2; }
  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 76px 0 auto; display: grid; padding: 25px 24px 34px; gap: 5px; background: rgba(247,245,241,.985); box-shadow: 0 20px 35px rgba(5,26,42,.12); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: opacity .25s, transform .25s; }
  .site-nav.open { opacity: 1; pointer-events: auto; transform: none; }
  .site-nav > a { padding: 10px 4px !important; }
  .site-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 10px; justify-self: stretch; text-align: center; }
  .hero { min-height: 740px; padding-top: 140px; }
  .hero-art { background-position: 54% center; }
  .hero::after { background: linear-gradient(90deg, rgba(247,245,241,.98), rgba(247,245,241,.9) 58%, rgba(247,245,241,.35)); }
  .hero-copy { width: 82%; }
  .hero-note { display: none; }
  .about-grid, .principles-grid { grid-template-columns: 1fr; gap: 35px; }
  .about-copy { padding-top: 0; }
  .services-heading { grid-template-columns: 1fr; gap: 24px; }
  .enquiry-layout { grid-template-columns: 1fr; gap: 48px; }
  .enquiry-intro { padding-left: 0; }
  .enquiry-flow { max-width: none; }
  .process-list { grid-template-columns: repeat(2, 1fr); gap: 50px 20px; }
  .process-step:nth-child(2)::after { display: none; }
  .principles-title h2 { margin-bottom: 0; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 32px, 500px); }
  .section { padding: 78px 0; }
  h1 { font-size: clamp(2.75rem, 13vw, 4rem); }
  h2 { font-size: clamp(2.35rem, 11vw, 3.2rem); }
  .brand { width: 56px; }
  .brand img { height: 51px; object-position: center; }
  .hero { min-height: 770px; padding-top: 126px; }
  .hero-art { background-position: 58% center; }
  .hero::after { background: linear-gradient(90deg, rgba(247,245,241,.98) 0%, rgba(247,245,241,.92) 70%, rgba(247,245,241,.55) 100%); }
  .hero-copy { width: 100%; }
  .hero-lead { font-size: .97rem; line-height: 1.7; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .button { width: 100%; }
  .services-grid { grid-template-columns: 1fr; gap: 22px; }
  .services-grid { grid-auto-rows: auto; }
  .service-card { min-height: 0; height: auto; }
  .service-image { height: 218px; }
  .service-icon { top: 187px; }
  .service-body { padding: 51px 26px 29px; }
  .services-cta { padding: 28px; align-items: stretch; flex-direction: column; gap: 22px; }
  .enquiry-card { padding: 31px 24px; border-radius: 18px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .statement { padding: 100px 0; }
  .statement h2 br { display: none; }
  .process-list { grid-template-columns: 1fr; gap: 0; }
  .process-step { display: grid; padding: 0 0 38px; grid-template-columns: 62px 1fr; }
  .process-step:not(:last-child)::after { top: 48px; right: auto; bottom: 0; left: 24px; width: 1px; height: auto; background: linear-gradient(var(--gold), rgba(179,154,99,.18)); }
  .step-number { margin: 0; }
  .process-step p { max-width: none; }
  .principle { grid-template-columns: 45px 1fr; }
  .location-details { padding: 40px 27px; }
  .location-item { grid-template-columns: 68px 1fr; }
  .location-actions { flex-direction: column; }
  .map-wrap, .map-wrap iframe { min-height: 360px; }
  .company-number { overflow-wrap: anywhere; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
  .floating-whatsapp { right: 16px; bottom: 16px; width: 48px; height: 48px; }
}

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