/* Laccrocher — fast static styles, mobile-first */

:root {
  /* Light page + dark brand bar: pairs with ab-logo.png (black / white / red) */
  --bg: #f6f5f2;
  --surface: #ebeae5;
  --surface-2: #ffffff;
  --about-warm: #f3f0ea;
  --about-warm-2: #ebe6dd;
  --header-footer: #080808;
  --text: #141414;
  --text-muted: #5a5856;
  --accent: #e32525;
  --accent-hover: #c41e1e;
  --link: #9b1c1c;
  --link-hover: #e32525;
  --border: rgba(20, 20, 20, 0.1);
  --focus: #e32525;
  --maxw: 72rem;
  --radius: 12px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
  --review-star-fill: #c9a227;
  /* Approx. sticky bar height (logo + padding); tuned for wrapped nav on small screens */
  --header-h: 7.85rem;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, sans-serif;
}

@font-face {
  /* Apache-2.0. Glyph subset from Google Fonts Material Symbols (8 icons only). */
  font-family: "Material Symbols Rounded";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("fonts/MaterialSymbolsRounded.ttf") format("truetype");
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(env(safe-area-inset-top, 0px) + var(--header-h));
}

@media (max-width: 859px) {
  :root {
    --header-h: 5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -100px;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  z-index: 10000;
  border-radius: 6px;
  text-decoration: none;
}

.skip-link:focus {
  top: 0.75rem;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

a {
  color: var(--link);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--link-hover);
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-top: env(safe-area-inset-top, 0);
  background: rgba(255, 252, 249, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand:hover {
  color: inherit;
}

.brand:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.brand img {
  height: 107px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

@media (max-width: 859px) {
  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 0.5rem;
    row-gap: 0;
    padding: 0.5rem 1rem;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .brand img {
    height: 74px;
    max-width: 118px;
  }

  .header-phone-slot {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
  }

  .header-phone-bar {
    padding: 0.4rem 0.65rem;
    min-height: 42px;
    font-size: 0.8125rem;
    white-space: nowrap;
  }

  .nav-toggle {
    grid-column: 3;
    grid-row: 1;
    display: inline-flex;
  }

  .nav-prime {
    grid-column: 1 / -1;
    grid-row: 2;
    display: none;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 0.35rem 0 0.25rem;
    margin-top: 0.35rem;
    border-top: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
  }

  .site-header.is-nav-open .nav-prime {
    display: flex;
  }

  .nav-prime a {
    padding: 0.75rem 0.35rem;
    border-radius: 8px;
    font-size: 1rem;
  }

  .nav-prime a:hover {
    background: color-mix(in srgb, var(--surface) 70%, transparent);
  }

  .nav-call-desktop {
    display: none;
  }
}

.header-phone-slot {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.nav-prime {
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1rem;
}

@media (min-width: 860px) {
  .header-phone-slot,
  .nav-toggle {
    display: none;
  }

  .nav-prime {
    display: flex;
  }
}

.nav-prime a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-prime a:hover {
  color: var(--text);
}

.nav-prime a.btn-primary {
  color: #fff;
  text-decoration: none;
}

.nav-prime a.btn-primary:hover {
  color: #fff;
}

.nav-toggle {
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: color-mix(in srgb, var(--surface) 65%, transparent);
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s ease;
}

.nav-toggle:hover {
  background: color-mix(in srgb, var(--surface) 90%, var(--border));
}

.nav-toggle:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.nav-toggle-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 1.25rem;
}

.nav-toggle-icon span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition:
    transform 0.22s ease,
    opacity 0.15s ease;
}

.site-header.is-nav-open .nav-toggle-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .nav-toggle-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
  .nav-toggle-icon span {
    transition: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 48px;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}

.btn:active {
  transform: scale(0.98);
}

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

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(20, 20, 20, 0.22);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-lg {
  font-size: 1.1rem;
  padding: 0.85rem 1.6rem;
}

.hero-phone {
  font-variant-numeric: tabular-nums;
}

main > section {
  padding: 3.5rem 1.25rem;
}

main > section:nth-child(even) {
  background: var(--surface);
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
}

.hero {
  padding: 0;
  overflow: hidden;
  background: #161514;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 1fr;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  max-width: none;
  margin: 0;
}

.hero-media {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  position: relative;
  min-height: 100%;
  height: 100%;
  min-width: 0;
  background: #1a1917;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-inner::after {
  content: "";
  grid-column: 1;
  grid-row: 1;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(6, 6, 6, 0.78) 0%,
    rgba(6, 6, 6, 0.42) 42%,
    rgba(6, 6, 6, 0.62) 100%
  );
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 2;
  align-self: end;
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: calc(env(safe-area-inset-top, 0px) + var(--header-h) + 0.85rem) 1.25rem clamp(2.5rem, 8vh, 4rem);
}

.hero #hero-heading {
  color: #fff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
  max-width: 35rem;
}

.hero .hero-lead {
  color: rgba(255, 252, 249, 0.92);
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.4);
}

