/* ─────────────────────────────────────────────
   NOISE TEXTURE — dark sections
───────────────────────────────────────────── */
.hero::after,
.packages::after,
.area::after,
.contact::after,
.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 300px 300px;
  z-index: 0;
}

.hero > *,
.packages > *,
.area > *,
.contact > *,
.footer > * {
  position: relative;
  z-index: 1;
}

/* ─────────────────────────────────────────────
   TOKENS
───────────────────────────────────────────── */
:root {
  --gold:        #C9A96E;
  --gold-hover:  #a8833e;
  --gold-light:  #f5ead6;
  --gold-mid:    #e8d4a8;
  --gold-ink:    #8f6f30;   /* deep gold: passes AA on white/surface */

  --ink:         #0D1B2A;   /* base navy — change this to reshade the whole site */
  --ink-2:       #1a2e42;
  --ink-3:       #2e4460;
  --ink-4:       #5d6d83;
  --ink-5:       #9aaabb;
  --ink-card:    #152438;   /* dark package-card surface */

  --line:        #dde3ea;
  --line-soft:   #f0f3f7;
  --surface:     #f7f8fa;
  --white:       #ffffff;

  --font:        'Outfit', system-ui, -apple-system, sans-serif;
  --r:           14px;    /* card radius */
  --r-sm:        8px;
  --r-pill:      999px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.05), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:   0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.10);
  --shadow-gold: 0 4px 20px color-mix(in srgb, var(--gold) 30%, transparent);

  /* Easing — strong custom curves, Emil-style */
  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --nav-h:       68px;
  --max-w:       1180px;
  --gap-section: 68px;   /* mobile base; overridden to 120px at desktop */
}

/* ─────────────────────────────────────────────
   RESET
───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--ink);
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Page fade-in: only when JS is available to reveal it, and motion is welcome */
@media (prefers-reduced-motion: no-preference) {
  html.js body {
    opacity: 0;
    transition: opacity 400ms ease;
  }
  html.js body.loaded {
    opacity: 1;
  }
}

img { max-width: 100%; display: block; height: auto; }
/* <picture> wrappers are transparent to layout, so the child <img>'s
   width/height:100% + object-fit resolve against the real parent. */
picture { display: contents; }

/* ─────────────────────────────────────────────
   COPY PROTECTION
   Site text is not selectable EXCEPT contact info
   (phone / email / address) — visitors must be able
   to copy those to actually reach the business.
   Images additionally block drag & iOS long-press save.
───────────────────────────────────────────── */
body {
  -webkit-user-select: none;
  user-select: none;
}

.contact__phone,
.contact__email,
.area-address-card__address,
.area-address-card__hours {
  -webkit-user-select: text;
  user-select: text;
}

img {
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

/* ─────────────────────────────────────────────
   IMAGE FOCAL POINTS
   Portrait photos in landscape tiles: shift the
   visible crop down toward the vehicle/subject
   instead of the default center (sky/buildings).
───────────────────────────────────────────── */
.crop-y72 { object-position: center 72%; }
.crop-y74 { object-position: center 74%; }
.crop-y75 { object-position: center 75%; }
.crop-y78 { object-position: center 78%; }
.crop-y80 { object-position: center 80%; }
.crop-y85 { object-position: center 85%; }
a   { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
summary { list-style: none; }
summary::-webkit-details-marker { display: none; }

/* Skip link — hidden until keyboard focus, then sits above every layer */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 600;
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-md);
  transform: translateY(calc(-100% - 16px));
  transition: transform 160ms var(--ease-out);
}
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

