/*
 * aazhi 360 — landing page styles
 * Plain CSS, no build step. Colour system uses oklch custom properties on :root.
 * Breakpoints: 1100px (tablet) and 760px (mobile).
 */

:root {
  --radius: 0.2rem;

  /* raw palette */
  --background: oklch(0.97 0.005 220);
  --foreground: oklch(0.24 0.07 267);
  --border: oklch(0.24 0.07 267 / 18%);
  --input: oklch(0.24 0.07 267 / 22%);
  --muted-foreground: oklch(0.48 0.04 267);

  --ink: oklch(0.24 0.07 267);       /* brand navy */
  --ink-soft: oklch(0.3 0.06 267);
  --paper: oklch(0.97 0.005 220);
  --green: oklch(0.7 0.19 143);      /* brand green */
  --green-deep: oklch(0.62 0.16 158);
  --lime: oklch(0.83 0.2 135);       /* bright accent green */
  --teal: oklch(0.66 0.13 205);      /* brand teal */

  /* semantic aliases referenced throughout the stylesheet */
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --color-border: var(--border);
  --color-input: var(--input);
  --color-muted-foreground: var(--muted-foreground);
  --color-ink: var(--ink);
  --color-ink-soft: var(--ink-soft);
  --color-paper: var(--paper);
  --color-green: var(--green);
  --color-green-deep: var(--green-deep);
  --color-lime: var(--lime);
  --color-teal: var(--teal);

  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Syne", "Plus Jakarta Sans", system-ui, sans-serif;
}

/* base */
*,
*::before,
*::after { box-sizing: border-box; border-color: var(--color-border); }

html { scroll-behavior: smooth; }

body {
  background-color: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-sans);
  margin: 0;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { max-width: 100%; }

/* the JS toggles UI state with the [hidden] attribute (nav icons, filter checks,
   form messages) — make sure it always wins, including on SVG elements */
[hidden] { display: none !important; }

/* default inline-icon size; specific rules below override */
svg.icon { width: 16px; height: 16px; flex-shrink: 0; }

.font-display { font-family: var(--font-display); }

