/*
Theme Name: Oak & Olive
Theme URI: https://oakandolive.com
Author: ZabMedia LLC
Description: Luxury artisan charcuterie — Naples, Florida
Version: 1.1.6
Text Domain: oak-and-olive
*/

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --olive-deep: #4A5240; --olive-mid: #6B7A5A; --sage: #8A9E72;
  --linen: #D4C9A8; --cream: #F5F0E8; --cream-dark: #EDE5D0;
  --ink: #1C1C1A; --ink-soft: #3A3A36; --white: #FDFCF9;
  --display: 'Playfair Display', Georgia, serif;
  --body: 'Cormorant Garamond', Georgia, serif;
  --ui: 'Jost', sans-serif;
}
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--cream); color: var(--ink); font-family: var(--body); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream-dark); }
::-webkit-scrollbar-thumb { background: var(--olive-mid); border-radius: 3px; }

/* ── HEADER ── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.6rem 4rem;
  transition: background .5s, padding .4s, backdrop-filter .5s;
}
/* Push header below WP admin bar when logged in */
.admin-bar #site-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar #site-header { top: 46px; } }
#site-header.scrolled {
  background: rgba(245,240,232,.95);
  backdrop-filter: blur(16px);
  padding: 1rem 4rem;
  box-shadow: 0 1px 0 rgba(74,82,64,.12);
}
.site-logo img {
  height: 68px; width: auto;
  filter: brightness(0) invert(1);
  transition: filter .4s ease;
}
#site-header.scrolled .site-logo img { filter: none; }

/* ── DESKTOP NAV ── */
.desktop-nav { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.desktop-nav a {
  font-family: var(--ui); font-size: .75rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.9);
  position: relative; padding-bottom: 3px;
  transition: color .3s;
}
.desktop-nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--sage);
  transition: width .35s ease;
}
.desktop-nav a:hover::after { width: 100%; }
#site-header.scrolled .desktop-nav a { color: var(--olive-mid); }
#site-header.scrolled .desktop-nav a:hover { color: var(--olive-deep); }

.nav-order-btn {
  font-family: var(--ui) !important; font-size: .75rem !important;
  font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--olive-deep) !important; background: var(--linen);
  padding: .75rem 1.8rem; display: inline-block; line-height: 1.4;
  transition: background .3s, color .3s;
}
.nav-order-btn:hover { background: var(--olive-deep) !important; color: var(--cream) !important; }
.nav-order-btn::after { display: none !important; }

/* ── HAMBURGER ── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; border: none; background: transparent; z-index: 1100;
}
.hamburger span { display: block; width: 26px; height: 2px; background: #fff; transition: all .35s; }
#site-header.scrolled .hamburger span { background: var(--olive-deep); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE OVERLAY ── */
#mobile-overlay {
  position: fixed; inset: 0; z-index: 999; background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .45s ease;
}
#mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav { list-style: none; text-align: center; }
.mobile-nav li { overflow: hidden; margin: 1.2rem 0; }
.mobile-nav a {
  font-family: var(--display); font-size: clamp(2rem,6vw,3.4rem);
  font-weight: 400; color: var(--cream); display: block;
  transform: translateY(60px); opacity: 0;
  transition: transform .5s ease, opacity .5s ease, color .3s;
}
#mobile-overlay.open .mobile-nav a { transform: translateY(0); opacity: 1; }
#mobile-overlay.open .mobile-nav li:nth-child(1) a { transition-delay: .08s; }
#mobile-overlay.open .mobile-nav li:nth-child(2) a { transition-delay: .15s; }
#mobile-overlay.open .mobile-nav li:nth-child(3) a { transition-delay: .22s; }
#mobile-overlay.open .mobile-nav li:nth-child(4) a { transition-delay: .29s; }
#mobile-overlay.open .mobile-nav li:nth-child(5) a { transition-delay: .36s; }
#mobile-overlay.open .mobile-nav li:nth-child(6) a { transition-delay: .43s; }
.mobile-nav a:hover, .mobile-nav a.order-highlight { color: var(--sage); }
.mobile-location {
  font-family: var(--ui); font-size: .68rem; letter-spacing: .25em;
  text-transform: uppercase; color: var(--olive-mid); margin-top: 2rem;
  opacity: 0; transition: opacity .5s .55s;
}
#mobile-overlay.open .mobile-location { opacity: 1; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .85s cubic-bezier(.22,1,.36,1), transform .85s cubic-bezier(.22,1,.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; } .reveal-d2 { transition-delay: .22s; }
.reveal-d3 { transition-delay: .36s; } .reveal-d4 { transition-delay: .5s; }