/* ─────────────────────────────────────────────
   LAYOUT
───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.section {
  padding-block: var(--gap-section);
  scroll-margin-top: var(--nav-h);
}

/* ─────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.025em;
  color: var(--ink);
}

h1 { font-size: clamp(2.1rem, 4.8vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.15rem; font-weight: 600; }
h4 { font-size: .95rem; font-weight: 600; letter-spacing: -.01em; }

p { color: var(--ink-3); line-height: 1.75; }

.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 40px;
}

.section-sub {
  margin-top: 16px;
  font-size: 1rem;
  color: var(--ink-4);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  min-height: 44px;               /* comfortable tap target (was rendering 42px) */
  border-radius: var(--r-pill);
  font-family: var(--font);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: -.01em;
  white-space: nowrap;
  line-height: 1;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    box-shadow 200ms ease,
    transform 140ms var(--ease-out);
  border: 2px solid transparent;
}

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

.btn--primary {
  background: var(--gold);
  color: var(--ink);              /* ink on gold = 7.77:1; white on gold failed AA at 2.24:1 */
  border-color: var(--gold);
}
@media (hover: hover) and (pointer: fine) {
  .btn--primary:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    box-shadow: var(--shadow-gold);
    transform: translateY(-1px);
  }
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
@media (hover: hover) and (pointer: fine) {
  .btn--outline:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
  }
}

/* On light backgrounds the brand gold fails AA; use the deep gold there */
.ceramic .btn--outline,
.gallery__more .btn--outline {
  color: var(--gold-ink);
  border-color: var(--gold-ink);
}

/* Keyboard focus: visible ring on light and dark surfaces alike */
:focus-visible {
  outline: 2px solid var(--gold-ink);
  outline-offset: 3px;
}
.hero :focus-visible,
.packages :focus-visible,
.area :focus-visible,
.contact :focus-visible,
.footer :focus-visible,
.navbar :focus-visible {
  outline-color: var(--gold);
}

.btn--ghost {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.25);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.45);
}

.btn--white {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn--ghost-light {
  background: transparent;
  color: rgba(255,255,255,.75);
  border-color: rgba(255,255,255,.3);
}
.btn--ghost-light:hover {
  color: var(--white);
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.08);
}

.btn--lg { padding: 15px 34px; font-size: .95rem; }

/* ─────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease-out), border-color .3s, box-shadow .3s;
}

.navbar.scrolled {
  background: color-mix(in srgb, var(--ink) 96%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: color-mix(in srgb, var(--gold) 12%, transparent);
  box-shadow: 0 1px 0 rgba(0,0,0,.2);
}

.navbar__inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 24px;
}

/* Logo */
.navbar__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.logo-sub {
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: -3px;
  padding-left: .32em; /* optically centers the letterspaced text */
}

.logo-text {
  font-family: 'UnifrakturMaguntia', serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .01em;
  color: var(--white);
  -webkit-text-stroke: 0.8px var(--white);
}

/* Nav links (desktop) */
.navbar__links {
  display: none;
  gap: 4px;
  margin-left: auto;
}

.navbar__links a {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  padding: 7px 12px;
  border-radius: var(--r-sm);
  transition: color .15s, background .15s;
}
.navbar__links a:hover {
  color: var(--gold);
  background: color-mix(in srgb, var(--gold) 8%, transparent);
}

.navbar__cta {
  display: none;
  margin-left: auto;
  padding: 9px 20px;
}

/* Hamburger */
.hamburger {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 6px;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  transition: transform 200ms var(--ease-out), opacity 160ms ease-out;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.navbar__links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: color-mix(in srgb, var(--ink) 97%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 12%, transparent);
  padding: 16px clamp(20px,5vw,48px) 24px;
  gap: 2px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}

.navbar__links.open a {
  padding: 12px 16px;
  font-size: 1rem;
  border-radius: var(--r-sm);
  color: rgba(255,255,255,.8);
}

.navbar__mobile-cta {
  display: none;
  margin-top: 12px;
  text-align: center;
}

