/* ═══════════════════════════════════════════════════════════════════════
   Portland's Sharpest — Stylesheet
   Single source of truth for all visual styling across the site.
   Loaded by every page via <link rel="stylesheet" href="/styles.css">.
   ═══════════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
:root {
  --cream: #F5F0E8;
  --dark: #1A1410;
  --rust: #B84A1E;
  --rust-light: #D4622B;
  --stone: #8C7B6B;
  --warm-mid: #3A2E24;
  --line: rgba(140,123,107,0.25);
}
html { scroll-behavior: smooth; }
body {
  background-color: var(--dark);
  color: var(--cream);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 100; opacity: 0.5;
}

/* ── PAGE SYSTEM ── */
/* ─── Multi-page conversion: .page hide/show rules removed.
       Each page is now its own HTML file. ─── */


/* ── NAV ── */
body > nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 3rem; height: 62px;
  border-bottom: 0.5px solid var(--line);
  background: rgba(26,20,16,0.93);
  backdrop-filter: blur(12px);
  gap: 1.5rem;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--cream); cursor: pointer; background: none; border: none;
  white-space: nowrap; flex-shrink: 0;
}
.nav-logo span { color: var(--rust); }
.nav-tabs {
  display: flex; align-items: center; gap: 0.25rem;
  flex: 1; justify-content: center;
}
.nav-tab {
  font-family: 'Barlow', sans-serif;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--stone);
  background: none; border: none; cursor: pointer;
  padding: 0.45rem 0.9rem; border-radius: 2px;
  transition: color 0.2s, background 0.2s; white-space: nowrap;
}
.nav-tab:hover { color: var(--cream); background: rgba(140,123,107,0.1); }
.nav-tab.active-tab { color: var(--cream); }
.nav-book-btn {
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--cream);
  background: var(--rust); border: none;
  padding: 0.55rem 1.3rem; border-radius: 2px; cursor: pointer;
  transition: background 0.2s; white-space: nowrap; flex-shrink: 0;
}
.nav-book-btn:hover { background: var(--rust-light); }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; padding: 7rem 3rem 4rem;
  position: relative; overflow: hidden;
  background-image:
    linear-gradient(100deg, rgba(26,20,16,0.97) 0%, rgba(26,20,16,0.88) 30%, rgba(26,20,16,0.55) 62%, rgba(26,20,16,0.28) 100%),
    url('/assets/gallery-2.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
/* Photo hero: retire the abstract accent panel and ghost word so the image reads cleanly */
.hero::after { display: none; }
.bg-word { display: none; }
@media (max-width: 760px) {
  .hero {
    background-image:
      linear-gradient(180deg, rgba(26,20,16,0.90) 0%, rgba(26,20,16,0.78) 50%, rgba(26,20,16,0.90) 100%),
      url('/assets/gallery-2.jpg');
    background-position: center;
  }
}
.hero-inner { position: relative; z-index: 1; max-width: 780px; }
.hero-eyebrow {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--rust); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-eyebrow::before { content: ''; display: inline-block; width: 32px; height: 1px; background: var(--rust); }
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 9vw, 7rem); font-weight: 900;
  line-height: 0.95; letter-spacing: -0.02em; margin-bottom: 2rem;
}
h1 em { font-style: italic; color: var(--rust); }
h1 .h1-prefix {
  display: block;
  font-family: 'Barlow', sans-serif;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 1rem;
}
.hero-sub {
  font-size: 1rem; font-weight: 300; color: var(--stone);
  max-width: 400px; line-height: 1.7; margin-bottom: 2.5rem;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--rust); color: var(--cream); border: none;
  padding: 1rem 2rem; font-family: 'Barlow', sans-serif;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; border-radius: 2px;
  transition: background 0.2s, transform 0.15s; cursor: pointer;
}
.hero-cta:hover { background: var(--rust-light); transform: translateY(-1px); }
.hero-cta svg { transition: transform 0.2s; }
.hero-cta:hover svg { transform: translateX(4px); }
.bg-word {
  position: absolute; bottom: -2rem; right: -1rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(8rem, 20vw, 18rem); font-weight: 900;
  color: transparent; -webkit-text-stroke: 1px rgba(140,123,107,0.12);
  line-height: 1; user-select: none; pointer-events: none; z-index: 0;
}

/* ── HERO HEADINGS (homepage) ── */
.hero h1 {
  /* Location-led H1 is the focal point, sized for the longer phrase */
  font-size: clamp(2.8rem, 7vw, 5rem);
  margin-bottom: 1.4rem;
}
.hero-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 600; color: var(--cream);
  line-height: 1.35; letter-spacing: -0.01em;
  max-width: 620px; margin-bottom: 2.25rem;
}
.hero-brand {
  display: block; margin-top: 1.1rem;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rust);
}