/* ── HERO ── */
.page-hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.inner-hero { height: 60vh; min-height: 420px; }
.page-hero-bg {
  position: absolute; inset: -10%;
  background-size: cover; background-position: center;
  animation: slowzoom 20s ease-in-out infinite alternate; will-change: transform;
}
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(28,28,26,.65) 0%, rgba(28,28,26,.72) 50%, rgba(28,28,26,.85) 100%);
}
@keyframes slowzoom { from { transform: scale(1); } to { transform: scale(1.08); } }

/* Fix: letterbox only at BOTTOM — top one removed to not cover nav */
.hero-letterbox { position: absolute; left: 0; right: 0; height: 5vh; background: var(--ink); z-index: 2; }
.hero-letterbox.top { top: 0; display: none; }
.hero-letterbox.bottom { bottom: 0; }

.page-hero-content { position: relative; z-index: 3; text-align: center; color: #fff; padding: 2rem; margin-top: 80px; }
.hero-eyebrow { font-family: var(--ui); font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: var(--linen); opacity: 0; animation: fadeUp .9s .4s forwards; }
.hero-title { font-family: var(--display); font-size: clamp(3rem,7vw,6.5rem); font-weight: 400; line-height: 1.04; margin: 1rem 0 .5rem; opacity: 0; animation: fadeUp .9s .7s forwards; }
.hero-title .amp { font-style: italic; color: var(--sage); }
.hero-sub { font-family: var(--body); font-size: clamp(1rem,1.8vw,1.25rem); font-weight: 300; font-style: italic; color: rgba(245,240,232,.82); margin-top: 1rem; opacity: 0; animation: fadeUp .9s 1.1s forwards; }
.hero-divider { width: 55px; height: 1px; background: var(--linen); margin: 1.6rem auto; opacity: 0; animation: fadeIn .9s 1.4s forwards; }
.hero-location { font-family: var(--ui); font-size: .66rem; letter-spacing: .25em; text-transform: uppercase; color: var(--linen); opacity: 0; animation: fadeUp .8s 1.6s forwards; }
.hero-scroll { position: absolute; bottom: 8vh; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: .5rem; opacity: 0; animation: fadeIn 1s 2s forwards; }
.hero-scroll span { font-family: var(--ui); font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--linen); }
.scroll-line { width: 1px; height: 40px; background: var(--linen); animation: scrollDrop 1.8s 2.3s ease-in-out infinite; }
@keyframes scrollDrop { 0% { transform: scaleY(0); transform-origin: top; opacity: 1; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; opacity: .3; } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }

/* ── SECTIONS ── */
section { padding: 7rem 4rem; }
.section-wrap { max-width: 1300px; margin: 0 auto; }
.section-eyebrow { font-family: var(--ui); font-size: .66rem; letter-spacing: .28em; text-transform: uppercase; color: var(--sage); margin-bottom: 1.2rem; display: block; }
.section-title { font-family: var(--display); font-size: clamp(1.9rem,3.5vw,3rem); font-weight: 400; line-height: 1.15; color: var(--ink); }
.section-title em { font-style: italic; color: var(--olive-mid); }
.section-body { font-family: var(--body); font-size: 1.12rem; font-weight: 300; line-height: 1.9; color: var(--ink-soft); max-width: 520px; }
.ornament { color: var(--sage); font-size: 1.1rem; letter-spacing: .5em; margin: 1rem 0; opacity: .5; }

/* ── INTRO BAND ── */
.intro-band { background: var(--ink); text-align: center; padding: 5rem 4rem; }
.intro-quote { font-family: var(--display); font-size: clamp(1.3rem,2.8vw,2.1rem); font-weight: 400; font-style: italic; line-height: 1.6; max-width: 760px; margin: 0 auto; color: var(--linen); }
.intro-quote span { color: var(--sage); font-style: normal; }
.intro-attr { font-family: var(--ui); font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--olive-mid); margin-top: 1.8rem; }