.navbar__links.open .navbar__mobile-cta {
  display: block;
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  padding-block: 0;
  min-height: 0;
  display: flex;
  align-items: flex-end;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-position intentionally not set here — the default is center,
     and declaring it would out-specificity the .crop-y* focal classes */
  display: block;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  /* Denser through the mid-band where the sub-headline sits, so white text
     clears AA over the bright areas of the photo (car/LED streak). */
  background: linear-gradient(to top, color-mix(in srgb, var(--ink) 98%, transparent) 20%, color-mix(in srgb, var(--ink) 74%, transparent) 62%, color-mix(in srgb, var(--ink) 28%, transparent) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-block: 80px 32px;
  width: 100%;
}

.hero__content {
  max-width: 560px;
}

.hero__content h1 {
  margin-bottom: 20px;
  line-height: 1.1;
  color: var(--white);
}

.hero__position {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: .01em;
  margin-bottom: 12px;
  font-style: italic;
}

.hero__sub {
  font-size: .95rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__hint {
  margin-top: 16px;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}

/* Hero visual — hidden on mobile (image is full bleed bg), shown on desktop */
.hero__visual {
  display: none;
}

.hero__img-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.hero__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

@media (hover: hover) and (pointer: fine) {
  .hero__img-frame:hover img {
    transform: scale(1.02);
  }
}

.hero__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, color-mix(in srgb, var(--ink) 30%, transparent) 100%);
  pointer-events: none;
}

.hero__img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-radius: var(--r-pill);
  padding: 8px 16px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .03em;
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 25%, transparent);
}/* ─────────────────────────────────────────────
   TRUST STRIP
───────────────────────────────────────────── */


.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 0;
}

/* ─────────────────────────────────────────────
   SERVICES
───────────────────────────────────────────── */
.services { background: var(--white); }

/* Editorial service rows */
.svc-list {
  list-style: none;
  border-top: 1px solid var(--line);
}

.svc-row {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0 24px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.svc-row__num {
  font-size: 1.1rem;
  color: var(--gold);
  opacity: .6;
  line-height: 1;
}

.svc-row__body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.svc-row__body p {
  font-size: .9rem;
  color: var(--ink-4);
  line-height: 1.65;
}

.svc-row__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding-block: 12px;
  margin-block: -12px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold-ink);
  transition: gap .15s;
  grid-column: 2;
}

@media (hover: hover) and (pointer: fine) {
  .svc-row__link:hover { gap: 10px; }
}

/* ─────────────────────────────────────────────
   PACKAGES
───────────────────────────────────────────── */
.packages {
  background: var(--ink);
  position: relative;
}

.packages .section-header h2,
.packages .section-sub {
  color: rgba(255,255,255,.9);
}

.packages .section-sub {
  color: rgba(255,255,255,.5);
}

.pkg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}

.pkg-card {
  background: var(--ink-card);
  border: 1px solid color-mix(in srgb, var(--gold) 20%, transparent);
  border-radius: var(--r);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  transition: box-shadow 200ms ease, transform 180ms var(--ease-out), border-color 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .pkg-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
  }
}

.pkg-card--featured {
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--gold) 8%, transparent);
  background: var(--ink-2);
  padding-top: 44px;
}

.pkg-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--gold);
  color: var(--ink);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 0;
  text-align: center;
  border-radius: var(--r) var(--r) 0 0;
}

.pkg-card__top { display: flex; flex-direction: column; gap: 8px; }

.pkg-year {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
}

.pkg-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pkg-price__from {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
}

.pkg-price strong {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -.04em;
  color: var(--white);
  line-height: 1;
}

.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}

.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
}

.pkg-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--gold) 12%, transparent);
  border: 1.5px solid var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 8l2.5 2.5L12 5.5' stroke='%23C9A96E' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.pkg-cta {
  align-self: stretch;
  text-align: center;
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
@media (hover: hover) and (pointer: fine) {
  .pkg-cta:hover {
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
  }
}

.pkg-footer {
  margin-top: 52px;
  text-align: center;
  color: rgba(255,255,255,.5);
}

.pkg-footer__note {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
}

/* ─────────────────────────────────────────────
   MOBILE DETAILING — light package cards
───────────────────────────────────────────── */
.howworks { background: var(--surface); }
.howworks__list { max-width: 720px; margin-inline: auto; }

.ceramic { background: var(--white); }