/* ── WHAT WE OFFER ── */
.offer-section { max-width: 1120px; margin: 0 auto; padding: 1.5rem 3rem 1rem; }
.offer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-top: 1.5rem;
}
.offer-card {
  background: var(--warm-mid); border: 0.5px solid var(--line);
  border-radius: 8px; padding: 2rem 1.75rem;
  transition: transform 0.2s, border-color 0.2s;
}
.offer-card:hover { transform: translateY(-3px); border-color: rgba(184,74,30,0.5); }
.offer-card-icon {
  width: 42px; height: 42px; margin-bottom: 1rem;
  background-color: var(--rust);
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  transition: background-color 0.2s;
}
.offer-card-icon.icon-check     { -webkit-mask-image: url('/assets/icon-check.png');     mask-image: url('/assets/icon-check.png'); }
.offer-card-icon.icon-tools     { -webkit-mask-image: url('/assets/icon-tools.png');     mask-image: url('/assets/icon-tools.png'); }
.offer-card-icon.icon-hourglass { -webkit-mask-image: url('/assets/icon-hourglass.png'); mask-image: url('/assets/icon-hourglass.png'); }
.offer-card:hover .offer-card-icon { background-color: var(--rust-light); }
.offer-card-title {
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700;
  color: var(--cream); margin-bottom: 0.6rem; line-height: 1.25;
}
.offer-card-text { font-size: 0.95rem; color: var(--stone); line-height: 1.7; }
@media (max-width: 760px) {
  .offer-grid { grid-template-columns: 1fr; }
  .offer-section { padding: 0.5rem 1.25rem 1rem; }
}

/* ── DIVIDER ── */
.divider { display: flex; align-items: center; gap: 1rem; padding: 0 3rem; }
.divider-line { flex: 1; height: 0.5px; background: var(--line); }
.divider-icon { color: var(--rust); font-size: 1.1rem; }

/* ── TRUST CARDS ── */
.trust-section { padding: 5rem 3rem 5rem; }
.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
.trust-card {
  border: 0.5px solid var(--line); border-radius: 4px;
  padding: 2rem 1.75rem;
  background: rgba(58,46,36,0.25);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.trust-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 100%; background: var(--rust);
}
.trust-card-icon { font-size: 1.3rem; margin-bottom: 1rem; display: block; }
.trust-card-title {
  font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700;
  color: var(--cream); margin-bottom: 0.6rem; line-height: 1.3;
}
.trust-card-text { font-size: 0.875rem; color: var(--stone); line-height: 1.7; flex: 1; }
.trust-card-text strong { color: var(--cream); font-weight: 500; }

/* ── PHOTO PREVIEW ── */
.photo-preview { padding: 0 3rem 5rem; }
.photo-grid-preview { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.photo-thumb { aspect-ratio: 1; overflow: hidden; border-radius: 3px; position: relative; }
.photo-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease, filter 0.3s;
  filter: brightness(0.85) saturate(0.9);
}
.photo-thumb:hover img { transform: scale(1.06); filter: brightness(1) saturate(1.1); }
.photo-thumb-overlay { position: absolute; inset: 0; background: rgba(26,20,16,0); transition: background 0.3s; }
.photo-thumb:hover .photo-thumb-overlay { background: rgba(184,74,30,0.15); }

/* ── SERVICES / PRICING ── */
.services { padding: 5rem 3rem 3rem; }
.section-label {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--rust); margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  margin-bottom: 2.5rem; line-height: 1.15;
}
.pricing-tables { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.price-category { border: 0.5px solid var(--line); border-radius: 4px; overflow: hidden; }
.cat-header {
  background: var(--warm-mid); padding: 1rem 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
  border-bottom: 0.5px solid var(--line);
}
.cat-icon { font-size: 1.1rem; }
.cat-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--cream); }
.price-table { width: 100%; border-collapse: collapse; }
.price-table tr { border-bottom: 0.5px solid var(--line); }
.price-table tr:last-child { border-bottom: none; }
.price-table td { padding: 0.9rem 1.5rem; font-size: 0.9rem; color: var(--cream); line-height: 1.4; }
.price-table td:last-child {
  text-align: right; font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; color: var(--rust); white-space: nowrap;
}

/* ── CONVENIENCE / DROP BOX SECTION ── */
.convenience-section { padding: 0 3rem 5rem; }
.convenience-block {
  border: 0.5px solid var(--line); border-radius: 4px;
  background: var(--warm-mid);
  padding: 2.75rem 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem 3rem;
  align-items: center;
}
.convenience-icon-col {
  grid-column: 1 / -1;
  display: flex; align-items: flex-start; gap: 1.75rem;
}
.convenience-icon {
  font-size: 2rem; flex-shrink: 0; margin-top: 0.2rem;
}
.convenience-body { flex: 1; }
.convenience-title {
  font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700;
  color: var(--cream); margin-bottom: 0.75rem; line-height: 1.2;
}
.convenience-text {
  font-size: 0.925rem; color: var(--stone); line-height: 1.75; margin-bottom: 0.75rem;
  max-width: 580px;
}
.convenience-note {
  font-size: 0.82rem; color: var(--stone); line-height: 1.6;
  border-top: 0.5px solid var(--line); padding-top: 0.75rem; margin-top: 0.75rem;
}
.convenience-note strong { color: var(--cream); font-weight: 500; }

