/* ============================================
   style.css — Khrystyna Baranska Nail Studio
   European-style one-page salon site.
   Fonts (add before this file in <head>):
   <link rel="preconnect" href="https://fonts.googleapis.com">
   <link href="https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Manrope:wght@400;500;600;700&display=swap" rel="stylesheet">
   ============================================ */

/* ----------------------------------------------
   DESIGN TOKENS
   #E4BABB (blush) is the brand color. The page
   background stays a warm cream/milk neutral so
   the blush and the wine accent keep their punch
   instead of washing out over a full-pink canvas.
   ---------------------------------------------- */
:root {
  --color-cream: #FBF6F2;       /* main page background — milky, warm */
  --color-cream-deep: #F3E6DF;  /* banded section background */
  --color-paper: #FFFDFB;       /* card surfaces */

  --color-blush: #E4BABB;       /* brand color */
  --color-blush-soft: #F1DCDB;  /* light tint — washes, hovers */
  --color-blush-deep: #C89496;  /* deeper companion shade — borders, shadows */

  --color-wine: #6E2A34;        /* contrast accent — headings, CTAs */
  --color-wine-dark: #551F27;   /* hover state */

  --color-ink: #2C2321;         /* body text */
  --color-ink-soft: #7A6C67;    /* secondary text */
  --color-gold: #B08D57;        /* hairline / rating accent, used sparingly */
  --color-line: #E9DCD3;        /* dividers on cream */
  --color-line-on-blush: #D9AEAF;

  --font-display: "Fraunces", serif;
  --font-body: "Manrope", sans-serif;

  --navbar-height: 96px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.8px;
  color: var(--color-ink);
  background: var(--color-cream);
}

img {
  max-width: 100%;
}

/* ============================================
   SCROLL REVEAL
   Lightweight fade + rise on entry, staggered
   via CSS custom property set on each element.
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--reveal-delay, 0) * 1ms);
}

[data-reveal].is-in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-height);
  background: rgba(251, 246, 242, 0.7);
  backdrop-filter: blur(10px);
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold) 50%, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.navbar.is-scrolled {
  background: rgba(251, 246, 242, 0.94);
  box-shadow: 0 8px 28px rgba(43, 23, 26, 0.08);
}

.navbar.is-scrolled::after {
  opacity: 1;
}

.navbar__inner {
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-right: auto;
  text-decoration: none;
  color: inherit;
}

.navbar__logo-wrap {
  display: flex;
  align-items: center;
  height: 54px;
  flex-shrink: 0;
}

.navbar__logo {
  height: 100%;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.navbar__brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--color-wine);
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15.75px;
  color: var(--color-wine);
  flex-shrink: 0;
}

.navbar__brand-name {
  /* Variant 1 — Cormorant Garamond, upright */
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.6px;
  color: var(--color-wine);
  white-space: nowrap;
}

.navbar__nav {
  position: relative;
}

