/* ═══════════════════════════════════════════════════════════════
   La Bergerie de Surtainville — Main Stylesheet
   ═══════════════════════════════════════════════════════════════ */

/* ── RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Raleway', sans-serif;
  background: #FAFAF7;
  color: #2a2a2a;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --ink:       #1c1c1c;
  --ink2:      #4a4a4a;
  --mist:      #f4f1eb;
  --sand:      #d6c9ad;
  --clay:      #9e7c55;
  --clay-l:    #c49a6a;
  --forest:    #2d4a35;
  --forest-l:  #3d6147;
  --white:     #fefefe;
  --radius:    2px;
  --trans:     0.28s ease;
}

/* ── UTILITY ───────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.eyebrow {
  font-size: .66rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--forest-l); font-weight: 600; margin-bottom: .9rem;
}
.h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  color: var(--ink); line-height: 1.15; margin-bottom: 1.3rem;
}
.h2 em { font-style: italic; color: var(--clay); }
.lead {
  font-size: .97rem; line-height: 1.9;
  color: var(--ink2); font-weight: 300; max-width: 600px;
}
.rule { width: 44px; height: 2px; background: var(--forest-l); margin: 1.3rem 0; }
.section { padding: 6rem 0; }
.section.alt { background: var(--mist); }
.btn-primary {
  display: inline-block; padding: .85rem 2.6rem;
  background: var(--forest); border: 1px solid var(--forest);
  color: #fefefe; font-size: .72rem; letter-spacing: .2em;
  text-transform: uppercase; font-weight: 600;
  transition: background var(--trans), border-color var(--trans);
  cursor: pointer; font-family: 'Raleway', sans-serif;
}
.btn-primary:hover { background: transparent; border-color: #fefefe; }

/* ── NAV ───────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 3rem;
  background: rgba(28, 44, 33, 0.96);
  backdrop-filter: blur(10px);
  transition: padding var(--trans);
}
#nav.slim { padding: .6rem 3rem; }
.nav-brand { display: flex; align-items: center; gap: .8rem; }
.nav-brand img { height: 38px; filter: brightness(0) invert(1); opacity: .9; }
.nav-brand span {
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem;
  color: #f0ebe0; letter-spacing: .06em;
}
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(240,235,224,.72); transition: color var(--trans); font-weight: 500;
}
.nav-links a:hover { color: var(--sand); }
.nav-right { display: flex; align-items: center; gap: 1.2rem; }
.lang-wrap { display: flex; gap: .3rem; }
.lb {
  background: none; border: 1px solid rgba(240,235,224,.25);
  color: rgba(240,235,224,.6); padding: .22rem .55rem;
  font-family: 'Raleway', sans-serif; font-size: .72rem;
  letter-spacing: .1em; cursor: pointer; border-radius: 2px;
  transition: all var(--trans);
}
.lb:hover, .lb.on {
  background: var(--sand); border-color: var(--sand); color: var(--ink);
}
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 3px;
}
.nav-burger span {
  display: block; width: 22px; height: 1.5px;
  background: #f0ebe0; transition: var(--trans);
}

/* ── MOBILE DRAWER ─────────────────────────────────────────── */
#drawer {
  display: none; position: fixed; inset: 0; z-index: 800;
  background: rgba(28, 44, 33, .97);
  flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
}
#drawer.open { display: flex; }
#drawer a {
  font-family: 'Cormorant Garamond', serif; font-size: 2rem;
  color: #f0ebe0; letter-spacing: .05em; transition: color var(--trans);
}
#drawer a:hover { color: var(--sand); }
.drawer-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none; color: #f0ebe0;
  font-size: 1.8rem; cursor: pointer; line-height: 1; opacity: .7;
}
.drawer-close:hover { opacity: 1; }

