/* ══════════════════════════════════════════════════════════
   SIMPLY HOME — SHARED DESIGN SYSTEM
   Applies to all pages. index.html also imports this.
══════════════════════════════════════════════════════════ */

/* Fonts are loaded via a single <link> in each page's <head> (Cormorant Garamond
   + Inter). The previous render-blocking @import was removed for performance — do
   NOT re-add it here. (The unused Herr Von Muellerhoff family was dropped 2026-07-11.) */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

:root {
  --forest:    #0D0F0A;
  --parchment: #F5F0E8;
  --gold:      #C9A96E;
  --pine:      #1C2118;
  --sage:      #8B9E88;
  --mist:      #2C3828;
  --gold-dim:  rgba(201,169,110,0.12);
  --gold-line: rgba(201,169,110,0.35);

  --display: 'Cormorant Garamond', Georgia, serif;
  --body:    'Inter', system-ui, -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 14px;
  --radius-sm: 10px;
  --gold-border: rgba(201,169,110,0.62);
  --highlight:   #D2CC78;  /* meadow gold — champagne with green undertone */
}

body {
  background: var(--forest);
  color: var(--parchment);
  font-family: var(--body);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.68;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--body); cursor: pointer; }

/* ── HEADING FONT INHERITANCE ── */
/* h2/h3 inherit Inter from body by default — force display font site-wide */
h1, h2, h3 { font-family: var(--display); }

/* ── TAP HIGHLIGHT ── */
* { -webkit-tap-highlight-color: rgba(0,0,0,0); }

/* ── FOCUS STYLES (keyboard navigation) ── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
:focus:not(:focus-visible) { outline: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--forest); }
::-webkit-scrollbar-thumb { background: var(--mist); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
* { scrollbar-width: thin; scrollbar-color: var(--mist) var(--forest); }

/* ── UTILITY ── */
.eyebrow {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.25vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: lowercase;
  text-shadow: 0 1px 8px rgba(13,15,10,0.95);
  padding-left: 1.6rem; /* tab-indent for section eyebrows (all breakpoints) */
}

.gold-line {
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-title {
  font-family: var(--display);
  font-size: clamp(2.2825rem, 3.95vw, 3.6825rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--parchment);
  margin-top: 0.8rem;
  padding-left: 1.6rem; /* tab-indent for section titles (all breakpoints) */
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: rgba(201, 169, 110, 0.25);
  color: var(--parchment);
  font-family: var(--body);
  font-size: 0.8425rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  border-radius: var(--radius);
  -webkit-appearance: none;
}
.btn-primary:hover { background: rgba(201, 169, 110, 0.75); transform: translateY(-1px); }
.btn-primary:focus-visible { outline: 2px solid var(--parchment); outline-offset: 3px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  background: rgba(201, 169, 110, 0.25);
  color: var(--parchment);
  font-family: var(--body);
  font-size: 0.8425rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  border-radius: var(--radius);
  -webkit-appearance: none;
}
.btn-ghost:hover { background: rgba(201, 169, 110, 0.75); transform: translateY(-1px); }
.btn-ghost:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.panel-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.865rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.25s;
}
.panel-arrow:hover { gap: 1.2rem; }

.panel-arrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s;
}
.panel-arrow:hover .panel-arrow-line { width: 48px; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  padding: 1.4rem 4vw;
  transition: background 0.4s, padding 0.4s;
}
nav.scrolled {
  background: rgba(13,15,10,0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 1rem 4vw;
  border-bottom: 1px solid transparent; border-image: linear-gradient(90deg, transparent, var(--gold), transparent) 1;
}
/* ── LOGO — monoline contrast wordmark ── */
.nav-logo {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: baseline;
  align-items: baseline;
  gap: 0.22em;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: filter 0.3s;
  filter: drop-shadow(0 0 6px rgba(201,169,110,0.07));
}
.nav-logo:hover { filter: brightness(1.15) drop-shadow(0 0 14px rgba(201,169,110,0.22)); }

/* SIMPLY — roman, slightly receded parchment */
.nav-logo strong {
  font-family: var(--display);
  font-size: 2.6rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.06em;
  color: rgba(245,240,232,0.8);
  line-height: 1;
  text-shadow: 0 0 24px rgba(245,240,232,0.10);
}

/* Home — bold italic gold, glowing */
.nav-logo span {
  font-family: var(--display);
  font-size: 2.9rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.1em;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 20px rgba(201,169,110,0.30);
}

/* Footer brand — center logo + motto as a unit */
.footer-brand {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
}
.footer-brand .nav-logo { margin-bottom: 1.6rem; opacity: 0.82; transition: opacity 0.3s, filter 0.3s; }
.footer-brand .nav-logo strong { font-size: 2.0rem; }
.footer-brand .nav-logo span { font-size: 2.2rem; }
.footer-brand .nav-logo:hover { opacity: 1; filter: brightness(1.12) drop-shadow(0 0 12px rgba(201,169,110,0.20)); }
.footer-brand .footer-contact {
  -webkit-align-self: center;
  align-self: center;
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--gold), transparent) 1;
  padding-top: 0.9rem;
}

