:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --cream: #fffaf1;
  --beige: #eadcc4;
  --beige-dark: #a98858;
  --gold: #c9a24d;
  --ink: #070707;
  --muted: #6f6252;
  --line: #f0e5d3;
  --graphite: #15120d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.10);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.page-loader {
  --loader-progress: 0;
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  min-height: 100vh;
  background: #ffffff;
  color: var(--ink);
  transition: opacity 420ms ease, visibility 420ms ease;
}

.page-loader.done {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  display: grid;
  place-items: center;
  gap: 12px;
  text-align: center;
}

.loader-ring {
  position: relative;
  display: grid;
  place-items: center;
  width: 164px;
  height: 164px;
  border-radius: 50%;
  background: conic-gradient(var(--gold) calc(var(--loader-progress) * 1%), var(--line) 0);
  box-shadow: 0 24px 60px rgba(7, 7, 7, 0.08);
}

.loader-ring::before {
  content: "";
  position: absolute;
  width: 154px;
  height: 154px;
  border-radius: 50%;
  background: #ffffff;
}

.loader-logo {
  position: relative;
  z-index: 1;
  width: 118px;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 10px 26px rgba(7, 7, 7, 0.14);
}

.loader-content strong {
  font-size: 22px;
  letter-spacing: 0;
}

.loader-content p,
.loader-since {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.loader-since {
  position: absolute;
  bottom: 72px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  touch-action: manipulation;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

button,
.button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 56px;
  padding: 0 5vw;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(240, 229, 211, 0.9);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 92px;
  height: 32px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  gap: 28px;
  color: var(--muted);
  font-size: 13px;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--ink);
}

.nav-call {
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.text-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  text-align: left;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 52px;
  align-items: center;
  min-height: calc(100vh - 56px);
  padding: 72px 5vw 56px;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--beige-dark);
  font-size: 13px;
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  letter-spacing: 0;
}

.hero-text,
.section-heading p,
.pickup-band p,
.contact-band p,
.service-card p,
.hero-card span,
dd {
  color: var(--muted);
}

.hero-text {
  max-width: 520px;
  font-size: 21px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  text-align: center;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  transform: none;
}

.primary {
  background: var(--ink);
  color: #fff;
}

.primary:hover {
  background: var(--graphite);
}

.secondary {
  background: var(--cream);
  border-color: var(--beige);
  color: var(--ink);
}

.dark {
  background: var(--ink);
  color: #fff;
}

.hero-actions,
.contact-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1.14 / 1;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 4px;
  max-width: min(280px, calc(100% - 44px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 5vw;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
}

.trust-strip div {
  display: grid;
  gap: 5px;
  padding: 26px;
  background: var(--surface);
}

.trust-strip strong {
  font-size: 24px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 110px 5vw;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.location-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(240, 229, 211, 0.95);
  border-radius: 24px;
  background: var(--surface);
}

.founder-section {
  padding-bottom: 80px;
}

.founder-layout {
  display: grid;
  gap: 20px;
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.48fr) 1fr;
  gap: 36px;
  align-items: center;
  min-height: 420px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
}

.founder-card img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: 22px;
  object-fit: cover;
  object-position: center;
}

.founder-card h3 {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.08;
}

.founder-card p:last-child,
.legacy-photo figcaption {
  margin-bottom: 0;
  color: var(--muted);
}

.technician-card img {
  object-position: center;
}

.technician-card {
  grid-template-columns: minmax(180px, 0.24fr) 1fr;
  min-height: 230px;
  padding: 18px;
}

.technician-card img {
  min-height: 190px;
  max-height: 230px;
}

.legacy-photo {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) 1fr;
  gap: 24px;
  align-items: center;
  margin: 18px 0 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--cream);
}

.legacy-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  object-fit: cover;
  object-position: center;
}

.legacy-photo figcaption {
  max-width: 520px;
  font-size: 21px;
  font-weight: 700;
}

.closing-journey {
  padding-top: 0;
  padding-bottom: 72px;
}

.gallery-section {
  padding-top: 80px;
}

.shop-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