.site-shell { background: var(--color-paper); color: var(--color-ink); min-height: 100vh; min-height: 100svh; overflow-x: clip; }
.site-header { align-items: center; display: flex; justify-content: space-between; margin: 0 auto; max-width: 1440px; padding: 28px 5.6vw; position: relative; z-index: 10; }
.brand-lockup { align-items: center; display: inline-flex; gap: 10px; }
.brand-name { font-family: var(--font-display); font-size: 21px; font-weight: 700; letter-spacing: 0; text-transform: lowercase; }
.brand-name b { color: var(--color-green); font-weight: 800; }
.brand-mark { display: block; height: 34px; object-fit: contain; width: 34px; }
/* mark art is transparent — on the dark footer it sits on a light rounded tile so the navy half stays legible */
.site-footer .brand-mark { background: var(--color-paper); border-radius: 8px; box-sizing: border-box; padding: 5px; }
.main-nav { align-items: center; display: flex; gap: clamp(22px, 3.1vw, 52px); margin-left: auto; margin-right: clamp(24px, 4.2vw, 66px); }
.main-nav a, .footer-links a { font-size: 12px; font-weight: 600; letter-spacing: .02em; position: relative; }
.main-nav a::after, .footer-links a::after { background: var(--color-green); bottom: -6px; content: ""; height: 2px; left: 0; position: absolute; transform: scaleX(0); transform-origin: left; transition: transform .25s ease; width: 100%; }
.main-nav a:hover::after, .footer-links a:hover::after { transform: scaleX(1); }
.header-cta { align-items: center; background: var(--color-ink); border: 0; border-radius: 999px; color: var(--color-paper); cursor: pointer; display: inline-flex; font-size: 11px; font-weight: 700; gap: 8px; height: 42px; justify-content: center; padding: 0 19px; transition: background .2s ease, color .2s ease; white-space: nowrap; }
.header-cta:hover { background: var(--color-green); color: var(--color-ink); }
.header-cta svg { height: 15px; width: 15px; }
.menu-toggle { align-items: center; background: transparent; border: 0; border-radius: 8px; color: var(--color-ink); cursor: pointer; display: none; height: 44px; justify-content: center; margin-right: -8px; width: 44px; }
.hero { margin: 0 auto; max-width: 1440px; min-height: min(755px, calc(100vh - 80px)); min-height: min(755px, calc(100svh - 80px)); padding: 10.5vh 5.6vw 6vh; position: relative; }
.hero-kicker, .eyebrow { align-items: center; display: flex; font-size: 10px; font-weight: 700; gap: 9px; letter-spacing: .12em; text-transform: uppercase; }
.hero-kicker { color: var(--color-muted-foreground); }
.live-dot { background: var(--color-green); border-radius: 50%; box-shadow: 0 0 0 5px oklch(0.7 0.19 143 / 16%); height: 6px; width: 6px; }
.slash { color: var(--color-green); font-size: 18px; font-weight: 400; }
.hero-title-wrap { align-items: center; display: flex; max-width: 1060px; position: relative; }
.hero h1 { font-family: var(--font-display); font-size: clamp(60px, 9.8vw, 138px); font-weight: 700; letter-spacing: -.05em; line-height: .9; margin: 11vh 0 0 -0.04em; position: relative; z-index: 1; }
.hero h1 em, h2 i { color: var(--color-green); font-style: normal; }
.hero-orbit { height: 320px; margin: 10vh 0 0 -65px; position: relative; transform: rotate(25deg); width: 240px; }
.orbit-ring { border: 2px solid var(--color-teal); border-radius: 50%; display: block; height: 210px; left: 15px; position: absolute; top: 48px; transform: rotate(54deg) skew(9deg); width: 102px; }
.orbit-ring-two { border-color: var(--color-green); height: 255px; left: 55px; top: 24px; transform: rotate(-16deg) skew(-14deg); width: 120px; }
.orbit-dot { background: var(--color-lime); border-radius: 50%; height: 27px; left: 110px; position: absolute; top: 10px; width: 27px; }
.hero-bottomline { align-items: end; border-top: 1px solid var(--color-border); bottom: 6vh; display: grid; grid-template-columns: 1fr 1fr 1fr; left: 5.6vw; padding-top: 17px; position: absolute; right: 5.6vw; }
.hero-intro { font-size: 13px; line-height: 1.6; margin: 0; max-width: 250px; }
.scroll-prompt { align-items: center; display: flex; font-size: 10px; font-weight: 700; gap: 9px; justify-self: center; text-transform: uppercase; }
.scroll-prompt svg { color: var(--color-green); height: 17px; width: 17px; }
.hero-index { font-family: var(--font-display); font-size: 13px; justify-self: end; margin: 0; }
.hero-index span { color: var(--color-green); margin: 0 6px; }
.section-heading { align-items: end; display: flex; justify-content: space-between; margin: 0 auto 62px; max-width: 1290px; }
.eyebrow { color: var(--color-green); margin: 0 0 20px; }
h2 { font-family: var(--font-display); font-size: clamp(43px, 6vw, 83px); font-weight: 600; letter-spacing: -.055em; line-height: .92; margin: 0; }
.section-note { color: var(--color-muted-foreground); font-size: 13px; line-height: 1.7; margin: 0; max-width: 320px; }
.studio-section { background: var(--color-lime); color: var(--color-ink); display: grid; gap: 6vw; grid-template-columns: 1fr 1.5fr 1fr; overflow: hidden; padding: 126px 5.6vw; position: relative; }
.studio-stamp { align-self: center; height: auto; rotate: 0deg; width: clamp(150px, 19vw, 250px); }
.studio-copy { max-width: 500px; }
.studio-copy .eyebrow { color: var(--color-ink); }
.studio-copy h2 i { color: var(--color-ink); }  /* navy on the lime background — green-on-green was unreadable */
.studio-copy > p:not(.eyebrow) { font-size: 13px; line-height: 1.7; margin: 32px 0 25px; max-width: 390px; }
.text-link { align-items: center; border-bottom: 1px solid var(--color-ink); display: inline-flex; font-size: 11px; font-weight: 700; gap: 8px; padding-bottom: 7px; }
.text-link svg { height: 15px; width: 15px; }
.studio-stats { align-self: end; display: flex; flex-direction: column; gap: 18px; padding-bottom: 3px; }
.studio-stats div { align-items: center; border-bottom: 1px solid oklch(0.24 0.07 267 / 25%); display: flex; gap: 17px; padding-bottom: 13px; }
.studio-stats strong { font-family: var(--font-display); font-size: 34px; font-weight: 600; letter-spacing: -.06em; }
.studio-stats span { font-size: 10px; line-height: 1.35; }
.contact-section { background: var(--color-green); color: var(--color-ink); min-height: 535px; padding: 40px 5.6vw 65px; }
.contact-topline { align-items: center; border-bottom: 1px solid oklch(0.24 0.07 267 / 28%); display: flex; justify-content: space-between; padding-bottom: 17px; }
.contact-topline .eyebrow { color: var(--color-ink); margin: 0; }
.contact-topline > span { font-size: 10px; font-weight: 600; }
.contact-main { align-items: end; display: flex; justify-content: space-between; margin: 10vh 0 34px; }
.contact-main h2 { font-size: clamp(72px, 12vw, 172px); }
.contact-main h2 i { color: var(--color-paper); }  /* near-white on the green background */
.contact-arrow { align-items: center; border: 1px solid var(--color-ink); border-radius: 50%; display: flex; height: 86px; justify-content: center; transition: .25s ease; width: 86px; }
.contact-arrow:hover { background: var(--color-ink); color: var(--color-green); transform: rotate(45deg); }
.contact-arrow svg { height: 32px; width: 32px; }
.email-link { border-bottom: 1px solid var(--color-ink); display: inline-block; font-family: var(--font-display); font-size: 16px; padding-bottom: 6px; }
.contact-methods { display: flex; flex-wrap: wrap; gap: 13px; margin: 0 0 40px; }
.contact-method { align-items: center; background: oklch(0.24 0.07 267 / 7%); border: 1px solid oklch(0.24 0.07 267 / 24%); border-radius: 14px; display: inline-flex; gap: 13px; padding: 13px 20px; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.contact-method:hover { background: var(--color-ink); border-color: var(--color-ink); color: var(--color-green); transform: translateY(-2px); }
.contact-method svg { flex-shrink: 0; height: 22px; width: 22px; }
.contact-method .cm-text { display: flex; flex-direction: column; gap: 2px; }
.contact-method .cm-label { font-size: 9px; font-weight: 700; letter-spacing: .12em; opacity: .68; text-transform: uppercase; }
.contact-method .cm-value { font-family: var(--font-display); font-size: 15px; font-weight: 600; }
.site-footer { background: var(--color-ink); color: var(--color-paper); display: flex; flex-direction: column; gap: 18px; padding: 28px 5.6vw; }
.footer-bar { align-items: center; border-bottom: 1px solid oklch(0.97 0.005 220 / 12%); display: flex; justify-content: space-between; padding-bottom: 18px; }
.site-footer .brand-name { font-size: 17px; }
.site-footer .brand-mark { height: 32px; width: 32px; }
.footer-bar p { color: oklch(0.97 0.005 220 / 48%); font-size: 10px; margin: 0; }
/* Operator attribution — kept in the footer because WhatsApp Business display-name
   review needs the aazhi 360 ↔ Ededin Solutions relationship to be public on-site. */
.footer-disclosure { color: oklch(0.97 0.005 220 / 44%); font-size: 10px; line-height: 1.75; margin: 0; max-width: 760px; }
.footer-disclosure strong { color: oklch(0.97 0.005 220 / 70%); font-weight: 700; }
.footer-disclosure a { border-bottom: 1px solid oklch(0.97 0.005 220 / 28%); color: oklch(0.97 0.005 220 / 70%); transition: color .2s ease, border-color .2s ease; }
.footer-disclosure a:hover { border-color: var(--color-green); color: var(--color-green); }
.footer-links { display: flex; gap: 22px; }
.footer-links a { align-items: center; display: inline-flex; font-size: 10px; min-height: 40px; }
.footer-links a::after { bottom: 8px; }

/* Scroll reveal */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); will-change: opacity, transform; }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------------------------------------------------------- *
 * Motion — aazhi 360 as a full-circle customisation studio
 * ---------------------------------------------------------- */