.navbar__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.navbar__link {
  display: inline-block;
  padding: 8px 0;
  font-size: 15.23px;
  font-weight: 600;
  color: var(--color-ink-soft);
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.navbar__link:hover {
  color: var(--color-wine);
}

.navbar__link.is-active {
  color: var(--color-ink);
}

.navbar__underline {
  position: absolute;
  bottom: -1px;
  height: 2px;
  background: var(--color-wine);
  border-radius: 2px;
  transition: left 0.35s var(--ease), width 0.35s var(--ease);
}

.navbar__booking {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--color-wine);
  color: var(--color-cream);
  font-size: 14.18px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 100px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(110, 42, 52, 0.25);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.navbar__booking svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.navbar__booking:hover {
  background: var(--color-wine-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(110, 42, 52, 0.32);
}

.navbar__toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  background: transparent;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.navbar__toggle span,
.navbar__toggle span::before,
.navbar__toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--color-ink);
  position: relative;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.navbar__toggle span::before { position: absolute; top: -6px; }
.navbar__toggle span::after { position: absolute; top: 6px; }

.navbar__toggle.is-open span { background: transparent; }
.navbar__toggle.is-open span::before { transform: translateY(6px) rotate(45deg); }
.navbar__toggle.is-open span::after { transform: translateY(-6px) rotate(-45deg); }

.navbar__mobile {
  display: none;
  flex-direction: column;
  padding: 8px 24px 28px;
  border-top: 1px solid var(--color-line);
  background: var(--color-cream);
}

.navbar__mobile.is-open {
  display: flex;
}

.navbar__mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar__mobile-list a {
  display: block;
  padding: 12px 0;
  font-size: 15.75px;
  font-weight: 500;
  color: var(--color-ink-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--color-line);
}

.navbar__mobile-list a.is-active {
  color: var(--color-wine);
  font-weight: 600;
}

.navbar__booking--mobile {
  margin-top: 16px;
  justify-content: center;
  width: 100%;
}

@media (max-width: 1240px) {
  .navbar__nav,
  .navbar__booking {
    display: none;
  }
  .navbar__toggle {
    display: flex;
  }
  .navbar__inner {
    padding: 0 20px;
  }
}

/* Small phones: the brand logo + wordmark no longer
   fit next to the menu toggle at full size, so shrink
   and let the name wrap instead of forcing overflow. */
@media (max-width: 480px) {
  .navbar__inner {
    gap: 12px;
  }
  .navbar__brand {
    gap: 8px;
  }
  .navbar__logo-wrap {
    height: 32px;
  }
  .navbar__brand-name {
    font-size: 13px;
    white-space: normal;
    max-width: 110px;
    line-height: 1.15;
  }
}

/* ============================================
   SHARED LAYOUT / TYPE HELPERS
   ============================================ */
main {
  padding-top: var(--navbar-height);
}

.section {
  padding: 120px 64px;
  scroll-margin-top: var(--navbar-height);
}

.section--band {
  background: var(--color-cream-deep);
}

.section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .section {
    padding: 80px 24px;
  }
}

.eyebrow {
  font-size: 12.6px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-wine);
  margin: 0 0 14px;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(31.5px, 3.78vw, 44.1px);
  font-weight: 500;
  margin: 0 0 16px;
  line-height: 1.15;
}

.section__lead {
  color: var(--color-ink-soft);
  max-width: 560px;
  line-height: 1.7;
  margin: 0 0 56px;
}

.section__header {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}

.section__header .section__lead {
  margin: 0 auto;
  text-align: center;
}

/* ============================================
   PLACEHOLDER PHOTO
   Reusable stand-in for real photography.
   ============================================ */
.placeholder-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(155deg, var(--color-blush-soft), var(--color-cream-deep));
  border: 1px dashed var(--color-blush-deep);
  border-radius: 10px;
  color: var(--color-wine);
  text-align: center;
  width: 100%;
  height: 100%;
}

.placeholder-photo svg {
  width: 30px;
  height: 30px;
  opacity: 0.65;
}

.placeholder-photo span {
  font-size: 11.55px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-wine);
  opacity: 0.75;
}

/* ============================================
   HOME / HERO
   ============================================ */
.hero {
  min-height: calc(100vh - var(--navbar-height));
  display: flex;
  align-items: center;
  padding: 64px;
}

.hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(46.2px, 6.3vw, 81.9px);
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 22px;
}

.hero__title em {
  font-style: italic;
  color: var(--color-wine);
}

.hero__subtitle {
  color: var(--color-ink-soft);
  max-width: 460px;
  font-size: 17.85px;
  line-height: 1.75;
  margin: 0 0 36px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  background: var(--color-wine);
  color: var(--color-cream);
  text-decoration: none;
  font-weight: 600;
  font-size: 15.23px;
  border: 1px solid var(--color-wine);
  border-radius: 100px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.btn:hover {
  background: var(--color-wine-dark);
  border-color: var(--color-wine-dark);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-wine);
}

.btn--ghost:hover {
  background: var(--color-blush-soft);
  transform: none;
}

.hero__figure {
  position: relative;
  aspect-ratio: 4 / 5;
}

.hero__figure::before {
  content: "";
  position: absolute;
  inset: -24px -24px auto auto;
  width: 62%;
  height: 62%;
  background: var(--color-blush);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.6;
}