.shop-gallery img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border-radius: 22px;
  object-fit: cover;
  background: var(--cream);
  box-shadow: 0 14px 34px rgba(7, 7, 7, 0.08);
}

.gallery-feature {
  position: relative;
  grid-column: span 2;
  grid-row: span 2;
  min-height: 456px;
  margin: 0;
}

.gallery-feature img {
  min-height: 456px;
}

.gallery-feature figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(7, 7, 7, 0.12);
}

.icon {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--beige-dark);
  font-size: 14px;
  font-weight: 700;
}

.pickup-band,
.contact-band {
  display: grid;
  grid-template-columns: 1fr 0.85fr auto;
  gap: 32px;
  align-items: center;
  margin: 0 5vw;
  padding: 44px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--ink), var(--graphite));
  color: #fff;
}

.pickup-band .eyebrow,
.contact-band .eyebrow {
  color: var(--beige);
}

.pickup-band p,
.contact-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.location-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 18px;
}

.location-card {
  min-height: 420px;
}

dl {
  display: grid;
  gap: 20px;
  margin: 28px 0;
}

dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

dd {
  margin: 4px 0 0;
  font-size: 17px;
}

dd a {
  color: var(--ink);
  font-weight: 700;
}

iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 24px;
  background: var(--surface);
}

.contact-band {
  grid-template-columns: 1fr auto;
  margin-bottom: 96px;
}

.chat-toggle {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  min-width: 132px;
  height: 54px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font: inherit;
  font-weight: 700;
  box-shadow: 0 16px 40px rgba(7, 7, 7, 0.22);
  cursor: pointer;
}

