/* ============================================================
   GN PIX — Site styles
   Built from BRAND_GUIDELINES.md (source of truth)
   Photo · Print · Frame — Kitchener, ON
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --coral:        #F28C5C;
  --coral-text:   #A85325;  /* WCAG AA on cream backgrounds (4.5:1+) */
  --charcoal:     #1A1714;
  --indigo:       #233458;

  /* Neutrals */
  --paper:        #F4EFE7;
  --paper-2:      #FBF9F4;
  --canvas:       #F1ECE3;
  --stone:        #625C53;
  --ink-soft:     #3A352F;
  --ink-muted:    #736C62;

  /* Coral scale */
  --coral-100:    #F8C6A6;
  --coral-200:    #F5A87E;
  --coral-500:    #F28C5C;
  --coral-700:    #C15E2E;

  /* Semantic */
  --success:      #1F8A5B;
  --danger:       #C0392B;

  /* Fonts */
  --font-heading: 'Sora', sans-serif;
  --font-body:    'Public Sans', sans-serif;

  /* Structure */
  --border:       1px solid rgba(26, 23, 20, 0.09);
  --border-strong:1px solid rgba(26, 23, 20, 0.16);
  --radius-sm:    10px;
  --radius:       18px;
  --radius-lg:    24px;
  --shadow-sm:    0 1px 2px rgba(26, 23, 20, 0.05);
  --shadow:       0 18px 44px -22px rgba(26, 23, 20, 0.30);
  --shadow-lg:    0 40px 80px -40px rgba(26, 23, 20, 0.45);
  --maxw:         1180px;
  --gutter:       clamp(20px, 5vw, 56px);
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 96px; overflow-x: clip; }

body {
  font-family: var(--font-body);
  color: var(--ink-soft);
  background: var(--canvas);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  max-width: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

p { text-wrap: pretty; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--charcoal);
  text-wrap: balance;
  line-height: 1.08;
}

::selection { background: var(--coral-200); color: var(--charcoal); }

:focus-visible { outline: 2.5px solid var(--coral-text); outline-offset: 3px; border-radius: 4px; }
.dark-sec :focus-visible, .site-footer :focus-visible, .hours-card :focus-visible { outline-color: var(--coral-200); }
.cta-band :focus-visible { outline-color: var(--charcoal); }

/* Skip link + screen-reader utility */
.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; }
.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 200;
  background: var(--charcoal); color: var(--paper);
  font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem;
  padding: 0.7em 1.1em; border-radius: 10px; transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 128px); }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }

.eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--coral-text);
  display: inline-flex;
  align-items: center;
  gap: 0.65em;
}
.eyebrow .num { color: var(--charcoal); opacity: 0.55; }
.eyebrow--light { color: var(--coral-200); }
.eyebrow--light .num { color: var(--paper); }

.h-display {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-size: clamp(2.6rem, min(6.2vw, 8vh), 4.6rem);
}
.h2 {
  font-weight: 700;
  letter-spacing: -0.015em;
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
}
.h3 { font-weight: 700; font-size: clamp(1.2rem, 2vw, 1.45rem); letter-spacing: -0.01em; }

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  color: var(--ink-soft);
  line-height: 1.6;
}
.muted { color: var(--stone); }
.coral-t { color: var(--coral-text); }

