:root {
  --bg: #f4efe7;
  --bg-soft: #efe7db;
  --surface: rgba(255, 251, 246, 0.82);
  --surface-strong: #fffaf2;
  --line: rgba(88, 66, 43, 0.16);
  --text: #2f2419;
  --muted: #6d5b49;
  --accent: #a76c3d;
  --accent-deep: #7f4d28;
  --forest: #34524a;
  --shadow: 0 18px 60px rgba(74, 50, 28, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --content: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(167, 108, 61, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(52, 82, 74, 0.14), transparent 24%),
    linear-gradient(180deg, #f6f0e6 0%, #f4efe7 42%, #f9f4ec 100%);
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.site-shell {
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(244, 239, 231, 0.72);
  border-bottom: 1px solid rgba(88, 66, 43, 0.08);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 78px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.brand-mark {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}
.brand-sub {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--muted);
}

.header-phone {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent-deep);
  padding: 0.6rem 0.9rem;
  white-space: nowrap;
  border-radius: 999px;
  transition: background-color 180ms ease, color 180ms ease;
}
.header-phone:hover {
  background: rgba(167, 108, 61, 0.1);
  color: var(--accent);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.5);
  border-radius: 999px;
  padding: 0.7rem 0.95rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-link {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.nav-link:hover,
.nav-link[aria-current="page"] {
  background: rgba(52, 82, 74, 0.08);
  color: var(--text);
  transform: translateY(-1px);
}

.page-main {
  padding: 2rem 0 4rem;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  min-height: 72svh;
  box-shadow: var(--shadow);
  background: #d9cfbe;
}
.hero[data-hero-link] {
  cursor: pointer;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(35, 27, 18, 0.82) 0%, rgba(35, 27, 18, 0.35) 45%, rgba(35, 27, 18, 0.08) 100%);
}
.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-body {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  min-height: 72svh;
  padding: clamp(1.5rem, 4vw, 3rem);
}
.hero-copy {
  width: min(100%, 620px);
  color: #fff7ef;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,247,239,0.14);
  border: 1px solid rgba(255,247,239,0.28);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.hero h1,
.section-title,
.card-title,
.detail-title,
.legal-title {
  font-family: "Fraunces", serif;
  font-weight: 500;
  line-height: 0.98;
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 5.7rem);
  margin: 0 0 1rem;
}
.hero p {
  margin: 0;
  max-width: 42rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  color: rgba(255,247,239,0.9);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 50px;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff9f3;
  box-shadow: 0 14px 28px rgba(127, 77, 40, 0.22);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #b87845, #8c5630);
  border-color: rgba(255, 255, 255, 1);
}
.btn-secondary {
  background: rgba(255,247,239,0.12);
  color: #fff7ef;
  border-color: rgba(255,247,239,0.28);
}
.btn-secondary:hover {
  background: rgba(255, 247, 239, 0.2);
  border-color: rgba(255, 255, 255, 0.92);
}
.btn-ghost {
  background: transparent;
  color: var(--forest);
  border-color: rgba(52, 82, 74, 0.24);
}
.btn-ghost:hover {
  background: rgba(52, 82, 74, 0.08);
  border-color: rgba(255, 255, 255, 0.92);
}
.btn[aria-disabled="true"] {
  cursor: not-allowed;
}

.grid-two {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
  margin-top: 1.5rem;
}
.panel,
.list-card,
.form-card,
.quote-card,
.gallery-card,
.info-card,
.contact-card,
.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: background-color 320ms ease, border-color 320ms ease, transform 320ms ease;
}
.panel:hover,
.list-card:hover,
.form-card:hover,
.gallery-card:hover,
.info-card:hover,
.contact-card:hover,
.legal-card:hover {
  background: rgba(250, 245, 238, 0.97);
}
.quote-card:hover {
  background: linear-gradient(160deg, rgba(60, 92, 83, 0.98), rgba(36, 61, 54, 0.98));
}
.panel {
  padding: clamp(1.3rem, 3vw, 2rem);
}
.panel p,
.list-card p,
.info-card p,
.contact-card p,
.legal-card p { line-height: 1.75; color: var(--muted); }
.panel strong,
.info-card strong { color: var(--text); }

.section {
  padding: 1.2rem 0 0;
}
.section-spacious {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  margin: 0;
}
.section-kicker {
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

.stay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.stay-grid-airy {
  gap: 1.8rem;
  margin-top: 1.35rem;
}
.stay-card {
  overflow: hidden;
  position: relative;
  border-radius: 28px;
  min-height: 460px;
  border: 1px solid rgba(88, 66, 43, 0.12);
  box-shadow: var(--shadow);
  background: #d3c8b5;
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}
.stay-card[data-card-link] {
  cursor: pointer;
}
.stay-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 320ms ease;
}
.stay-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29, 23, 18, 0.08) 0%, rgba(29, 23, 18, 0.8) 100%);
  transition: background 320ms ease, opacity 320ms ease;
}
.stay-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 1.4rem;
  color: #fff7ef;
  transition: transform 320ms ease;
}
.stay-card:hover,
.stay-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255, 245, 232, 0.55);
  box-shadow:
    0 28px 70px rgba(74, 50, 28, 0.2),
    0 0 34px rgba(167, 108, 61, 0.18);
}
.stay-card:hover img,
.stay-card:focus-within img {
  transform: scale(1.04);
  filter: saturate(1.06) contrast(1.03);
}
.stay-card:hover::after,
.stay-card:focus-within::after {
  background: linear-gradient(180deg, rgba(29, 23, 18, 0.02) 0%, rgba(29, 23, 18, 0.72) 100%);
}
.stay-card:hover .stay-content,
.stay-card:focus-within .stay-content {
  transform: translateY(-2px);
}
.card-tag {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  display: inline-flex;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.24);
  border: 1px solid rgba(255, 248, 240, 0.5);
  box-shadow: 0 8px 18px rgba(22, 16, 11, 0.16);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fffaf4;
  backdrop-filter: blur(10px);
}
.card-title { font-size: 2rem; margin: 0 0 0.6rem; }
.card-price {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  color: rgba(255,247,239,0.92);
  font-weight: 600;
}
.card-price strong {
  font-size: 1.25rem;
  color: #fff9f3;
}
.card-copy { margin: 0 0 1rem; line-height: 1.65; color: rgba(255,247,239,0.88); }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.feature {
  padding: 1.2rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,250,242,0.72);
}
.feature strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1rem;
}
.feature span { color: var(--muted); line-height: 1.6; }