/* Light-card content colors (ceramic section sits on white) */
.pkg-card--light .pkg-year { color: var(--gold-ink); }
.pkg-card--light .pkg-features li { color: var(--ink-4); }

.ceramic-note {
  text-align: center;
  margin-top: 28px;
  font-size: .85rem;
  color: var(--ink-4);
}

/* Ceramic benefits — compact inline row under the section header */
.ceramic-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 0;
  margin-top: 18px;
}

.ceramic-benefits li {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--gold-ink);
}

.ceramic-benefits li:not(:last-child)::after {
  content: '\25C6';
  margin-inline: 10px;
  color: var(--gold);
  opacity: .45;
  font-size: .5rem;
  vertical-align: 2px;
}

/* Essential card's shop-price alternative */
.pkg-price__alt {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}

/* Add-ons strip (dark packages section) */
.addons { margin-top: 52px; }

.addons__title {
  text-align: center;
  color: rgba(255,255,255,.9);
  font-size: 1rem;
  margin-bottom: 20px;
}

.addons__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.addons__item {
  border: 1px solid color-mix(in srgb, var(--gold) 20%, transparent);
  border-radius: var(--r-sm);
  padding: 16px 18px;
}

.addons__item strong {
  display: block;
  color: var(--white);
  font-size: .9rem;
  margin-bottom: 4px;
}

.addons__item p {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
}


.pkg-card--light {
  background: var(--white);
  border: 1px solid var(--line);
}

.pkg-card--light .pkg-price strong { color: var(--ink); }
.pkg-card--light .pkg-price__from  { color: var(--ink-4); }

/* ─────────────────────────────────────────────
   WHY CERAMIC — Editorial numbered list
───────────────────────────────────────────── */
@media (hover: hover) and (pointer: fine) {
}

/* ─────────────────────────────────────────────
   PROCESS
───────────────────────────────────────────── */
/* ─────────────────────────────────────────────
   SERVICE AREA
───────────────────────────────────────────── */
.area {
  background: var(--ink);
  position: relative;
  border-top: none;
  border-bottom: none;
}

.area .eyebrow        { color: var(--gold); }
.area__content h2     { color: var(--white); }
.area__content p      { color: rgba(255,255,255,.55); }

.area__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: flex-start;
}

.area__content h2 { margin-bottom: 16px; }
.area__content p { margin-bottom: 28px; color: var(--ink-3); max-width: 440px; }

.area__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  margin-top: 20px;
}

.area__cities li {
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  letter-spacing: .04em;
}

.area__cities li:not(:last-child)::after {
  content: '·';
  margin-inline: 8px;
  color: rgba(255,255,255,.15);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-block;
  background: color-mix(in srgb, var(--gold) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--gold) 25%, transparent);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .03em;
  padding: 7px 16px;
  border-radius: var(--r-pill);
  transition: border-color .15s, box-shadow .15s;
}

.tag:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.area__visual { width: 100%; max-width: 400px; align-self: center; }

.area-address-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 40px 44px;
  border-radius: var(--r);
  border: 1px solid color-mix(in srgb, var(--gold) 20%, transparent);
  background: var(--ink-card);
  box-shadow: var(--shadow-md);
}

.area-address-card__icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  margin-bottom: 4px;
}

.area-address-card__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.area-address-card__address {
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--white);
  margin: 0;
}

.area-address-card__hours {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  margin-top: 8px;
}

.area-address-card__btn {
  margin-top: 8px;
}

/* ─────────────────────────────────────────────
   GALLERY
───────────────────────────────────────────── */
.gallery { background: var(--white); }

.gallery__wrap {
  position: relative;
}

.gallery__item--hidden {
  display: none;
}

.gallery__wrap.expanded .gallery__item--hidden {
  display: block;
}

.gallery__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
  transition: opacity 300ms ease;
}

.gallery__wrap.expanded .gallery__fade {
  opacity: 0;
}