/* ── GOOGLE REVIEWS WIDGET ── */
.reviews-summary {
  display: flex; align-items: center; gap: 1.5rem;
  margin-bottom: 2rem; flex-wrap: wrap;
}
.reviews-score {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 900; color: var(--cream); line-height: 1;
}
.reviews-score-right { display: flex; flex-direction: column; gap: 0.3rem; }
.reviews-stars { color: var(--rust); font-size: 1.1rem; letter-spacing: 2px; }
.reviews-count { font-size: 0.8rem; color: var(--stone); }
.reviews-write-link {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--rust); text-decoration: none;
  transition: opacity 0.2s;
}
.reviews-write-link:hover { opacity: 0.7; }
.google-reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.google-reviews-grid.has-widget {
  display: block; grid-template-columns: none; gap: 0;
  max-width: 1100px; margin-left: auto; margin-right: auto;
  /* Bright card so the Elfsight widget's dark heading text stays readable */
  background: var(--cream);
  padding: 1.75rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 18px rgba(0,0,0,0.18);
}
@media (max-width: 640px) {
  .google-reviews-grid.has-widget { padding: 1.25rem 0.9rem; }
}
.g-review-card {
  border: 0.5px solid var(--line); border-radius: 4px;
  padding: 1.5rem; background: rgba(58,46,36,0.2);
  display: flex; flex-direction: column; gap: 0.75rem;
}
.g-review-header { display: flex; align-items: center; gap: 0.75rem; }
.g-review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--warm-mid); border: 0.5px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 600; color: var(--cream);
  flex-shrink: 0; overflow: hidden;
}
.g-review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.g-review-name { font-size: 0.85rem; font-weight: 500; color: var(--cream); }
.g-review-date { font-size: 0.7rem; color: var(--stone); margin-top: 1px; }
.g-review-stars { color: var(--rust); font-size: 0.8rem; letter-spacing: 1px; }
.g-review-text {
  font-size: 0.85rem; color: var(--stone); line-height: 1.7;
  font-style: italic; flex: 1;
}
.reviews-loading {
  grid-column: 1/-1; text-align: center;
  font-size: 0.85rem; color: var(--stone); padding: 3rem 0;
}
.reviews-error {
  grid-column: 1/-1; text-align: center;
  font-size: 0.85rem; color: var(--stone); padding: 2rem 0; line-height: 1.7;
}

/* ── PAYMENT METHODS ── */
.payment-section { padding: 5rem 3rem 4rem; }
.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.payment-card {
  border: 0.5px solid var(--line); border-radius: 4px;
  padding: 1.5rem 1rem;
  background: rgba(58,46,36,0.2);
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}
.payment-card:hover { background: rgba(58,46,36,0.4); border-color: var(--stone); }
.payment-icon { font-size: 1.6rem; margin-bottom: 0.6rem; }
.payment-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem; font-weight: 700;
  color: var(--cream); margin-bottom: 0.25rem;
}
.payment-sub { font-size: 0.72rem; color: var(--stone); line-height: 1.4; }

/* ── REVIEWS PLACEHOLDER ── */
.reviews { padding: 5rem 3rem 4rem; }
.reviews-placeholder {
  border: 0.5px solid var(--line); border-radius: 4px;
  background: rgba(58,46,36,0.15);
  padding: 3.5rem 2rem; text-align: center;
  margin-top: 1.5rem;
}
.reviews-placeholder-icon { font-size: 2rem; margin-bottom: 1rem; opacity: 0.5; }
.reviews-placeholder-label {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--stone); margin-bottom: 0.5rem;
}
.reviews-placeholder-text {
  font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700;
  color: rgba(245,240,232,0.35); font-style: italic;
}

/* ── FINAL CTA SECTION ── */
.final-cta {
  margin: 0 3rem 5rem;
  border: 0.5px solid var(--line); border-radius: 4px;
  padding: 4rem 3rem;
  text-align: center;
  background: rgba(58,46,36,0.2);
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(184,74,30,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-eyebrow {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--rust); margin-bottom: 1rem;
}
.final-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 900;
  line-height: 1.1; color: var(--cream); margin-bottom: 1rem;
}
.final-cta-sub {
  font-size: 0.95rem; color: var(--stone); line-height: 1.7;
  max-width: 400px; margin: 0 auto 2.25rem;
}
.final-cta-btn {
  display: inline-flex; align-items: center; gap: 0.85rem;
  background: var(--rust); color: var(--cream); border: none;
  padding: 1.1rem 2.5rem; font-family: 'Barlow', sans-serif;
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; border-radius: 2px; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.final-cta-btn:hover { background: var(--rust-light); transform: translateY(-2px); }
.final-cta-btn svg { transition: transform 0.2s; }
.final-cta-btn:hover svg { transform: translateX(4px); }

/* ── LOCAL CULTURE SECTION ── */
.local-culture {
  padding: 5rem 3rem 4rem;
  /* Muted Portland skyline backdrop. Heavy dark overlay (weighted toward the
     top, where the title + intro sit) keeps every bit of text legible; the
     culture cards below are opaque, so they're unaffected regardless. */
  background-image:
    linear-gradient(180deg, rgba(26,20,16,0.95) 0%, rgba(26,20,16,0.90) 35%, rgba(26,20,16,0.85) 100%),
    url('/assets/portland.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.local-culture-intro {
  font-size: 1.05rem; color: var(--cream); line-height: 1.85;
  max-width: 900px; margin-bottom: 2.5rem;
}
.local-culture-intro strong { color: var(--rust); font-weight: 500; }
.culture-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1.5rem; margin-bottom: 3rem; max-width: 680px;
}
.culture-card {
  border: 0.5px solid var(--line); border-radius: 4px;
  background: var(--warm-mid); padding: 1.5rem 1.75rem;
  position: relative;
}
.culture-card-title {
  font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700;
  color: var(--cream); margin-bottom: 0.7rem; line-height: 1.3;
}
.culture-card-text { font-size: 1.08rem; color: var(--stone); line-height: 1.75; }
.culture-card-text strong { color: var(--cream); font-weight: 500; }
.neighborhood-list {
  border-top: 0.5px solid var(--line); padding-top: 2rem;
}
.neighborhood-list h3 {
  font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700;
  color: var(--cream); margin-bottom: 0.65rem;
}
.neighborhood-list p {
  font-size: 0.92rem; color: var(--stone); line-height: 1.8; max-width: 820px;
}
.neighborhood-list p strong { color: var(--cream); font-weight: 500; }
@media (max-width: 640px) {
  .local-culture { padding: 3.5rem 1.25rem 2.5rem; }
  .culture-card { padding: 1.5rem 1.5rem; }
}

/* ── MAP / VISIT US ── */
.map-section { padding: 0 3rem 5rem; }
.map-block {
  border: 0.5px solid var(--line); border-radius: 4px;
  background: var(--warm-mid); overflow: hidden;
}
.map-header {
  padding: 1.75rem 2.25rem 1.5rem;
  border-bottom: 0.5px solid var(--line);
}
.map-title {
  font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700;
  color: var(--cream); margin-bottom: 0.4rem; line-height: 1.3;
}
.map-address {
  font-size: 1.05rem; color: var(--stone); line-height: 1.6;
}
.map-address strong { color: var(--cream); font-weight: 500; }
.map-embed { position: relative; width: 100%; aspect-ratio: 16 / 9; background: var(--dark); }
.map-embed iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
  /* darken the map to match the site's warm-dark palette */
  filter: grayscale(0.4) brightness(0.85) contrast(1.05);
}
.map-dropbox {
  display: flex; align-items: flex-start; gap: 1.5rem;
  padding: 1.75rem 2.25rem 2rem;
  border-top: 0.5px solid var(--line);
}
.map-dropbox-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 0.1rem; }
.map-dropbox-body { flex: 1; }
.map-dropbox-title {
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700;
  color: var(--cream); margin-bottom: 0.55rem; line-height: 1.25;
}
.map-dropbox-text {
  font-size: 0.925rem; color: var(--stone); line-height: 1.75; margin-bottom: 0.75rem;
}
.map-dropbox-text strong { color: var(--cream); font-weight: 500; }
.map-dropbox-note {
  font-size: 0.82rem; color: var(--stone); line-height: 1.6;
  border-top: 0.5px solid var(--line); padding-top: 0.75rem; margin-top: 0.25rem;
}
.map-dropbox-note strong { color: var(--cream); font-weight: 500; }
@media (max-width: 640px) {
  .map-section { padding: 0 1.25rem 3.5rem; }
  .map-header { padding: 1.25rem 1.5rem 1.1rem; }
  .map-embed { aspect-ratio: 4 / 3; }
  .map-dropbox { flex-direction: column; gap: 1rem; padding: 1.5rem 1.5rem 1.75rem; }
}