.detail-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: stretch;
}
.detail-photo {
  min-height: 520px;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.detail-photo[data-gallery-src] {
  cursor: pointer;
}
.detail-photo img { width: 100%; height: 100%; object-fit: cover; }
.detail-aside {
  display: grid;
  gap: 1rem;
}
.info-card,
.contact-card,
.legal-card,
.gallery-card,
.form-card,
.quote-card,
.list-card {
  padding: 1.4rem;
}
.detail-title { font-size: clamp(2.4rem, 5vw, 4rem); margin: 0 0 0.8rem; }
.detail-price {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  color: var(--accent);
  font-weight: 600;
}
.detail-price strong {
  font-size: 1.35rem;
  color: var(--text);
}
.detail-intro { margin: 0; line-height: 1.75; color: var(--muted); }
.section-price {
  margin: 0 0 0.85rem;
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 600;
}
.section-price strong {
  font-size: 1.25rem;
  color: var(--text);
}
.meta-list,
.bullet-list,
.legal-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}
.meta-list li,
.bullet-list li,
.legal-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(88, 66, 43, 0.1);
}
.meta-list li:last-child,
.bullet-list li:last-child,
.legal-list li:last-child { border-bottom: 0; }
.meta-label { display: block; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 0.22rem; }
.bullet-list-icons li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.list-picto {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  flex: 0 0 1.8rem;
  border-radius: 999px;
  background: rgba(167, 108, 61, 0.1);
  color: var(--accent-deep);
  font-size: 0.95rem;
  font-weight: 700;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  margin-top: 1rem;
}
.loire-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}
.loire-media-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}
.stack { display: grid; gap: 1rem; }
.gallery-card h2,
.form-card h2,
.quote-card h2,
.contact-card h2,
.legal-card h2 { margin-top: 0; font-family: "Fraunces", serif; font-size: 1.8rem; font-weight: 500; }
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}
.gallery-thumb {
  border: 0;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
}
.gallery-thumb img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform 220ms ease; }
.gallery-thumb:hover img { transform: scale(1.04); }