.nav-links {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 2.4rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  transition: color 0.25s;
  white-space: nowrap;
}

/* Animated underline + distinct states — excludes the CTA button */
.nav-links a:not(.nav-cta) {
  position: relative;
  padding-bottom: 4px;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover: bright parchment + underline slides in */
.nav-links a:not(.nav-cta):hover {
  color: var(--parchment);
}
.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

/* Active (current page): gold + underline always visible */
.nav-links a.active {
  color: var(--gold);
}
.nav-links a.active::after {
  transform: scaleX(1);
  transition: none;
}

.nav-cta {
  padding: 0.55rem 1.4rem;
  background: rgba(201, 169, 110, 0.25);
  border: 2px solid var(--gold);
  color: var(--parchment) !important;
  transition: all 0.2s;
  border-radius: var(--radius-sm);
}
.nav-cta:hover { background: rgba(201, 169, 110, 0.75); color: var(--parchment) !important; border-color: var(--gold); }
.nav-left { display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; gap: 3.5rem; }
.nav-instagram { display: -webkit-inline-flex; display: inline-flex; -webkit-align-items: center; align-items: center; gap: 0.45rem; color: var(--sage); opacity: 0.8; transition: color 0.2s, opacity 0.2s; flex-shrink: 0; padding-right: 1.25rem; }
.nav-instagram:hover { color: var(--gold); opacity: 1; }
.nav-right {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 2rem;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

/* ── SKIP TO CONTENT (a11y) ── */
.skip-link {
  position: absolute; left: 0; top: 0;
  transform: translateY(-120%);
  background: var(--gold); color: var(--forest);
  padding: 0.7rem 1.2rem; font-family: var(--body); font-weight: 600;
  font-size: 0.85rem; letter-spacing: 0.04em;
  border-radius: 0 0 var(--radius-sm) 0; z-index: 1000;
  transition: transform 0.2s;
}
.skip-link:focus { transform: translateY(0); outline: 2px solid var(--forest); outline-offset: -4px; }

/* ── NAV COLLAPSE WRAPPER + HOVER DROPDOWN ── */
.nav-menu-wrap {
  display: none; /* hidden on desktop; shown at collapse breakpoint */
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 190px;
  background: rgba(13,15,10,0.98);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
  padding: 0.4rem 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out);
  z-index: 300;
}
/* Desktop (mouse/keyboard): reveal on hover/focus. Gated to hover-capable
   devices so touch doesn't get a sticky-hover that fights the click toggle. */
@media (hover: hover) {
  .nav-menu-wrap:hover .nav-dropdown,
  .nav-menu-wrap:focus-within .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
/* Touch / all devices: reveal when the hamburger toggles .menu-open. */
.nav-menu-wrap.menu-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 0.65rem 1.3rem;
  font-family: var(--body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.nav-dropdown a:hover { color: var(--parchment); background: rgba(201,169,110,0.07); }
.nav-dropdown a.nav-dropdown-cta {
  color: var(--gold);
  border-top: 1px solid transparent; border-image: linear-gradient(90deg, transparent, var(--gold), transparent) 1;
  margin-top: 0.3rem;
}
.nav-dropdown a.nav-dropdown-cta:hover { color: var(--parchment); }

.nav-hamburger {
  display: none;
  -webkit-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  margin: -8px;
  min-width: 44px;
  min-height: 44px;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--parchment);
  transition: all 0.3s;
  pointer-events: none;
}

/* (Mobile-menu overlay removed — the nav now collapses to the .nav-dropdown
   hover/click menu. No full-screen overlay markup or styles remain.) */

/* ── PAGE HERO (interior pages) ── */
.page-hero {
  position: relative;
  padding-top: calc(14rem + 82px);
  padding-right: 4vw;
  padding-bottom: 7rem;
  padding-left: 4vw;
  overflow: hidden;
  overflow: clip;
  background: var(--pine);
  border-bottom: 1px solid transparent; border-image: linear-gradient(90deg, transparent, var(--gold), transparent) 1;
  margin-top: 0;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero);
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
/* Phones/small tablets get the ~1000px hero variant (roughly a quarter the
   bytes). Pages set --hero / --hero-m inline; --hero-m is optional. */
@media (max-width: 768px) {
  .page-hero-bg {
    background-image: var(--hero-m, var(--hero));
  }
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,15,10,0.55) 0%,
    rgba(13,15,10,0.45) 40%,
    rgba(13,15,10,0.65) 75%,
    rgba(13,15,10,0.92) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.page-hero .eyebrow { font-size: clamp(1.2rem, 2.5vw, 2.3rem); color: var(--gold); }
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(1.985rem, 4.19vw, 3.86rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--parchment);
  margin: 0.8rem 0 1.4rem;
  text-shadow: 0 2px 24px rgba(13,15,10,0.9), 0 1px 4px rgba(13,15,10,0.7);
}
.page-hero p {
  font-size: 1.0625rem;
  color: var(--sage);
  line-height: 1.8;
  max-width: 520px;
  text-shadow: 0 1px 8px rgba(13,15,10,0.95);
}
.page-hero-divider { margin: 1.4rem 0; max-width: 180px; }

/* ── LEGAL / SITEMAP PAGE HERO + CONTENT ──
   Shared by privacy.html, terms.html, sitemap.html (was ~100 lines of identical
   inline CSS duplicated across the three). The centered hero variant is scoped
   behind the .page-hero-legal MODIFIER so it never affects the other pages'
   left-aligned .page-hero. Declared after the base .page-hero above so its
   same-specificity overrides (padding/text-align) win. */
.page-hero.page-hero-legal {
  padding: 9rem 4vw 6rem;
  background: var(--pine);
  border-bottom: 1px solid transparent; border-image: linear-gradient(90deg, transparent, var(--gold), transparent) 1;
  text-align: center;
}
.page-hero-legal .eyebrow { margin-bottom: 1rem; }
.page-hero-title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--parchment);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.page-hero-sub {
  font-size: 1rem;
  color: var(--sage);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 4vw;
  color: var(--sage);
  line-height: 1.85;
}
.legal-content h2 {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--parchment);
  margin: 3rem 0 1rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 1rem; font-size: 0.95rem; }
