/* ============================================================
   Snoqualmie Ridge Office Suites — Stylesheet
   ============================================================
   This file holds ALL visual design.
   - Colors, fonts, and spacing are defined as CSS variables
     at the top (:root and [data-direction="ridge"]) so they can
     be changed in ONE place.
   - Sections below are clearly commented and follow the
     same order as index.html.
   ============================================================ */


/* ============================================================
   DESIGN TOKENS — Direction A: "Meadow" (default, light + airy)
   ============================================================ */
:root {
  /* Surfaces */
  --bg:           #f5f2ea;   /* page background (warm cream) */
  --surface:      #ffffff;   /* card / form surface */
  --surface-alt:  #ebe6d8;   /* secondary section background */
  --surface-dark: #1f2e1c;   /* deep forest (for contrast sections) */

  /* Ink */
  --ink:          #232b1e;
  --ink-muted:    #6b7268;
  --ink-onDark:   #f3efe4;
  --ink-onDarkMuted: #a8b0a3;

  /* Brand */
  --primary:      #2ea84a;   /* brand green from logo */
  --primary-deep: #1f6b30;
  --primary-soft: #e0eddd;
  --accent:       #a16c3a;   /* warm walnut */

  /* Borders */
  --border:       #ddd6c4;
  --border-soft:  rgba(35,43,30,0.08);

  /* Shadows */
  --shadow-sm:    0 1px 2px rgba(35,43,30,0.04), 0 2px 8px rgba(35,43,30,0.04);
  --shadow-md:    0 4px 12px rgba(35,43,30,0.06), 0 16px 40px rgba(35,43,30,0.08);

  /* Radius */
  --radius-sm:    6px;
  --radius:       10px;
  --radius-lg:    14px;

  /* Typography */
  --font-head:    'Manrope', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body:    'Manrope', system-ui, -apple-system, Segoe UI, sans-serif;
  --head-weight:  700;
  --head-tracking: -0.02em;
  --head-leading: 1.1;

  /* Spacing scale (8pt grid) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 80px;
  --space-10: 100px;

  /* Layout */
  --container: 1140px;
  --container-wide: 1280px;
  --nav-h: 108px;
}

/* ============================================================
   DESIGN TOKENS — Direction B: "Ridge" (editorial, premium)
   Activated by <body data-direction="ridge">.
   ============================================================ */
[data-direction="ridge"] {
  --bg:           #fbf9f3;
  --surface:      #ffffff;
  --surface-alt:  #f1ece0;
  --surface-dark: #14201a;

  --ink:          #1c241c;
  --ink-muted:    #6b7468;
  --ink-onDark:   #f5f1e6;
  --ink-onDarkMuted: #a2ad9f;

  --primary:      #2ea84a;
  --primary-deep: #14201a;
  --primary-soft: #e0eddd;
  --accent:       #b8894a;     /* warm gold */

  --border:       #e2dccb;
  --border-soft:  rgba(28,36,28,0.08);

  --font-head:    'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --head-weight:  600;
  --head-tracking: -0.005em;
  --head-leading: 1.05;
}


/* ============================================================
   BASE RESET + GLOBAL
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: var(--head-weight);
  letter-spacing: var(--head-tracking);
  line-height: var(--head-leading);
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(36px, 5.5vw, 64px); }
h2 { font-size: clamp(28px, 3.6vw, 44px); }
h3 { font-size: clamp(20px, 2vw, 26px); }
h4 { font-size: 18px; letter-spacing: 0; }

p { margin: 0 0 1em; text-wrap: pretty; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--wide { max-width: var(--container-wide); }
.container--narrow { max-width: 760px; }

.section {
  padding: var(--space-10) 0;
}
.section--tight { padding: var(--space-7) 0; }
.section--alt   { background: var(--surface-alt); }
.section--surface { background: var(--surface); }
.section--dark  {
  background: var(--surface-dark);
  color: var(--ink-onDark);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--ink-onDark); }
.section--dark p  { color: var(--ink-onDarkMuted); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-4);
}
.section--dark .eyebrow { color: var(--accent); }

.lede {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 60ch;
}
.section--dark .lede { color: var(--ink-onDarkMuted); }


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 50px;
  padding: 0 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--primary);
  color: #fff;
}
.btn--primary:hover {
  background: var(--primary-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.section--dark .btn--ghost {
  color: var(--ink-onDark);
  border-color: rgba(255,255,255,0.22);
}
.section--dark .btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn--full { width: 100%; }


/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245,242,234,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
[data-direction="ridge"] .site-header { background: rgba(251,249,243,0.88); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav__logo-icon {
  height: 56px;
  width: auto;
  display: block;
  flex-shrink: 0;
  mix-blend-mode: multiply;          /* blend white JPG bg into cream header */
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 5px;
}
.nav__logo-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: -0.005em;
  line-height: 1;
}
.nav__logo-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--primary);
  text-transform: uppercase;
  line-height: 1;
}
.nav__logo-img {
  height: 80px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;          /* blend the white JPG background into the cream header */
}
.nav__logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--primary);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
}
.nav__links a:hover { color: var(--primary); }