.hero__figure .placeholder-photo {
  position: relative;
  z-index: 1;
}

.hero__photo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero__figure {
    order: -1;
    max-width: 360px;
    margin: 0 auto;
  }
  .hero {
    padding: 48px 24px 64px;
    text-align: center;
  }
  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__actions {
    justify-content: center;
  }
}

/* ============================================
   ABOUT ME
   (merged Home + About — hero visual up top,
   philosophy + pillars continue directly below)
   ============================================ */
#about {
  scroll-margin-top: var(--navbar-height);
}

.about-philosophy-wrap {
  padding: 0 64px 120px;
}

.about-philosophy-wrap .section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about-philosophy__intro {
  max-width: 640px;
}

.about-philosophy__intro h2 {
  font-family: var(--font-display);
  font-size: clamp(29.4px, 3.57vw, 39.9px);
  font-weight: 500;
  margin: 0 0 14px;
  line-height: 1.15;
}

.about-philosophy__intro p {
  color: var(--color-ink-soft);
  line-height: 1.75;
  max-width: 640px;
  margin: 0;
}

.about-pillars {
  list-style: none;
  margin: 48px 0 0;
  padding: 40px 0 0;
  border-top: 1px solid var(--color-line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.about-pillars .num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--color-wine);
  font-size: 17.85px;
  display: block;
  margin-bottom: 10px;
}

.about-pillars strong {
  display: block;
  font-size: 16.28px;
  margin-bottom: 6px;
}

.about-pillars p {
  margin: 0;
  color: var(--color-ink-soft);
  font-size: 14.7px;
  line-height: 1.6;
  max-width: none;
}

.about-bio {
  max-width: 700px;
  margin: 64px auto 0;
}

/* Reuses .eyebrow's type (same as "GALLERY" / "RECOGNITION") —
   only adds the centering + divider spacing this instance needs. */
.about-bio__kicker {
  margin: 0 0 28px;
  padding-top: 44px;
  border-top: 1px solid var(--color-line);
  text-align: center;
}

.about-bio__lead {
  font-family: var(--font-display);
  font-size: clamp(19.6px, 2.1vw, 24.5px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-ink);
  margin: 0 0 24px;
}

.about-bio__lead strong {
  font-weight: 500;
  color: var(--color-wine);
}

.about-bio__more {
  border-top: 1px solid var(--color-line);
  padding-top: 22px;
}

.about-bio__toggle {
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-wine);
  transition: color 0.2s ease;
}

.about-bio__toggle::-webkit-details-marker {
  display: none;
}