.legal-content a { color: var(--gold); text-decoration: underline; }
.legal-content ul { margin: 0.5rem 0 1rem 1.5rem; }
.legal-content ul li { margin-bottom: 0.4rem; font-size: 0.95rem; }

/* ── SECTION DIVIDERS — gold gradient line at every section boundary ── */
section:not(.page-hero),
footer {
  position: relative;
}
section:not(.page-hero)::before,
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  pointer-events: none;
  z-index: 2;
}

/* ── FOOTER ── */
footer {
  background: var(--pine);
  padding: 5rem 4vw 3rem;
}
@media (max-width: 640px) {
  footer { padding: 2.6rem 5vw 1.6rem; }
  .footer-signup { margin-bottom: 1.7rem; padding-bottom: 1.7rem; }
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4vw;
  margin-bottom: 4rem;
}
/* .footer-brand .nav-logo sizing is handled in the logo section above */
.footer-contact {
  font-size: 0.78rem;
  color: var(--sage);
  line-height: 1.75;
  display: -ms-grid;
  display: grid;
  grid-template-columns: auto auto;
  /* Centre the two tracks as a pair on the page… */
  -webkit-justify-content: center;
  justify-content: center;
  /* …centre each column's contents within its own track… */
  justify-items: center;
  /* …and centre the phone block against the address block vertically. */
  -webkit-align-items: center;
  align-items: center;
  column-gap: 1.5rem;
  text-align: center;
  margin-top: 1.2rem;
}
/* Email sits on its own row, centred under both columns. */
.footer-contact .footer-email { grid-column: 1 / -1; }
.footer-contact a:hover { color: var(--gold); }
.footer-contact > div, .footer-phones > div { white-space: nowrap; }
/* Address lines stack in column 1 */
.footer-contact > div:first-child { grid-column: 1; grid-row: 1; }
.footer-contact > div:nth-child(2) { grid-column: 1; grid-row: 2; }
/* Phones sit in column 2, vertically centered against the address */
.footer-phones {
  grid-column: 2;
  grid-row: 1 / 3;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  /* Was flex-start, which top-aligned the phones against a two-line address
     block and left "Office:" sitting high. Centre them instead. */
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  margin-top: 0;
}
.footer-bottom {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid transparent; border-image: linear-gradient(90deg, transparent, var(--gold), transparent) 1;
  gap: 1rem;
}
.footer-copy { font-size: 0.7825rem; letter-spacing: 0.1em; color: var(--sage); }
.footer-email { grid-column: 1 / -1; font-size: 0.7825rem; letter-spacing: 0.07em; color: var(--sage); text-align: center; transition: color 0.2s; margin-top: 0.5rem; }
.footer-email:hover { color: var(--gold); }