.nav__cta { display: inline-flex; }
.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  position: relative;
}
.nav__toggle span {
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: var(--ink);
  transition: transform .25s, opacity .25s;
}
.nav__toggle span:nth-child(1) { top: 14px; }
.nav__toggle span:nth-child(2) { top: 20px; }
.nav__toggle span:nth-child(3) { top: 26px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu is hidden by default at all widths; only the responsive
   rule below shows it (when toggled) under 720px. */
.nav__mobile { display: none; }


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  padding: var(--space-10) 0 var(--space-9);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: -1;
  background-image: url('assets/hero-clean.jpg');
  background-size: cover;
  background-position: center;
}
.hero__overlay {
  position: absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20,28,20,0.15) 0%, rgba(20,28,20,0.45) 55%, rgba(20,28,20,0.78) 100%);
}
.hero__content {
  max-width: 720px;
  color: #fff;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d8e0cf;
  margin-bottom: 20px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  backdrop-filter: blur(4px);
}
.hero h1 {
  color: #fff;
  margin-bottom: 20px;
}
.hero__sub {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
  max-width: 56ch;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero .btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
}
.hero .btn--ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: #fff;
}


/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-8);
  align-items: center;
}
.about__image {
  aspect-ratio: 4 / 5;
  max-height: 620px;
  background: var(--surface-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
}
.about__stat .num {
  display: block;
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: var(--head-weight);
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.about__stat .label {
  font-size: 14px;
  color: var(--ink-muted);
}


/* ============================================================
   OFFERINGS
   ============================================================ */
.offerings__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-6);
  margin-bottom: var(--space-7);
  flex-wrap: wrap;
}
.offerings__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.offering {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .25s ease, box-shadow .3s ease, border-color .25s ease;
}
.offering:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-soft);
}
.offering__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.offering__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.offering h3 { margin: 0; }
.offering__desc {
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
  margin: 0;
}
.offering__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-family: var(--font-body);
}
.offering__price .from {
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.offering__price .price {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
}
.offering__price .per {
  font-size: 14px;
  color: var(--ink-muted);
}


/* ============================================================
   PLAN STRIP (small details under the offerings grid)
   ============================================================ */
.plan-strip {
  margin-top: var(--space-6);
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.plan-strip__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.plan-strip__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}
.plan-strip__detail {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}
@media (max-width: 720px) {
  .plan-strip { grid-template-columns: 1fr; gap: 14px; padding: 16px 18px; }
}


/* ============================================================
   AMENITIES
   ============================================================ */
.amenities__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: var(--space-7);
}
.amenity {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color .25s ease;
}
.amenity:hover { border-color: var(--primary); }
.amenity__icon {
  width: 36px; height: 36px;
  color: var(--primary);
}
.amenity h4 { font-weight: 700; margin: 0; }
.amenity p {
  font-size: 14px;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.5;
}


/* ============================================================
   GALLERY
   ============================================================ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
  margin-top: var(--space-7);
}
.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-alt);
}
.gallery__item:nth-child(1) { grid-column: span 4; grid-row: span 2; }
.gallery__item:nth-child(2) { grid-column: span 2; }
.gallery__item:nth-child(3) { grid-column: span 2; }
.gallery__item:nth-child(4) { grid-column: span 3; grid-row: span 2; }
.gallery__item:nth-child(5) { grid-column: span 3; grid-row: span 2; }
.gallery__item:nth-child(6) { grid-column: span 2; }
.gallery__item:nth-child(7) { grid-column: span 2; }
.gallery__item:nth-child(8) { grid-column: span 2; }


/* ============================================================
   LOCATION
   ============================================================ */
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  align-items: center;
}
.location__map {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.location__map iframe { width: 100%; height: 100%; border: 0; }
.location__info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: var(--space-6);
}
.location__info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.location__info-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.location__info-item h4 { margin: 0 0 4px; }
.location__info-item p { margin: 0; color: var(--ink-muted); font-size: 15px; }
.location__info-item a { color: var(--primary); font-weight: 600; }
.location__info-item a:hover { text-decoration: underline; }