.about-bio__toggle::after {
  content: "+";
  font-size: 16px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.about-bio__toggle:hover {
  color: var(--color-wine-dark);
}

.about-bio__more[open] .about-bio__toggle {
  margin-bottom: 22px;
}

.about-bio__more[open] .about-bio__toggle::after {
  transform: rotate(45deg);
}

.about-bio__paragraphs {
  display: grid;
  gap: 18px;
}

.about-bio__paragraphs p {
  margin: 0;
  color: var(--color-ink-soft);
  line-height: 1.75;
  max-width: 640px;
}

.about-bio__paragraphs em {
  font-style: italic;
  color: var(--color-wine);
}

@media (max-width: 860px) {
  .about-philosophy-wrap {
    padding: 0 24px 80px;
  }
  .about-pillars {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-bio {
    margin-top: 48px;
  }
  .about-bio__kicker {
    padding-top: 32px;
    margin-bottom: 22px;
  }
}

/* ============================================
   COMING SOON PANEL
   Shared placeholder for content not filled in
   yet (used by "My Course" for now).
   ============================================ */
.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(155deg, var(--color-blush-soft), var(--color-cream-deep));
  border: 1px dashed var(--color-blush-deep);
  border-radius: 10px;
  padding: 72px 32px;
  text-align: center;
}

.coming-soon svg {
  width: 32px;
  height: 32px;
  color: var(--color-wine);
  opacity: 0.65;
}

.coming-soon strong {
  font-family: var(--font-display);
  font-size: 19.95px;
  font-weight: 500;
  color: var(--color-wine);
}

.coming-soon span {
  font-size: 14.18px;
  color: var(--color-ink-soft);
  max-width: 360px;
}

/* ============================================
   MY BOOK
   ============================================ */
.book__grid {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 64px;
  align-items: center;
}

.book__figure {
  position: relative;
  aspect-ratio: 2 / 3;
  max-width: 300px;
}

/* Soft accent circle behind the cover — same technique as .hero__figure::before,
   reused here to tie the book presentation back to the site's visual language. */
.book__figure::before {
  content: "";
  position: absolute;
  inset: -20px -20px auto auto;
  width: 65%;
  height: 65%;
  background: var(--color-blush);
  border-radius: 50%;
  opacity: 0.6;
  z-index: 0;
}

.book__cover {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 28px 54px rgba(44, 35, 33, 0.26), 0 8px 18px rgba(44, 35, 33, 0.14);
  transform: perspective(1200px) rotateY(-10deg) rotateX(2deg);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.book__figure:hover .book__cover {
  transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
  box-shadow: 0 34px 64px rgba(44, 35, 33, 0.3), 0 10px 22px rgba(44, 35, 33, 0.16);
}

.book__text .section__lead {
  max-width: none;
}

.book__paragraphs {
  display: grid;
  gap: 16px;
  margin: 0 0 32px;
}

.book__paragraphs p {
  margin: 0;
  color: var(--color-ink-soft);
  line-height: 1.75;
  max-width: none;
}

@media (max-width: 860px) {
  .book__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .book__figure {
    max-width: 240px;
    margin: 0 auto;
  }
  .book__cover,
  .book__figure:hover .book__cover {
    transform: none;
    box-shadow: 0 18px 36px rgba(44, 35, 33, 0.22);
  }
}

/* ============================================
   ACHIEVEMENTS
   ============================================ */

/* ------------------------------------------
   Achievements — awards, credentials, notes
   ------------------------------------------ */
.achievements-extra {
  margin-top: 88px;
}

.subsection-label {
  font-size: 12.6px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
  margin: 0 0 24px;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 0 0 72px;
}

.award-card {
  margin: 0;
  border: 1px solid var(--color-line);
  border-radius: 10px;
  background: var(--color-paper);
  overflow: hidden;
}

.award-card__figure {
  aspect-ratio: 4 / 5;
}

.award-card__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.award-card__caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 18px 20px;
}

.award-card__caption strong {
  font-size: 15.23px;
  font-weight: 600;
  color: var(--color-ink);
  line-height: 1.35;
}

.award-card__caption span {
  font-size: 13.13px;
  color: var(--color-ink-soft);
  line-height: 1.5;
}

.award-card__caption a {
  color: var(--color-wine);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.award-card__caption a:hover {
  color: var(--color-wine-dark);
}

.credentials-list {
  list-style: none;
  margin: 0 0 72px;
  padding: 32px 0 0;
  border-top: 1px solid var(--color-line);
  display: grid;
  gap: 18px;
}

.credentials-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.credentials-list__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--color-wine);
}

.credentials-list li span {
  font-size: 15.75px;
  font-weight: 600;
  color: var(--color-ink);
  line-height: 1.5;
}

.credentials-list li span em {
  font-style: italic;
  font-weight: 500;
  color: var(--color-wine);
}

.achievements-notes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--color-line);
}

.achievements-notes strong {
  display: block;
  font-size: 16.28px;
  margin-bottom: 6px;
}

.achievements-notes p {
  margin: 0;
  color: var(--color-ink-soft);
  font-size: 14.7px;
  line-height: 1.6;
  max-width: none;
}