.loire-calendar-card {
  align-self: start;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin: 0.4rem 0 0.9rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.legend-item {
  align-items: center;
  display: inline-flex;
  gap: 0.45rem;
}

.legend-dot {
  border-radius: 999px;
  display: inline-block;
  height: 0.65rem;
  width: 0.65rem;
}

.legend-dot.is-available {
  background: #5d8a64;
}

.legend-dot.is-blocked {
  background: #9a5f5f;
}

.legend-dot.is-past {
  background: #8b8782;
}

.public-calendar {
  display: grid;
  gap: 0.9rem;
}

.public-month {
  border: 1px solid rgba(88, 66, 43, 0.12);
  border-radius: 16px;
  padding: 0.7rem;
  background: rgba(255, 252, 247, 0.78);
}

.public-month h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  text-transform: capitalize;
}

.public-weekdays,
.public-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
}

.public-weekdays {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  text-align: center;
  text-transform: uppercase;
}

.public-day,
.public-day-empty {
  align-items: center;
  border-radius: 9px;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  height: 1.9rem;
  justify-content: center;
}

.public-day {
  padding: 0;
  overflow: hidden;
}

.public-day-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  height: 100%;
  justify-content: center;
  line-height: 1;
  padding: 0;
  width: 100%;
}

.public-day-button[disabled] {
  cursor: default;
}

.public-day.is-available {
  background: rgba(93, 138, 100, 0.22);
  color: #2c4f30;
}

.public-day.is-blocked {
  background: rgba(154, 95, 95, 0.24);
  color: #5f2f2f;
}

.public-day.is-past {
  background: rgba(141, 137, 130, 0.26);
  color: #5f5b55;
}

.public-day.is-selected-start,
.public-day.is-selected-end {
  background: rgba(167, 108, 61, 0.42);
  color: #4f2f16;
}

.public-day.is-in-range {
  background: rgba(167, 108, 61, 0.42);
  color: #4f2f16;
}

.loire-calendar-card {
  display: grid;
  gap: 0.7rem;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto auto;
  max-height: 760px;
  min-height: 0;
  overflow: hidden;
}

.loire-calendar-scroll {
  min-height: 0;
  overflow-y: auto;
  padding-right: 0.35rem;
}

.loire-calendar-cta {
  background: linear-gradient(180deg, rgba(255, 251, 246, 0) 0%, rgba(255, 251, 246, 0.98) 30%);
  bottom: 0;
  margin-top: 0;
  padding-top: 0.8rem;
  position: sticky;
}