/* ── HERO ──────────────────────────────────────────────────── */
#hero {
  position: relative; height: 100vh; min-height: 620px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center / cover no-repeat;
}
.hero-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg,
    rgba(28,44,33,.55) 0%,
    rgba(28,44,33,.22) 55%,
    rgba(10,15,10,.75) 100%);
}
.hero-body {
  position: relative; z-index: 1;
  text-align: center; padding: 2rem; color: #fefefe;
}
.hero-eye {
  font-size: .68rem; letter-spacing: .42em; text-transform: uppercase;
  color: var(--sand); margin-bottom: 1.4rem; font-weight: 500;
}
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: 1.02; font-weight: 300; margin-bottom: .5rem;
}
.hero-h1 em { font-style: italic; color: var(--sand); }
.hero-sub {
  font-size: .95rem; font-weight: 300; color: rgba(255,255,255,.82);
  letter-spacing: .06em; margin: 1.5rem 0 2.4rem;
}
.hero-scroll {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  z-index: 1; display: flex; flex-direction: column; align-items: center; gap: .6rem;
  color: rgba(255,255,255,.42); font-size: .62rem;
  letter-spacing: .28em; text-transform: uppercase;
}
.hero-scroll::after {
  content: ''; width: 1px; height: 52px;
  background: rgba(255,255,255,.3);
  animation: pulse-line 1.8s ease-in-out infinite;
}
@keyframes pulse-line {
  0%, 100% { opacity: .3; transform: scaleY(.5); }
  50%       { opacity: .9; transform: scaleY(1); }
}

/* ── QUOTE BAND ────────────────────────────────────────────── */
#quote {
  background: var(--forest); padding: 4rem 2rem; text-align: center;
}
#quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.8vw, 1.55rem);
  font-style: italic; font-weight: 300;
  color: #e8e0d0; max-width: 720px;
  margin: 0 auto .9rem; line-height: 1.78;
}
#quote cite {
  color: var(--clay); font-size: .7rem;
  letter-spacing: .22em; text-transform: uppercase; font-style: normal;
}

/* ── WELCOME CARDS ─────────────────────────────────────────── */
#welcome { background: var(--mist); }
.cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-top: 3.5rem; border: 1px solid var(--sand);
}
.card {
  padding: 2.8rem 2.2rem; border-right: 1px solid var(--sand);
  position: relative; background: var(--mist);
  transition: background var(--trans);
}
.card:last-child { border-right: none; }
.card:hover { background: var(--white); }
.card-num {
  font-family: 'Cormorant Garamond', serif; font-size: 3.8rem;
  font-style: italic; color: var(--sand);
  position: absolute; top: 1.2rem; right: 1.4rem; line-height: 1;
}
.card img { width: 100%; height: 200px; object-fit: cover; margin-bottom: 1.5rem; }
.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; color: var(--ink); margin-bottom: .65rem;
}
.card p { font-size: .88rem; line-height: 1.88; color: var(--ink2); font-weight: 300; }

/* ── LA FERME BOOKING (light background) ───────────────────── */
.ferme-booking-section { background: var(--mist); }
.ferme-booking-section .eyebrow { color: var(--forest-l); }
.ferme-booking-section .h2 { color: var(--ink); }
.ferme-booking-section .h2 em { color: var(--clay); }
.ferme-booking-section .lead { color: var(--ink2); }
.ferme-booking-section .book-info { color: var(--ink2); }
.ferme-booking-section .book-info h3 { color: var(--ink); font-family:'Cormorant Garamond',serif; font-size:1.4rem; margin-bottom:.8rem; }
.ferme-booking-section .book-info a { color: var(--forest-l); }
.ferme-booking-section .book-contact { border-top:1px solid var(--sand); padding-top:1.3rem; margin-top:1.3rem; }
.ferme-booking-section .book-contact strong { color: var(--forest); display:block; margin-bottom:.3rem; }
.ferme-booking-section .ferme-rating .ferme-stars { background: var(--forest); }
.ferme-booking-section .fg label { color: var(--ink2); font-size:.65rem; letter-spacing:.18em; text-transform:uppercase; opacity:.85; }
.ferme-booking-section .fg input,
.ferme-booking-section .fg select,
.ferme-booking-section .fg textarea { background:var(--white); border:1px solid var(--sand); color:var(--ink); }
.ferme-booking-section .fg input:focus,
.ferme-booking-section .fg select:focus,
.ferme-booking-section .fg textarea:focus { border-color:var(--forest-l); }
.ferme-booking-section .fg select option { background:var(--white); color:var(--ink); }
.ferme-booking-section .btn-submit { background:var(--forest); }
.ferme-booking-section .btn-submit:hover { background:var(--forest-l); }
.ferme-booking-section .form-ok { color:var(--forest-l); }