/* ── BUTTONS ── */
.btn-primary { font-family: var(--ui); font-size: .73rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--ink); background: var(--linen); padding: 1.1rem 2.8rem; border: none; cursor: pointer; display: inline-block; transition: background .3s, color .3s, transform .3s; }
.btn-primary:hover { background: var(--sage); color: #fff; transform: translateY(-2px); }
.btn-secondary { font-family: var(--ui); font-size: .73rem; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; color: var(--linen); background: transparent; padding: 1.1rem 2.8rem; border: 1px solid rgba(212,201,168,.38); display: inline-block; transition: border-color .3s, color .3s, transform .3s; }
.btn-secondary:hover { border-color: var(--sage); color: var(--sage); transform: translateY(-2px); }

/* ── ABOUT GRID ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; height: 540px; object-fit: cover; }
.about-img-accent { position: absolute; bottom: -2rem; right: -2rem; width: 140px; height: 140px; background: var(--olive-deep); z-index: -1; }
.about-img-tag { position: absolute; top: 2rem; left: -1.5rem; background: var(--linen); padding: 1rem 1.4rem; font-family: var(--display); font-size: .88rem; font-style: italic; color: var(--olive-deep); writing-mode: vertical-rl; transform: rotate(180deg); letter-spacing: .1em; }

/* ── GALLERY STRIP ── */
.gallery-strip { display: flex; height: 320px; overflow: hidden; }
.gallery-strip-item { flex: 1; overflow: hidden; position: relative; cursor: pointer; }
.gallery-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.22,1,.36,1), filter .6s; filter: brightness(.65) saturate(.8); }
.gallery-strip-item:hover img { transform: scale(1.08); filter: brightness(.25) saturate(.5); }
.gallery-strip-label {
  position: absolute; bottom: 1.5rem; left: 0; right: 0;
  text-align: center;
  font-family: var(--display); font-size: 1.1rem; font-weight: 400; font-style: italic;
  color: var(--white);
  opacity: 0; transform: translateY(10px);
  transition: opacity .4s, transform .4s;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.gallery-strip-item:hover .gallery-strip-label { opacity: 1; transform: translateY(0); }

/* ── CART SECTION ── */
.cart-section { background: var(--olive-deep); padding: 7rem 4rem; }
.cart-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; max-width: 1200px; margin: 0 auto; }
.cart-img { width: 100%; height: 500px; object-fit: cover; filter: brightness(.88); }
.cart-section .section-title { color: var(--cream); }
.cart-section .section-title em { color: var(--sage); }
.cart-section .section-eyebrow { color: var(--sage); }
.cart-section .section-body { color: rgba(212,201,168,.8); }
.cart-features { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.cart-features li { display: flex; gap: 1rem; align-items: flex-start; }
.feat-icon { color: var(--sage); font-size: 1rem; flex-shrink: 0; margin-top: 3px; }
.feat-txt { font-family: var(--body); font-size: 1rem; font-weight: 300; color: var(--linen); line-height: 1.7; }

/* ── EXPERIENCE ── */
.experience-section { background: var(--ink); padding: 7rem 4rem; }
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; max-width: 1200px; margin: 0 auto; align-items: center; }
.exp-list { list-style: none; margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.8rem; }
.exp-item { display: flex; gap: 1.4rem; align-items: flex-start; }
.exp-num { font-family: var(--display); font-size: 2rem; font-weight: 400; font-style: italic; color: var(--sage); line-height: 1; flex-shrink: 0; width: 2.5rem; text-align: right; }
.exp-text strong { display: block; font-family: var(--display); font-size: 1rem; font-weight: 500; color: var(--linen); margin-bottom: .25rem; }
.exp-text p { font-family: var(--body); font-size: .95rem; font-weight: 300; line-height: 1.75; color: rgba(212,201,168,.72); }
.exp-img { width: 100%; height: 500px; object-fit: cover; filter: brightness(.85) sepia(.1); }
.experience-section .section-title { color: var(--cream); }
.experience-section .section-title em { color: var(--sage); }
.experience-section .section-eyebrow { color: var(--sage); }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--cream); padding: 7rem 4rem; text-align: center; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.5rem; max-width: 1200px; margin: 3.5rem auto 0; }
.testimonial-card { padding: 2.5rem 2rem; border-top: 1px solid var(--linen); text-align: left; }
.t-stars { color: var(--sage); font-size: .85rem; letter-spacing: .1em; margin-bottom: 1rem; }
.t-text { font-family: var(--body); font-size: 1.05rem; font-weight: 300; font-style: italic; line-height: 1.78; color: var(--ink-soft); margin-bottom: 1.5rem; }
.t-name { font-family: var(--ui); font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--olive-mid); }