/* ── FOOTER ── */
footer {
  border-top: 0.5px solid var(--line); padding: 2.5rem 3rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem 2rem;
  align-items: start;
}
.footer-col { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col-title {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--rust); margin-bottom: 0.35rem;
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; }
.footer-logo span { color: var(--rust); }
.footer-owner { font-size: 0.95rem; color: var(--cream); }
.footer-owner-sub { font-size: 0.78rem; color: var(--stone); opacity: 0.75; }
.footer-contact {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 1rem; color: var(--stone); text-decoration: none; transition: color 0.2s;
}
.footer-contact:hover { color: var(--cream); }
.footer-address { font-size: 1rem; color: var(--stone); line-height: 1.6; font-style: normal; }
.footer-copy {
  grid-column: 1 / -1;
  font-size: 0.72rem; color: var(--stone); opacity: 0.6;
  padding-top: 1.25rem; border-top: 0.5px solid var(--line);
}

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(28px); animation: fadeUp 0.7s ease forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.d1{animation-delay:0.1s;} .d2{animation-delay:0.2s;} .d3{animation-delay:0.35s;} .d4{animation-delay:0.5s;}

/* ── INNER PAGES ── */
.inner-page { min-height: 100vh; padding: 7rem 3rem 5rem; }
.back-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--stone);
  background: none; border: none; cursor: pointer; margin-bottom: 2.5rem;
  padding: 0; font-family: 'Barlow', sans-serif; transition: color 0.2s;
}
.back-btn:hover { color: var(--cream); }

/* ── PRICING PAGE ── */
.pricing-page-wrap { max-width: 860px; }

/* ── BOOKING PAGE ── */
.booking-header { margin-bottom: 3rem; }
.booking-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1; margin-bottom: 0.75rem;
}
.booking-header h2 em { font-style: italic; color: var(--rust); }
.booking-header p { font-size: 0.95rem; color: var(--stone); max-width: 440px; line-height: 1.7; }
.big-option-row { display: flex; gap: 1.5rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.big-option-btn {
  flex: 1; min-width: 200px; padding: 2rem 1.75rem;
  border: 0.5px solid var(--line); border-radius: 6px;
  background: transparent; color: var(--cream);
  cursor: pointer; text-align: left;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  font-family: 'Barlow', sans-serif;
}
.big-option-btn:hover { border-color: var(--stone); background: rgba(58,46,36,0.4); transform: translateY(-2px); }
.big-option-btn.selected { border-color: var(--rust); background: rgba(184,74,30,0.08); }
.big-opt-icon { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.big-opt-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--cream); }
.big-opt-desc { font-size: 0.83rem; color: var(--stone); line-height: 1.5; }
.big-opt-note { font-size: 0.75rem; color: var(--rust); margin-top: 0.6rem; line-height: 1.5; }
.booking-form-wrap {
  display: none;
}
.booking-form-wrap.open { display: block; }
.booking-form { max-width: 560px; padding-top: 0.5rem; }