.calendar-mini-form {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.btn.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

.field-flash {
  animation: fieldFlash 360ms ease;
}

@keyframes fieldFlash {
  0% {
    box-shadow: 0 0 0 0 rgba(167, 108, 61, 0.48);
    border-color: rgba(167, 108, 61, 0.55);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(167, 108, 61, 0);
    border-color: rgba(88, 66, 43, 0.18);
  }
}

.quote-card {
  background: linear-gradient(160deg, rgba(52,82,74,0.95), rgba(31,52,46,0.95));
  color: #f5ede4;
}
.quote-card p { color: rgba(245, 237, 228, 0.86); }
.quote-mark { font-family: "Fraunces", serif; font-size: 4rem; line-height: 1; display: block; margin-bottom: 0.4rem; }
.quote-mark-home {
  line-height: 0.2em;
  margin-top: 2rem;
  margin-bottom: 0;
}
.quote-signature {
  font-style: italic;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.field,
.field-full {
  display: grid;
  gap: 0.45rem;
}
.field-full { grid-column: 1 / -1; }
label { font-weight: 700; font-size: 0.94rem; }
input,
select,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(88, 66, 43, 0.18);
  background: rgba(255, 252, 247, 0.9);
  color: var(--text);
}
textarea { min-height: 160px; resize: vertical; }
.form-note {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(167, 108, 61, 0.08);
  color: var(--muted);
}
.form-note strong { color: var(--accent-deep); }

.footer {
  padding: 1rem 0 2rem;
  color: var(--muted);
}
.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border-top: 1px solid rgba(88,66,43,0.12);
  padding-top: 1.1rem;
}
.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(12, 10, 9, 0.84);
  z-index: 50;
  padding: 2rem;
}
.lightbox.is-open { display: flex; }
.lightbox-dialog {
  position: relative;
  width: min(1240px, 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.lightbox-image {
  display: block;
  width: auto;
  max-width: min(1100px, calc(100vw - 8rem));
  max-height: 82vh;
  object-fit: contain;
  border-radius: 24px;
  background: transparent;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}
.lightbox-close {
  position: absolute;
  top: -0.8rem;
  right: -0.2rem;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
}
.lightbox-nav {
  border: 0;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
  transition: background-color 220ms ease, transform 220ms ease;
}
.lightbox-nav:hover {
  background: rgba(255,255,255,0.24);
  transform: scale(1.04);
}
.lightbox-nav[hidden] {
  display: none;
}

@media (max-width: 980px) {
  .grid-two,
  .detail-hero,
  .loire-layout,
  .loire-media-grid,
  .content-grid,
  .stay-grid,
  .feature-band { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .site-shell { width: min(calc(100% - 1.2rem), var(--content)); }
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
    padding: 0.7rem;
    border-radius: 24px;
    background: rgba(255, 250, 242, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-menu.is-open { display: flex; }
  .hero,
  .hero-body { min-height: 78svh; }
  .detail-photo { min-height: 340px; }
  .form-grid { grid-template-columns: 1fr; }
  .calendar-mini-form { grid-template-columns: 1fr; }
  .loire-calendar-cta .btn {
    width: 100%;
    justify-content: center;
  }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-row { flex-direction: column; align-items: flex-start; }
  .lightbox-dialog {
    width: 100%;
    gap: 0.6rem;
  }
  .lightbox-image {
    max-width: calc(100vw - 5.5rem);
  }
  .lightbox-nav {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
}

.inline-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 1rem;
}
.inline-photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 18px;
}
.photo-caption {
  margin: 0.6rem 0 0;
  font-size: 0.88rem;
  color: rgba(245, 237, 228, 0.8);
  font-weight: 500;
}

.testimonials-aside {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(52,82,74,0.95), rgba(31,52,46,0.95));
  color: #f5ede4;
  box-shadow: var(--shadow);
}

.testimonials-scroller {
  max-height: 420px;
  overflow-y: auto;
  padding-right: 0.5rem;
  margin-top: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.3) transparent;
}
.testimonials-scroller::-webkit-scrollbar {
  width: 6px;
}
.testimonials-scroller::-webkit-scrollbar-track {
  background: transparent;
}
.testimonials-scroller::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.3);
  border-radius: 999px;
}
.testimonials-scroller::-webkit-scrollbar-thumb:hover {
  background: rgba(255,255,255,0.5);
}

.testimonial-card {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.testimonial-card:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.testimonial-stars {
  color: #ffb400;
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
}
.testimonial-text {
  margin: 0 0 0.6rem;
  line-height: 1.65;
  color: rgba(245, 237, 228, 0.88);
}
.testimonial-author {
  margin: 0;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  font-size: 0.88rem;
}

@media (max-width: 760px) {
  .inline-photo-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-scroller {
    max-height: 380px;
  }
  .testimonial-card {
    padding: 1rem 0;
  }
}
