/* D & A Designs — site.css */
/* Fonts loaded in _header.php via Google Fonts */

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: #2C2A22;
  background: #FAF7F2;
  font-size: 16px;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
h1, h2, h3, h4 { margin: 0; }

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  background: #2C2A22;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid #3A3228;
}
.nav-brand { display: block; }
.nav-logo {
  font-family: 'Playfair Display', serif;
  color: #D4A94E;
  font-size: 21px;
  letter-spacing: 1px;
  display: block;
}
.nav-sub {
  color: #A89070;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav-links a {
  color: #C8B89A;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.15s;
}
.nav-links a:hover { color: #D4A94E; }
.nav-links a.active {
  color: #D4A94E;
  border-bottom: 1px solid #D4A94E;
  padding-bottom: 2px;
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #C8B89A;
  border-radius: 2px;
  transition: 0.2s;
}

/* ============================================================
   HERO — home page
   ============================================================ */
.site-hero {
  background: #3A3228;
  padding: 80px 32px 64px;
  text-align: center;
  border-bottom: 3px solid #D4A94E;
}
.hero-eyebrow {
  color: #D4A94E;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-h1 {
  font-family: 'Playfair Display', serif;
  color: #FAF0DC;
  font-size: 44px;
  font-weight: 400;
  line-height: 1.25;
  margin: 0 0 18px;
}
.hero-h1 em { color: #D4A94E; font-style: italic; }
.hero-sub {
  color: #D4C8A8;
  font-size: 16px;
  line-height: 1.9;
  max-width: 540px;
  margin: 0 auto 32px;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PAGE HERO — inner pages
   ============================================================ */
.page-hero {
  background: #3A3228;
  padding: 52px 32px 44px;
  text-align: center;
  border-bottom: 3px solid #D4A94E;
}
.page-eyebrow {
  color: #D4A94E;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.page-h1 {
  font-family: 'Playfair Display', serif;
  color: #FAF0DC;
  font-size: 36px;
  font-weight: 400;
  margin: 0 0 12px;
}
.page-h1 em { color: #D4A94E; font-style: italic; }
.page-hero-sub {
  color: #D4C8A8;
  font-size: 15px;
  line-height: 1.9;
  max-width: 520px;
  margin: 0 auto;
}

/* ============================================================
   DIVIDER
   ============================================================ */
.site-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 28px 32px 0;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: #D4C8A8;
  opacity: 0.4;
}
.divider-diamond { color: #D4A94E; font-size: 16px; }

/* ============================================================
   SECTIONS
   ============================================================ */
.site-section { padding: 40px 32px; }
.section-label {
  color: #D4A94E;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  color: #2C2A22;
  margin: 0 0 8px;
}
.section-h2 em { color: #8B5E3C; font-style: italic; }
.section-body {
  color: #5C5040;
  font-size: 15px;
  line-height: 1.95;
  max-width: 600px;
  margin: 0 0 24px;
}
.site-sep {
  border: none;
  border-top: 0.5px solid #D4C8A8;
  opacity: 0.3;
  margin: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
  display: inline-block;
  background: #D4A94E;
  color: #2C2A22;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 2px;
  border: none;
  font-family: 'Lato', sans-serif;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-gold:hover { background: #C49A3E; }
.btn-dark {
  display: inline-block;
  background: #2C2A22;
  color: #D4A94E;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 2px;
  border: none;
  font-family: 'Lato', sans-serif;
  cursor: pointer;
}
.btn-outline {
  display: inline-block;
  background: transparent;
  color: #D4A94E;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 11px 28px;
  border-radius: 2px;
  border: 1px solid #D4A94E;
  font-family: 'Lato', sans-serif;
  cursor: pointer;
}
.btn-outline:hover { background: rgba(212,169,78,0.08); }

/* ============================================================
   TAGS / TECHNIQUES
   ============================================================ */
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.tag {
  background: #FFF0D0;
  border: 0.5px solid #D4A94E;
  border-radius: 2px;
  color: #8B5E3C;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 10px;
}

/* ============================================================
   SERVICE CARDS (home page)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}
.service-card {
  background: #FFF8EE;
  border: 0.5px solid #D4C8A8;
  border-top: 3px solid #D4A94E;
  border-radius: 4px;
  padding: 20px 16px;
}
.service-icon {
  width: 30px;
  height: 30px;
  background: #D4A94E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.service-icon svg { width: 14px; height: 14px; fill: #2C2A22; }
.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: #2C2A22;
  margin: 0 0 6px;
}
.service-desc { font-size: 14px; color: #5C5040; line-height: 1.7; }

/* ============================================================
   LOCATION BAND (home page)
   ============================================================ */
.location-band {
  background: #2C2A22;
  border-radius: 6px;
  padding: 26px 24px;
  margin-top: 8px;
}
.location-badge {
  display: inline-block;
  background: #8B5E3C;
  color: #FAF0DC;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 10px;
}
.location-title {
  font-family: 'Playfair Display', serif;
  color: #D4A94E;
  font-size: 19px;
  margin: 0 0 6px;
}
.location-addr { color: #D4C8A8; font-size: 14px; line-height: 1.8; }

/* ============================================================
   CONTACT CARDS (home / contact page)
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.contact-card {
  background: #FFF8EE;
  border: 0.5px solid #D4C8A8;
  border-radius: 4px;
  padding: 18px 16px;
}
.contact-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: #2C2A22;
  margin: 0 0 3px;
}
.contact-role {
  font-size: 11px;
  color: #D4A94E;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.contact-phone { font-size: 14px; color: #5C5040; }

/* ============================================================
   GALLERY TABS (recursive gallery category filter)
   ============================================================ */
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 0 24px 32px;
  max-width: 900px;
  margin: 0 auto;
}
.gallery-tab {
  display: inline-block;
  padding: 8px 20px;
  border: 1.5px solid #C4A96A;
  border-radius: 2px;
  color: #5A4A38;
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.gallery-tab:hover {
  background: #D4A94E;
  border-color: #D4A94E;
  color: #fff;
}
.gallery-tab.active {
  background: #2C2A22;
  border-color: #2C2A22;
  color: #D4A94E;
}

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.gallery-card {
  background: #FFF8EE;
  border: 0.5px solid #D4C8A8;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-img-wrap { position: relative; }
.gallery-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 42, 34, 0.82);
  opacity: 0;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-overlay-text {
  color: #D4A94E;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.gallery-caption { padding: 12px 14px 14px; }
.gallery-caption-title {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: #2C2A22;
  margin: 0 0 5px;
}
.gallery-caption-desc {
  font-size: 13px;
  color: #5C5040;
  line-height: 1.6;
}

/* ============================================================
   LIGHTBOX MODAL
   ============================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28, 26, 22, 0.94);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
  background: #2C2A22;
  border-radius: 4px;
  overflow: hidden;
}
.lightbox-img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
  background: #1E1C18;
}
.lightbox-info {
  padding: 14px 18px;
  border-top: 1px solid #3A3228;
}
.lightbox-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #FAF0DC;
  margin: 0 0 4px;
}
.lightbox-desc { font-size: 14px; color: #C8B89A; line-height: 1.7; }
.lightbox-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px 14px;
}
.lightbox-counter { font-size: 13px; color: #A89070; letter-spacing: 1px; }
.lightbox-btn {
  background: #3A3228;
  border: 0.5px solid #5C5040;
  color: #D4A94E;
  font-size: 18px;
  width: 36px;
  height: 36px;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.lightbox-btn:hover { background: #4A4038; }
.lightbox-btn:disabled { opacity: 0.3; cursor: default; }
.lightbox-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(28, 26, 22, 0.7);
  border: none;
  color: #D4A94E;
  font-size: 20px;
  width: 32px;
  height: 32px;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ============================================================
   OWNER CARDS (about page)
   ============================================================ */
.owners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.owner-card {
  background: #FFF8EE;
  border: 0.5px solid #D4C8A8;
  border-top: 3px solid #D4A94E;
  border-radius: 4px;
  padding: 24px 20px;
}
.owner-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #2C2A22;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.owner-initials {
  font-family: 'Playfair Display', serif;
  color: #D4A94E;
  font-size: 18px;
}
.owner-name {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: #2C2A22;
  margin: 0 0 4px;
}
.owner-title {
  font-size: 11px;
  color: #D4A94E;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.owner-bio { font-size: 14px; color: #5C5040; line-height: 1.85; margin: 0 0 14px; }
.owner-phone { font-size: 14px; color: #5C5040; }

/* Values grid (about page) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}
.value-card {
  background: #FFF8EE;
  border: 0.5px solid #D4C8A8;
  border-radius: 4px;
  padding: 20px 16px;
}
.value-dot { width: 10px; height: 10px; background: #D4A94E; border-radius: 50%; margin-bottom: 12px; }
.value-title { font-family: 'Playfair Display', serif; font-size: 15px; color: #2C2A22; margin: 0 0 6px; }
.value-desc { font-size: 13px; color: #5C5040; line-height: 1.75; }

/* Quote (about page) */
.site-quote {
  border-left: 3px solid #D4A94E;
  margin: 0 0 24px;
  padding: 14px 20px;
  background: #FFF8EE;
  border-radius: 0 4px 4px 0;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 17px;
  color: #3A3228;
  line-height: 1.7;
  margin: 0 0 8px;
}
.quote-attr { font-size: 12px; color: #D4A94E; letter-spacing: 1px; text-transform: uppercase; }

/* Dark band (about page — Tymeless) */
.dark-band {
  background: #2C2A22;
  border-radius: 6px;
  padding: 28px 24px;
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
}
.dark-band-h {
  font-family: 'Playfair Display', serif;
  color: #D4A94E;
  font-size: 19px;
  margin: 0 0 8px;
}
.dark-band-body { color: #D4C8A8; font-size: 14px; line-height: 1.85; }
.dark-band-badge {
  background: #8B5E3C;
  color: #FAF0DC;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
  align-self: flex-start;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 8px;
}
.form-panel {
  background: #FFF8EE;
  border: 0.5px solid #D4C8A8;
  border-radius: 4px;
  padding: 28px 24px;
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: #2C2A22;
  margin: 0 0 4px;
}
.form-sub { font-size: 14px; color: #5C5040; margin: 0 0 20px; line-height: 1.7; }
.field { margin-bottom: 14px; }
.field-label {
  font-size: 11px;
  color: #8B5E3C;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: #FAF7F2;
  border: 0.5px solid #D4C8A8;
  border-radius: 3px;
  padding: 10px 12px;
  font-size: 15px;
  color: #2C2A22;
  font-family: 'Lato', sans-serif;
  transition: border-color 0.15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: #D4A94E;
}
.field textarea { resize: vertical; min-height: 100px; }
.field select { appearance: none; }
.form-submit {
  width: 100%;
  background: #D4A94E;
  color: #2C2A22;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  margin-top: 4px;
  transition: background 0.15s;
}
.form-submit:hover { background: #C49A3E; }
.form-note { font-size: 12px; color: #A89070; text-align: center; margin-top: 10px; line-height: 1.6; }

/* Alert banners */
.alert-success {
  background: #EAF3DE;
  border: 0.5px solid #6FA832;
  border-left: 3px solid #6FA832;
  color: #3B6D11;
  border-radius: 0 4px 4px 0;
  padding: 14px 18px;
  margin-bottom: 16px;
  font-size: 13px;
}
.alert-error {
  background: #FCEBEB;
  border: 0.5px solid #C0392B;
  border-left: 3px solid #C0392B;
  color: #A32D2D;
  border-radius: 0 4px 4px 0;
  padding: 14px 18px;
  margin-bottom: 16px;
  font-size: 13px;
}

/* Contact info panel */
.contact-info-panel { }
.person-card {
  background: #FFF8EE;
  border: 0.5px solid #D4C8A8;
  border-top: 3px solid #D4A94E;
  border-radius: 4px;
  padding: 22px 18px;
  margin-bottom: 14px;
}
.person-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #2C2A22;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.person-initials { font-family: 'Playfair Display', serif; color: #D4A94E; font-size: 17px; }
.person-name { font-family: 'Playfair Display', serif; font-size: 17px; color: #2C2A22; margin: 0 0 3px; }
.person-role { font-size: 11px; color: #D4A94E; letter-spacing: 2px; text-transform: uppercase; margin: 0 0 12px; }
.contact-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.contact-icon {
  width: 26px;
  height: 26px;
  background: #F0E8D0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 12px; height: 12px; stroke: #8B5E3C; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.contact-detail-label { font-size: 11px; color: #A89070; text-transform: uppercase; letter-spacing: 1px; display: block; }
.contact-detail-value { font-size: 15px; color: #2C2A22; display: block; }

.email-band {
  background: #2C2A22;
  border-radius: 6px;
  padding: 20px;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.email-band-left { display: flex; align-items: center; gap: 12px; }
.email-band-icon {
  width: 38px;
  height: 38px;
  background: #3A3228;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.email-band-icon svg { width: 16px; height: 16px; stroke: #D4A94E; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.email-band-label { font-size: 11px; color: #A89070; letter-spacing: 2px; text-transform: uppercase; margin: 0 0 3px; }
.email-band-addr { font-family: 'Playfair Display', serif; color: #FAF0DC; font-size: 15px; margin: 0; }

/* Location card (contact page) */
.location-card {
  background: #2C2A22;
  border-radius: 6px;
  padding: 24px;
  margin-top: 14px;
}
.location-card-eyebrow { font-size: 11px; color: #A89070; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.location-card-name { font-family: 'Playfair Display', serif; color: #D4A94E; font-size: 19px; margin: 0 0 6px; }
.location-card-addr { color: #D4C8A8; font-size: 14px; line-height: 1.9; margin: 0 0 16px; }
.location-detail { border-top: 0.5px solid #3A3228; padding-top: 14px; }
.loc-row { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; }
.loc-dot { width: 6px; height: 6px; background: #D4A94E; border-radius: 50%; margin-top: 5px; flex-shrink: 0; }
.loc-text { font-size: 14px; color: #D4C8A8; line-height: 1.7; }
.loc-text strong { color: #FAF0DC; font-weight: 400; }

/* ============================================================
   CTA BAR
   ============================================================ */
.cta-bar {
  background: #D4A94E;
  padding: 32px;
  text-align: center;
}
.cta-h {
  font-family: 'Playfair Display', serif;
  color: #2C2A22;
  font-size: 22px;
  margin: 0 0 8px;
}
.cta-sub { color: #5C4A2A; font-size: 15px; margin: 0 0 20px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #1E1C18;
  padding: 28px 32px;
  text-align: center;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  color: #D4A94E;
  font-size: 17px;
  margin-bottom: 6px;
}
.footer-text { color: #A89070; font-size: 11px; letter-spacing: 1px; }
.footer-address {
  font-style: normal;
  color: #7A6A58;
  font-size: 11px;
  margin-top: 10px;
}
.footer-contact {
  color: #7A6A58;
  font-size: 11px;
  margin-top: 6px;
}
.footer-contact a { color: #A89070; text-decoration: none; }
.footer-contact a:hover { color: #D4A94E; }
.footer-copy {
  color: #55493C;
  font-size: 10px;
  margin-top: 10px;
  letter-spacing: 0.5px;
}

/* ============================================================
   EMPTY STATE (gallery)
   ============================================================ */
.empty-state {
  text-align: center;
  padding: 60px 32px;
  color: #A89070;
}
.empty-state-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: #5C5040;
  margin: 0 0 8px;
}
.empty-state-body { font-size: 14px; line-height: 1.8; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .site-nav { padding: 12px 20px; }
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #2C2A22;
    padding: 12px 20px 20px;
    border-bottom: 2px solid #3A3228;
    z-index: 99;
  }
  .nav-links.open a {
    display: block;
    padding: 10px 0;
    border-bottom: 0.5px solid #3A3228;
  }
  .nav-links.open a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }

  .site-hero { padding: 48px 20px 40px; }
  .hero-h1 { font-size: 28px; }
  .page-hero { padding: 36px 20px 30px; }
  .page-h1 { font-size: 26px; }

  .site-section { padding: 28px 20px; }
  .site-divider { padding: 20px 20px 0; }

  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .owners-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .dark-band { grid-template-columns: 1fr; }
  .email-band { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cta-bar { padding: 28px 20px; }
  .site-footer { padding: 24px 20px; }

  .lightbox-inner { max-width: 100%; }
  .lightbox-img { max-height: 55vh; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}