@media (max-width: 980px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .awards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .achievements-notes {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 860px) {
  .achievements-extra {
    margin-top: 56px;
  }
  .awards-grid,
  .credentials-list {
    margin-bottom: 48px;
  }
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-item {
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.35s var(--ease);
}

.gallery-item--photo:hover {
  transform: translateY(-4px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item--photo img {
  cursor: pointer;
  transition: transform 0.45s var(--ease);
}

.gallery-item--photo:hover img {
  transform: scale(1.07);
}

.gallery-item--photo img:focus-visible {
  outline: 2px solid var(--color-wine);
  outline-offset: -2px;
}

@media (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  border: 1px solid var(--color-line);
  border-radius: 10px;
  padding: 28px 26px;
  background: var(--color-paper);
}

.review-card__rating {
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.star {
  color: var(--color-line);
  font-size: 14.7px;
}

.star--filled {
  color: var(--color-gold);
}

.review-card__text {
  color: var(--color-ink);
  font-size: 15.75px;
  line-height: 1.65;
  margin: 0 0 20px;
}

.review-card__footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-card__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-blush-soft);
}

.review-card__name {
  font-size: 14.18px;
  font-weight: 600;
}

.review-card__role {
  display: block;
  font-size: 12.6px;
  color: var(--color-ink-soft);
  font-weight: 400;
}

@media (max-width: 980px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.empty-state {
  color: var(--color-ink-soft);
  font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-wine);
  color: var(--color-blush-soft);
  padding: 64px 64px 28px;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 40px 48px;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 23.1px;
  color: var(--color-cream);
  margin: 0 0 12px;
}

.footer__tagline {
  font-size: 14.7px;
  line-height: 1.6;
  color: var(--color-blush-soft);
  opacity: 0.85;
  max-width: 280px;
  margin: 0;
}

.footer__heading {
  font-size: 11.55px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-cream);
  opacity: 0.7;
  margin: 0 0 18px;
}

.footer__heading--follow {
  margin-top: 24px;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.footer__list a {
  color: var(--color-blush-soft);
  text-decoration: none;
  font-size: 15.23px;
  transition: color 0.2s ease;
}

.footer__list a:hover {
  color: var(--color-cream);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 4px;
}

.footer__contact a,
.footer__contact span {
  display: block;
  color: var(--color-blush-soft);
  text-decoration: none;
  font-size: 15.23px;
  line-height: 1.5;
}

.footer__contact a:hover {
  color: var(--color-cream);
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(251, 246, 242, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cream);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.footer__social a:hover {
  background: rgba(251, 246, 242, 0.14);
  border-color: var(--color-cream);
}

.footer__social svg {
  width: 15px;
  height: 15px;
}

.footer__map {
  aspect-ratio: 4 / 3;
  max-width: 260px;
}

.footer__bottom {
  max-width: 1200px;
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(251, 246, 242, 0.18);
  font-size: 13.13px;
  color: var(--color-blush-soft);
  opacity: 0.75;
}

@media (max-width: 780px) {
  .footer {
    padding: 56px 24px 24px;
  }
  .footer__map {
    max-width: 320px;
  }
}

/* ============================================
   GALLERY LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px;
  background: rgba(44, 35, 33, 0.92);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.35s ease;
}

.lightbox__image {
  display: block;
  max-width: min(90vw, 1000px);
  max-height: 82vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.lightbox.is-open .lightbox__image {
  opacity: 1;
  transform: scale(1);
}

.lightbox__image.is-swapping {
  opacity: 0;
  transform: scale(0.98);
}

.lightbox__close,
.lightbox__nav {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(251, 246, 242, 0.12);
  border: 1px solid rgba(251, 246, 242, 0.35);
  color: var(--color-cream);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: var(--color-blush);
  border-color: var(--color-blush);
  color: var(--color-wine);
}

.lightbox__close {
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 18px;
}

.lightbox__close:hover {
  transform: rotate(90deg);
}

.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  font-size: 26px;
  line-height: 1;
}

.lightbox__nav:hover {
  transform: translateY(-50%) scale(1.06);
}

.lightbox__nav--prev {
  left: 24px;
}

.lightbox__nav--next {
  right: 24px;
}

.lightbox__counter {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 12.6px;
  letter-spacing: 0.08em;
  color: var(--color-blush-soft);
}

@media (max-width: 720px) {
  .lightbox {
    padding: 24px;
  }
  .lightbox__image {
    max-width: 92vw;
    max-height: 74vh;
  }
  .lightbox__close {
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  .lightbox__nav {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .lightbox__nav--prev {
    left: 10px;
  }
  .lightbox__nav--next {
    right: 10px;
  }
  .lightbox__counter {
    bottom: 16px;
  }
}
