/* ============================================================
   calm.sol — Nord Sol direction
   Bone, clay, terracotta · Fraunces + Inter
   ============================================================ */

:root {
  --bone: #FAF7F2;
  --bone-2: #F3EDE3;
  --clay: #E7DFD1;
  --sand: #D9C9AF;
  --terracotta: #C8553D;
  --terracotta-dk: #A84431;
  --olive: #7E8560;
  --ink: #2A2522;
  --ink-soft: #5A4F48;
  --muted: #8D8278;
  --sea: #4A6B6B;

  --font-display: "Fraunces", ui-serif, Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 4px;
  --radius-lg: 10px;

  --pad-x: clamp(20px, 5vw, 80px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; }


/* ====== SHELL : rail gauche + contenu droite ====== */
.shell {
  display: grid;
  grid-template-columns: 72px 1fr;
  min-height: 100vh;
}

/* ====== RAIL (nav verticale crème à gauche) ====== */
.rail {
  background: var(--bone);
  border-right: 1px solid rgba(42, 37, 34, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 48px 0;
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 20;
}
.rail__links {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  height: 100%;
  width: 100%;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
}
.rail__links a {
  color: var(--ink);
  text-decoration: none;
  opacity: 0.8;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  transition: opacity 0.2s, color 0.2s;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 8px 0;
}
.rail__links a:hover { opacity: 1; color: var(--terracotta); }
.rail__links a span {
  display: inline-block;
}
.rail__house {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  flex-shrink: 0;
  transform: rotate(180deg); /* contre-rotate so house stays upright */
  writing-mode: horizontal-tb;
}

/* ====== HERO : split photo / panel ====== */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 100vh;
  background: var(--bone);
  isolation: isolate;
}

/* Logo en haut gauche sur la photo */
.hero__brand {
  position: absolute;
  top: 28px;
  left: 36px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
  white-space: nowrap;
}
.hero__brand-house {
  width: 38px;
  height: 38px;
  stroke: #fff;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.35));
  flex-shrink: 0;
}
.hero__brand-sun {
  width: 26px;
  height: 26px;
  stroke: #fff;
  opacity: 0.92;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.35));
  flex-shrink: 0;
}
.hero__brand::after {
  content: "";
  display: block;
  width: 112px;
  height: 1px;
  background: #fff;
  opacity: 0.75;
  margin-left: 14px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.hero__brand-dot { color: var(--sand); }

/* Langues en haut à droite */
.hero__lang {
  position: absolute;
  top: 28px;
  right: 36px;
  z-index: 10;
  display: flex;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 1.8px;
  font-weight: 500;
}
.hero__lang button {
  background: transparent;
  border: 0;
  padding: 2px 0;
  font: inherit;
  letter-spacing: inherit;
  color: var(--ink);
  opacity: 0.45;
  cursor: pointer;
  transition: opacity 0.2s, color 0.2s, border-color 0.2s;
}
.hero__lang button:hover { opacity: 0.8; }
.hero__lang button.is-active {
  opacity: 1;
  color: var(--terracotta);
  border-bottom: 1px solid var(--terracotta);
}

/* Photo à gauche */
.hero__photo {
  position: relative;
  overflow: hidden;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Panel crème à droite */
.hero__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 72px 56px;
  background: var(--bone);
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
}
.hero__kicker::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--terracotta);
  opacity: 0.55;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(36px, 4.2vw, 62px);
  line-height: 1.03;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--ink);
}
.hero__title em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 300;
}

.hero__lede {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.55;
  color: var(--warm-brown);
  margin: 0 0 32px;
  max-width: 460px;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* Botón principal (terracota) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
}
.btn--primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 6px 18px rgba(200, 85, 61, 0.28);
}
.btn--primary:hover {
  background: var(--terracotta-dk);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(200, 85, 61, 0.34);
}
.btn--primary:active {
  transform: translateY(0);
}
.hero__link {
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(42, 37, 34, 0.3);
  padding-bottom: 3px;
  letter-spacing: 0.02em;
  transition: color 0.2s, border-color 0.2s;
}
.hero__link:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
}

/* Meta full-width */
.hero__meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(42, 37, 34, 0.15);
  color: var(--ink);
}
.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.hero__meta-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.hero__meta-num small {
  font-size: 0.45em;
  letter-spacing: 0;
  opacity: 0.7;
  margin-left: 2px;
  font-family: var(--font-sans);
}
.hero__meta-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--warm-brown);
}