/* ── DATE SCROLL PICKER ── */
.date-picker-wrap {
  display: flex; align-items: center; gap: 0.5rem;
  border: 0.5px solid var(--line); border-radius: 4px;
  background: rgba(58,46,36,0.2); padding: 0.75rem 0.5rem;
}
.date-nav {
  background: none; border: 0.5px solid var(--line); border-radius: 3px;
  color: var(--stone); font-size: 1.3rem; line-height: 1;
  width: 32px; height: 32px; cursor: pointer; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.date-nav:hover { color: var(--cream); border-color: var(--stone); background: rgba(140,123,107,0.12); }
.date-scroll {
  display: flex; gap: 6px; flex: 1; overflow: hidden; justify-content: space-between;
}
.date-chip {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: 3px; padding: 0.6rem 0.3rem;
  background: transparent; border: 0.5px solid var(--line); border-radius: 4px;
  color: var(--stone); cursor: pointer; font-family: 'Barlow', sans-serif;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  min-width: 0;
}
.date-chip:hover { background: rgba(140,123,107,0.12); border-color: var(--stone); color: var(--cream); }
.date-chip.selected { background: var(--rust); border-color: var(--rust); color: var(--cream); }
.date-chip-dow { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.date-chip-num { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; line-height: 1; }

/* ── TIME TILE PICKER ── */
.time-tiles {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-top: 0.25rem;
}
.time-tile {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 3px; padding: 1rem 1.25rem;
  background: rgba(58,46,36,0.2); border: 0.5px solid var(--line); border-radius: 4px;
  color: var(--cream); cursor: pointer; font-family: 'Barlow', sans-serif;
  font-size: 0.9rem; font-weight: 500; text-align: left;
  transition: background 0.15s, border-color 0.15s;
}
.time-tile span { font-size: 0.75rem; color: var(--stone); font-weight: 300; }
.time-tile:hover { background: rgba(140,123,107,0.12); border-color: var(--stone); }
.time-tile.selected { background: rgba(184,74,30,0.15); border-color: var(--rust); color: var(--cream); }
.time-tile.selected span { color: rgba(245,240,232,0.7); }
.form-row { margin-bottom: 1.25rem; }
.form-row label {
  display: block; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--stone); margin-bottom: 0.5rem;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%; background: transparent;
  border: 0.5px solid var(--line); border-radius: 2px;
  padding: 0.75rem 1rem; font-family: 'Barlow', sans-serif;
  font-size: 0.9rem; font-weight: 300; color: var(--cream);
  outline: none; transition: border-color 0.2s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--stone); }
.form-row select { appearance: none; cursor: pointer; }
.form-row select option { background: #2a2018; color: var(--cream); }
.form-row textarea { resize: vertical; min-height: 110px; }
.booking-notice {
  margin-top: 1.5rem; padding: 1rem 1.25rem;
  border: 0.5px solid var(--line); border-left: 3px solid var(--stone);
  border-radius: 2px; background: rgba(58,46,36,0.25);
  font-size: 0.83rem; color: var(--stone); line-height: 1.6;
}
.booking-notice strong { color: var(--cream); font-weight: 500; }
.form-error {
  margin-top: 1rem; padding: 0.85rem 1.1rem;
  border: 0.5px solid rgba(184,74,30,0.5); border-left: 3px solid var(--rust);
  border-radius: 2px; background: rgba(184,74,30,0.08);
  font-size: 0.85rem; color: #e07050; line-height: 1.5;
}
.submit-row { display: flex; align-items: center; gap: 1.5rem; margin-top: 2rem; flex-wrap: wrap; }
.submit-btn {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--rust); color: var(--cream); border: none;
  padding: 1rem 2rem; font-family: 'Barlow', sans-serif;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; border-radius: 2px; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.submit-btn:hover { background: var(--rust-light); transform: translateY(-1px); }
.or-call { font-size: 0.82rem; color: var(--stone); }
.or-call a { color: var(--cream); text-decoration: none; border-bottom: 0.5px solid var(--line); }
.or-call a:hover { border-color: var(--cream); }
.confirm-box {
  display: none; margin-top: 2rem; padding: 1.5rem 2rem;
  border: 0.5px solid rgba(140,123,107,0.4); border-left: 3px solid var(--rust);
  border-radius: 2px; background: rgba(58,46,36,0.5); max-width: 520px;
}
.confirm-box.show { display: block; }
.confirm-box p { font-size: 0.9rem; color: var(--stone); line-height: 1.6; }
.confirm-box p strong { color: var(--cream); }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .pricing-tables, .trust-cards, .google-reviews-grid { grid-template-columns: 1fr; }
  .photo-grid-preview { grid-template-columns: repeat(2,1fr); }
  body > nav { padding: 0 1.25rem; gap: 0.75rem; }
  .nav-tab { font-size: 0.7rem; padding: 0.4rem 0.6rem; }
  .convenience-block { padding: 2rem; }
  .final-cta { margin: 0 1.5rem 4rem; padding: 3rem 2rem; }
  .payment-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .hero { padding: 6rem 1.25rem 3rem; }
  .trust-section, .photo-preview, .services, .reviews,
  .payment-section, .convenience-section { padding-left: 1.25rem; padding-right: 1.25rem; }
  .divider { padding: 0 1.25rem; }
  footer { padding: 2rem 1.25rem; grid-template-columns: 1fr; gap: 1.5rem; }
  /* Larger NAP (name / address / phone) for easier reading on mobile */
  .footer-logo { font-size: 1.25rem; }
  .footer-owner { font-size: 1.05rem; }
  .footer-contact { font-size: 1.08rem; }
  .footer-address { font-size: 1.08rem; line-height: 1.65; }
  .map-address { font-size: 1.05rem; }
  .bg-word { font-size: 6rem; }
  .inner-page { padding: 6rem 1.25rem 4rem; }
  .payment-grid { grid-template-columns: repeat(2, 1fr); }
  .before-after-grid { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); }
  .big-option-row { flex-direction: column; }
  body > nav { height: auto; flex-wrap: wrap; padding: 0.55rem 1.25rem; row-gap: 0.35rem; }
  .nav-tabs { order: 3; flex-basis: 100%; justify-content: center; flex-wrap: wrap; gap: 0.1rem; }
  .nav-tab { font-size: 0.68rem; padding: 0.3rem 0.5rem; letter-spacing: 0.06em; }
  .final-cta { margin: 0 1.25rem 3.5rem; padding: 2.5rem 1.5rem; }
  .convenience-block { padding: 1.75rem 1.5rem; }
  .convenience-icon-col { flex-direction: column; gap: 1rem; }
  .date-chip-dow, .date-chip-num { font-size: 0.6rem; }
  .date-chip-num { font-size: 1rem; }
  .time-tiles { grid-template-columns: 1fr 1fr; }
}