/* ── FOOTER SIGNUP (inline email capture — replaces the old slide-up popup) ── */
.footer-signup { text-align: center; max-width: 460px; margin: 0 auto 1rem; }
.footer-signup-eyebrow { font-family: var(--display); font-style: italic; font-size: 1.55rem; font-weight: 600; color: var(--gold); letter-spacing: 0.03em; margin-bottom: 0.4rem; }
.footer-signup-text { font-size: 0.7rem; color: var(--sage); letter-spacing: 0.02em; white-space: nowrap; margin-bottom: 0.35rem; }
.footer-signup-form { display: block; }
.footer-signup-input { width: 100%; padding: 0.72rem 0.95rem; background: var(--forest); border: 1px solid var(--gold-line); border-radius: var(--radius-sm); color: var(--parchment); font-family: var(--body); font-size: 16px; outline: none; transition: border-color 0.18s; -webkit-appearance: none; margin-bottom: 1.15rem; }
.footer-signup-input::placeholder { color: rgba(139,158,136,0.7); }
.footer-signup-input:focus { border-color: var(--gold); }
.footer-signup-note { font-size: 0.7rem; color: var(--sage); text-align: center; line-height: 1.5; }
.footer-signup-btn { justify-self: center; padding: 0.72rem 1.6rem; background: rgba(201, 169, 110, 0.25); color: var(--parchment); border: 2px solid var(--gold); border-radius: var(--radius-sm); font-family: var(--body); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.11em; text-transform: uppercase; cursor: pointer; white-space: nowrap; transition: background 0.18s; }
.footer-signup-btn:hover { background: rgba(201, 169, 110, 0.75); }
.footer-signup-btn:disabled { opacity: 0.6; cursor: default; }
.footer-signup-msg { font-size: 0.82rem; margin-top: 0.7rem; min-height: 1.1em; }
.footer-signup-msg.ok { color: var(--parchment); font-family: var(--display); font-style: italic; font-size: 1.05rem; }
.footer-signup-msg.err { color: #cf9a86; }
.footer-legal { display: -webkit-flex; display: flex; gap: 1.6rem; }
.footer-legal a { font-size: 0.7825rem; letter-spacing: 0.1em; color: var(--sage); transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }

/* ── FORM CONTROLS (shared) ── */
.form-label {
  display: block;
  font-size: 0.7625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--forest);
  border: 1px solid var(--gold-line);
  color: var(--parchment);
  font-family: var(--body);
  font-size: 16px; /* 16px min prevents iOS Safari focus-zoom */
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: var(--radius-sm);
}
.form-control:focus { border-color: var(--gold); }
.form-control option { background: var(--forest); color: var(--parchment); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
/* Mid-width: tighten the Instagram divider padding so the flat nav links stay
   comfortable down to ~1100px instead of cramping in the 1100–1260px range. */
@media (max-width: 1260px) {
  .nav-instagram { padding-right: 1rem; }
}
/* Once even the icon-only nav runs out of room, collapse the flat nav into the
   hamburger + hover/focus dropdown. */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-menu-wrap { display: block; }
  .nav-hamburger { display: -webkit-flex; display: flex; }
  /* Collapsed: the Instagram icon sits beside the hamburger — drop its divider + padding */
  .nav-instagram { border-right: none; padding-right: 0; }
}
@media (max-width: 768px) {

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

  /* Contact column is short blocks — center the whole thing on mobile so the
     heading, phone, hours, and email line up down the middle */
  .contact-info { text-align: center; }

}
@media (max-width: 640px) {
  /* Nav: keep the Instagram icon (handle text already dropped at 1260px); tighten padding */
  nav { padding: 1rem 4vw; }

  /* Footer bottom row: stack on small screens */
  .footer-bottom {
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
  }
  .footer-legal { gap: 1.2rem; }

  /* Footer contact stays a 2-up (address | phones) grid on mobile too */

}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 10rem 5vw 4rem; }
  .page-hero h1 { font-size: clamp(1.52rem, 6.74vw, 2.05rem); }

  /* Scale logo down at very narrow screens, tighten nav further */
  nav { padding: 0.75rem 3vw; }
  .nav-logo strong { font-size: 1.75rem; }
  .nav-logo span { font-size: 1.95rem; }
}