.hero .hero-lead strong {
  color: #fff;
}

.hero .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(0, 0, 0, 0.2);
}

.hero .btn-secondary:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

h1 {
  font-family: var(--font-body);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0 0 1.75rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

h2 {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.section-lead {
  color: var(--text-muted);
  max-width: 40rem;
  margin: 0 0 2rem;
}

#services {
  padding-top: clamp(5.5rem, 9vw, 7.5rem);
  padding-bottom: clamp(5.75rem, 9.5vw, 7.75rem);
}

#services h2 {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3.05rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 3.25rem;
  letter-spacing: -0.035em;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.35rem, 4.5vw, 3.35rem) clamp(2rem, 4.5vw, 3.5rem);
  max-width: 72rem;
  margin: 0 auto;
  padding: 0;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-card {
  margin: 0;
  padding: 0 0 0 1.35rem;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  border-left: 3px solid color-mix(in srgb, var(--accent) 50%, var(--border));
}

.service-card h3 {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0;
  line-height: 1.35;
  text-align: left;
  text-wrap: balance;
  flex: 1;
  min-width: 0;
}

.service-card-top {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.05rem;
}

.service-icon-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-top: 0;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.service-ms-icon.material-symbols-rounded {
  font-family: "Material Symbols Rounded";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-size: 1.56rem;
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
  color: color-mix(in srgb, var(--text) 72%, var(--text-muted) 28%);
}

.service-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.62;
}

.service-card li {
  position: relative;
  padding-left: 1.05rem;
  margin-bottom: 0.55rem;
}

.service-card li:last-child {
  margin-bottom: 0;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 80%, var(--text-muted));
  opacity: 0.85;
}

.section-divider-photo {
  margin: 0;
  padding: 0;
  width: 100%;
  line-height: 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-divider-photo img {
  width: 100%;
  display: block;
  height: clamp(18rem, 45vw, 36rem);
  object-fit: cover;
  object-position: center;
}

#work h2 {
  text-align: center;
}

#work .section-lead {
  margin-inline: auto;
  text-align: center;
  text-wrap: balance;
}

#work .work-showcase-title {
  text-align: center;
}

#work .work-cap {
  text-align: center;
}

.work-carousels {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}

.work-showcase-title {
  font-family: var(--font-body);
  font-size: 1.35rem;
  margin: 0 0 0.85rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.carousel {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  outline: none;
}

.carousel:focus-visible {
  box-shadow: 0 0 0 3px var(--focus);
  border-radius: var(--radius);
}

.carousel-frame {
  position: relative;
}

#work .carousel-frame {
  max-width: min(46rem, 100%);
  margin-inline: auto;
}

#work .carousel-viewport {
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid color-mix(in srgb, var(--text) 8%, var(--border));
  background: #0b0b0b;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.045) inset,
    0 20px 50px -12px rgba(0, 0, 0, 0.22);
}

#work .carousel-nav {
  width: 2.35rem;
  height: 2.35rem;
  margin-top: -1.175rem;
  border: 1px solid color-mix(in srgb, #fff 52%, rgba(0, 0, 0, 0.06));
  background: rgba(252, 250, 246, 0.76);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
  color: color-mix(in srgb, var(--text) 92%, transparent);
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    color 0.22s ease,
    transform 0.12s ease;
}

#work .carousel-nav:hover {
  background: rgba(255, 254, 252, 0.9);
  border-color: color-mix(in srgb, #fff 65%, var(--border));
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.16);
  color: var(--text);
}

#work .carousel-nav:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 2px var(--surface-2),
    0 0 0 4px var(--focus),
    0 2px 16px rgba(0, 0, 0, 0.12);
}

#work .carousel-nav:active {
  transform: scale(0.94);
}

#work .carousel-nav-prev {
  left: 0.75rem;
}

#work .carousel-nav-next {
  right: 0.75rem;
}

#work .carousel-nav svg {
  display: block;
  opacity: 0.92;
}

#work .carousel-dots {
  gap: 0.5rem;
}