/* ── DATE SCROLL PICKER ── */
.date-picker-wrap {
  display: flex; align-items: stretch; gap: 0;
  border: 0.5px solid var(--line); border-radius: 4px; overflow: hidden;
  background: rgba(58,46,36,0.2);
}
.date-nav {
  background: rgba(58,46,36,0.4); border: none; color: var(--stone);
  font-size: 1.5rem; padding: 0 0.9rem; cursor: pointer;
  transition: background 0.15s, color 0.15s; flex-shrink: 0;
  display: flex; align-items: center; line-height: 1;
}
.date-nav:hover { background: rgba(184,74,30,0.2); color: var(--cream); }
.date-scroll {
  display: flex; gap: 6px; overflow-x: auto; padding: 10px 8px;
  flex: 1; scroll-behavior: smooth; scrollbar-width: none;
}
.date-scroll::-webkit-scrollbar { display: none; }
.date-chip {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 3px;
  min-width: 58px; padding: 10px 6px; border-radius: 4px;
  border: 0.5px solid var(--line); background: transparent;
  cursor: pointer; font-family: 'Barlow', sans-serif;
  color: var(--stone); transition: background 0.15s, border-color 0.15s, color 0.15s;
  flex-shrink: 0;
}
.date-chip:hover { background: rgba(58,46,36,0.6); color: var(--cream); border-color: var(--stone); }
.date-chip.selected { background: var(--rust); border-color: var(--rust); color: var(--cream); }
.date-chip-dow { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; }
.date-chip-num { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; line-height: 1; }

/* ── BEFORE / AFTER ── */
.before-after-wrap { margin-top: 3rem; }
.before-after-label {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--rust); margin-bottom: 1.25rem;
}
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.25rem;
  align-items: center;
}
.ba-card {
  border: 0.5px solid var(--line); border-radius: 4px;
  overflow: hidden; background: rgba(58,46,36,0.15);
}
.ba-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4;
}
.ba-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
  filter: brightness(0.9) saturate(0.95);
  transition: transform 0.4s ease, filter 0.3s;
}
.ba-card:hover .ba-img-wrap img {
  transform: scale(1.03); filter: brightness(1) saturate(1.05);
}
.ba-badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 0.3rem 0.75rem;
  border-radius: 2px;
}
.ba-badge-before {
  background: rgba(26,20,16,0.8); color: var(--stone);
  border: 0.5px solid var(--line);
}
.ba-badge-after {
  background: var(--rust); color: var(--cream);
}
.ba-caption {
  padding: 0.9rem 1rem;
  font-size: 0.78rem; color: var(--stone); line-height: 1.6;
}
.ba-arrow {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ── TIME TILES ── */
.time-tiles {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.time-tile {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 3px; padding: 1rem 1.1rem; border-radius: 4px;
  border: 0.5px solid var(--line); background: rgba(58,46,36,0.2);
  cursor: pointer; font-family: 'Barlow', sans-serif;
  font-size: 0.92rem; font-weight: 500; color: var(--cream);
  transition: background 0.15s, border-color 0.15s; text-align: left;
}
.time-tile span { font-size: 0.75rem; color: var(--stone); font-weight: 300; }
.time-tile:hover { background: rgba(58,46,36,0.6); border-color: var(--stone); }
.time-tile.selected { background: var(--rust); border-color: var(--rust); }
.time-tile.selected span { color: rgba(245,240,232,0.75); }


/* ═══════════════════════════════════════════════════════════════════════
   PROSE / LONG-FORM CONTENT (About, FAQ, etc.)
   ═══════════════════════════════════════════════════════════════════════ */
.about-prose,
.faq-prose {
  max-width: 720px;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--cream);
}
.about-prose p,
.faq-prose p {
  margin-bottom: 1.4rem;
}
.about-prose strong,
.faq-prose strong {
  color: var(--cream);
  font-weight: 500;
}

/* FAQ */
.faq-category {
  margin-bottom: 3.5rem;
}
.faq-category-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1.5rem;
  padding-bottom: 0.6rem;
  border-bottom: 0.5px solid var(--line);
  letter-spacing: -0.01em;
}
.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 0.5px solid var(--line);
}
.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.faq-question {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.85rem;
  letter-spacing: -0.005em;
  line-height: 1.4;
}
.faq-answer {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--cream);
  opacity: 0.92;
}
.faq-answer p {
  margin-bottom: 1rem;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}