/* ==== Responsive : mobile ==== */
@media (max-width: 900px) {
  .shell { grid-template-columns: 1fr; }
  .rail { display: none; }
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 48vh auto;
    min-height: 100vh;
  }
  .hero__photo { min-height: 48vh; }
  .hero__panel {
    padding: 28px 22px 24px;
  }
  .hero__brand {
    top: 18px;
    left: 22px;
    font-size: 26px;
    gap: 10px;
  }
  .hero__brand-house { width: 28px; height: 28px; }
  .hero__brand-sun { width: 20px; height: 20px; }
  .hero__brand::after { display: none; }
  .hero__lang {
    top: 20px;
    right: 22px;
    gap: 12px;
    font-size: 11px;
    color: #fff;
  }
  .hero__lang button {
    color: #fff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  }
  .hero__lang button.is-active {
    color: var(--sand);
    border-color: var(--sand);
  }
  .hero__kicker {
    font-size: 10px;
    margin-bottom: 14px;
    gap: 10px;
  }
  .hero__kicker::before { width: 24px; }
  .hero__title {
    font-size: clamp(28px, 8vw, 40px);
    margin-bottom: 14px;
  }
  .hero__lede {
    font-size: 14px;
    margin-bottom: 22px;
    max-width: none;
  }
  .hero__actions {
    gap: 16px;
    margin-bottom: 24px;
  }
  .btn {
    padding: 13px 22px;
    font-size: 14px;
  }
  .hero__meta {
    gap: 12px;
    padding-top: 16px;
  }
  .hero__meta-num {
    font-size: 28px;
  }
  .hero__meta-label {
    font-size: 9px;
    letter-spacing: 2px;
  }
}


/* ====== SECTIONS ====== */
.section__eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
}

/* ====== INTRO ====== */
.intro {
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
}
.intro__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}
.intro__text p {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
  text-wrap: pretty;
}
.intro__text .section__title {
  margin-bottom: 16px;
}
.specs {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
  padding: 40px 32px;
  background: var(--bone-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clay);
}
.specs li {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.specs__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 48px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.specs__label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

@media (max-width: 880px) {
  .intro__grid { grid-template-columns: 1fr; }
}

/* ====== GALLERY ====== */
.gallery {
  padding: clamp(60px, 10vw, 120px) var(--pad-x);
  background: var(--bone-2);
}
.gallery__header {
  max-width: 1280px;
  margin: 0 auto 56px;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1280px;
  margin: 0 auto;
}
.gallery__item {
  position: relative;
  grid-column: span 2;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  background: var(--clay);
}
.gallery__item--wide { grid-column: span 4; }

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.gallery__item--wide img { aspect-ratio: 16/7; }

.gallery__item:hover img { transform: scale(1.03); }

.gallery__item figcaption {
  position: absolute;
  bottom: 14px;
  left: 18px;
  padding: 6px 14px;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
}

@media (max-width: 880px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--wide img { aspect-ratio: 4/3; }
}
@media (max-width: 520px) {
  .gallery__grid { grid-template-columns: 1fr; gap: 10px; }
  .gallery__item, .gallery__item--wide { grid-column: span 1; }
}

/* ====== AMENITIES ====== */
.amenities {
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
  max-width: 1280px;
  margin: 0 auto;
}
.amenities .section__eyebrow,
.amenities .section__title {
  text-align: left;
}
.amenities .section__title {
  max-width: 680px;
  margin-bottom: 48px;
}
.amenities__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--clay);
  border: 1px solid var(--clay);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.amenities__list li {
  padding: 24px 28px;
  background: var(--bone);
  font-size: 15px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 14px;
}
.amenities__list li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 880px) {
  .amenities__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .amenities__list { grid-template-columns: 1fr; }
}

/* ====== LOCATION ====== */
.location {
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
  background: var(--bone-2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.location__text p {
  margin-top: 20px;
  color: var(--ink-soft);
  line-height: 1.7;
  text-wrap: pretty;
}
.location__list {
  list-style: none;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.location__list li {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--clay);
  font-size: 15px;
}
.location__list strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  color: var(--terracotta);
  min-width: 70px;
}
.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clay);
  aspect-ratio: 1;
}
.location__map svg { width: 100%; height: 100%; display: block; }

@media (max-width: 880px) {
  .location { grid-template-columns: 1fr; }
}

/* ====== BOOK ====== */
.book {
  padding: clamp(80px, 12vw, 140px) var(--pad-x);
  max-width: 1280px;
  margin: 0 auto;
}
.book__header {
  margin-bottom: 56px;
  max-width: 680px;
}
.book__sub {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 16px;
}
.book__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 980px) {
  .book__grid { grid-template-columns: 1fr; }
}