/* Solution cards settle square from a slight angle — "built to fit", not stamped out */
.solution-card:nth-child(odd)  { --enter-rot: -3.5deg; }
.solution-card:nth-child(even) { --enter-rot: 3.5deg; }
.solution-card[data-reveal] { opacity: 0; translate: 0 22px; rotate: var(--enter-rot, 3deg); transform: none; }
.solution-card[data-reveal].is-visible { opacity: 1; translate: 0 0; rotate: 0deg; }

/* Studio stamp turns one full circle as it scrolls in, then rests */
.studio-stamp[data-reveal] { opacity: 1; transform: none; rotate: -360deg; transition: rotate 1.3s cubic-bezier(.22,.68,.15,1); will-change: rotate; }
.studio-stamp[data-reveal].is-visible { rotate: 0deg; }

@media (prefers-reduced-motion: no-preference) {
  /* The hero orbit keeps turning — the studio circling every angle of the operation. */
  .hero-orbit { animation: orbit-idle 44s linear infinite; }
  .orbit-dot  { animation: orbit-dot 5.5s ease-in-out infinite; }

  /* ...and where supported, scrolling through the hero adds ~a quarter-turn on top:
     moving down the page turns the view. Targets `transform`, not `rotate`, so it
     stacks on the idle spin instead of replacing it. */
  @supports (animation-timeline: scroll()) {
    .hero-orbit {
      animation: orbit-idle 44s linear infinite, orbit-pass linear both;
      animation-timeline: auto, scroll(root block);
      animation-range: normal, 0 90vh;
    }
  }
}
@keyframes orbit-idle { from { rotate: 0deg; } to { rotate: 360deg; } }
@keyframes orbit-dot  { 0%, 100% { translate: 0 0; } 50% { translate: 6px -10px; } }
@keyframes orbit-pass { from { transform: rotate(25deg); } to { transform: rotate(-72deg); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .solution-card[data-reveal],
  .solution-card[data-reveal].is-visible { translate: none; rotate: none; }
  .studio-stamp[data-reveal],
  .studio-stamp[data-reveal].is-visible { rotate: 0deg; transition: none; }
  .hero-orbit, .orbit-dot { animation: none; }
}

/* Solutions — dark section */
.solutions-section { background: var(--color-ink); color: var(--color-paper); padding: 128px 5.6vw; }
.solutions-section .section-heading h2 { font-family: var(--font-display); font-size: clamp(40px, 5.4vw, 78px); font-weight: 700; letter-spacing: -.05em; line-height: .92; margin: 0; }
.solutions-section .section-note { color: oklch(0.97 0.005 220 / 62%); }
.solution-grid { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); margin: 0 auto; max-width: 1290px; }
.solution-card { background: oklch(0.97 0.005 220 / 5%); border: 1px solid oklch(0.97 0.005 220 / 14%); border-radius: 20px; padding: 26px 24px 28px; position: relative; transform-origin: 50% 100%; transition: translate .55s cubic-bezier(.2,.8,.2,1), rotate .55s cubic-bezier(.2,.8,.2,1), opacity .55s ease, transform .16s ease-out, border-color .3s ease, background .3s ease; }
.solution-card:hover { background: oklch(0.97 0.005 220 / 9%); border-color: var(--color-green); transform: translateY(-4px); }
.solution-index { color: var(--color-green); font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: .1em; }
.solution-card h3 { font-family: var(--font-display); font-size: 21px; font-weight: 600; letter-spacing: -.03em; margin: 12px 0 14px; }
.solution-card p { font-size: 11.5px; line-height: 1.65; margin: 0 0 8px; opacity: .8; }
.solution-card p strong { color: var(--color-paper); font-weight: 700; opacity: 1; }
.solution-outcome strong { color: var(--color-lime); }
.solution-card ul { border-top: 1px solid oklch(0.97 0.005 220 / 16%); list-style: none; margin: 16px 0 0; padding: 14px 0 0; }
.solution-card li { align-items: center; display: flex; font-size: 11.5px; gap: 8px; padding: 5px 0; }
.solution-card li svg { color: var(--color-teal); height: 13px; width: 13px; }
.solutions-footnote { color: oklch(0.97 0.005 220 / 62%); font-size: 12px; margin: 46px auto 0; max-width: 1290px; }
.solutions-footnote a { align-items: center; color: var(--color-green); display: inline-flex; font-weight: 700; gap: 4px; }
.solutions-footnote svg { height: 14px; width: 14px; }