/* ── CTA ── */
.cta-section { background: var(--ink); padding: 8rem 4rem; text-align: center; }
.cta-section .section-eyebrow { color: var(--sage); }
.cta-section .section-title { color: var(--cream); }
.cta-section .section-title em { color: var(--sage); }
.cta-desc { font-family: var(--body); font-size: 1.1rem; font-weight: 300; font-style: italic; color: rgba(212,201,168,.78); max-width: 520px; margin: 1.5rem auto 3rem; line-height: 1.85; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── INSTAGRAM ── */
.instagram-section { background: var(--cream-dark); padding: 7rem 4rem; text-align: center; }
.instagram-feed-placeholder { max-width: 900px; margin: 2.5rem auto 0; background: var(--white); padding: 2.5rem; border: 1px solid var(--linen); }
.instagram-feed-placeholder p { font-family: var(--body); font-size: 1rem; color: var(--ink-soft); font-style: italic; margin-bottom: 1rem; }
.ig-code { background: var(--cream-dark); padding: .75rem 1.2rem; font-family: monospace; font-size: .82rem; color: var(--olive-deep); display: block; margin-top: .5rem; }
.instagram-handle { font-family: var(--ui); font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--sage); margin-top: 2rem; display: inline-block; }

/* ══════════════════════════════════════════════
   FOOTER CONTACT STRIP
══════════════════════════════════════════════ */
.footer-contact-strip {
  background: var(--olive-deep);
  padding: 4rem;
  border-top: 1px solid rgba(212,201,168,.12);
}
.footer-contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.fcs-creds-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.fcs-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--ui);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--linen);
}
.fcs-dot {
  color: rgba(212,201,168,.3);
  font-size: 1.2rem;
}
.fcs-contact-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(212,201,168,.12);
  border-bottom: 1px solid rgba(212,201,168,.12);
  width: 100%;
}
.fcs-contact-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  text-decoration: none;
  transition: opacity .3s;
}
.fcs-contact-link:hover { opacity: .7; }
.fcs-contact-lbl {
  font-family: var(--ui);
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sage);
}
.fcs-contact-val {
  font-family: var(--body);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--linen);
}
.fcs-vline {
  width: 1px;
  height: 36px;
  background: rgba(212,201,168,.2);
  flex-shrink: 0;
}
.fcs-area-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  text-align: center;
}
.fcs-area-lbl {
  font-family: var(--ui);
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sage);
}
.fcs-area-cities {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--linen);
  line-height: 1.7;
}
.fcs-area-travel {
  font-family: var(--ui);
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(212,201,168,.45);
}

@media (max-width: 960px) {
  .footer-contact-strip { padding: 3rem 1.5rem; }
  .fcs-contact-row { gap: 1.5rem; }
  .fcs-vline { display: none; }
  .fcs-contact-link { flex-direction: row; gap: .5rem; }
  .fcs-contact-lbl::after { content: ':'; }
}

/* ══════════════════════════════════════════════
   LUXURY SERVICE CATEGORY CARDS — HOMEPAGE
══════════════════════════════════════════════ */
.service-cats-wrap { padding: 7rem 0; background: var(--ink); }
.service-cats-header { text-align: center; padding: 0 4rem 4rem; }
.service-cats-header .section-eyebrow { color: var(--sage); }
.service-cats-header .section-title { color: var(--cream); }
.service-cats-header .section-title em { color: var(--sage); }