.faq-answer ol,
.faq-answer ul {
  margin: 0.85rem 0 1rem 1.5rem;
}
.faq-answer ol li,
.faq-answer ul li {
  margin-bottom: 0.55rem;
  line-height: 1.7;
}
.faq-answer strong {
  color: var(--cream);
  font-weight: 500;
}
.faq-answer a {
  color: var(--rust);
  text-decoration: none;
  border-bottom: 0.5px solid rgba(184,74,30,0.4);
  transition: border-color 0.15s;
}
.faq-answer a:hover {
  border-bottom-color: var(--rust);
}

@media (max-width: 600px) {
  .faq-category-title { font-size: 1.3rem; }
  .faq-question { font-size: 1.05rem; }
  .faq-answer { font-size: 0.92rem; }
}

/* ═══════════════════════════════════════════════════════════════════════
   OUR SERVICES — homepage section (between Our Work and the map)
   Alternating / zigzag layout: image and text swap sides each row.
   Editorial treatment (no boxed card) with the site's photo filter,
   Playfair titles, stone body, rust "Explore" link.
   ═══════════════════════════════════════════════════════════════════════ */
.services-section { max-width: 1080px; margin: 0 auto; padding: 4rem 3rem 1rem; }
.services-rows { display: flex; flex-direction: column; gap: 3.5rem; margin-top: 2.5rem; }
.service-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.75rem;
  align-items: center;
}
.service-row-media {
  border-radius: 8px; overflow: hidden; border: 0.5px solid var(--line);
}
.service-row-img {
  display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover;
  /* warm placeholder shows until the real category photo is dropped in */
  background: linear-gradient(135deg, #2b211a 0%, var(--warm-mid) 100%);
  filter: brightness(0.9) saturate(0.95); transition: filter 0.4s, transform 0.5s ease;
}
.service-row:hover .service-row-img { filter: brightness(1) saturate(1.1); transform: scale(1.04); }
.service-card-title {
  font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700;
  color: var(--cream); margin-bottom: 0.7rem; line-height: 1.2;
}
.service-card-text { font-size: 1rem; color: var(--stone); line-height: 1.75; }
.service-card-link {
  margin-top: 1.25rem;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--rust); display: inline-flex; align-items: center; gap: 0.4rem;
  transition: gap 0.2s, color 0.2s;
}
.service-card-link:hover { color: var(--rust-light); gap: 0.7rem; }

/* Alternate: even rows put the image on the right, text on the left */
.service-row:nth-child(even) .service-row-media { order: 2; }
.service-row:nth-child(even) .service-row-body  { order: 1; }

@media (max-width: 760px) {
  .services-section { padding: 2.5rem 1.25rem 0.5rem; }
  .services-rows { gap: 2.25rem; }
  .service-row { grid-template-columns: 1fr; gap: 1.1rem; }
  /* stack image on top for every row on mobile */
  .service-row:nth-child(even) .service-row-media,
  .service-row:nth-child(even) .service-row-body { order: 0; }
}

/* ═══════════════════════════════════════════════════════════════════════
   SERVICES SUBPAGES — hub / category / service scaffolding
   ═══════════════════════════════════════════════════════════════════════ */
.services-page { max-width: 900px; margin: 0 auto; padding: 8rem 3rem 5rem; min-height: 70vh; }
.breadcrumb {
  font-size: 0.78rem; letter-spacing: 0.04em; color: var(--stone);
  margin-bottom: 1.75rem; line-height: 1.8;
}
.breadcrumb a { color: var(--stone); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--rust); }
.breadcrumb span[aria-current] { color: var(--cream); }
.crumb-sep { color: var(--line); margin: 0 0.15rem; }
.scaffold-note { font-size: 1rem; color: var(--stone); line-height: 1.7; margin-bottom: 2rem; }
.scaffold-note a { color: var(--rust); }
.scaffold-note a:hover { color: var(--rust-light); }
.silo-links { list-style: none; display: grid; gap: 0.5rem; margin: 1.5rem 0 0; }
.silo-links li a {
  display: block; padding: 0.9rem 1.2rem;
  background: var(--warm-mid); border: 0.5px solid var(--line); border-radius: 6px;
  color: var(--cream); font-size: 1rem;
  transition: border-color 0.2s, transform 0.2s;
}
.silo-links li a:hover { border-color: rgba(184,74,30,0.5); transform: translateX(3px); }
.silo-back { margin-top: 2rem; font-size: 0.9rem; }
.silo-back a { color: var(--rust); }
.silo-back a:hover { color: var(--rust-light); }
@media (max-width: 760px) {
  .services-page { padding: 6rem 1.25rem 3.5rem; }
}

/* ═══════════════════════════════════════════════════════════════════════
   SERVICES — long-form category/service page content
   ═══════════════════════════════════════════════════════════════════════ */