/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-8);
}
.contact__intro h2 { margin-bottom: 16px; }
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.contact__detail {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 15px;
  color: var(--ink-onDarkMuted);
}
.contact__detail strong {
  color: var(--ink-onDark);
  font-weight: 600;
}

.form {
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form__field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.form__field label .req { color: var(--accent); }
.form__field input,
.form__field select,
.form__field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form__field textarea { min-height: 130px; resize: vertical; }
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px var(--primary-soft);
}
.form__submit { margin-top: 8px; }
.form__note {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 14px;
  text-align: center;
}
.form__success,
.form__error {
  display: none;
  padding: 14px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 500;
}
.form__success {
  background: var(--primary-soft);
  color: var(--primary-deep);
  border: 1px solid var(--primary);
}
.form__error {
  background: #fbe9e0;
  color: #8a3a14;
  border: 1px solid #d99670;
}
.form.is-success .form__success { display: block; }
.form.is-error   .form__error   { display: block; }


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--primary-deep);
  color: var(--ink-onDark);
  padding: var(--space-8) 0 var(--space-5);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-7);
  margin-bottom: var(--space-7);
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer__logo-img {
  background: #fff;
  padding: 14px 20px;
  border-radius: var(--radius);
  max-width: 240px;
  width: 100%;
  height: auto;
  display: block;
}
.footer__about {
  color: var(--ink-onDarkMuted);
  font-size: 14px;
  line-height: 1.6;
  max-width: 38ch;
}
.footer__col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--ink-onDark);
  margin: 0 0 16px;
  font-family: var(--font-body);
}
.footer__col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a {
  font-size: 14px;
  color: var(--ink-onDarkMuted);
  transition: color .2s ease;
}
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--ink-onDarkMuted);
  flex-wrap: wrap;
}
.footer__socials {
  display: flex;
  gap: 12px;
}
.footer__socials a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--ink-onDark);
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.footer__socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}


/* ============================================================
   PLACEHOLDER UTILITY (for image-slot fallback look)
   ============================================================ */
.ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(74,107,58,0.06) 0 12px,
      rgba(74,107,58,0.02) 12px 24px
    ),
    var(--surface-alt);
  color: var(--ink-muted);
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 16px;
  border-radius: inherit;
}
image-slot {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: inherit;
}


/* ============================================================
   TWEAKS PANEL
   ============================================================ */
.tweaks {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 18px;
  width: 260px;
  display: none;
  font-family: var(--font-body);
}
.tweaks.is-open { display: block; }
.tweaks__title {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}
.tweaks__close {
  background: none; border: none;
  font-size: 18px;
  color: var(--ink-muted);
  line-height: 1;
  padding: 0;
}
.tweaks__group { margin-bottom: 16px; }
.tweaks__group:last-child { margin-bottom: 0; }
.tweaks__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.tweaks__segment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid var(--border);
}
.tweaks__segment button {
  background: transparent;
  border: none;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-muted);
  transition: background .15s ease, color .15s ease;
}
.tweaks__segment button.is-active {
  background: var(--primary);
  color: #fff;
}
.tweaks__swatches {
  display: flex; gap: 8px;
}
.tweaks__swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border);
  cursor: pointer;
  padding: 0;
}
.tweaks__swatch.is-active { border-color: var(--ink); transform: scale(1.08); }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .section { padding: var(--space-8) 0; }
  .about__grid,
  .location__grid,
  .contact__grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .about__image { aspect-ratio: 16 / 10; max-height: 420px; }
  .offerings__grid { grid-template-columns: 1fr; }
  .amenities__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery__item,
  .gallery__item:nth-child(1),
  .gallery__item:nth-child(2),
  .gallery__item:nth-child(3),
  .gallery__item:nth-child(4),
  .gallery__item:nth-child(5),
  .gallery__item:nth-child(6),
  .gallery__item:nth-child(7),
  .gallery__item:nth-child(8) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 720px) {
  .nav__logo-img { height: 56px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav__mobile {
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    flex-direction: column;
    gap: 18px;
  }
  .nav__mobile.is-open { display: flex; }
  .nav__mobile a { font-size: 16px; font-weight: 500; }
  .nav__mobile .btn { margin-top: 8px; }
  .hero { min-height: 70vh; padding-top: var(--space-7); }
  .form { padding: 24px; }
  .form__row { grid-template-columns: 1fr; }
  .amenities__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .tweaks { left: 16px; right: 16px; width: auto; bottom: 16px; }
}


/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