#work .carousel-dot {
  width: 0.4rem;
  height: 0.4rem;
  background: color-mix(in srgb, var(--text-muted) 40%, var(--border));
  opacity: 0.75;
  transition:
    width 0.22s ease,
    background 0.22s ease,
    opacity 0.22s ease,
    transform 0.15s ease;
}

#work .carousel-dot:hover {
  background: color-mix(in srgb, var(--text-muted) 75%, var(--text));
  opacity: 1;
}

#work .carousel-dot.is-active {
  width: 1.15rem;
  height: 0.4rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 88%, var(--text));
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  #work .carousel-nav,
  #work .carousel-dot {
    transition: none;
  }
}

.carousel-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #0a0a0a;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-viewport {
    scroll-behavior: auto;
  }
}

.carousel-track {
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.carousel-slide .work-card {
  border: none;
  border-radius: 0;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  margin-top: -1.375rem;
  border: none;
  border-radius: 999px;
  background: rgba(255, 252, 249, 0.94);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  transition: background 0.15s ease, transform 0.1s ease;
}

.carousel-nav:hover {
  background: #fff;
}

.carousel-nav:active {
  transform: scale(0.96);
}

.carousel-nav-prev {
  left: 0.5rem;
}

.carousel-nav-next {
  right: 0.5rem;
}

.carousel-nav svg {
  display: block;
}

.carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.carousel-dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: #c4c2be;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.carousel-dot:hover {
  background: var(--text-muted);
}

.carousel-dot.is-active {
  background: var(--accent);
  transform: scale(1.2);
}

.work-card {
  background: var(--surface-2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.work-card video {
  /* Override global `video { max-width:100%; height:auto }` so aspect-ratio sizing is consistent in Firefox. */
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #000;
}

.work-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.work-cap {
  padding: 0.65rem 0.85rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

@media (min-width: 720px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.review-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.review-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
  margin: 0 0 0.85rem;
}

.review-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.18rem;
  min-width: 0;
}

.review-star {
  display: block;
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  color: var(--review-star-fill);
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06));
}

.review-star svg {
  display: block;
  width: 100%;
  height: 100%;
}

.review-yelp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
  border-radius: 6px;
  transition: opacity 0.15s ease, transform 0.12s ease;
}

.review-yelp:hover {
  opacity: 0.88;
  transform: scale(1.06);
}

.review-yelp:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.review-yelp img {
  display: block;
  width: 1.625rem;
  height: auto;
}

.review-card blockquote {
  margin: 0 0 1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.55;
}

.review-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.review-source {
  margin-top: 1.25rem;
  font-size: 0.95rem;
}

.about-section {
  position: relative;
  /* Must set horizontal padding here: class beats `main > section` and would otherwise zero out inset. */
  padding: 2.75rem max(1.25rem, env(safe-area-inset-left)) 2.75rem max(1.25rem, env(safe-area-inset-right));
  margin: 0.5rem 0 0;
  background: linear-gradient(
    180deg,
    var(--about-warm) 0%,
    color-mix(in srgb, var(--bg) 55%, var(--about-warm)) 38%,
    var(--bg) 100%
  );
  border-top: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
}

.about-section-heading {
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 4.2vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 1.35rem;
  color: var(--text);
}

.about-intro {
  max-width: 38rem;
  font-size: 1.05rem;
  line-height: 1.65;
}

.about-cols {
  display: grid;
  gap: 2rem;
}

@media (max-width: 799px) {
  .about-cols {
    gap: 2.75rem;
  }

  .about-section-heading {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .about-company {
    padding: 1.35rem 1.25rem 1.5rem;
  }

  .about-company h3:first-of-type {
    margin-top: 0;
  }
}

@media (min-width: 800px) {
  .about-cols {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.95fr);
    gap: 2.75rem 3rem;
    align-items: start;
  }
}

.about-company h3:first-of-type {
  margin-top: 0;
}

.about-company h3:not(:first-of-type) {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.about-owner {
  position: relative;
  background: linear-gradient(165deg, #fffefb 0%, var(--surface-2) 42%, var(--about-warm) 100%);
  border: 1px solid color-mix(in srgb, var(--review-star-fill) 18%, var(--border));
  border-radius: calc(var(--radius) + 4px);
  padding: 1.6rem 1.5rem 1.75rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 22px 48px rgba(20, 18, 14, 0.07),
    0 0 0 1px rgba(255, 255, 255, 0.5);
}

.about-owner-heading {
  font-family: var(--font-body);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin: 0 0 1.15rem;
  text-align: center;
  color: var(--text);
}

.about-owner-figure {
  margin: 0 0 1.15rem;
  text-align: center;
}

.about-owner-photo-ring {
  width: min(12.5rem, 72vw);
  aspect-ratio: 1;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  transform: rotate(-2.25deg);
  box-shadow:
    0 0 0 5px #fff,
    0 0 0 6px color-mix(in srgb, var(--review-star-fill) 45%, transparent),
    0 14px 36px rgba(20, 14, 10, 0.14);
  background: var(--about-warm-2);
}

.about-owner-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  filter: contrast(1.02);
}

.about-owner-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  transform: rotate(0deg);
}