/* ── ACCESSIBILITY ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ── SERVICE PAGE SHARED COMPONENTS ── */
/* Authoritative styles for cleaning, maintenance, residence-inspections,
   property-liaison, design, concierge — and related-services on property-management */

.service-detail {
  padding: 9rem 4vw;
  background: var(--pine);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: start;
}
.service-detail-text .section-title { margin-top: 0.8rem; margin-bottom: 1.6rem; }
.service-intro { font-size: 1.1rem; color: var(--sage); line-height: 1.9; margin-bottom: 2.5rem; }
.service-features { display: flex; flex-direction: column; gap: 2rem; }
.service-feature { padding-bottom: 2rem; border-bottom: 1px solid transparent; border-image: linear-gradient(90deg, transparent, var(--gold), transparent) 1; }
.service-feature:last-child { border-bottom: none; padding-bottom: 0; }
.service-feature-title {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: 0.5rem;
}
.service-feature-body { font-size: 0.99rem; color: var(--sage); line-height: 1.8; }
.service-cta-box {
  background: var(--forest);
  border: 1.5px solid var(--gold-line);
  border-radius: var(--radius);
  padding: 3rem;
}
.service-cta-box a[href^="tel"],
.service-cta-box a[href^="mailto"] { color: var(--parchment); transition: color 0.2s; }
.service-cta-box a[href^="tel"]:hover,
.service-cta-box a[href^="mailto"]:hover { color: var(--gold); }
.service-cta-box h3 {
  font-family: var(--display);
  font-size: 1.8625rem;
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: 1rem;
}
.service-cta-box p { font-size: 0.9425rem; color: var(--sage); line-height: 1.8; margin-bottom: 2rem; }

/* ── RELATED SERVICES GRID ── */
.related-services { padding: 8rem 4vw; background: var(--forest); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.related-cell {
  background: var(--pine);
  border: 2px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  overflow: hidden;
  transition: background 0.3s;
}
.related-cell:hover { background: var(--mist); }
.related-cell-icon {
  display: block;
  width: 30px;
  height: 30px;
  margin-bottom: 1.3rem;
  color: var(--gold);
  opacity: 0.85;
}
.related-cell-icon svg { width: 100%; height: 100%; display: block; }
.related-cell-name {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--parchment);
  margin: 0 0 0.4rem;
}
.related-cell-desc { font-size: 0.92rem; color: var(--sage); line-height: 1.75; }
.related-cell-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1rem;
  display: inline-block;
}