.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head .h2 { margin-top: 16px; }
.section-head p { margin-top: 16px; color: var(--stone); font-size: 1.1rem; }
.section-head--center { margin-inline: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.86em 1.5em;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--coral); color: var(--charcoal); box-shadow: 0 10px 26px -12px rgba(242, 140, 92, 0.9); }
.btn--primary:hover { background: #ef7f48; box-shadow: 0 16px 34px -12px rgba(242, 140, 92, 1); }

.btn--dark { background: var(--charcoal); color: var(--paper); }
.btn--dark:hover { background: #2a2621; }

.btn--outline { background: transparent; color: var(--charcoal); border-color: rgba(26,23,20,0.28); }
.btn--outline:hover { border-color: var(--charcoal); background: rgba(26,23,20,0.04); }

.btn--ghost-light { background: transparent; color: var(--paper); border-color: rgba(244,239,231,0.32); }
.btn--ghost-light:hover { border-color: var(--paper); background: rgba(244,239,231,0.08); }

.btn--lg { padding: 1.02em 1.8em; font-size: 1.02rem; }

.textlink {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--coral-text);
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
}
.textlink svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.textlink:hover svg { transform: translateX(4px); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(241, 236, 227, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: rgba(26,23,20,0.08);
  box-shadow: 0 8px 30px -22px rgba(26,23,20,0.5);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 104px;
  transition: height .3s var(--ease);
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 78px; width: auto; transition: height .3s var(--ease); }
.site-header.scrolled .nav { height: 80px; }
.site-header.scrolled .brand img { height: 60px; }
/* Big screens: logo grows so the "Photo · Print · Frame" line stays legible */
@media (min-width: 1440px) {
  :root { --maxw: 1280px; }
  .nav { height: 120px; }
  .brand img { height: 94px; }
  .site-header.scrolled .nav { height: 88px; }
  .site-header.scrolled .brand img { height: 68px; }
  html { scroll-padding-top: 108px; }
}
@media (min-width: 1920px) {
  :root { --maxw: 1400px; }
  .nav { height: 132px; }
  .brand img { height: 106px; }
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding: 0.5em 0.85em;
  border-radius: 8px;
  position: relative;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-links a:hover { color: var(--charcoal); background: rgba(26,23,20,0.045); }
.nav-links a.active { color: var(--coral-text); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0.85em; right: 0.85em; bottom: 0.15em;
  height: 2px; background: var(--coral); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-phone {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.nav-phone svg { width: 16px; height: 16px; color: var(--coral-text); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: var(--border-strong);
  border-radius: 10px;
  background: var(--paper-2);
  align-items: center;
  justify-content: center;
}
.nav-toggle span { position: relative; width: 20px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: .3s var(--ease); }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: .3s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(48px, 7vw, 88px); padding-bottom: clamp(56px, 8vw, 108px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(1100px 620px at 82% -8%, rgba(242,140,92,0.16), transparent 60%),
    radial-gradient(760px 520px at 5% 108%, rgba(35,52,88,0.07), transparent 55%),
    var(--canvas);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6em;
  background: var(--paper-2);
  border: var(--border);
  border-radius: 999px;
  padding: 0.5em 1em 0.5em 0.7em;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 4px rgba(31,138,91,0.16); }
.hero h1 { margin: 22px 0 0; }
.hero h1 .accent { color: var(--coral-text); }
.hero .lead { margin-top: 22px; max-width: 40ch; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-tagline {
  margin-top: 34px;
  display: flex; align-items: center; gap: 0.9em;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone);
}
.hero-tagline .sep { color: var(--coral-text); font-size: 1.2em; line-height: 0; }

/* Hero visual — framed collage */
.hero-visual { position: relative; }
.frame-stack { position: relative; aspect-ratio: 5 / 5.4; }
.pic-frame {
  position: absolute;
  background: var(--paper-2);
  border-radius: 6px;
  padding: 14px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(26,23,20,0.08);
}
.pic-frame .mat { border-radius: 3px; height: 100%; overflow: hidden; position: relative; }
.pic-frame .art { position: absolute; inset: 0; display: grid; place-items: center; }
.pic-frame .art svg { width: 46%; height: 46%; opacity: 0.9; }
.frame-a { inset: 0 34% 30% 0; z-index: 3; transform: rotate(-3deg); }
.frame-a .mat { background: linear-gradient(150deg, var(--coral-200), var(--coral)); }
.frame-b { inset: 22% 0 8% 40%; z-index: 2; transform: rotate(3.5deg); }
.frame-b .mat { background: linear-gradient(150deg, var(--indigo), #33507f); }
.frame-c { inset: 54% 42% 0 6%; z-index: 4; transform: rotate(2deg); padding: 11px; }
.frame-c .mat { background: linear-gradient(150deg, var(--charcoal), #34302a); }
.pic-frame .art svg { color: rgba(255,255,255,0.92); }
.frame-tag {
  position: absolute; z-index: 5;
  background: var(--charcoal); color: var(--paper);
  font-family: var(--font-heading); font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.5em 0.9em; border-radius: 8px;
  box-shadow: var(--shadow);
  right: -2%; bottom: 6%;
  display: inline-flex; align-items: center; gap: 0.5em;
}
.frame-tag .k { color: var(--coral-200); }

/* Trust strip */
.trust {
  border-top: var(--border);
  border-bottom: var(--border);
  background: var(--paper);
}
.trust-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 20px 40px; padding-block: 26px;
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item svg { width: 26px; height: 26px; color: var(--coral-text); flex-shrink: 0; }
.trust-item b { font-family: var(--font-heading); font-weight: 700; color: var(--charcoal); display: block; font-size: 0.98rem; }
.trust-item span { font-size: 0.85rem; color: var(--stone); }

/* ---------- Service cards ---------- */
.card-grid { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }

.svc-card {
  background: var(--paper-2);
  border: var(--border);
  border-radius: var(--radius);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.svc-card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--coral), var(--coral-200));
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(26,23,20,0.14); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 58px; height: 58px; border-radius: 14px;
  background: linear-gradient(150deg, var(--paper), #efe6d8);
  border: 1px solid rgba(26,23,20,0.08);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.svc-icon svg { width: 30px; height: 30px; color: var(--charcoal); }
.svc-card:hover .svc-icon svg { color: var(--coral-text); }
.svc-card .h3 { margin-bottom: 10px; }
.svc-card p { color: var(--stone); font-size: 0.98rem; margin-bottom: 16px; }
.svc-card .svc-meta { font-family: var(--font-heading); font-weight: 600; font-size: 0.82rem; color: var(--coral-text); display: inline-flex; align-items: center; gap: 0.5em; }
.svc-num {
  position: absolute; top: 24px; right: 26px;
  font-family: var(--font-heading); font-weight: 800; font-size: 1rem;
  color: var(--charcoal); opacity: 0.14;
}

/* ---------- Split feature ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center;
}
.split--rev .split-media { order: 2; }
.feature-list { display: grid; gap: 18px; margin-top: 28px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .fi {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 9px;
  background: rgba(242,140,92,0.14); color: var(--coral-text);
  display: grid; place-items: center; margin-top: 2px;
}
.feature-list .fi svg { width: 17px; height: 17px; }
.feature-list b { font-family: var(--font-heading); font-weight: 600; color: var(--charcoal); display: block; font-size: 1.02rem; }
.feature-list span { color: var(--stone); font-size: 0.96rem; }

/* framed media block */
.framed {
  background: var(--paper-2);
  padding: clamp(16px, 2.4vw, 26px);
  border-radius: 8px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(26,23,20,0.08);
  position: relative;
}
/* real photo inside the frame (sits in the mat like a framed print) */
.framed-photo {
  position: relative; display: block;
  border-radius: 4px; overflow: hidden;
  aspect-ratio: 4 / 3.4;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.10), 0 1px 2px rgba(0,0,0,0.06);
}
.framed-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.framed-photo .plate-note {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); z-index: 2;
  background: rgba(255,255,255,0.94); border-radius: 6px; padding: 0.4em 0.9em;
  font-family: var(--font-heading); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--stone); white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.14);
}
.framed .mat-inner {
  border-radius: 4px; aspect-ratio: 4 / 3.4; overflow: hidden; position: relative;
  display: grid; place-items: center;
  background:
    linear-gradient(150deg, rgba(255,255,255,0.4), rgba(255,255,255,0)),
    linear-gradient(150deg, var(--indigo), #2c4269);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.10), inset 0 2px 10px rgba(0,0,0,0.18);
}
.framed .mat-inner.coral { background: linear-gradient(150deg, var(--coral-200), var(--coral-700)); }
.framed .mat-inner.dark { background: linear-gradient(150deg, #2b2722, var(--charcoal)); }
.framed .mat-inner svg { width: 30%; height: 30%; color: rgba(255,255,255,0.92); position: relative; z-index: 1; }
/* corner ornaments — reads as an intentional frame, not an empty slot */
.framed .mat-inner::before, .framed .mat-inner::after {
  content: ""; position: absolute; width: 26px; height: 26px; z-index: 1;
  border: 2px solid rgba(255,255,255,0.55);
}
.framed .mat-inner::before { top: 14px; left: 14px; border-right: 0; border-bottom: 0; border-top-left-radius: 3px; }
.framed .mat-inner::after { bottom: 44px; right: 14px; border-left: 0; border-top: 0; border-bottom-right-radius: 3px; }
.framed .plate-note {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); z-index: 2;
  background: rgba(255,255,255,0.94); border-radius: 6px; padding: 0.4em 0.9em;
  font-family: var(--font-heading); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--stone); white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

/* ---------- Cultural / craft dark section ---------- */
.dark-sec { background: var(--charcoal); color: var(--paper); position: relative; overflow: hidden; }
.dark-sec::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(700px 460px at 88% 10%, rgba(242,140,92,0.14), transparent 60%),
    radial-gradient(680px 500px at 4% 96%, rgba(35,52,88,0.5), transparent 60%);
}
.dark-sec .wrap { position: relative; z-index: 1; }
.dark-sec h2, .dark-sec h3 { color: var(--paper); }
.dark-sec .muted { color: rgba(244,239,231,0.66); }
.craft-list li { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-top: 1px solid rgba(244,239,231,0.12); }
.craft-list li:first-child { border-top: 0; }
.craft-list .ci { flex-shrink: 0; color: var(--coral-200); margin-top: 2px; }
.craft-list .ci svg { width: 22px; height: 22px; }
.craft-list b { font-family: var(--font-heading); font-weight: 600; color: var(--paper); display: block; }
.craft-list span { color: rgba(244,239,231,0.66); font-size: 0.96rem; }
.logo-plate {
  background: var(--paper); border-radius: var(--radius);
  padding: 36px; display: grid; place-items: center; box-shadow: var(--shadow-lg);
}
.logo-plate img { max-width: 260px; }

/* ---------- Steps / process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding-top: 20px; }
.step .n {
  font-family: var(--font-heading); font-weight: 800; font-size: 2.4rem;
  color: var(--coral); line-height: 1; letter-spacing: -0.03em;
}
.step h3 { font-size: 1.1rem; margin: 12px 0 8px; }
.step p { color: var(--stone); font-size: 0.94rem; }
.step::before { content: ""; position: absolute; top: 0; left: 0; width: 46px; height: 3px; background: var(--coral); border-radius: 2px; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: left; }
.stat .num { font-family: var(--font-heading); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3rem); color: var(--charcoal); letter-spacing: -0.02em; line-height: 1; }
.stat .num .u { color: var(--coral-text); }
.stat .lbl { margin-top: 10px; color: var(--stone); font-size: 0.94rem; }
.dark-sec .stat .num { color: var(--paper); }
.dark-sec .stat .num .u { color: var(--coral-200); }
.dark-sec .stat .lbl { color: rgba(244,239,231,0.6); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--coral);
  border-radius: var(--radius-lg);
  padding: clamp(38px, 6vw, 72px);
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 400px at 80% 120%, rgba(26,23,20,0.22), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--charcoal); }
.cta-band p { color: rgba(26,23,20,0.82); max-width: 52ch; margin: 16px auto 0; font-size: 1.12rem; }
.cta-band .hero-actions { justify-content: center; margin-top: 32px; }
.cta-band .btn--dark { background: var(--charcoal); }
.cta-band .btn--outline { color: var(--charcoal); border-color: rgba(26,23,20,0.45); }
.cta-band .btn--outline:hover { border-color: var(--charcoal); background: rgba(26,23,20,0.08); }

/* ---------- Testimonial ---------- */
.quote-card {
  background: var(--paper-2); border: var(--border); border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px); position: relative; box-shadow: var(--shadow-sm);
}
.quote-card .mark { font-family: var(--font-heading); font-weight: 800; font-size: 5rem; color: var(--coral-200); line-height: 0.7; height: 0.5em; display: block; }
.quote-card blockquote { font-family: var(--font-heading); font-weight: 500; font-size: clamp(1.25rem, 2.6vw, 1.75rem); line-height: 1.4; letter-spacing: -0.01em; color: var(--charcoal); margin: 10px 0 26px; }
.quote-card blockquote em { color: var(--coral-text); font-style: normal; }
.quote-by { display: flex; align-items: center; gap: 14px; }
.quote-by .av { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(150deg, var(--coral-200), var(--coral-700)); display: grid; place-items: center; color: var(--charcoal); font-family: var(--font-heading); font-weight: 700; }
.quote-by b { font-family: var(--font-heading); font-weight: 600; color: var(--charcoal); display: block; }
.quote-by span { color: var(--stone); font-size: 0.9rem; }

/* ---------- Page hero (interior) ---------- */
.page-hero { padding-top: clamp(48px, 6vw, 80px); padding-bottom: clamp(36px, 5vw, 60px); position: relative; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(900px 480px at 88% -20%, rgba(242,140,92,0.13), transparent 60%), var(--canvas);
}
.page-hero .lead { margin-top: 18px; max-width: 58ch; }
.breadcrumb { font-family: var(--font-heading); font-size: 0.85rem; color: var(--stone); margin-bottom: 22px; display: flex; gap: 0.6em; align-items: center; }
.breadcrumb a:hover { color: var(--coral-text); }
.breadcrumb .sep { opacity: 0.5; }

/* ---------- Services detail ---------- */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: center; padding-block: clamp(40px, 5vw, 64px); border-top: var(--border); }
.svc-detail:first-of-type { border-top: 0; }
.svc-detail--rev .svc-detail-media { order: 2; }
.trade-card { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
@media (max-width: 720px) { .trade-card { grid-template-columns: 1fr; gap: 22px; } .trade-card .btn { width: 100%; } }
.svc-detail .tag { white-space: nowrap; display: inline-flex; align-items: center; gap: 0.5em; font-family: var(--font-heading); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--coral-text); }
.svc-detail h2 { margin: 14px 0 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chip { background: var(--paper); border: var(--border); border-radius: 999px; padding: 0.5em 1em; font-size: 0.88rem; font-weight: 500; color: var(--ink-soft); font-family: var(--font-heading); }
.chip.price { color: var(--coral-text); }

/* ---------- Pricing ---------- */
.price-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.price-nav a { font-family: var(--font-heading); font-weight: 600; font-size: 0.88rem; padding: 0.55em 1.05em; border-radius: 999px; border: var(--border); background: var(--paper-2); color: var(--ink-soft); transition: .2s var(--ease); }
.price-nav a:hover { border-color: var(--coral); color: var(--coral-text); background: #fff; }

.price-block { margin-bottom: clamp(40px, 5vw, 64px); scroll-margin-top: 100px; }
.price-block > header { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.price-block > header .pic { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(150deg, var(--paper), #efe6d8); border: var(--border); display: grid; place-items: center; flex-shrink: 0; }
.price-block > header .pic svg { width: 26px; height: 26px; color: var(--coral-text); }
.price-block > header h3 { font-size: 1.4rem; }
.price-block > header p { color: var(--stone); font-size: 0.92rem; }

.price-table { background: var(--paper-2); border: var(--border); border-radius: var(--radius); overflow: hidden; }
.price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding: 15px 24px; border-top: 1px solid rgba(26,23,20,0.06); }
.price-row:first-child { border-top: 0; }
.price-row:nth-child(odd) { background: rgba(255,255,255,0.35); }
.price-row .name { font-weight: 500; color: var(--ink-soft); }
.price-row .name small { display: block; color: var(--ink-muted); font-size: 0.82rem; font-weight: 400; }
.price-row .amt { font-family: var(--font-heading); font-weight: 700; color: var(--charcoal); white-space: nowrap; }
.price-row .amt .from { font-family: var(--font-body); font-weight: 400; font-size: 0.78rem; color: var(--stone); margin-right: 0.3em; }
.price-note { margin-top: 14px; font-size: 0.86rem; color: var(--ink-muted); display: flex; gap: 0.6em; align-items: flex-start; }
.price-note svg { width: 16px; height: 16px; color: var(--coral-text); flex-shrink: 0; margin-top: 3px; }

/* ---------- About ---------- */
.about-hero-media { position: relative; max-width: 440px; margin-inline: auto; width: 100%; }
.split--about { grid-template-columns: 1.35fr 1fr; }
.framed-photo--portrait { aspect-ratio: 4 / 5; }
.framed-photo--portrait img { object-position: center top; }

.value-card { background: var(--paper-2); border: var(--border); border-radius: var(--radius); padding: 28px; }
.value-card .vi { width: 46px; height: 46px; border-radius: 12px; background: rgba(242,140,92,0.13); color: var(--coral-text); display: grid; place-items: center; margin-bottom: 18px; }
.value-card .vi svg { width: 24px; height: 24px; }
.value-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.value-card p { color: var(--stone); font-size: 0.95rem; }
/* dark variant (on dark sections) */
.value-card--dark { background: rgba(255,255,255,0.045); border-color: rgba(244,239,231,0.14); }
.value-card--dark .vi { background: rgba(242,140,92,0.20); color: var(--coral-200); }
.value-card--dark p { color: rgba(244,239,231,0.68); }

/* About: at-a-glance facts card (light, so it does not compete with the dark values block) */
.facts-card { background: var(--paper-2); color: var(--ink-soft); border: var(--border); border-radius: var(--radius); padding: clamp(26px, 3vw, 38px); align-self: start; box-shadow: var(--shadow-sm); }
.facts-title { font-family: var(--font-heading); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--coral-text); margin-bottom: 6px; }
.facts-list { display: grid; }
.facts-list li { padding: 15px 0; border-top: 1px solid rgba(26,23,20,0.09); }
.facts-list li:first-child { border-top: 0; }
.facts-list .k { font-family: var(--font-heading); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); display: block; margin-bottom: 3px; }
.facts-list b { font-family: var(--font-heading); font-weight: 600; color: var(--charcoal); display: block; font-size: 1rem; }
.facts-list span { color: var(--stone); font-size: 0.92rem; }

/* About: work gallery */
.work-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.work-grid .framed { padding: 12px; display: block; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.work-grid .framed:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
@media (max-width: 900px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .work-grid { grid-template-columns: 1fr; } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.info-card { background: var(--paper-2); border: var(--border); border-radius: var(--radius); padding: 28px; }
.info-row { display: flex; gap: 16px; padding: 18px 0; border-top: var(--border); }
.info-row:first-of-type { border-top: 0; padding-top: 6px; }
.info-row .ii { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: rgba(242,140,92,0.13); color: var(--coral-text); display: grid; place-items: center; }
.info-row .ii svg { width: 22px; height: 22px; }
.info-row .lbl { font-family: var(--font-heading); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); }
.info-row .val { font-size: 1.02rem; color: var(--charcoal); font-weight: 500; margin-top: 3px; }
.info-row .val a:hover { color: var(--coral-text); }
.info-row .val small { display: block; color: var(--stone); font-weight: 400; font-size: 0.88rem; }

.hours-card { margin-top: 22px; background: var(--charcoal); color: var(--paper); border-radius: var(--radius); padding: 28px; }
.hours-card h2 { color: var(--paper); font-size: 1.1rem; display: flex; align-items: center; gap: 0.6em; font-family: var(--font-heading); }
.hours-card h2 svg { width: 20px; height: 20px; color: var(--coral-200); }
.hours-status { display: inline-flex; align-items: center; gap: 0.55em; margin-top: 14px; font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; color: var(--paper); }
.hours-status .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--coral-200); box-shadow: 0 0 0 4px rgba(255,255,255,0.08); flex-shrink: 0; }
.hours-card ul { margin-top: 16px; }
.hours-card li { display: flex; justify-content: space-between; padding: 9px 0; border-top: 1px solid rgba(244,239,231,0.12); font-size: 0.96rem; }
.hours-card li:first-child { border-top: 0; }
.hours-card li span:first-child { color: rgba(244,239,231,0.72); }
.hours-card li span:last-child { font-family: var(--font-heading); font-weight: 600; }
.hours-card li.closed span:last-child { color: var(--coral-200); }

.form-card { background: var(--paper-2); border: var(--border); border-radius: var(--radius); padding: clamp(26px, 3.5vw, 40px); }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-heading); font-weight: 600; font-size: 0.86rem; color: var(--charcoal); margin-bottom: 8px; }
.field .req { color: var(--coral-text); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink-soft);
  padding: 0.8em 1em; border: var(--border-strong); border-radius: var(--radius-sm);
  background: #fff; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 3px rgba(242,140,92,0.18); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 0.84rem; color: var(--ink-muted); margin-top: 4px; }
.form-success { display: none; background: rgba(31,138,91,0.1); border: 1px solid rgba(31,138,91,0.3); color: var(--success); border-radius: var(--radius-sm); padding: 14px 18px; font-weight: 600; font-family: var(--font-heading); font-size: 0.94rem; margin-bottom: 20px; }
.form-success.show { display: block; }

.map-embed { border-radius: var(--radius); overflow: hidden; border: var(--border); margin-top: 22px; height: 300px; filter: saturate(0.9); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Reach us panel (replaces contact form) ---------- */
.reach-card { background: var(--paper-2); border: var(--border); border-radius: var(--radius); padding: clamp(26px, 3.5vw, 40px); }
.reach-card > h2 { font-size: 1.5rem; margin-bottom: 8px; }
.reach-card > p.muted { margin-bottom: 24px; font-size: 0.98rem; }
.reach-list { display: grid; gap: 13px; }
.reach-btn { display: flex; align-items: center; gap: 15px; padding: 15px 18px; border: var(--border-strong); border-radius: var(--radius-sm); background: #fff; transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease); }
.reach-btn:hover { border-color: var(--coral); box-shadow: 0 12px 26px -16px rgba(26,23,20,0.5); transform: translateY(-2px); }
.reach-btn .ri { width: 46px; height: 46px; border-radius: 12px; background: rgba(242,140,92,0.13); color: var(--coral-text); display: grid; place-items: center; flex-shrink: 0; }
.reach-btn .ri svg { width: 22px; height: 22px; }
.reach-btn .rt { flex: 1; min-width: 0; }
.reach-btn .rt b { font-family: var(--font-heading); font-weight: 600; color: var(--charcoal); display: block; }
.reach-btn .rt span { font-size: 0.9rem; color: var(--stone); }
.reach-btn .ra { color: var(--coral-text); flex-shrink: 0; transition: transform .2s var(--ease); }
.reach-btn:hover .ra { transform: translateX(3px); }
.reach-btn .ra svg { width: 18px; height: 18px; display: block; }
.reach-btn--primary { background: var(--coral); border-color: var(--coral); }
.reach-btn--primary .ri { background: rgba(255,255,255,0.35); color: var(--charcoal); }
.reach-btn--primary .rt b { color: var(--charcoal); }
.reach-btn--primary .rt span { color: rgba(26,23,20,0.78); }
.reach-btn--primary .ra { color: var(--charcoal); }
.reach-btn--primary:hover { border-color: var(--coral); background: #ef7f48; }
.reach-note { margin-top: 22px; font-size: 0.9rem; color: var(--stone); }
.reach-note a { font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin-inline: auto; }
.faq-item { border-bottom: var(--border); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--font-heading); font-weight: 600; font-size: 1.08rem; color: var(--charcoal); }
.faq-q .ic { flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px; border: var(--border-strong); display: grid; place-items: center; transition: .3s var(--ease); position: relative; }
.faq-q .ic::before, .faq-q .ic::after { content: ""; position: absolute; background: var(--charcoal); border-radius: 2px; transition: .3s var(--ease); }
.faq-q .ic::before { width: 12px; height: 2px; }
.faq-q .ic::after { width: 2px; height: 12px; }
.faq-q[aria-expanded="true"] .ic { background: var(--coral); border-color: var(--coral); }
.faq-q[aria-expanded="true"] .ic::before, .faq-q[aria-expanded="true"] .ic::after { background: #fff; }
.faq-q[aria-expanded="true"] .ic::after { transform: rotate(90deg); opacity: 0; }
/* Collapsed only when JS can expand it again, so no-JS visitors still read every answer */
.faq-a { overflow: hidden; transition: max-height .35s var(--ease); }
.js .faq-a { max-height: 0; }
.faq-a p { padding: 0 0 24px; color: var(--stone); }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: var(--paper); padding-top: clamp(56px, 7vw, 88px); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 52px; border-bottom: 1px solid rgba(244,239,231,0.12); }
.footer-brand .plate { background: var(--paper); border-radius: 16px; padding: 20px 24px; display: inline-block; max-width: 100%; }
.footer-brand .plate img { width: 216px; max-width: 100%; height: auto; display: block; }
.footer-brand p { color: rgba(244,239,231,0.62); font-size: 0.94rem; margin-top: 18px; max-width: 34ch; }
.footer-tag { margin-top: 18px; display: flex; align-items: center; gap: 0.7em; font-family: var(--font-heading); font-weight: 600; font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(244,239,231,0.7); }
.footer-tag .sep { color: var(--coral-200); }
.footer-col h2, .footer-col h3 { font-family: var(--font-heading); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--coral-200); margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { color: rgba(244,239,231,0.72); font-size: 0.96rem; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--paper); }
.footer-contact li { display: flex; gap: 11px; color: rgba(244,239,231,0.72); font-size: 0.96rem; margin-bottom: 13px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--coral-200); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; padding-block: 26px; color: rgba(244,239,231,0.5); font-size: 0.86rem; }
.footer-bottom a:hover { color: var(--paper); }
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(244,239,231,0.18); display: grid; place-items: center; color: rgba(244,239,231,0.8); transition: .2s var(--ease); }
.socials a:hover { background: var(--coral); border-color: var(--coral); color: var(--charcoal); }
.socials svg { width: 18px; height: 18px; }

/* ---------- Reveal animation (gated behind .js so no-JS users see everything) ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin-inline: auto; width: 100%; }
  .split, .svc-detail, .contact-grid { grid-template-columns: 1fr; }
  /* On mobile, always show the text/heading before its image in two-column sections */
  .svc-detail-copy, .split-copy { order: -1; }
  .card-grid, .card-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-top > .footer-col:last-child { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .nav { height: 88px; }
  .brand img { height: 64px; }
  .site-header.scrolled .nav { height: 72px; }
  .site-header.scrolled .brand img { height: 52px; }
  .site-header.open .nav-links {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--paper); border-bottom: var(--border-strong);
    padding: 14px var(--gutter) 22px; box-shadow: var(--shadow);
  }
  .site-header.open .nav-links a { padding: 0.85em 0.6em; font-size: 1.05rem; }
  .site-header.open .nav-links a.active::after { display: none; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .nav, .site-header.scrolled .nav { height: 76px; }
  .brand img, .site-header.scrolled .brand img { height: 54px; }
  .card-grid, .card-grid--2, .field-row { grid-template-columns: 1fr; }
  .h-display { font-size: clamp(2.1rem, 8.5vw, 2.7rem); }
  .hero h1 { overflow-wrap: break-word; }
  .hero-tagline { flex-wrap: wrap; gap: 0.5em; font-size: 0.74rem; }
  .trust-inner { justify-content: flex-start; gap: 18px 24px; }
  .trust-item { flex: 1 1 45%; min-width: 0; }
  /* Stack the primary CTAs full-width where they read as a block */
  .hero-actions .btn, .cta-band .btn, .form-card .btn, #enquiry-form .btn { width: 100%; }
  .hero-actions, .cta-band .hero-actions { flex-direction: column; align-items: stretch; }
  .price-row { flex-direction: column; gap: 4px; }
}

@media (max-width: 400px) {
  :root { --gutter: 18px; }
  .nav-cta .btn--primary { display: none; }
}

/* Keep the hero "frame" collage overhang inside the viewport on smaller screens */
@media (max-width: 720px) {
  .frame-tag { right: 3%; bottom: 3%; font-size: 0.64rem; padding: 0.45em 0.75em; }
  .frame-b { inset: 22% 2% 8% 40%; }
}

/* ---------- Sticky mobile action bar (walk-in conversion) ---------- */
.mobile-bar { display: none; }
@media (max-width: 720px) {
  .mobile-bar {
    display: grid; grid-template-columns: repeat(3, 1fr);
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    background: var(--charcoal);
    border-top: 1px solid rgba(244,239,231,0.14);
    padding-bottom: env(safe-area-inset-bottom, 0);
    box-shadow: 0 -8px 30px -18px rgba(0,0,0,0.65);
  }
  .mobile-bar a {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
    padding: 9px 6px; min-height: 56px; color: var(--paper);
    font-family: var(--font-heading); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.01em;
  }
  .mobile-bar a + a { border-left: 1px solid rgba(244,239,231,0.14); }
  .mobile-bar a svg { width: 20px; height: 20px; color: var(--coral-200); }
  .mobile-bar a:active { background: rgba(255,255,255,0.07); }
  body { padding-bottom: 62px; }
  /* lift the hamburger dropdown clear of the bar */
  .site-header.open .nav-links { max-height: calc(100dvh - 154px); overflow-y: auto; }
}

/* Short landscape screens (phones on their side): keep the sticky header slim */
@media (max-height: 500px) and (orientation: landscape) {
  .nav, .site-header.scrolled .nav { height: 64px; }
  .brand img, .site-header.scrolled .brand img { height: 46px; }
  html { scroll-padding-top: 72px; }
  .h-display { font-size: clamp(1.9rem, 5vw, 2.6rem) !important; }
}

/* ---------- Micro-polish ---------- */
.btn--outline:hover, .btn--dark:hover { box-shadow: 0 12px 26px -16px rgba(26,23,20,0.55); }