.svc-content { max-width: 760px; }
.svc-content > p { font-size: 1.06rem; line-height: 1.85; color: rgba(245,240,232,0.80); margin-bottom: 1.3rem; }
.svc-content h2 {
  font-family: 'Playfair Display', serif; font-weight: 700; color: var(--cream);
  font-size: clamp(1.45rem, 2.6vw, 1.85rem); line-height: 1.2; margin: 2.8rem 0 0.9rem;
}
.svc-content h3 {
  font-family: 'Playfair Display', serif; font-weight: 700; color: var(--cream);
  font-size: 1.15rem; margin: 1.5rem 0 0.4rem;
}
.svc-content a {
  color: var(--rust); text-decoration: none;
  border-bottom: 1px solid rgba(184,74,30,0.35);
  transition: color 0.2s, border-color 0.2s;
}
.svc-content a:hover { color: var(--rust-light); border-bottom-color: var(--rust-light); }
.svc-content strong { color: var(--cream); font-weight: 500; }
.svc-cta { margin-top: 2.6rem; }
.svc-cta a {
  display: inline-block; background: var(--rust); color: var(--cream);
  padding: 0.85rem 1.7rem; border-radius: 2px; border-bottom: none;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  transition: background 0.2s;
}
.svc-cta a:hover { background: var(--rust-light); }
@media (max-width: 760px) {
  .svc-content > p { font-size: 1rem; }
}

/* ── Homepage: plain-text sharpening services link list ── */
.svc-link-list {
  list-style: none; margin-top: 1.5rem;
  columns: 3; column-gap: 2.5rem;
}
.svc-link-list li { margin-bottom: 0.75rem; break-inside: avoid; }
.svc-link-list a {
  color: rgba(245,240,232,0.82); font-size: 1rem; text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.svc-link-list a:hover { color: var(--rust); border-bottom-color: rgba(184,74,30,0.4); }
@media (max-width: 900px) { .svc-link-list { columns: 2; } }
@media (max-width: 560px) { .svc-link-list { columns: 1; } }

/* ── Homepage "What We Sharpen": prose + alternating photo rows ── */
.what-we-sharpen > p {
  max-width: 760px; font-size: 1.06rem; line-height: 1.85;
  color: rgba(245,240,232,0.80); margin-bottom: 1.3rem;
}
.what-we-sharpen a {
  color: var(--rust); text-decoration: none;
  border-bottom: 1px solid rgba(184,74,30,0.35);
  transition: color 0.2s, border-color 0.2s;
}
.what-we-sharpen a:hover { color: var(--rust-light); border-bottom-color: var(--rust-light); }
.svc-feature-rows { display: flex; flex-direction: column; gap: 2.5rem; margin: 2.25rem 0; }
.svc-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.svc-feature-media { border-radius: 8px; overflow: hidden; border: 0.5px solid var(--line); }
.svc-feature-media img {
  display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover;
  filter: brightness(0.92) saturate(0.95); transition: filter 0.4s, transform 0.5s ease;
}
.svc-feature:hover .svc-feature-media img { filter: brightness(1) saturate(1.05); transform: scale(1.02); }
.svc-feature-text p { margin: 0; font-size: 1.06rem; line-height: 1.85; color: rgba(245,240,232,0.80); }
.svc-feature:nth-child(even) .svc-feature-media { order: 2; }
.svc-feature:nth-child(even) .svc-feature-text { order: 1; }
@media (max-width: 760px) {
  .what-we-sharpen > p { font-size: 1rem; }
  .svc-feature { grid-template-columns: 1fr; gap: 1rem; }
  .svc-feature:nth-child(even) .svc-feature-media,
  .svc-feature:nth-child(even) .svc-feature-text { order: 0; }
  .svc-feature-text p { font-size: 1rem; }
}

/* ── Category page: clickable service boxes grid ── */
.svc-box-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 0.9rem; margin-top: 1.4rem;
}
.svc-box {
  display: block; padding: 1.1rem 1.2rem;
  background: var(--warm-mid); border: 0.5px solid var(--line); border-radius: 8px;
  transition: transform 0.2s, border-color 0.2s;
}
.svc-box:hover { transform: translateY(-3px); border-color: rgba(184,74,30,0.5); }
.svc-box-name {
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
  font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700;
  color: var(--cream); margin-bottom: 0.3rem; line-height: 1.25;
}
.svc-box-name svg { color: var(--rust); flex-shrink: 0; transition: transform 0.2s; }
.svc-box:hover .svc-box-name svg { transform: translateX(3px); }
.svc-box-desc { font-size: 0.85rem; color: var(--stone); line-height: 1.5; }
@media (max-width: 560px) { .svc-box-grid { grid-template-columns: 1fr; } }

/* ── All Services hub: category blocks ── */
.svc-cat-block { margin-top: 2.5rem; }
.svc-cat-head {
  font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700;
  color: var(--cream); margin-bottom: 1rem; padding-bottom: 0.6rem;
  border-bottom: 0.5px solid var(--line);
}
.svc-cat-head a { color: var(--cream); text-decoration: none; transition: color 0.2s; }
.svc-cat-head a:hover { color: var(--rust); }
.svc-cat-block .svc-box { padding: 0.85rem 1.1rem; }
.svc-cat-block .svc-box-name { margin-bottom: 0; font-size: 1rem; }

/* ── Inline service/category content photo ── */
.svc-photo { max-width: 430px; margin: 1.85rem auto; border-radius: 6px; overflow: hidden; border: 0.5px solid var(--line); background: rgba(58,46,36,0.15); }
.svc-photo img { width: 100%; height: auto; display: block; filter: brightness(0.94) saturate(0.97); }
.svc-photo figcaption { padding: 0.7rem 1rem; font-size: 0.78rem; color: var(--stone); line-height: 1.55; }
.svc-content + .before-after-wrap, .svc-content .before-after-wrap { margin-top: 2rem; }

/* ── GALLERY PAGE ── */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 10px; margin-top: 1.5rem;
}
@media (max-width: 560px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 7px; } }