.service-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  background: var(--ink);
}
.scat-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 580px;
  transition: flex .6s cubic-bezier(.22,1,.36,1);
  display: block;
  text-decoration: none;
}
.scat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(28,28,26,.3) 40%,
    rgba(28,28,26,.85) 100%);
  z-index: 1;
  transition: background .5s;
}
.scat-card:hover::before {
  background: linear-gradient(to bottom,
    rgba(74,82,64,.2) 0%,
    rgba(28,28,26,.5) 40%,
    rgba(28,28,26,.92) 100%);
}
.scat-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s cubic-bezier(.22,1,.36,1), filter .6s;
  filter: saturate(.85) brightness(.9);
}
.scat-card:hover img {
  transform: scale(1.08);
  filter: saturate(1) brightness(.95);
}
.scat-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding: 2.5rem 2rem;
  text-align: center;
}
.scat-num {
  font-family: var(--display);
  font-size: 5rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(212,201,168,.12);
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  transition: color .5s;
  white-space: nowrap;
}
.scat-card:hover .scat-num { color: rgba(138,158,114,.25); }
.scat-divider {
  width: 30px; height: 1px; background: var(--sage);
  margin: 0 auto .8rem; opacity: 0;
  transform: scaleX(0);
  transition: opacity .4s .1s, transform .4s .1s;
}
.scat-card:hover .scat-divider { opacity: 1; transform: scaleX(1); }
.scat-title {
  font-family: var(--display);
  font-size: clamp(1.4rem,2vw,1.9rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: .4rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.scat-sub {
  font-family: var(--ui);
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--linen);
  opacity: .8;
}
.scat-cta {
  font-family: var(--ui);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: .8rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s .15s, transform .4s .15s;
}
.scat-card:hover .scat-cta { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════
   LUXURY SERVICE DETAIL PAGES
══════════════════════════════════════════════ */
.svc-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.svc-detail.reverse { direction: rtl; }
.svc-detail.reverse > * { direction: ltr; }
.svc-img-wrap { position: relative; overflow: hidden; }
.svc-img {
  width: 100%; height: 100%; min-height: 520px;
  object-fit: cover; display: block;
  transition: transform .9s cubic-bezier(.22,1,.36,1);
}
.svc-img-wrap:hover .svc-img { transform: scale(1.04); }
.svc-img-tag {
  position: absolute; bottom: 2rem; left: 2rem;
  font-family: var(--ui); font-size: .6rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--white); background: rgba(74,82,64,.85);
  padding: .5rem 1rem; backdrop-filter: blur(4px);
}
.svc-body {
  padding: 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--white);
  position: relative;
}
.svc-body::before {
  content: '';
  position: absolute;
  top: 4rem; left: 4rem; right: 4rem; bottom: 4rem;
  border: 1px solid var(--linen);
  pointer-events: none;
  opacity: .4;
}
.svc-body.dark { background: var(--olive-deep); }
.svc-body.dark::before { border-color: rgba(212,201,168,.2); }
.svc-body.dark .section-eyebrow { color: var(--sage); }
.svc-body.dark .section-title { color: var(--cream); }
.svc-body.dark .section-title em { color: var(--sage); }
.svc-body.dark .section-body { color: rgba(212,201,168,.82); max-width: 100%; }
.svc-body.cream { background: var(--cream-dark); }
.svc-body.cream::before { border-color: rgba(74,82,64,.15); }
.svc-separator { width: 40px; height: 2px; background: var(--sage); margin: 1.5rem 0; }

/* ── SERVICE CARDS (included items) ── */
.service-card { background: var(--white); padding: 2.5rem; border-left: 3px solid var(--linen); transition: border-color .3s, transform .4s; }
.service-card:hover { border-color: var(--sage); transform: translateY(-4px); }
.service-card h3 { font-family: var(--display); font-size: 1.2rem; font-weight: 500; color: var(--ink); margin-bottom: .8rem; }
.service-card p { font-family: var(--body); font-size: 1rem; font-weight: 300; line-height: 1.78; color: var(--ink-soft); }

/* ══════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════ */
.values-strip {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  background: var(--linen);
}
.value-block {
  background: var(--white);
  padding: 3.5rem 2.5rem;
}
.value-num {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--linen);
  line-height: 1;
  margin-bottom: 1rem;
}
.value-block h3 {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: .8rem;
}
.value-block p {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-soft);
}

/* ══════════════════════════════════════════════
   GALLERY PAGE
══════════════════════════════════════════════ */
.gallery-masonry { columns: 3; column-gap: 1rem; }
.gallery-item { break-inside: avoid; margin-bottom: 1rem; overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; display: block; transition: transform .6s ease, filter .5s; filter: brightness(.88); }
.gallery-item:hover img { transform: scale(1.04); filter: brightness(1); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-detail { display: flex; gap: 1.2rem; align-items: flex-start; margin-bottom: 1.5rem; }
.c-icon { color: var(--sage); font-size: 1.1rem; margin-top: 3px; flex-shrink: 0; }
.c-text { font-family: var(--body); font-size: 1rem; font-weight: 300; color: var(--ink-soft); line-height: 1.7; }
.c-text a { color: var(--olive-mid); transition: color .3s; }
.c-text a:hover { color: var(--olive-deep); }
.contact-form-wrap { background: var(--white); padding: 2.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-family: var(--ui); font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: var(--olive-mid); margin-bottom: .6rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: .85rem 1rem; background: var(--cream); border: 1px solid var(--linen); font-family: var(--body); font-size: 1rem; color: var(--ink); outline: none; transition: border-color .3s; border-radius: 0; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--sage); }
.form-group textarea { height: 150px; resize: vertical; }