/* ====== CALENDAR ====== */
.calendar {
  background: var(--bone-2);
  border: 1px solid var(--clay);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.calendar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.calendar__label {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  flex: 1;
  letter-spacing: -0.01em;
}
.calendar__nav {
  width: 36px; height: 36px;
  background: var(--bone);
  border: 1px solid var(--clay);
  border-radius: 50%;
  font-size: 16px;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.calendar__nav:hover {
  background: var(--clay);
  border-color: var(--sand);
}
.calendar__months {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 600px) {
  .calendar__months { grid-template-columns: 1fr; }
}
.calendar-month__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  margin-bottom: 12px;
  color: var(--ink);
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.calendar-grid__dow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--muted);
  padding: 6px 0;
  text-transform: uppercase;
}
.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  position: relative;
  color: var(--ink);
}
.calendar-day--empty { cursor: default; }
.calendar-day--past {
  color: var(--muted);
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-thickness: 0.5px;
}
.calendar-day--avail:hover {
  background: var(--clay);
}
.calendar-day--booked {
  color: var(--muted);
  opacity: 0.5;
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-thickness: 0.5px;
}
.calendar-day--pending {
  color: var(--ink);
  background: repeating-linear-gradient(
    45deg,
    var(--bone-2),
    var(--bone-2) 3px,
    var(--sand) 3px,
    var(--sand) 6px
  );
  opacity: 0.7;
  cursor: not-allowed;
}
.calendar-day--selected {
  background: var(--terracotta);
  color: var(--bone);
  font-weight: 500;
}
.calendar-day--range {
  background: rgba(200, 85, 61, 0.12);
  border-radius: 0;
  color: var(--ink);
}
.calendar-day--range-start {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.calendar-day--range-end {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.calendar__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--clay);
  font-size: 12px;
  color: var(--ink-soft);
}
.calendar__legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.legend-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.legend-dot--avail { background: var(--bone); border: 1px solid var(--sand); }
.legend-dot--booked { background: var(--muted); opacity: 0.5; }
.legend-dot--pending { background: repeating-linear-gradient(45deg, var(--bone-2), var(--bone-2) 2px, var(--sand) 2px, var(--sand) 4px); }
.legend-dot--selected { background: var(--terracotta); }

/* ====== BOOKING FORM ====== */
.booking {
  background: var(--bone);
  border: 1px solid var(--clay);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.booking__summary {
  padding: 20px;
  background: var(--bone-2);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.booking__dates {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}
.booking__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.booking__value {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
}
.booking__arrow {
  color: var(--muted);
  font-size: 14px;
}
.booking__price {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--clay);
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: var(--ink-soft);
}
.booking__price-total {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}
.booking__price-row {
  display: flex;
  justify-content: space-between;
}

.field {
  margin-bottom: 16px;
}
.field label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bone);
  border: 1px solid var(--clay);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}
.field__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.booking__note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}
.booking__status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  display: none;
}
.booking__status.is-success {
  display: block;
  background: #E8EDE0;
  color: var(--olive);
  border: 1px solid var(--olive);
}
.booking__status.is-error {
  display: block;
  background: #F9E4E0;
  color: var(--terracotta-dk);
  border: 1px solid var(--terracotta);
}
.booking__status.is-loading {
  display: block;
  background: var(--bone-2);
  color: var(--ink-soft);
  border: 1px solid var(--clay);
}

/* ====== FOOTER ====== */
.footer {
  padding: 64px var(--pad-x) 40px;
  background: var(--ink);
  color: var(--bone);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--bone);
}
.footer__brand-house {
  width: 26px;
  height: 26px;
  stroke: var(--bone);
  flex-shrink: 0;
}
.footer__brand-sun {
  width: 18px;
  height: 18px;
  stroke: var(--bone);
  opacity: 0.9;
  flex-shrink: 0;
}
.footer__brand-dot { color: var(--terracotta); }
.footer__brand-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--bone);
  opacity: 0.55;
  margin-left: 4px;
}
.footer__info {
  font-size: 14px;
  opacity: 0.8;
  text-align: center;
}
.footer__info a {
  border-bottom: 1px solid rgba(250, 247, 242, 0.3);
  transition: border-color 0.2s;
}
.footer__info a:hover { border-color: var(--terracotta); }
.footer__copy {
  font-size: 12px;
  opacity: 0.5;
}
@media (max-width: 720px) {
  .footer { grid-template-columns: 1fr; text-align: center; }
  .footer__brand { justify-content: center; }
}

/* ====== LIGHTBOX ====== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(42, 37, 34, 0.95);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.is-open {
  display: flex;
}
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(250, 247, 242, 0.1);
  border: 1px solid rgba(250, 247, 242, 0.2);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(250, 247, 242, 0.25);
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }
