@font-face {
  font-family: "Figtree";
  src: url("../fonts/figtree-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("../fonts/outfit-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --radius: 1rem;
  --background: oklch(0.967 0.005 48.7);
  --foreground: oklch(0.248 0.012 25);
  --card: oklch(0.992 0.004 40);
  --card-foreground: oklch(0.248 0.012 25);
  --primary: oklch(0.435 0.145 20.5);
  --primary-foreground: oklch(0.98 0.005 40);
  --brand: oklch(0.322 0.101 17);
  --brand-foreground: oklch(0.98 0.005 40);
  --gold: oklch(0.672 0.0713 62);
  --gold-foreground: oklch(0.992 0.004 40);
  --secondary: oklch(0.949 0.0165 22.4);
  --secondary-foreground: oklch(0.36 0.09 20);
  --muted: oklch(0.952 0.007 40);
  --muted-foreground: oklch(0.515 0.024 22);
  --surface: oklch(0.957 0.0153 22.4);
  --surface-foreground: oklch(0.248 0.012 25);
  --accent: oklch(0.925 0.0215 22.4);
  --accent-foreground: oklch(0.36 0.09 20);
  --destructive: oklch(0.577 0.245 27.325);
  --destructive-foreground: oklch(1 0 0);
  --border: oklch(0.914 0.0165 22.4);
  --input: oklch(0.884 0.0185 22.4);
  --ring: oklch(0.435 0.145 20.5);
  --shadow-card: 0 1px 2px oklch(0.32 0.06 20 / 0.06), 0 20px 44px -26px oklch(0.32 0.08 20 / 0.4);
  --shadow-lift: 0 2px 4px oklch(0.32 0.06 20 / 0.07), 0 28px 56px -28px oklch(0.32 0.08 20 / 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 18px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "Figtree", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.admin-bar .site-header {
  top: 32px;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

p,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
dd,
figure,
fieldset {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: "Outfit", ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid color-mix(in oklab, var(--ring) 48%, transparent);
  outline-offset: 3px;
}

.site-shell {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.site-main {
  flex: 1;
  min-width: 0;
}

.container {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
}

.skip-link {
  position: fixed;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 99999;
  transform: translateY(-160%);
  border-radius: 0.4rem;
  background: var(--foreground);
  color: var(--background);
  padding: 0.65rem 1rem;
  font-weight: 600;
}

.skip-link:focus {
  transform: none;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex: none;
}

.icon--xs {
  width: 0.875rem;
  height: 0.875rem;
}

.icon--sm {
  width: 1rem;
  height: 1rem;
}

.icon--md {
  width: 1.5rem;
  height: 1.5rem;
}

.icon--lg {
  width: 1.5rem;
  height: 1.5rem;
}

.icon--success {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
}

.icon--ink {
  color: var(--foreground);
}

.text-primary {
  color: var(--primary);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--background) 95%, transparent);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.topbar {
  display: none;
  border-bottom: 1px solid var(--border);
  background: var(--foreground);
  color: var(--background);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
}

.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.header__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.wordmark {
  display: flex;
  min-width: 0;
  align-items: center;
}

.wordmark__image {
  width: auto;
  height: 3rem;
  max-width: none;
  flex: none;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 150ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--foreground);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  padding: 0.3rem;
}

.mobile-menu {
  border-top: 1px solid var(--border);
  background: var(--background);
  padding: 1.25rem 1rem;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu__nav > a:not(.button) {
  font-size: 1rem;
  font-weight: 500;
}

/* Reusable controls and headings */
.button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 9999px;
  padding: 0.65rem 1.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.button--header {
  min-height: 0;
  padding: 0.625rem 1.25rem;
}

.button--large {
  min-height: 3rem;
  padding: 0.875rem 1.75rem;
}

.button--primary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.button--primary:hover {
  background: color-mix(in oklab, var(--primary) 90%, transparent);
}

.button--gold {
  background: var(--gold);
  color: var(--gold-foreground);
}

.button--gold:hover,
.button--large.button--primary:hover {
  transform: translateY(-0.125rem);
}

.button--outline {
  border-color: var(--border);
  background: var(--card);
  color: var(--foreground);
}

.button--outline:hover {
  background: var(--secondary);
}

.button--outline-primary {
  border-color: var(--primary);
  background: transparent;
  color: var(--primary);
}

.button--outline-light {
  border-color: color-mix(in oklab, var(--brand-foreground) 40%, transparent);
  background: transparent;
  color: var(--brand-foreground);
}

.button--outline-light:hover {
  background: color-mix(in oklab, var(--brand-foreground) 10%, transparent);
}

.button--light {
  background: var(--background);
  color: var(--foreground);
}

.button-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.eyebrow {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  line-height: 1.333333;
  text-transform: uppercase;
}

.eyebrow--gold {
  color: var(--gold);
}

.eyebrow--location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.24em;
}

.section-pad {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section--background {
  background: var(--background);
}

.section--card {
  background: var(--card);
}

.section--border {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-heading {
  max-width: 42rem;
}

.section-heading h2 {
  margin-top: 1rem;
  color: var(--foreground);
  font-size: 2.25rem;
  line-height: 1.12;
}

.section-heading-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.text-link {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-underline-offset: 0.25rem;
}

.text-link:hover {
  text-decoration: underline;
}

.media-frame {
  overflow: hidden;
  border: 1px solid color-mix(in oklab, var(--primary) 22%, transparent);
  border-radius: calc(var(--radius) + 12px);
  background: var(--card);
  box-shadow: var(--shadow-card);
}

.card-lift {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card-lift:hover {
  transform: translateY(-4px);
  border-color: color-mix(in oklab, var(--primary) 40%, transparent);
  box-shadow: var(--shadow-lift);
}

/* Home */
.page-home {
  background: var(--background);
}

.home-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--background);
}

.home-hero__grid {
  display: grid;
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
}

.home-hero__copy {
  padding: 1.75rem 1rem 2.75rem;
}

.home-hero h1 {
  margin-top: 1rem;
  color: var(--foreground);
  font-size: 2.6rem;
  line-height: 1.04;
}

.home-hero h1 span {
  color: var(--primary);
}

.home-hero__lead {
  max-width: 36rem;
  margin-top: 1.25rem;
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.625;
}

.home-hero__actions {
  margin-top: 1.75rem;
}

.home-hero__hours {
  display: grid;
  max-width: 32rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid color-mix(in oklab, var(--primary) 15%, transparent);
  padding-top: 1.25rem;
  font-size: 0.875rem;
}

.home-hero__hours dt {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-hero__hours dd {
  margin-top: 0.25rem;
  color: var(--muted-foreground);
}

.home-hero__media {
  align-self: center;
}

.home-hero__image-wrap {
  aspect-ratio: 1.4 / 1;
  overflow: hidden;
}

.home-hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.home-hero__media figcaption {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--foreground);
  color: var(--primary-foreground);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.rise-in {
  animation: rise-in 640ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.service-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-grid li {
  height: 100%;
}

.service-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 0.75rem);
  background: color-mix(in oklab, var(--secondary) 60%, transparent);
  padding: 1.75rem;
}

.service-card__icon {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: calc(var(--radius) + 0.25rem);
  background: color-mix(in oklab, var(--primary) 10%, transparent);
  color: var(--primary);
}

.service-card h3 {
  margin-top: 1.25rem;
  color: var(--foreground);
  font-size: 1.5rem;
  line-height: 1.2;
}

.service-card p {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.625;
}

.steps-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

.step-card {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 0.75rem);
  background: var(--card);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.step-card__number {
  color: var(--gold);
  font-family: "Outfit", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
}

.step-card h3 {
  margin-top: 1rem;
  color: var(--foreground);
  font-size: 1.5rem;
  line-height: 1.2;
}

.step-card p {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}

.brand-band {
  position: relative;
  overflow: hidden;
  background: var(--brand);
  color: var(--brand-foreground);
}

.brand-band--weave::before {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, color-mix(in oklab, var(--primary) 6%, transparent) 0 1px, transparent 1px 9px),
    repeating-linear-gradient(0deg, color-mix(in oklab, var(--primary) 5%, transparent) 0 1px, transparent 1px 9px);
  content: "";
  opacity: 0.07;
  pointer-events: none;
}

.brand-band__grid {
  position: relative;
  display: grid;
  gap: 3rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.brand-band h2 {
  font-size: 2.25rem;
  line-height: 1.12;
}

.brand-band__grid > div > p {
  max-width: 36rem;
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.625;
  opacity: 0.9;
}

.promise-list {
  display: grid;
  gap: 1rem;
  align-self: center;
}

.promise-list li {
  border: 1px solid color-mix(in oklab, var(--brand-foreground) 20%, transparent);
  border-radius: calc(var(--radius) + 0.25rem);
  background: color-mix(in oklab, var(--brand-foreground) 5%, transparent);
  padding: 1.25rem 1.5rem;
  font-size: 1.125rem;
}

.visit-grid {
  display: grid;
  gap: 3rem;
}

.info-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.25rem;
}

.info-card {
  display: flex;
  gap: 0.75rem;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 0.25rem);
  background: var(--card);
  padding: 1.25rem;
}

.info-card__icon {
  margin-top: 0.125rem;
  color: var(--primary);
}

.info-card dt {
  color: var(--muted-foreground);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.info-card dd {
  margin-top: 0.25rem;
  color: var(--foreground);
}

.info-card a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.visit__actions {
  margin-top: 2.25rem;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.closing-cta {
  border-top: 1px solid var(--border);
  background-color: var(--background);
  background-image:
    radial-gradient(ellipse 80% 60% at 15% 0%, color-mix(in oklab, var(--primary) 12%, transparent), transparent 70%),
    radial-gradient(ellipse 70% 60% at 100% 20%, color-mix(in oklab, var(--gold) 12%, transparent), transparent 70%);
}

.closing-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.closing-cta p {
  max-width: 36rem;
  color: var(--foreground);
  font-size: 1.5rem;
}

/* Shared page heroes */
.page-hero--brand {
  background: var(--brand);
  color: var(--brand-foreground);
}

.page-hero .container {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.page-hero h1 {
  max-width: 48rem;
  margin-top: 1rem;
  font-size: 2.25rem;
  line-height: 1.111111;
}

.page-hero__lead {
  max-width: 42rem;
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.555556;
  opacity: 0.9;
}

.page-hero__actions {
  margin-top: 2rem;
}

/* Services */
.services-hero__grid {
  display: grid;
  align-items: center;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.services-hero__grid h1 {
  max-width: none;
}

.stats-grid {
  display: grid;
  gap: 1rem;
}

.stat-card {
  border: 1px solid color-mix(in oklab, var(--brand-foreground) 20%, transparent);
  border-radius: calc(var(--radius) + 0.25rem);
  background: color-mix(in oklab, var(--brand-foreground) 5%, transparent);
  padding: 1.5rem;
}

.stat-card strong,
.stat-card span {
  display: block;
}

.stat-card strong {
  color: var(--gold);
  font-family: "Outfit", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.stat-card span {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.85;
}

.service-group {
  background: var(--background);
}

.service-group--surface {
  background: var(--surface);
}

.service-group__grid {
  display: grid;
  gap: 2.5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.number-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-group h2 {
  margin-top: 1rem;
  color: var(--foreground);
  font-size: 1.875rem;
  line-height: 1.15;
}

.service-group__grid > div > p {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
}

.service-list-grid {
  display: grid;
  gap: 1.25rem;
}

.service-list-card {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 0.5rem);
  background: var(--card);
  padding: 1.5rem;
  transition: transform 150ms ease;
}

.service-list-card:hover {
  transform: translateY(-0.25rem);
}

.service-list-card dt {
  color: var(--foreground);
  font-family: "Outfit", ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
}

.service-list-card dd {
  margin-top: 0.375rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.simple-cta {
  max-width: 48rem;
  margin-inline: auto;
  padding: 5rem 1rem;
  text-align: center;
}

.simple-cta h2 {
  color: var(--foreground);
  font-size: 2.25rem;
  line-height: 1.15;
}

.simple-cta p {
  margin-top: 1rem;
  color: var(--muted-foreground);
}

.simple-cta .button {
  margin-top: 2rem;
}

/* About */
.about-hero {
  display: grid;
  align-items: center;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.about-hero h1 {
  margin-top: 1rem;
  color: var(--foreground);
  font-size: 2.25rem;
  line-height: 1.111111;
}

.about-hero__lead {
  margin-top: 1.5rem;
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.555556;
}

.about-hero__lead + p {
  margin-top: 1rem;
  color: var(--muted-foreground);
}

.about-hero__media {
  padding: 0.75rem;
}

.about-hero__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: calc(var(--radius) + 8px);
  object-fit: cover;
}

.about-hero__media figcaption {
  padding: 0.75rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.428571;
}

.contact-hero .page-hero__lead {
  margin-top: 1.25rem;
}

.values-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.values-grid {
  display: grid;
  gap: 2.5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.values-grid h2 {
  color: var(--foreground);
  font-size: 1.5rem;
}

.values-grid p {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
}

.about-nearby {
  display: grid;
  gap: 2.5rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.about-nearby h2 {
  color: var(--foreground);
  font-size: 2.25rem;
  line-height: 1.15;
}

.about-nearby > div:first-child > p {
  margin-top: 1rem;
  color: var(--muted-foreground);
}

.about-nearby__button {
  margin-top: 2rem;
}

.visit-card {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 0.25rem);
  padding: 2rem;
}

.visit-card h2 {
  font-size: 1.5rem;
}

.visit-card p {
  margin-top: 1rem;
  color: var(--muted-foreground);
}

.visit-card a {
  display: inline-block;
  margin-top: 1rem;
  text-underline-offset: 0.25rem;
}

.visit-card a:hover {
  text-decoration: underline;
}

/* Contact */
.contact-hero .container {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.contact-details {
  display: grid;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.contact-list {
  display: grid;
  gap: 2rem;
}

.contact-list > div {
  display: flex;
  gap: 1rem;
}

.contact-list > div > .icon {
  margin-top: 0.25rem;
  flex: none;
}

.contact-list dt {
  color: var(--muted-foreground);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-list dd {
  margin-top: 0.25rem;
  color: var(--foreground);
  font-size: 1.25rem;
}

.contact-list a {
  text-underline-offset: 0.25rem;
}

.contact-list a:hover {
  text-decoration: underline;
}

.contact-list .contact-list__sub {
  margin-top: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.pickup-card {
  margin-top: 2.5rem;
  border-radius: calc(var(--radius) + 0.25rem);
  background: var(--surface);
  padding: 2rem;
}

.pickup-card h2 {
  font-size: 1.5rem;
}

.pickup-card p {
  margin-top: 0.5rem;
  color: var(--muted-foreground);
}

.pickup-card .button {
  margin-top: 1.5rem;
}

.contact-map iframe {
  height: 420px;
}

.message-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.message-band__grid {
  display: grid;
  gap: 2.5rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.message-band h2 {
  margin-top: 1rem;
  color: var(--foreground);
  font-size: 1.875rem;
  line-height: 1.15;
}

.message-band__grid > div:first-child > p:not(.eyebrow) {
  max-width: 28rem;
  margin-top: 1rem;
  color: var(--muted-foreground);
}

.message-band__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--foreground);
  font-size: 1.125rem;
  text-underline-offset: 0.25rem;
}

.message-band__phone:hover {
  text-decoration: underline;
}

/* Pickup and tailoring hero */
.pickup-hero {
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.pickup-hero .container {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.pickup-hero h1,
.tailoring-hero h1 {
  margin-top: 1rem;
  color: var(--foreground);
  font-size: 2.25rem;
  line-height: 1.111111;
}

.tailoring-hero h1 {
  max-width: 48rem;
  color: var(--brand-foreground);
}

.pickup-hero__lead {
  max-width: 42rem;
  margin-top: 1.25rem;
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.555556;
}

.pickup-hero__note {
  max-width: 42rem;
  margin-top: 1rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.pickup-hero__note a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.hero-steps {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-step {
  border-radius: calc(var(--radius) + 0.25rem);
  padding: 1.25rem;
}

.hero-steps--light .hero-step {
  border: 1px solid var(--border);
  background: var(--background);
}

.hero-steps--brand .hero-step {
  border: 1px solid color-mix(in oklab, var(--brand-foreground) 15%, transparent);
  background: color-mix(in oklab, var(--brand-foreground) 5%, transparent);
}

.hero-steps--brand .hero-step > .icon {
  color: var(--gold);
}

.hero-step h2 {
  margin-top: 0.75rem;
  font-family: "Outfit", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.hero-steps--brand .hero-step h2 {
  font-size: 1rem;
  font-weight: 600;
}

.hero-step p {
  margin-top: 0.25rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.hero-steps--brand .hero-step p {
  color: inherit;
  opacity: 0.8;
}

.tailoring-hero .container {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.tailoring-hero .page-hero__lead {
  margin-top: 1.25rem;
}

/* Forms */
.form-section {
  max-width: 48rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.request-form {
  display: grid;
  gap: 2.5rem;
}

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

.request-form fieldset > :not(legend):first-of-type {
  margin-top: 1.25rem;
}

.request-form legend {
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.page-tailoring .request-form legend {
  font-weight: 600;
}

.form-grid {
  display: grid;
  gap: 1.25rem;
}

.field label,
.field-label {
  display: block;
  color: var(--muted-foreground);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-tailoring .field label,
.page-tailoring .field-label {
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  border: 1px solid var(--input);
  border-radius: 0.5rem;
  outline: none;
  background: var(--background);
  padding: 0.625rem 0.875rem;
  color: var(--foreground);
  font-size: 0.875rem;
  transition: border-color 150ms ease;
}

.page-tailoring .field input,
.page-tailoring .field select,
.page-tailoring .field textarea {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1rem;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted-foreground);
  opacity: 1;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--foreground);
}

.page-tailoring .field input:focus,
.page-tailoring .field select:focus,
.page-tailoring .field textarea:focus {
  border-color: var(--primary);
}

.field textarea {
  min-height: 7rem;
  resize: vertical;
}

.field--spaced {
  margin-top: 1.25rem;
}

.field-error {
  min-height: 0;
  margin-top: 0.375rem;
  color: var(--destructive);
  font-size: 0.75rem;
}

.field-error:empty {
  display: none;
}

.choice-grid {
  display: grid;
  gap: 0.75rem;
}

.choice-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 0.25rem);
  background: var(--card);
  padding: 0.875rem 1rem;
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: left;
  transition: color 150ms ease, background-color 150ms ease, border-color 150ms ease;
  cursor: pointer;
}

.choice-card--large {
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1rem;
}

.choice-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-card__check {
  display: flex;
  width: 1.25rem;
  height: 1.25rem;
  flex: none;
  align-items: center;
  justify-content: center;
  margin-top: 0.125rem;
  border: 1px solid var(--input);
  border-radius: 0.25rem;
  background: var(--background);
}

.choice-card__check .icon {
  width: 0.875rem;
  height: 0.875rem;
  opacity: 0;
}

.choice-card:hover {
  border-color: var(--primary);
}

.choice-card:has(input:checked) {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--primary-foreground);
}

.choice-card:has(input:checked) .choice-card__check {
  border-color: var(--primary-foreground);
  background: color-mix(in oklab, var(--primary-foreground) 15%, transparent);
}

.choice-card:has(input:checked) .choice-card__check .icon {
  opacity: 1;
}

.choice-card:has(input:focus-visible) {
  outline: 3px solid color-mix(in oklab, var(--ring) 48%, transparent);
  outline-offset: 3px;
}

.choice-help {
  margin-top: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.form-error {
  border: 1px solid color-mix(in oklab, var(--destructive) 40%, transparent);
  border-radius: 0.5rem;
  background: color-mix(in oklab, var(--destructive) 5%, transparent);
  padding: 0.75rem 1rem;
  color: var(--destructive);
  font-size: 0.875rem;
}

.form-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.form-footer p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.form-footer--right {
  justify-content: flex-end;
}

.form-card {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 0.5rem);
  background: var(--card);
  padding: 1.5rem;
}

.contact-form .form-submit {
  width: 100%;
  margin-top: 1.5rem;
}

.form-privacy {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
  font-size: 0.75rem;
}

.form-success {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 0.5rem);
  background: var(--card);
  padding: 2.5rem;
  text-align: center;
}

.form-success--large {
  background: var(--surface);
}

.form-success > .icon {
  margin-inline: auto;
}

.form-success h2,
.form-success h3 {
  margin-top: 1.25rem;
  color: var(--foreground);
  font-size: 1.5rem;
}

.form-success h2 {
  font-size: 1.875rem;
}

.form-success > p {
  max-width: 28rem;
  margin: 0.75rem auto 0;
  color: var(--muted-foreground);
}

.form-success__actions {
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.form-success > .button {
  margin-top: 1.5rem;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.is-invalid {
  border-color: var(--destructive) !important;
}

/* Staff sign in */
.auth-page {
  width: 100%;
  max-width: 28rem;
  margin-inline: auto;
  padding: 6rem 1rem;
}

.auth-page h1 {
  color: var(--foreground);
  font-size: 2.25rem;
  line-height: 1.111111;
}

.auth-page__lead {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.auth-form {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.auth-form__error {
  color: var(--destructive);
  font-size: 0.875rem;
}

.auth-form__submit {
  width: 100%;
  min-height: 0;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
}

.auth-access {
  margin-top: 1.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.auth-access__toggle {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
  cursor: pointer;
}

.auth-access p {
  margin-top: 0.75rem;
}

.auth-access a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--foreground);
  color: var(--background);
}

.footer__inner {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.footer__grid {
  display: grid;
  gap: 2.5rem;
}

.footer__logo {
  width: auto;
  height: 2.5rem;
  max-width: none;
}

.footer__intro > p {
  max-width: 24rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer__column h2 {
  font-family: "Figtree", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}

.footer__column address,
.footer__column > p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-style: normal;
  opacity: 0.9;
}

.footer__column address p {
  margin: 0;
}

.footer__column .footer__phone {
  margin-top: 0.75rem;
}

.footer__column a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.footer__column .footer__hours-gap {
  margin-top: 0.5rem;
}

.footer__column .footer__muted {
  margin-top: 0.5rem;
  opacity: 0.6;
}

.footer__button {
  margin-top: 1.25rem;
}

.footer__button:hover {
  text-decoration: none !important;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 3rem;
  border-top: 1px solid color-mix(in oklab, var(--background) 20%, transparent);
  padding-top: 1.5rem;
  font-size: 0.75rem;
  opacity: 0.7;
}

.footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer__bottom a:hover {
  opacity: 1;
}

/* Fallback pages */
.not-found {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  background: var(--background);
  padding: 1rem;
  text-align: center;
}

.not-found > div {
  max-width: 28rem;
}

.not-found h1 {
  font-size: 4.5rem;
  line-height: 1;
}

.not-found h2 {
  margin-top: 1rem;
  font-family: "Figtree", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0;
}

.not-found p {
  margin-top: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.not-found .button {
  margin-top: 1.5rem;
}

.content-page {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.content-page h1 {
  font-size: 2.5rem;
}

.entry-content {
  margin-top: 1.5rem;
}

.content-entry + .content-entry {
  margin-top: 3rem;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 640px) {
  html {
    font-size: 17px;
  }
}

@media (min-width: 640px) {
  .container {
    padding-inline: 1.5rem;
  }

  .button-row {
    flex-direction: row;
  }

  .section-heading h2,
  .brand-band h2 {
    font-size: 3rem;
  }

  .section-heading-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .home-hero__copy {
    padding: 2.25rem 1.5rem 3rem;
  }

  .home-hero h1 {
    font-size: 3.75rem;
  }

  .service-grid,
  .info-grid,
  .service-list-grid,
  .form-grid--two,
  .choice-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .closing-cta__inner {
    flex-direction: row;
    align-items: center;
  }

  .page-hero h1,
  .pickup-hero h1,
  .tailoring-hero h1,
  .about-hero h1 {
    font-size: 3rem;
    line-height: 1;
  }

  .stats-grid .stat-card:last-child {
    grid-column: 1;
  }

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

  .form-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .form-footer--right {
    justify-content: flex-end;
  }

  .form-card {
    padding: 2rem;
  }

  .contact-form .form-submit {
    width: auto;
  }

  .form-success__actions {
    flex-direction: row;
  }

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

  .footer__intro {
    grid-column: span 2;
  }

  .footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .simple-cta {
    padding-inline: 1.5rem;
  }
}

@media (min-width: 768px) {
  .topbar {
    display: block;
  }

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

@media (min-width: 1024px) {
  .container {
    padding-inline: 2rem;
  }

  .desktop-nav {
    display: flex;
  }

  .menu-toggle,
  .mobile-menu {
    display: none !important;
  }

  .home-hero__grid {
    grid-template-columns: 1fr 1.45fr;
    align-items: stretch;
  }

  .home-hero__copy {
    padding: 2.5rem 3rem 3.5rem 2rem;
  }

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

  .brand-band__grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .visit-grid,
  .about-hero,
  .about-nearby,
  .contact-details,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-frame iframe {
    height: 100%;
    min-height: 360px;
  }

  .page-hero .services-hero__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .services-hero__grid h1 {
    font-size: 3.75rem;
  }

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

  .service-list-grid {
    grid-column: span 2;
  }

  .about-hero {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .about-hero h1 {
    font-size: 3.75rem;
  }

  .contact-hero .container,
  .pickup-hero .container {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .contact-hero h1 {
    font-size: 3.75rem;
  }

  .contact-details,
  .message-band__grid {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .contact-map iframe {
    min-height: 420px;
  }

  .message-band__grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

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

  .footer__intro {
    grid-column: span 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