/* ── GOOGLE FORM EMBED ── */
.google-form-wrap { background: var(--white); border: 1px solid var(--linen); }
.google-form-wrap iframe { display: block; width: 100%; border: none; min-height: 2400px; }
.form-embed-placeholder { padding: 4rem 2rem; text-align: center; border: 2px dashed var(--linen); }
.form-embed-placeholder h3 { font-family: var(--display); font-size: 1.4rem; color: var(--ink); margin: 1rem 0 .8rem; }
.form-embed-placeholder p { font-family: var(--body); font-size: 1rem; font-weight: 300; color: var(--ink-soft); line-height: 1.7; }
.form-embed-placeholder code { font-family: monospace; font-size: .85rem; background: var(--cream-dark); padding: .2rem .5rem; color: var(--olive-deep); }

/* ── FOOTER ── */
#site-footer { background: var(--ink); border-top: 1px solid rgba(212,201,168,.1); padding: 3rem 4rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo { font-family: var(--display); font-size: 1.05rem; font-weight: 500; font-style: italic; color: var(--linen); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-family: var(--ui); font-size: .63rem; letter-spacing: .18em; text-transform: uppercase; color: var(--olive-mid); transition: color .3s; }
.footer-links a:hover { color: var(--linen); }
.footer-copy { font-family: var(--ui); font-size: .62rem; letter-spacing: .1em; color: rgba(138,158,114,.5); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .service-cats { grid-template-columns: repeat(2,1fr); }
  .scat-card { height: 420px; }
}
@media (max-width: 960px) {
  section { padding: 5rem 1.5rem; }
  #site-header { padding: 1rem 1.5rem; }
  #site-header.scrolled { padding: .75rem 1.5rem; }
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
  .about-grid, .cart-grid, .exp-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-accent { display: none; }
  .svc-detail { grid-template-columns: 1fr; min-height: auto; }
  .svc-detail.reverse { direction: ltr; }
  .svc-img { min-height: 320px; height: 320px; }
  .svc-body { padding: 3rem 2rem; }
  .svc-body::before { inset: 1.5rem; }
  .service-cats { grid-template-columns: 1fr 1fr; }
  .scat-card { height: 360px; }
  .values-strip { grid-template-columns: 1fr; gap: 1px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .gallery-strip { height: 220px; }
  #site-footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .footer-links { justify-content: center; }
  .service-cats-wrap { padding: 5rem 0; }
  .service-cats-header { padding: 0 1.5rem 3rem; }
}
@media (max-width: 520px) {
  .service-cats { grid-template-columns: 1fr; }
  .scat-card { height: 320px; }
  .gallery-masonry { columns: 1; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ── SERVICE CARD TITLE FIX — much stronger visibility ── */
.scat-title {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.2vw, 2rem) !important;
  font-weight: 500 !important;
  color: #ffffff !important;
  text-shadow: 0 2px 12px rgba(0,0,0,.8), 0 0 40px rgba(0,0,0,.6) !important;
  margin-bottom: .5rem;
  letter-spacing: .02em;
}
.scat-sub {
  font-family: var(--ui);
  font-size: .68rem !important;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #ffffff !important;
  opacity: 1 !important;
  text-shadow: 0 1px 8px rgba(0,0,0,.9) !important;
  font-weight: 500 !important;
}
.scat-num {
  font-family: var(--display);
  font-size: 6rem !important;
  font-weight: 700 !important;
  font-style: italic;
  color: rgba(255,255,255,.25) !important;
  line-height: 1;
  position: absolute;
  top: 1rem; left: 50%;
  transform: translateX(-50%);
  text-shadow: 0 2px 20px rgba(0,0,0,.5);
  transition: color .5s;
  white-space: nowrap;
}
.scat-card:hover .scat-num { color: rgba(138,158,114,.5) !important; }
/* Darken overlay more so text always readable */
.scat-card::before {
  background: linear-gradient(to bottom,
    rgba(0,0,0,.2) 0%,
    rgba(0,0,0,.35) 35%,
    rgba(0,0,0,.85) 100%) !important;
}
.scat-card:hover::before {
  background: linear-gradient(to bottom,
    rgba(0,0,0,.3) 0%,
    rgba(0,0,0,.5) 35%,
    rgba(0,0,0,.92) 100%) !important;
}

/* ── GALLERY LIGHTBOX ── */
.gallery-lightbox {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .4s ease;
}
.gallery-lightbox.open { opacity: 1; pointer-events: all; }
.gallery-lightbox img {
  max-width: 90vw; max-height: 88vh;
  object-fit: contain; display: block;
  transform: scale(.94);
  transition: transform .45s cubic-bezier(.22,1,.36,1);
}
.gallery-lightbox.open img { transform: scale(1); }
.lb-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-family: var(--ui); font-size: .7rem; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.6);
  background: none; border: none; cursor: pointer;
  transition: color .3s; padding: .5rem;
}
.lb-close:hover { color: #fff; }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: #fff; font-size: 1.2rem; width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .3s; border-radius: 0;
}
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-prev:hover, .lb-next:hover { background: rgba(138,158,114,.3); }
.lb-counter {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  font-family: var(--ui); font-size: .62rem; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
}
.lb-caption {
  position: absolute; bottom: 3.5rem; left: 50%; transform: translateX(-50%);
  font-family: var(--body); font-size: 1rem; font-style: italic;
  color: rgba(212,201,168,.7); white-space: nowrap;
}