/* How it works — light section */
.process-section { padding: 122px 5.6vw; }
.process-steps { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); list-style: none; margin: 0 auto; max-width: 1290px; padding: 0; }
.process-step { background: oklch(0.24 0.07 267 / 4%); border: 1px solid var(--color-border); border-radius: 20px; padding: 30px 26px 34px; }
.process-index { color: var(--color-green-deep); font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.process-step h3 { font-family: var(--font-display); font-size: 21px; font-weight: 600; letter-spacing: -.03em; margin: 13px 0 12px; }
.process-step p { color: var(--color-muted-foreground); font-size: 13px; line-height: 1.72; margin: 0; }

/* Enquiry form */
.enquiry-form { display: grid; gap: 16px 20px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0 auto; max-width: 980px; }
.enquiry-form .field { display: flex; flex-direction: column; gap: 7px; }
.enquiry-form .field-wide { grid-column: 1 / -1; }
.enquiry-form label { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea { background-color: oklch(1 0 0 / 92%); border: 1px solid oklch(0.24 0.07 267 / 45%); border-radius: 12px; color: var(--color-ink); font: inherit; font-size: 13px; outline: none; padding: 12px 14px; transition: border-color .2s ease, background-color .2s ease; width: 100%; }
.enquiry-form ::placeholder { color: oklch(0.24 0.07 267 / 55%); }
.enquiry-form textarea { resize: vertical; }
/* Custom chevron so the arrow lines up with the field's 14px inset instead of the
   browser's native indicator, which sits hard against the right edge. */
.enquiry-form select { -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23101c40' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-position: right 14px center; background-repeat: no-repeat; padding-right: 40px; }
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus { background-color: #fff; border-color: var(--color-ink); }
.enquiry-form .field-error { color: oklch(0.32 0.13 25); font-size: 10.5px; font-weight: 700; }
.form-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 22px; grid-column: 1 / -1; justify-content: space-between; margin-top: 6px; }
.enquiry-submit { align-items: center; background: var(--color-ink); border: 0; border-radius: 999px; color: var(--color-paper); cursor: pointer; display: inline-flex; font-size: 12px; font-weight: 700; gap: 8px; padding: 14px 24px; transition: .25s ease; }
.enquiry-submit:hover { background: var(--color-paper); color: var(--color-ink); transform: translateY(-2px); }
.enquiry-submit svg { height: 15px; width: 15px; }
.form-success { font-size: 12px; font-weight: 600; grid-column: 1 / -1; margin: 0; }

/* focus visibility */
:focus-visible { outline: 2px solid var(--color-teal); outline-offset: 2px; }

/* ------------------------------------------------------------------ *
 * Tablet / small laptop (761–1100px)
 * The desktop layout uses an asymmetric 12-col grid and absolute
 * positioning that only unwound at 760px — this fills the gap.
 * ------------------------------------------------------------------ */
@media (min-width: 761px) and (max-width: 1100px) {
  .site-header { padding: 24px 5vw; }
  .main-nav { gap: clamp(18px, 2.6vw, 32px); margin-right: clamp(18px, 3vw, 40px); }

  .hero { min-height: auto; padding: 9vh 5vw 7vh; }
  .hero h1 { font-size: clamp(50px, 9vw, 104px); margin: 6vh 0 0 -0.04em; }
  .hero-orbit { height: 240px; margin: 5vh 0 0 -30px; scale: .78; transform-origin: center; width: 180px; }
  .hero-bottomline { position: static; margin-top: 6vh; padding-top: 17px; }

  .section-heading { align-items: flex-start; flex-direction: column; gap: 22px; }
  .section-note { margin: 0; max-width: 46ch; }

  .solutions-section { padding: 90px 5vw 100px; }

  .process-section { padding: 84px 5vw 92px; }
  .process-steps { gap: 16px; }
  .process-step { padding: 26px 22px 30px; }

  .studio-section { gap: 44px; grid-template-columns: 1fr; padding: 90px 5vw; }
  .studio-stamp { align-self: start; justify-self: start; }
  .studio-copy { max-width: none; }
  .studio-stats { align-self: stretch; display: grid; gap: 14px 40px; grid-template-columns: repeat(3, 1fr); }
  .studio-stats div { align-items: start; flex-direction: column; gap: 6px; }

  .contact-main { align-items: flex-start; flex-direction: column; gap: 20px; margin: 8vh 0 30px; }
  .contact-main h2 { font-size: clamp(56px, 10vw, 104px); }
  .contact-arrow { height: 64px; width: 64px; }
  .contact-arrow svg { height: 24px; width: 24px; }

  .solution-grid { grid-template-columns: 1fr 1fr; }
  .enquiry-form { max-width: none; }
}

/* Short / landscape viewports on tablet+ — don't let the hero pin content off-screen */
@media (min-width: 761px) and (max-height: 620px) {
  .hero { min-height: auto; padding-top: 7vh; }
  .hero h1 { margin-top: 5vh; }
  .hero-orbit { margin-top: 4vh; }
  .hero-bottomline { margin-top: 5vh; position: static; }
}

@media (max-width: 760px) {
  .site-header { padding: 20px 6vw; }
  .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .main-nav { background: var(--color-paper); border-bottom: 1px solid var(--color-border); display: none; flex-direction: column; gap: 24px; left: 0; margin: 0; max-height: calc(100svh - 66px); overflow-y: auto; padding: 28px 6vw 32px; position: absolute; right: 0; top: 100%; z-index: 20; }
  .main-nav.is-open { display: flex; }
  .main-nav a { align-items: center; display: flex; font-family: var(--font-display); font-size: 24px; min-height: 44px; }
  .hero { min-height: auto; padding: 7vh 6vw 6vh; }
  .hero-kicker { font-size: 8px; gap: 6px; }
  .hero-title-wrap { display: block; }
  .hero h1 { font-size: clamp(44px, 13vw, 82px); margin: 5vh 0 0 -0.03em; }
  .hero-orbit { display: none; }  /* decorative; collides with the headline at phone widths */
  .hero-bottomline { grid-template-columns: 1fr auto; margin-top: 7vh; padding-top: 15px; position: static; }
  .hero-intro { font-size: 11px; }
  .scroll-prompt { grid-column: 2; grid-row: 1; justify-self: end; }
  .hero-index { display: none; }
  .section-heading { align-items: start; flex-direction: column; gap: 25px; margin-bottom: 42px; }
  .section-note { margin: 0; max-width: none; }
  .studio-section { display: flex; flex-direction: column; gap: 50px; padding: 82px 6vw; }
  .studio-stamp { align-self: start; height: auto; width: 132px; }
  .studio-copy > p:not(.eyebrow) { margin-top: 25px; }
  .studio-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
  .studio-stats div { align-items: start; flex-direction: column; gap: 6px; }
  .studio-stats strong { font-size: 29px; }
  .contact-section { min-height: 0; padding: 28px 6vw 55px; }
  .contact-topline > span { max-width: 110px; text-align: right; }
  .contact-main { align-items: flex-start; flex-direction: column; gap: 18px; margin: 8vh 0 30px; }
  .contact-main h2 { font-size: clamp(52px, 16vw, 96px); }
  .contact-arrow { height: 56px; width: 56px; }
  .contact-arrow svg { height: 22px; width: 22px; }
  .site-footer { gap: 20px; padding: 25px 6vw 32px; }
  .footer-bar { align-items: start; flex-wrap: wrap; gap: 22px; }
  .footer-bar p { order: 3; width: 100%; }
  .solutions-section { padding: 82px 6vw 90px; }
  .solution-grid { grid-template-columns: 1fr; }
  .process-section { padding: 74px 6vw 84px; }
  .process-steps { grid-template-columns: 1fr; gap: 14px; }
  .process-step { padding: 26px 22px 28px; }
  .contact-methods { gap: 10px; margin-bottom: 34px; }
  .contact-method { width: 100%; }
  .enquiry-form { grid-template-columns: 1fr; }
  .enquiry-form input, .enquiry-form select, .enquiry-form textarea { font-size: 16px; }
  .solutions-footnote { font-size: 11.5px; }
}