/* ── PROPERTY SWITCHER ─────────────────────────────────────── */
#prop-bar {
  background: var(--ink); position: sticky; top: 62px; z-index: 800;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: top .3s;
}
#nav.slim ~ #prop-bar, body.slim #prop-bar { top: 48px; }
.prop-bar-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 2rem;
  display: flex; gap: 0;
}
.prop-btn {
  background: none; border: none; border-bottom: 3px solid transparent;
  color: rgba(255,255,255,.45); padding: .85rem 2rem;
  font-family: 'Raleway', sans-serif; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 500;
  cursor: pointer; transition: all .2s; white-space: nowrap;
}
.prop-btn:hover { color: rgba(255,255,255,.8); }
.prop-btn.on { color: var(--sand); border-bottom-color: var(--sand); }

/* ── LA FERME LAYOUT ───────────────────────────────────────── */
.ferme-layout {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 4rem; align-items: start; margin-top: 2.5rem;
}
.ferme-gallery {
  display: grid; grid-template-columns: 1fr 1fr; gap: .7rem;
}
.ferme-gallery img { width: 100%; height: 175px; object-fit: cover; }
.ferme-gallery img:first-child { grid-column: 1/-1; height: 260px; }
.ferme-info { }
.ferme-rating {
  display: flex; align-items: center; gap: .7rem; margin-bottom: 1.3rem;
}
.ferme-stars {
  background: var(--forest); color: var(--sand);
  padding: .3rem .8rem; font-size: .85rem; font-weight: 600;
  letter-spacing: .05em; border-radius: 2px;
}
.ferme-airbnb-btn {
  margin-top: 1.8rem; display: inline-block;
}
@media (max-width: 960px) {
  .ferme-layout { grid-template-columns: 1fr; }
  #prop-bar { top: 56px; }
}
.pets-section { background: var(--forest); }
.pets-section .eyebrow { color: #9eb89e; }
.pets-section .h2 { color: #f0ebe0; }
.pets-section .h2 em { color: var(--sand); }
.pets-section .lead { color: rgba(240,235,224,.78); max-width: 520px; }
.pets-section .rule { background: var(--sand); }
.pets-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.pets-photo {
  position: relative; overflow: hidden; border-radius: 3px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.pets-photo img {
  width: 100%; height: auto;
  object-fit: contain; object-position: center center;
  display: block; transition: transform .6s ease;
  background: var(--forest);
}
.pets-photo:hover img { transform: scale(1.03); }
.pets-icon {
  font-size: 2.5rem; margin-bottom: 1rem; line-height: 1;
}
.pets-tags {
  display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem;
}
.pets-tag {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: rgba(240,235,224,.8); padding: .4rem 1rem;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  border-radius: 2px; font-weight: 500;
}
@media (max-width: 960px) {
  .pets-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .pets-photo img { height: 340px; }
}
#about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-photos { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.about-photos img:first-child {
  grid-column: 1 / -1; height: 270px; object-fit: cover; width: 100%;
}
.about-photos img { height: 180px; object-fit: cover; width: 100%; }
.badge {
  display: inline-block; background: var(--forest); color: var(--sand);
  font-size: .64rem; letter-spacing: .2em; text-transform: uppercase;
  padding: .4rem .9rem; margin-bottom: 1.3rem;
}
.about-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; color: var(--ink); margin: 1.4rem 0 .5rem;
}

/* ── HOUSE TABS ────────────────────────────────────────────── */
#house { background: var(--forest); }
#house .eyebrow { color: #9eb89e; }
#house .h2 { color: #f0ebe0; }
#house .h2 em { color: var(--sand); }
.tab-bar {
  display: flex; border-bottom: 1px solid rgba(255,255,255,.12);
  margin-bottom: 3rem; overflow-x: auto;
}
.tab-btn {
  background: none; border: none;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  color: rgba(240,235,224,.42); padding: .85rem 1.5rem;
  font-family: 'Raleway', sans-serif; font-size: .7rem;
  letter-spacing: .18em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap; transition: all var(--trans);
}
.tab-btn.on, .tab-btn:hover { color: var(--sand); border-bottom-color: var(--sand); }
.tab-panel { display: none; grid-template-columns: 1fr 1.15fr; gap: 4rem; align-items: start; }
.tab-panel.on { display: grid; }
.tab-text { color: rgba(240,235,224,.78); font-size: .93rem; line-height: 1.95; font-weight: 300; }
.pill-row { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.3rem; }
.pill {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13);
  color: rgba(240,235,224,.6); padding: .28rem .8rem;
  font-size: .7rem; letter-spacing: .1em;
}
.tab-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.tab-imgs img { width: 100%; height: 148px; object-fit: cover; }
.tab-imgs img:first-child { grid-column: 1 / -1; height: 230px; }