/* Service page responsive breakpoints */
@media (max-width: 1024px) {
  .service-detail { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .service-detail { padding: 4.5rem 5vw; }
  .related-services { padding: 4rem 5vw; }
}
@media (max-width: 640px) { .related-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) {
  .service-detail { padding: 3rem 5vw; }
  .related-services { padding: 3rem 5vw; }
}

/* ── MOBILE RICH+TIGHT (site-wide) — cut content-section padding + compact service/related cards ── */
@media (max-width: 768px) {
  main section:not(.page-hero):not(.hero):not(.dual-cta) { padding-top: 3rem; padding-bottom: 3rem; }
  /* Related services: compact 2-up tiles instead of tall stacked boxes */
  .related-grid { grid-template-columns: 1fr 1fr; gap: 0.7rem; margin-top: 2rem; }
  .related-cell { padding: 1.3rem 1.05rem; }
  .related-cell-name { font-size: 1.18rem; margin: 0 0 0.35rem; line-height: 1.15; }
  .related-cell-desc { font-size: 0.8rem; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  .related-cell-link { font-size: 0.68rem; margin-top: 0.7rem; }
  /* Service feature list + CTA box: tighter */
  .service-features { gap: 1.2rem; }
  .service-feature { padding-bottom: 1.2rem; }
  .service-cta-box { padding: 1.9rem 1.5rem; }
  .service-intro { font-size: 1rem; margin-bottom: 1.6rem; }
}
@media (max-width: 480px) {
  main section:not(.page-hero):not(.hero):not(.dual-cta) { padding-top: 2.2rem; padding-bottom: 2.2rem; }
  .related-grid { gap: 0.55rem; }
  .related-cell { padding: 1.15rem 0.9rem; }
}

/* ── CROSS-PAGE UTILITIES ── */
/* Applied where page-local styles don't set these properties — no conflicts */
.owner-feature-icon { border-radius: var(--radius-sm); }
.owner-img-main { border-radius: var(--radius); display: block; }
.owner-img-card { border-radius: var(--radius-sm); }

/* ── PHOTO OVERLAY / BORDER ── */
/* Gradient fade on content/decorative photos (NOT heroes, NOT listing cards) */
.photo-overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  border-radius: var(--radius);
  pointer-events: none;
  background: linear-gradient(to top, rgba(13,15,10,0.80) 0%, rgba(13,15,10,0.40) 35%, rgba(13,15,10,0.10) 62%, rgba(13,15,10,0) 82%);
  z-index: 1;
}
/* Gold border ring rendered above the gradient overlay */
.photo-border {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  border: 3px solid var(--gold-border);
  border-radius: var(--radius);
  pointer-events: none;
  z-index: 2;
}

/* ── TEXT SELECTION ── */
::selection { background: var(--gold); color: var(--forest); }
::-moz-selection { background: var(--gold); color: var(--forest); }

/* ── GOOGLE REVIEWS BAND (Simply Home *company* reviews — /api/google-reviews) ──
   Self-contained component (no dependency on page-local review styles) so it can
   drop onto any page. Company-level reviews only; property reviews live on the
   vacation-rentals modal cards. */
.gband { border-top: 1px solid transparent; border-image: linear-gradient(90deg, transparent, var(--gold), transparent) 1; padding: 4rem 4vw 4.5rem; max-width: 1200px; margin: 0 auto; }
.gband-head { text-align: center; margin-bottom: 2rem; }
.gband-eyebrow { font-family: var(--body); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sage); margin: 0 0 0.7rem; }
.gband-rating { display: inline-flex; align-items: baseline; gap: 0.55rem; }
.gband-score { font-family: var(--display); font-size: 2.6rem; font-weight: 600; color: var(--parchment); line-height: 1; }
.gband-stars { color: var(--sage); font-size: 1.15rem; letter-spacing: 0.05em; }
.gband-stars .on { color: var(--gold); }
.gband-count { display: block; font-size: 0.8rem; color: var(--sage); margin-top: 0.75rem; }
.gband-count a { color: var(--gold); text-decoration: none; }
.gband-count a:hover { text-decoration: underline; }
.gband-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1rem; }
.gband-card { background: var(--pine); border: 1px solid var(--gold-line); border-radius: var(--radius-sm); padding: 1rem 1.15rem; }
.gband-card-head { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; margin-bottom: 0.5rem; }
.gband-card-stars { color: var(--sage); font-size: 0.82rem; letter-spacing: 0.04em; }
.gband-card-stars .on { color: var(--gold); }
.gband-when { font-size: 0.72rem; color: var(--sage); white-space: nowrap; }
.gband-text { font-size: 0.86rem; color: rgba(245, 240, 232, 0.82); line-height: 1.6; margin: 0; }
.gband-author { font-size: 0.8rem; font-weight: 600; color: var(--parchment); margin: 0.6rem 0 0; }
.gband-author .via { font-weight: 400; color: var(--sage); font-size: 0.72rem; }
@media (max-width: 640px) { .gband-grid { grid-template-columns: 1fr; } }

/* ── END OF SHARED.CSS ── */