/* ── LUXURY GALLERY GRID ── */
.gallery-luxury {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 4px;
  width: 100%;
}
.gallery-luxury .gl-item {
  position: relative; overflow: hidden; cursor: pointer;
  background: var(--ink);
  display: block;
}
.gallery-luxury .gl-item.wide {
  grid-column: span 2;
}
.gallery-luxury .gl-item.tall {
  grid-row: span 2;
}
.gallery-luxury .gl-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s cubic-bezier(.22,1,.36,1), filter .5s;
  filter: brightness(.85) saturate(.9);
}
.gallery-luxury .gl-item:hover img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1);
}
.gl-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,28,26,.75) 0%, transparent 55%);
  opacity: 0; transition: opacity .4s;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 1.5rem;
}
.gl-item:hover .gl-overlay { opacity: 1; }
.gl-zoom {
  font-family: var(--ui); font-size: .65rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; color: var(--white);
}

@media (max-width: 960px) {
  .gallery-luxury {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
  }
  .gallery-luxury .gl-item.wide { grid-column: span 1; }
  .gallery-luxury .gl-item.tall { grid-row: span 1; }
}
@media (max-width: 520px) {
  .gallery-luxury {
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }
}

/* ── ACCESSIBILITY TOOLBAR — FULL REWRITE ── */
.oo-a11y-btn {
  position: fixed !important;
  bottom: 2rem !important;
  left: 2rem !important;
  z-index: 9998 !important;
  width: 52px !important; height: 52px !important;
  background: var(--olive-deep) !important;
  border: 2px solid rgba(212,201,168,.3) !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important; justify-content: center !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.3) !important;
  transition: background .3s, transform .3s !important;
  padding: 0 !important;
}
.oo-a11y-btn:hover { background: var(--olive-mid) !important; transform: scale(1.08) !important; }
.oo-a11y-panel {
  position: fixed !important;
  bottom: 6rem !important; left: 2rem !important;
  z-index: 9997 !important;
  width: 290px !important;
  background: var(--ink) !important;
  border: 1px solid rgba(212,201,168,.15) !important;
  box-shadow: 0 8px 40px rgba(0,0,0,.5) !important;
  transform: translateY(20px) scale(.96) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: transform .35s cubic-bezier(.22,1,.36,1), opacity .35s !important;
  display: block !important;
}
.oo-a11y-panel.open {
  transform: translateY(0) scale(1) !important;
  opacity: 1 !important;
  pointer-events: all !important;
}

@media (max-width: 960px) {
  .footer-contact-strip { padding: 3rem 1.5rem; }
  .fcs-contact { gap: 1rem; }
  .fcs-vdivider { display: none; }
  .gallery-luxury { grid-template-columns: repeat(2,1fr); }
  .gallery-luxury .gl-item.wide { grid-column: span 1; }
  .gallery-luxury .gl-item.tall { grid-row: span 1; }
  .gallery-luxury .gl-item img { min-height: 240px; }
}
@media (max-width: 520px) {
  .gallery-luxury { grid-template-columns: 1fr; }
}

/* ── ABOUT PULL QUOTE ── */
.about-pull-quote {
  margin-top: 2.5rem;
  padding: 2rem 2.5rem;
  border-left: 3px solid var(--sage);
  background: var(--cream-dark);
  position: relative;
}
.apq-mark {
  font-family: var(--display);
  font-size: 4rem;
  color: var(--sage);
  opacity: .3;
  position: absolute;
  top: -.5rem;
  left: 1.5rem;
  line-height: 1;
}
.about-pull-quote p {
  font-family: var(--body);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.85;
  color: var(--ink-soft);
  padding-left: 1rem;
}
.apq-attr {
  display: block;
  font-family: var(--ui);
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 1rem;
  padding-left: 1rem;
}