/* ── GALLERY ───────────────────────────────────────────────── */
#gallery { background: var(--mist); }
.gal-grid { columns: 3; column-gap: 1rem; margin-top: 2.5rem; }
.gal-item { break-inside: avoid; margin-bottom: 1rem; overflow: hidden; cursor: pointer; }
.gal-item img { width: 100%; transition: transform .5s ease; }
.gal-item:hover img { transform: scale(1.04); }

/* ── MAP ───────────────────────────────────────────────────── */
#map { background: var(--white); }
.map-layout {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 3.5rem; align-items: start; margin-top: 3rem;
}
.info-box {
  background: var(--mist); padding: 1.7rem;
  border-left: 3px solid var(--forest-l); margin-bottom: 1rem;
}
.info-box h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: var(--ink); margin-bottom: .8rem;
}
.info-row {
  display: flex; gap: .8rem; padding: .55rem 0;
  border-bottom: 1px solid var(--sand);
  font-size: .82rem; color: var(--ink2);
}
.info-row:last-child { border-bottom: none; }
.info-row b { color: var(--ink); min-width: 95px; font-weight: 600; font-size: .78rem; }
.map-frame { width: 100%; height: 420px; border: none; }

/* ── CALENDAR ──────────────────────────────────────────────── */
#calendar { background: var(--mist); }
.cal-note { font-size: .76rem; color: var(--ink2); margin-top: 1rem; opacity: .7; }

/* Calendar widget */
.cal-widget {
  background: var(--white); border-radius: 4px;
  box-shadow: 0 4px 32px rgba(0,0,0,.08);
  padding: 2rem; margin-top: 2.5rem; max-width: 900px;
}
.cal-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.8rem;
}
.cal-nav-btn {
  background: none; border: 1px solid var(--sand); color: var(--ink);
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
  font-size: 1rem; transition: all .2s; display: flex; align-items: center; justify-content: center;
}
.cal-nav-btn:hover { background: var(--forest); border-color: var(--forest); color: #fff; }
.cal-month-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; color: var(--ink); letter-spacing: .04em;
}
.cal-months {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.cal-single { }
.cal-single-title {
  font-size: .78rem; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: var(--forest-l);
  text-align: center; margin-bottom: 1rem;
}
.cal-days-header {
  display: grid; grid-template-columns: repeat(7,1fr);
  gap: 2px; margin-bottom: 4px;
}
.cal-day-name {
  text-align: center; font-size: .62rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink2); padding: .3rem 0; font-weight: 600;
}
.cal-days {
  display: grid; grid-template-columns: repeat(7,1fr); gap: 2px;
}
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: .82rem; border-radius: 3px; position: relative;
  color: var(--ink); transition: background .15s;
}
.cal-day.empty   { }
.cal-day.booked  {
  background: #f0e8e8; color: #b04040;
  text-decoration: line-through; cursor: not-allowed; opacity: .7;
}
.cal-day.today   { font-weight: 700; color: var(--forest); }
.cal-day.past    { color: #ccc; }
.cal-day.free    { cursor: default; }
.cal-day.free:hover { background: var(--mist); }

/* Legend */
.cal-legend {
  display: flex; gap: 1.5rem; margin-top: 1.5rem;
  padding-top: 1.2rem; border-top: 1px solid var(--sand);
  flex-wrap: wrap;
}
.cal-legend-item { display: flex; align-items: center; gap: .5rem; font-size: .78rem; color: var(--ink2); }
.cal-legend-dot  { width: 14px; height: 14px; border-radius: 2px; flex-shrink: 0; }
.cal-legend-dot.free   { background: var(--white); border: 1px solid var(--sand); }
.cal-legend-dot.booked { background: #f0e8e8; }
.cal-loading {
  text-align: center; padding: 3rem;
  color: var(--ink2); font-size: .9rem; letter-spacing: .1em;
}
@media (max-width: 600px) {
  .cal-months { grid-template-columns: 1fr; }
  .cal-widget { padding: 1.2rem; }
}

/* ── BOOKING ───────────────────────────────────────────────── */
#booking { background: var(--forest); }
#booking .eyebrow { color: #9eb89e; }
#booking .h2 { color: #f0ebe0; }
#booking .h2 em { color: var(--sand); }
#booking .lead { color: rgba(240,235,224,.7); }
.book-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 5rem; align-items: start; margin-top: 3rem;
}
.book-info { color: rgba(240,235,224,.72); font-size: .88rem; line-height: 1.9; }
.book-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; color: #f0ebe0; margin-bottom: .8rem;
}
.book-info a { color: var(--sand); }
.book-contact {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.3rem; margin-top: 1.3rem;
}
.book-contact strong { color: var(--sand); font-weight: 600; display: block; margin-bottom: .3rem; }
.book-socials { display: flex; gap: .8rem; margin-top: 1.5rem; }
.book-socials a img {
  height: 26px; filter: brightness(0) invert(1);
  opacity: .4; transition: opacity var(--trans);
}
.book-socials a:hover img { opacity: .8; }