.gallery__more {
  text-align: center;
  margin-top: 24px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.gallery__item {
  border-radius: var(--r-sm);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  background: var(--surface);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) brightness(.92);
  transition: filter 250ms ease-out, transform 250ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .gallery__item:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.03);
  }
}

/* Mobile / touch: always-visible caption strip at the bottom */
.gallery__label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 28px 14px 10px;
  background: linear-gradient(to top, color-mix(in srgb, var(--ink) 85%, transparent), transparent);
  color: rgba(255,255,255,.85);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Desktop: hidden full overlay, revealed on hover */
@media (hover: hover) and (pointer: fine) {
  .gallery__label {
    inset: 0;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: rgba(15,25,35,.45);
    color: rgba(255,255,255,.8);
    opacity: 0;
    transition: opacity 200ms ease-out;
  }

  .gallery__item:hover .gallery__label {
    opacity: 1;
  }
}

/* ─────────────────────────────────────────────
   FAQ
───────────────────────────────────────────── */
.faq { background: var(--surface); }

.faq__inner { max-width: 700px; }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .2s;
}

.faq__item[open] {
  border-color: var(--gold-mid);
}

.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  color: var(--ink);
  transition: background .15s;
}

@media (hover: hover) and (pointer: fine) {
  .faq__q:hover { background: var(--surface); }
}

.faq__q:active { transform: scale(0.99); }

.faq__q::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 180ms var(--ease-out);
}

.faq__item[open] .faq__q::after {
  transform: rotate(45deg);
}

.faq__a {
  padding: 0 24px 20px;
}