/* ── GOOGLE RATING BADGE ── */
.google-rating-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.2rem 2rem;
  background: var(--white);
  border: 1px solid var(--linen);
  max-width: 360px;
  margin: 3rem auto 0;
}
.grb-stars { color: #F4B400; font-size: 1rem; letter-spacing: .1em; }
.grb-text {
  font-family: var(--ui);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.grb-link {
  font-family: var(--ui);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage);
  text-decoration: none;
  transition: color .3s;
}
.grb-link:hover { color: var(--olive-deep); }

/* ══════════════════════════════════════════════
   MOBILE FIXES — v1.0.8
══════════════════════════════════════════════ */

/* Footer contact strip — mobile centered stack */
@media (max-width: 960px) {
  /* Contact strip items stack cleanly centered */
  .cta-contact-strip > div {
    flex-direction: column !important;
    align-items: center !important;
    gap: 1.5rem !important;
  }
  /* Hide vertical dividers on mobile */
  .cta-contact-strip span[style*="width:1px"] {
    display: none !important;
  }
  /* Each contact item centered */
  .cta-contact-strip a[style*="flex-direction:column"] {
    align-items: center !important;
    text-align: center !important;
  }
  /* Credentials row */
  .cta-contact-strip > div:first-child {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 1rem !important;
  }
}

/* Footer nav — prevent THE CART from breaking */
@media (max-width: 960px) {
  #site-footer {
    padding: 2rem 1rem;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
  }
  .footer-links li a {
    white-space: nowrap;
  }
  .footer-copy {
    text-align: center;
    width: 100%;
  }
  .footer-logo {
    width: 100%;
    text-align: center;
  }
}

/* Mobile menu — show all cities */
.mobile-location {
  font-family: var(--ui);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--olive-mid);
  margin-top: 2rem;
  text-align: center;
  padding: 0 2rem;
  line-height: 1.9;
  opacity: 0;
  transition: opacity .5s .55s;
}
#mobile-overlay.open .mobile-location { opacity: 1; }

/* Cart experience cards — single column on mobile */
@media (max-width: 960px) {
  /* Cart 3-column grid → single column */
  .cart-experiences-grid {
    grid-template-columns: 1fr !important;
  }
  /* Cart perfect-for 2-col → 1-col on small screens */
  .cart-perfect-grid {
    grid-template-columns: 1fr !important;
  }
  /* General 2-col and 3-col grids inside sections */
  section > div > div[style*="grid-template-columns:repeat(3"] {
    grid-template-columns: 1fr !important;
  }
  section > div > div[style*="grid-template-columns:repeat(2"] {
    grid-template-columns: 1fr !important;
  }
}

/* Active page in mobile nav */
.mobile-nav a.active-page {
  color: var(--sage) !important;
  position: relative;
}
.mobile-nav a.active-page::after {
  content: '·';
  position: absolute;
  right: -1rem;
  color: var(--sage);
}

/* Google form iframe responsive */
.google-form-wrap iframe {
  width: 100% !important;
  min-height: 1700px;
}
@media (max-width: 960px) {
  .google-form-wrap iframe {
    min-height: 2000px;
  }
  /* Contact grid single column */
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

/* Cart experience grids */
.cart-exp-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
  background: rgba(212,201,168,.08);
}
.cart-perf-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .cart-exp-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .cart-perf-grid {
    grid-template-columns: 1fr;
  }
  /* Fix large body font on mobile cards */
  .cart-exp-grid > div p {
    font-size: .95rem !important;
    line-height: 1.7 !important;
  }
  .cart-exp-grid > div h3 {
    font-size: 1.4rem !important;
  }
}

/* ── FOOTER CREDIT ── */
.footer-credit {
  background: var(--ink);
  border-top: 1px solid rgba(212,201,168,.08);
  padding: .75rem 4rem;
  text-align: center;
  font-family: var(--ui);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(138,158,114,.6);
}
.footer-credit a {
  color: rgba(138,158,114,.6);
  text-decoration: underline;
  transition: color .3s;
}
.footer-credit a:hover { color: var(--sage); }
@media (max-width: 960px) {
  .footer-credit { padding: .75rem 1.5rem; }
}