.chat-teaser {
  position: fixed;
  right: 22px;
  bottom: 88px;
  z-index: 31;
  max-width: 260px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 20px 20px 4px 20px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(7, 7, 7, 0.14);
  font-weight: 700;
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.chat-teaser.hidden {
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
}

.mobile-action-bar {
  display: none;
}

.chat-panel {
  position: fixed;
  right: 22px;
  bottom: 92px;
  z-index: 30;
  width: min(460px, calc(100vw - 44px));
  max-height: min(760px, calc(100vh - 122px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}

.chat-header div {
  display: grid;
  gap: 2px;
}

.chat-header span {
  color: var(--muted);
  font-size: 12px;
}

.chat-close {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: var(--bg);
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.chat-form {
  display: grid;
  gap: 16px;
  max-height: calc(100vh - 190px);
  overflow-y: auto;
  padding: 18px;
}

.assistant-note {
  padding: 14px;
  border-radius: 18px;
  background: var(--cream);
  color: var(--muted);
  font-size: 14px;
}

.assistant-note p {
  margin: 0;
}

.step-counter {
  color: var(--ink);
  font-weight: 800;
}

.step-helper {
  margin-top: 3px !important;
}

.assistant-step {
  display: none;
}

.assistant-step.active {
  display: grid;
  gap: 12px;
  animation: stepIn 180ms ease;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.chat-form legend,
.chat-form label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 8px;
}

.choice-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice-grid button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.choice-grid button.selected {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.chat-form label {
  display: grid;
  gap: 7px;
}

.chat-form input,
.chat-form textarea {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  font: inherit;
}

.chat-form input.invalid {
  border-color: var(--ink);
}

.field-error {
  min-height: 18px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.chat-form textarea {
  resize: vertical;
}

.checkbox-row {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 10px !important;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
}

.enquiry-submit {
  width: 100%;
  min-height: 50px;
}

.step-actions {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 10px;
}

.step-actions .enquiry-submit {
  grid-column: 1 / -1;
}

.review-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--cream);
}

.review-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.submit-status {
  min-height: 21px;
  font-weight: 700;
}

.review-list {
  display: grid;
  gap: 8px;
  margin: 0;
}

.review-list div {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 8px;
}

.review-list dt {
  text-transform: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 5vw;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero,
  .service-grid,
  .location-layout,
  .legacy-photo,
  .pickup-band,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 56px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-feature {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .site-header {
    min-height: 54px;
    padding: 0 max(16px, env(safe-area-inset-left)) 0 max(16px, env(safe-area-inset-right));
  }

  .brand span:last-child {
    display: none;
  }

  .brand-mark {
    width: 82px;
    height: 28px;
  }

  .nav-call {
    font-size: 14px;
  }

  .hero,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    gap: 24px;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  h1 {
    margin-bottom: 14px;
    font-size: 36px;
    line-height: 1.04;
  }

  h2 {
    font-size: 30px;
    line-height: 1.08;
  }

  h3 {
    font-size: 19px;
  }

  .hero-text {
    font-size: 17px;
    line-height: 1.45;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
    margin-top: 22px;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    font-size: 14px;
  }

  .hero-media img {
    aspect-ratio: 4 / 3;
    border-radius: 22px;
    object-position: center;
  }

  .hero-card {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .trust-strip,
  .pickup-band,
  .contact-band {
    margin-left: 16px;
    margin-right: 16px;
  }

  .trust-strip,
  .service-grid,
  .shop-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-feature {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
  }

  .gallery-feature img,
  .shop-gallery img {
    min-height: auto;
    aspect-ratio: 16 / 11;
    border-radius: 18px;
  }

  .gallery-feature figcaption {
    position: static;
    margin-top: 10px;
    border-color: var(--line);
    background: var(--surface);
  }

  .founder-card {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding: 14px;
    border-radius: 22px;
  }

  .founder-card img {
    min-height: auto;
    aspect-ratio: 3 / 4;
    border-radius: 18px;
    object-position: center top;
  }

  .technician-card img {
    aspect-ratio: 4 / 3;
    max-height: none;
    object-position: center;
  }

  .legacy-photo {
    gap: 16px;
    padding: 14px;
    border-radius: 22px;
  }

  .legacy-photo img {
    border-radius: 18px;
  }

  .legacy-photo figcaption {
    font-size: 17px;
  }

  .pickup-band,
  .contact-band {
    gap: 18px;
    padding: 24px;
    border-radius: 22px;
  }

  .section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .founder-section,
  .gallery-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .closing-journey {
    padding-top: 0;
    padding-bottom: 48px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .trust-strip div,
  .service-card,
  .location-card {
    padding: 22px;
  }

  .service-card,
  .location-card {
    min-height: auto;
    border-radius: 20px;
  }

  .icon {
    margin-bottom: 20px;
  }

  .location-card {
    order: 2;
  }

  iframe {
    order: 1;
    min-height: 280px;
    border-radius: 20px;
  }

  dl {
    gap: 16px;
    margin: 22px 0;
  }

  .chat-toggle {
    right: 16px;
    bottom: calc(86px + env(safe-area-inset-bottom));
    min-width: 118px;
    height: 46px;
  }

  .chat-teaser {
    right: 14px;
    bottom: calc(136px + env(safe-area-inset-bottom));
    max-width: min(280px, calc(100vw - 28px));
  }

  .chat-panel {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    width: auto;
    max-height: calc(100dvh - 20px - env(safe-area-inset-bottom));
    border-radius: 22px;
  }

  .chat-form {
    max-height: calc(100dvh - 112px - env(safe-area-inset-bottom));
    padding: 14px;
    overscroll-behavior: contain;
  }

  .choice-grid,
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .choice-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-list div {
    grid-template-columns: 92px 1fr;
  }

  .step-actions {
    grid-template-columns: 1fr;
  }

  body.chat-open {
    overflow: hidden;
  }

  body.chat-open .mobile-action-bar,
  body.chat-open .chat-toggle,
  body.chat-open .chat-teaser {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  .mobile-action-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 29;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(240, 229, 211, 0.95);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(18px);
  }

  .mobile-action-bar a,
  .mobile-action-bar button {
    display: grid;
    place-items: center;
    min-height: 44px;
    border: 0;
    border-radius: 16px;
    background: var(--bg);
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
  }

  .mobile-action-bar a:first-child,
  .mobile-action-bar button:first-child {
    background: var(--ink);
    color: #fff;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px 16px calc(34px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 380px) {
  h1 {
    font-size: 32px;
  }

  .review-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .nav-call {
    font-size: 13px;
  }
}