.faq__a p {
  font-size: .88rem;
  color: var(--ink-4);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   CONTACT CTA
───────────────────────────────────────────── */
.contact {
  background: var(--ink);
  padding-block: 52px;
  position: relative;
}

.contact__inner {
  text-align: center;
  max-width: 580px;
}

.contact h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.contact p {
  color: rgba(255,255,255,.5);
  font-size: 1rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact p.contact__hint {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 28px;
}

.contact__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}

.contact__phone {
  display: table;            /* shrink-wraps to content, own centered line */
  margin-inline: auto;
  padding: 8px 12px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 12px;
  transition: opacity 150ms ease;
}
.contact__phone:hover { opacity: .75; }

.contact__email {
  display: table;
  margin-inline: auto;
  font-size: .9rem;
  padding: 10px;
  color: rgba(255,255,255,.6);
  margin-bottom: 12px;
  transition: color .15s;
}
.contact__email:hover { color: var(--gold); }

.contact__note {
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  margin: 0;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.footer {
  background: var(--ink);
  position: relative;
  padding-top: 40px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

.footer__logo {
  font-size: 1.6rem;
  line-height: 1;
}

.footer__tagline {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: -3px;
  padding-left: .32em;
}

.footer__instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 500;
  padding: 11px 8px;
  margin-block: -11px;
  color: rgba(255,255,255,.55);
  transition: color .15s;
}

.footer__instagram:hover {
  color: var(--gold);
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 24px;
}

.footer__nav a {
  font-size: .82rem;
  padding: 12px 4px;
  margin-block: -12px;
  color: rgba(255,255,255,.55);
  transition: color .15s;
}

.footer__nav a:hover { color: rgba(255,255,255,.8); }

.footer__bottom {
  padding-block: 20px;
}

.footer__bottom p {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  text-align: center;
}/* ─────────────────────────────────────────────
   LOGO FALLBACK
───────────────────────────────────────────── */

/* ─────────────────────────────────────────────
   STICKY MOBILE CALL/TEXT BAR
───────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px 16px calc(10px + env(safe-area-inset-bottom));
  background: var(--ink-2);
  border-top: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
}

.sticky-cta__hours {
  text-align: center;
  font-size: .7rem;
  color: rgba(255,255,255,.55);
}

.sticky-cta__buttons {
  display: flex;
  gap: 10px;
}

.sticky-cta .btn { flex: 1; }

/* Reserve space so the bar never covers page content */
body { padding-bottom: calc(88px + env(safe-area-inset-bottom)); }


/* ─────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {

  .reveal {
    opacity: 0;
    transform: translateY(20px);
    animation: revealUp .7s cubic-bezier(.16,1,.3,1) forwards;
  }

  .reveal--delay { animation-delay: .18s; }

  @keyframes revealUp {
    to { opacity: 1; transform: none; }
  }

  html.js .fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
  }

  html.js .fade-up.visible { opacity: 1; transform: none; }
  html.js .fade-up--d1.visible { transition-delay: 60ms; }
  html.js .fade-up--d2.visible { transition-delay: 120ms; }

}

/* Reduced motion: show everything immediately */
@media (prefers-reduced-motion: reduce) {
  .reveal, .fade-up { opacity: 1; transform: none; animation: none; transition: none; }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — TABLET (≥ 640px)
───────────────────────────────────────────── */
@media (min-width: 640px) {

  .svc-row { grid-template-columns: 40px 1fr auto; align-items: center; }

  .pkg-grid { grid-template-columns: 1fr 1fr; }

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

    .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .gallery__item { aspect-ratio: 4/3; }

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

}

/* ─────────────────────────────────────────────
   RESPONSIVE — DESKTOP (≥ 960px)
───────────────────────────────────────────── */
@media (min-width: 960px) {

  /* Spacing */
  :root { --gap-section: 120px; }
  .section-header { margin-bottom: 64px; }

  /* Navbar */
  .navbar__links { display: flex; margin-left: auto; }
  .navbar__cta   { display: inline-flex; margin-left: 8px; }
  .hamburger     { display: none; }

  /* Sticky call/text bar is a mobile-only pattern */
  .sticky-cta { display: none; }
  body { padding-bottom: 0; }

  /* Hero — desktop: side by side, solid navy bg */
  .hero { min-height: auto; align-items: center; padding-block: 0; }
  .hero__bg { display: none; }
  .hero__inner { padding-block: 100px 80px; }

  .hero__inner {
    flex-direction: row;
    align-items: center;
    gap: 80px;
    padding-block: 120px 100px;
  }

  .hero__content { flex: 1; max-width: 520px; }
  .hero__visual  { flex: 1; min-width: 0; display: block; }

  /* Card padding restore */
  .pkg-card { padding: 36px 32px; }

  /* Services — on desktop put the link in its own column on the right */
  .svc-row { gap: 0 40px; padding: 36px 0; }
  .svc-row__link { margin-top: 0; grid-column: 3; white-space: nowrap; }

  /* Packages */
  .pkg-grid { grid-template-columns: repeat(3, 1fr); }

  /* Why ceramic — full-width editorial list */

  /* Process — single column, line flows top-to-bottom */
    /* Footer */
  .footer__nav { gap: 8px 32px; }

}

/* Desktop-only line break */
.br-desk { display: none; }
@media (min-width: 960px) {
  .br-desk { display: block; }
}

/* ─────────────────────────────────────────────
   MOBILE ONLY (< 640px)
───────────────────────────────────────────── */
@media (max-width: 639px) {

  /* Hero CTAs — stacked but not full-width */
  .hero__ctas {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero__ctas .btn { width: auto; min-width: 200px; }

  /* Why heading — no max-width constraint on mobile */
    /* Contact CTAs — stacked but not full-width */
  .contact__ctas {
    flex-direction: column;
    align-items: center;
  }
  .contact__ctas .btn { width: auto; min-width: 200px; }

  /* Package price — slightly tighter */
  .pkg-price strong { font-size: 2rem; }

  /* Package footer CTA — auto width */
  .pkg-footer .btn { width: auto; min-width: 220px; }

  /* Gallery — tighter gap */
  .gallery__grid { gap: 8px; }

  /* FAQ — tighter padding */
  .faq__q { padding: 16px 18px; }
  .faq__a { padding: 0 18px 16px; }

  /* Service area — map full width on mobile */
  .area__inner { gap: 32px; }
  .area__visual { max-width: 100%; width: 100%; }

}