/* ── FORM ──────────────────────────────────────────────────── */
.bform { display: grid; gap: 1rem; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fg { display: flex; flex-direction: column; gap: .3rem; }
.fg label {
  font-size: .65rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(240,235,224,.45);
}
.fg input, .fg select, .fg textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: #f0ebe0; padding: .72rem .95rem;
  font-family: 'Raleway', sans-serif; font-size: .88rem;
  outline: none; transition: border-color var(--trans);
  width: 100%; border-radius: var(--radius);
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--sand); }
.fg select option { background: var(--forest); }
.fg textarea { height: 110px; resize: vertical; }
.btn-submit {
  width: 100%; padding: .9rem;
  background: var(--clay); border: none; color: #fefefe;
  font-family: 'Raleway', sans-serif; font-size: .75rem;
  letter-spacing: .2em; text-transform: uppercase;
  font-weight: 600; cursor: pointer; transition: background var(--trans);
}
.btn-submit:hover { background: var(--clay-l); }
.form-ok {
  display: none; text-align: center; padding: 2.5rem 1rem;
  color: #9eb89e; font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; line-height: 1.6;
}
.form-ok-icon { font-size: 2.8rem; margin-bottom: .8rem; }

/* ── FOOTER ────────────────────────────────────────────────── */
#footer { background: #111a13; padding: 4.5rem 2rem 2rem; }
.foot-inner { max-width: 1180px; margin: 0 auto; }
.foot-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.foot-logo img { height: 44px; filter: brightness(0) invert(1); opacity: .65; }
.foot-tagline {
  color: rgba(255,255,255,.34); font-size: .82rem;
  line-height: 1.8; margin-top: .9rem; max-width: 240px; font-weight: 300;
}
.foot-col h5 {
  color: var(--clay); font-size: .64rem;
  letter-spacing: .26em; text-transform: uppercase; margin-bottom: 1rem;
}
.foot-col a, .foot-col p {
  display: block; color: rgba(255,255,255,.36); font-size: .82rem;
  padding: .22rem 0; transition: color var(--trans); font-weight: 300;
}
.foot-col a:hover { color: var(--sand); }
.foot-socials { display: flex; gap: .8rem; margin-top: 1rem; }
.foot-socials a img {
  height: 24px; filter: brightness(0) invert(1);
  opacity: .28; transition: opacity var(--trans);
}
.foot-socials a:hover img { opacity: .7; }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1.4rem; color: rgba(255,255,255,.2); font-size: .74rem;
}

/* ── ZOOMABLE IMAGES (house tabs) ──────────────────────────── */
.zoomable {
  cursor: zoom-in;
  transition: transform .3s ease, box-shadow .3s ease;
}
.zoomable:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
  position: relative;
  z-index: 1;
}
#lb {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.92); align-items: center; justify-content: center;
}
#lb.open { display: flex; }
#lb-img { max-width: 90vw; max-height: 88vh; object-fit: contain; }
#lb-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none; color: #fff;
  font-size: 2rem; cursor: pointer; opacity: .6; line-height: 1;
  transition: opacity var(--trans);
}
#lb-close:hover { opacity: 1; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 960px) {
  #nav { padding: 1rem 1.5rem; }
  #nav.slim { padding: .6rem 1.5rem; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .cards { grid-template-columns: 1fr; }
  .card { border-right: none; border-bottom: 1px solid var(--sand); }
  .card:last-child { border-bottom: none; }
  .about-grid,
  .map-layout,
  .book-grid { grid-template-columns: 1fr; }
  .tab-panel.on { grid-template-columns: 1fr; }
  .tab-imgs img:first-child { grid-column: auto; height: auto; }
  .gal-grid { columns: 2; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; gap: .4rem; text-align: center; }
  .frow { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .gal-grid { columns: 1; }
  .section { padding: 4rem 0; }
}