.about-owner-name {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}

.about-owner-role {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.about-owner-kicker {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.owner-quote {
  position: relative;
  margin: 0;
  padding: 0.15rem 0 0 0;
  border: none;
}

.owner-quote::before {
  content: "\201C";
  font-family: var(--font-body);
  font-size: 2.65rem;
  line-height: 1;
  color: color-mix(in srgb, var(--review-star-fill) 55%, var(--text-muted));
  opacity: 0.45;
  display: block;
  margin-bottom: 0.15rem;
}

.owner-quote p {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.68;
  color: var(--text);
}

@media (max-width: 799px) {
  .about-section {
    padding: 3.35rem max(1.25rem, env(safe-area-inset-left)) 3.35rem max(1.25rem, env(safe-area-inset-right));
  }
}

@media (min-width: 800px) {
  .about-section {
    padding: 3.25rem max(1.25rem, env(safe-area-inset-left)) 3.25rem max(1.25rem, env(safe-area-inset-right));
  }

  .about-section-heading {
    margin-bottom: 1.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-owner-photo-ring {
    transform: none;
  }
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.areas-list li {
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
}

.areas-map-wrap {
  width: 100%;
  margin-top: 1.5rem;
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--border) 88%, var(--text) 5%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 14px 40px -12px rgba(0, 0, 0, 0.14);
  aspect-ratio: 16 / 11;
  min-height: 12rem;
}

.areas-map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 12rem;
  border: 0;
}

.areas-map-caption {
  margin: 0.5rem 0 0;
  padding: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.areas-map-caption a {
  color: var(--link);
  font-weight: 600;
  text-decoration-thickness: 1px;
}

.areas-map-caption a:hover {
  color: var(--link-hover);
}

.areas-faq-col {
  min-width: 0;
}

.areas-faq-grid {
  display: grid;
  gap: 2.75rem;
  align-items: start;
}

@media (min-width: 880px) {
  .areas-faq-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3.5rem;
  }

  .areas-faq-col--faq {
    padding-left: 3rem;
    border-left: 1px solid var(--border);
  }
}

.areas-faq-col h2 {
  margin: 0 0 1.15rem;
}

.areas-faq-lead {
  margin-bottom: 1.35rem;
}

.areas-faq-col--faq .faq-lead {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1.35rem;
  text-align: left;
}

.areas-faq-col--faq .faq-accordion {
  max-width: none;
  margin: 0;
}

.faq-lead {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  text-align: left;
  font-size: 1.05rem;
  line-height: 1.65;
}

.faq-accordion {
  max-width: 42rem;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 6px);
  background: var(--surface-2);
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.65) inset, var(--shadow);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.1rem 1.35rem 1.1rem 1.5rem;
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 2.5vw, 1.1rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--text);
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.15s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  flex-shrink: 0;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: translateY(-0.08rem) rotate(45deg);
  transition: transform 0.22s ease, border-color 0.15s ease;
  opacity: 0.85;
}

.faq-item[open] summary::after {
  transform: translateY(0.12rem) rotate(-135deg);
}

.faq-item summary:hover {
  background: color-mix(in srgb, var(--surface) 55%, var(--surface-2));
}

.faq-item summary:focus-visible {
  outline: none;
  background: color-mix(in srgb, var(--surface) 55%, var(--surface-2));
  box-shadow: inset 0 0 0 2px var(--focus);
}

.faq-item[open] summary {
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 35%, var(--surface-2)) 0%, var(--surface-2) 100%);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 75%, transparent);
  padding-bottom: 1rem;
}

.faq-item[open] summary::after {
  border-color: var(--text);
  opacity: 1;
}

.faq-answer {
  margin: 0;
  padding: 0.35rem 1.5rem 1.25rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.68;
  max-width: none;
}

.faq-answer a {
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item summary,
  .faq-item summary::after {
    transition: none;
  }
}

.site-footer {
  padding: 2.5rem 1.25rem;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.site-footer a {
  color: var(--link);
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--link-hover);
}

.site-footer strong {
  color: var(--text);
}
