:root {
  --ink: #17352f;
  --forest: #245247;
  --sage: #dbe5dc;
  --sand: #f3eee5;
  --cream: #fbf8f2;
  --gold: #c99b4c;
  --white: #fff;
  --shadow: 0 18px 45px rgba(22, 44, 38, 0.14);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}
body.menu-open {
  overflow: hidden;
}
h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.08;
  margin: 0;
}
a {
  text-decoration: none;
  color: inherit;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 18px 5vw;
  color: #fff;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}
.site-header.scrolled {
  background: rgba(23, 53, 47, 0.95);
  backdrop-filter: blur(12px);
}
.brand {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-right: auto;
}
.site-header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.site-header nav a {
  font-size: 0.95rem;
}
.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 8px 15px;
  border-radius: 999px;
}
.lang-switch {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}
.lang-switch button {
  border: 0;
  background: transparent;
  color: #fff;
  opacity: 0.65;
  cursor: pointer;
  font-weight: 700;
}
.lang-switch button.active {
  opacity: 1;
  text-decoration: underline;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.hero {
  min-height: 96vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 150px 8vw 90px;
  color: #fff;
  background: url("assets/guide-riga.jpeg") center 38% / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(8, 28, 25, 0.82) 0%,
      rgba(8, 28, 25, 0.48) 48%,
      rgba(8, 28, 25, 0.12) 100%
    ),
    linear-gradient(to top, rgba(8, 28, 25, 0.45), transparent 55%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}
.hero h1 {
  font-size: clamp(3.1rem, 7vw, 6.8rem);
  max-width: 1000px;
  margin: 18px 0 24px;
}
.hero p {
  font-size: 1.2rem;
  max-width: 690px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 23px;
  border-radius: 999px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}
.button.primary {
  background: var(--gold);
  color: #182f2a;
}
.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.hero-card {
  position: absolute;
  z-index: 2;
  right: 6vw;
  bottom: 42px;
  width: 310px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.hero-card strong {
  display: block;
  font-family: "Playfair Display";
  font-size: 1.2rem;
  margin-bottom: 7px;
}
.section {
  padding: 110px 8vw;
}
.intro {
  display: grid;
  grid-template-columns: minmax(280px, 480px) minmax(300px, 620px);
  gap: 8vw;
  align-items: center;
}
.intro-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 180px 180px 24px 24px;
  box-shadow: var(--shadow);
}
.intro-copy h2,
.section-heading h2,
.contact h2 {
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  margin: 12px 0 26px;
}
.intro-copy p {
  font-size: 1.08rem;
}
.language-pills {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.language-pills span {
  background: var(--sage);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
}
.destinations {
  background: var(--ink);
  color: #fff;
}
.section-heading {
  max-width: 850px;
  margin-bottom: 46px;
}
.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.destination-card {
  min-height: 460px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  padding: 28px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}
.destination-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 24, 20, 0.86),
    rgba(8, 24, 20, 0.12)
  );
}
.destination-card > div {
  position: relative;
  z-index: 1;
}
.destination-card span {
  opacity: 0.7;
}
.destination-card h3 {
  font-size: 2.2rem;
  margin: 7px 0;
}
.destination-card p {
  margin: 0;
}
.riga {
  background-image: url("assets/riga.webp");
}
.sigulda {
  background-image: url("assets/sigulda.webp");
}
.cesis {
  background-image: url("assets/cesis.webp");
}
.rundale {
  background-image: url("assets/rundale.webp");
}
.services {
  background: var(--sand);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  min-height: 280px;
  box-shadow: 0 10px 30px rgba(39, 58, 51, 0.08);
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(198, 155, 88, 0.12);
  color: var(--gold);
  margin-bottom: 4px;
}
.service-icon svg {
  width: 26px;
  height: 26px;
}
.service:hover .service-icon {
  background: rgba(198, 155, 88, 0.2);
}
.service h3 {
  font-size: 1.55rem;
  margin: 18px 0 12px;
}
.quote-section {
  height: 75vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.quote-section img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}
.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 42, 35, 0.55);
}
blockquote {
  position: relative;
  z-index: 2;
  color: #fff;
  font-family: "Playfair Display";
  font-size: clamp(2rem, 4vw, 4.3rem);
  max-width: 1000px;
  text-align: center;
  padding: 30px;
}
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 26px;
  font-weight: 700;
}
.contact-form {
  background: #fff;
  padding: 34px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.contact-form label {
  display: block;
  margin-bottom: 18px;
  font-weight: 600;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid #cfd8d2;
  border-radius: 10px;
  font: inherit;
  background: #fff;
}
footer {
  padding: 28px 8vw;
  background: var(--ink);
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 980px) {
  .site-header nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: fixed;
    left: 0;
    right: 0;
    background: rgba(15, 36, 31, 0.98);
    padding: 20px 24px 24px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.25s ease,
      opacity 0.25s ease,
      visibility 0.25s;
  }
  .site-header nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .site-header nav a {
    padding: 14px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 1.05rem;
  }
  .site-header nav a:nth-last-child(2) {
    border-bottom: 0;
  }
  .site-header nav .nav-cta {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 999px;
    text-align: center;
    margin-top: 14px;
    padding: 12px;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .destination-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .intro,
  .contact {
    grid-template-columns: 1fr;
  }
  .hero-card {
    display: none;
  }
  .intro-image {
    max-width: 520px;
  }
  .hero {
    background-position: 58% center;
  }
}
@media (max-width: 620px) {
  .site-header {
    padding: 16px 20px;
    gap: 14px;
  }
  .brand {
    font-size: 1.05rem;
  }
  .section {
    padding: 80px 22px;
  }
  .hero {
    padding: 120px 22px 70px;
    min-height: 92vh;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .destination-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }
  .destination-card {
    min-height: 350px;
  }
  .contact-form {
    padding: 24px;
  }
  footer {
    padding: 24px 22px;
    flex-direction: column;
  }
  .lang-switch button {
    font-size: 0.78rem;
  }
}

/* Premium multilingual hero refinements */
:root {
  --gold: #c49a49;
  --gold-hover: #b58a39;
}
.site-header {
  background: rgba(12, 18, 28, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease;
}
.site-header.scrolled {
  background: rgba(12, 18, 28, 0.78);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.button.primary {
  background: var(--gold);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}
.button.primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.button.secondary,
.nav-cta {
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}
.button.secondary:hover,
.nav-cta:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #fff;
}
.hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(8, 28, 25, 0.88) 0%,
      rgba(8, 28, 25, 0.58) 48%,
      rgba(8, 28, 25, 0.2) 100%
    ),
    linear-gradient(to top, rgba(8, 28, 25, 0.58), transparent 58%);
}
.hero h1 {
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
html[lang="en"] .hero h1 {
  font-size: clamp(3.1rem, 7vw, 6.8rem);
}
html[lang="de"] .hero h1 {
  font-size: clamp(2.85rem, 6.15vw, 5.85rem);
  line-height: 0.9;
}
html[lang="da"] .hero h1 {
  font-size: clamp(2.95rem, 6.35vw, 6.05rem);
  line-height: 0.9;
}
.hero-card {
  right: 8vw;
  bottom: 20px;
  transform: translateX(-12px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(8px);
}
.destination-card {
  isolation: isolate;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  background-color: #37554c;
}
.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 25, 20, 0);
  transition: background 0.35s ease;
  z-index: 0;
}
.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.3);
}
.destination-card:hover::after {
  background: rgba(7, 25, 20, 0.2);
}
.destination-card > div {
  z-index: 2;
}
.riga {
  background-image: url("assets/riga.webp");
}
.sigulda {
  background-image: url("assets/sigulda.webp");
}
.cesis {
  background-image: url("assets/cesis.webp");
}
.rundale {
  background-image: url("assets/rundale.webp");
}
.destination-card p {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition:
    max-height 0.35s ease,
    opacity 0.35s ease,
    transform 0.35s ease;
}
.destination-card:hover p,
.destination-card:focus-within p {
  max-height: 150px;
  opacity: 1;
  transform: none;
}
.service {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.service:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(39, 58, 51, 0.13);
}
@media (max-height: 820px) and (min-width: 981px) {
  .hero {
    padding-top: 125px;
    padding-bottom: 72px;
  }
  .hero p {
    font-size: 1.08rem;
  }
  .hero-actions {
    margin-top: 24px;
  }
  .hero-card {
    bottom: 14px;
  }
}
@media (max-width: 620px) {
  html[lang="de"] .hero h1,
  html[lang="da"] .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3rem);
  }
  .destination-card p {
    max-height: none;
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Local destination photography and premium finishing */
.destination-card {
  background-size: cover;
  background-position: center;
  transform: translateZ(0);
}
.destination-card::before {
  background: linear-gradient(
    to top,
    rgba(5, 20, 17, 0.92) 0%,
    rgba(5, 20, 17, 0.42) 44%,
    rgba(5, 20, 17, 0.06) 78%
  );
}
.destination-card:hover {
  background-size: 108%;
}
.intro-copy .guide-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin-top: 28px;
}
.guide-checks span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
}
.guide-checks span::before {
  content: "✓";
  color: var(--gold);
  font-weight: 800;
}
.contact-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(39, 58, 51, 0.08);
}
.contact-card small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6a7b75;
  margin-bottom: 5px;
}
.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: flex;
  gap: 10px;
}
.floating-contact a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
  font-weight: 800;
}
.photo-credits {
  font-size: 0.72rem;
  opacity: 0.7;
  max-width: 900px;
}
@media (max-width: 980px) {
  .contact-details {
    grid-template-columns: 1fr;
  }
  .floating-contact {
    bottom: 14px;
    right: 14px;
  }
}
@media (max-width: 620px) {
  .intro-copy .guide-checks {
    grid-template-columns: 1fr;
  }
  .floating-contact a {
    width: 46px;
    height: 46px;
  }
  .destination-card:hover {
    background-size: cover;
  }
}

/* Cookie consent and legal links */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 8px 0 4px;
  font-size: 0.88rem;
}
.footer-links a,
.footer-links button {
  color: inherit;
  opacity: 0.82;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-links button {
  font: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.footer-links a:hover,
.footer-links button:hover {
  opacity: 1;
}
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 980px;
  margin: auto;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  border: 1px solid rgba(23, 53, 47, 0.12);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  transform: translateY(24px);
  opacity: 0;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner.is-visible {
  transform: none;
  opacity: 1;
}
.cookie-icon {
  font-size: 1.7rem;
  align-self: start;
}
.cookie-copy strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.cookie-copy p {
  margin: 0 0 5px;
  line-height: 1.45;
  font-size: 0.94rem;
}
.cookie-copy a {
  font-size: 0.86rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cookie-actions .button {
  padding: 11px 18px;
  white-space: nowrap;
}
.cookie-decline {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(23, 53, 47, 0.32);
}
.cookie-decline:hover {
  background: var(--sage);
}
@media (max-width: 760px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .cookie-icon {
    display: none;
  }
  .cookie-actions {
    justify-content: flex-end;
  }
  .cookie-actions .button {
    flex: 1;
  }
  .floating-contact {
    right: 14px;
    bottom: 18px;
  }
  body:has(.cookie-banner.is-visible) .floating-contact {
    bottom: 165px;
  }
}

/* Navigation order, active-section indicator and fixed-header offsets */
#about,
#tours,
#services,
#contact {
  scroll-margin-top: 92px;
}
.site-header nav .nav-link {
  position: relative;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}
.site-header nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.22s ease;
}
.site-header nav .nav-link:hover,
.site-header nav .nav-link.is-active {
  color: var(--gold);
}
.site-header nav .nav-link:hover::after,
.site-header nav .nav-link.is-active::after {
  width: 100%;
}
.site-header nav .nav-cta::after {
  bottom: -9px;
  width: 0;
}
.site-header nav .nav-cta.is-active {
  border-color: var(--gold);
  background: rgba(196, 154, 73, 0.12);
}
.site-header nav .nav-cta:hover::after,
.site-header nav .nav-cta.is-active::after {
  width: 62%;
}

/* Contact form delivery and validation */
.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.form-status {
  min-height: 1.5em;
  margin: -4px 0 14px;
  font-weight: 700;
  font-size: 0.92rem;
}
.form-status.is-error {
  color: #a32626;
}
.form-status.is-success {
  color: #216b42;
}
.contact-form input:invalid:not(:placeholder-shown),
.contact-form textarea:invalid:not(:placeholder-shown) {
  border-color: #b94a48;
}
.contact-form button:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

/* Prevent long contact details from overflowing their cards */
.contact-card {
  min-width: 0;
  overflow: hidden;
}
.contact-card a,
.contact-card span {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.35;
}
.contact-card a {
  font-size: clamp(0.94rem, 1.15vw, 1.08rem);
}
@media (max-width: 1180px) and (min-width: 981px) {
  .contact-details {
    grid-template-columns: 1fr;
  }
}

/* Compact one-line contact information rows */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}
.contact-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: baseline;
  gap: 10px;
  width: 100%;
  padding: 15px 18px;
  min-width: 0;
  overflow: hidden;
}
.contact-card small {
  display: block;
  margin: 0;
  font-size: 0.78rem;
  white-space: nowrap;
}
.contact-card span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: clamp(0.94rem, 1.15vw, 1.08rem);
  line-height: 1.35;
}
.contact-card:hover span {
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 620px) {
  .contact-card {
    grid-template-columns: 78px minmax(0, 1fr);
    padding: 14px 15px;
  }
  .contact-card span {
    font-size: 0.94rem;
  }
}

/* Guest feedback, counters and review carousel */
.reviews {
  background: linear-gradient(180deg, var(--cream) 0%, #f0eadd 100%);
  overflow: hidden;
}
.reviews-heading {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.reviews-intro {
  max-width: 680px;
  margin: 0 auto;
  color: #587068;
  font-size: 1.05rem;
}
.review-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto 52px;
}
.review-stat {
  padding: 24px 18px;
  text-align: center;
  border-top: 1px solid rgba(23, 53, 47, 0.22);
  border-bottom: 1px solid rgba(23, 53, 47, 0.12);
}
.review-stat strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1;
  color: var(--forest);
  margin-bottom: 9px;
}
.review-stat span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #65766f;
}
.reviews-carousel {
  max-width: 960px;
  margin: 0 auto;
}
.reviews-viewport {
  overflow: hidden;
  border-radius: 24px;
}
.reviews-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
  touch-action: pan-y;
}
.review-card {
  flex: 0 0 100%;
  min-height: 360px;
  padding: 58px clamp(28px, 7vw, 76px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 53, 47, 0.08);
  box-shadow: 0 24px 65px rgba(23, 53, 47, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.review-stars {
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}
.review-card blockquote {
  position: static;
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  line-height: 1.3;
  max-width: none;
  text-align: left;
  padding: 0;
  margin: 0 0 34px;
}
.review-card footer {
  padding: 0;
  background: none;
  color: var(--ink);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gold);
  font-weight: 800;
  color: var(--ink);
}
.review-card footer strong,
.review-card footer small {
  display: block;
}
.review-card footer small {
  color: #6b7b75;
  margin-top: 2px;
}
.reviews-controls {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
.carousel-button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(23, 53, 47, 0.22);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 1.25rem;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.carousel-button:hover {
  background: var(--sage);
  transform: translateY(-2px);
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
}
.carousel-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(23, 53, 47, 0.24);
  cursor: pointer;
  transition:
    width 0.2s ease,
    background 0.2s ease,
    border-radius 0.2s ease;
}
.carousel-dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--gold);
}
.reviews-note {
  max-width: 760px;
  margin: 24px auto 0;
  text-align: center;
  color: #7d6c50;
  font-size: 0.8rem;
  font-style: italic;
}
#reviews {
  scroll-margin-top: 92px;
}
@media (max-width: 760px) {
  .review-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 36px;
  }
  .review-stat {
    padding: 18px 8px;
  }
  .review-card {
    min-height: 390px;
    padding: 38px 26px;
  }
  .review-card blockquote {
    font-size: 1.65rem;
  }
  .reviews-controls {
    grid-template-columns: 44px 1fr 44px;
  }
  .carousel-button {
    width: 44px;
    height: 44px;
  }
}
@media (max-width: 420px) {
  .review-card {
    min-height: 430px;
  }
  .review-card blockquote {
    font-size: 1.48rem;
  }
}

/* Brand logo */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
}
.brand span {
  white-space: nowrap;
}
@media (max-width: 620px) {
  .brand {
    gap: 9px;
  }
  .brand-logo {
    width: 34px;
    height: 34px;
  }
}

/* Guest feedback form */
.feedback-form-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(340px, 1.2fr);
  gap: 7vw;
  align-items: start;
  margin-top: 70px;
  padding-top: 70px;
  border-top: 1px solid rgba(23, 53, 47, 0.14);
}
.feedback-form-copy h3 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  margin: 12px 0 20px;
}
.feedback-form-copy p {
  font-size: 1.05rem;
  max-width: 520px;
}
.feedback-form {
  width: 100%;
}
@media (max-width: 900px) {
  .feedback-form-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Separate feedback page */
.reviews-page-link {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}
.feedback-page {
  min-height: 100vh;
  background: var(--cream);
}
.feedback-page-main {
  max-width: 1220px;
  margin: 0 auto;
  padding: 100px 24px 120px;
}
.feedback-page-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1.2fr);
  gap: 7vw;
  align-items: start;
}
.feedback-page-copy {
  padding-top: 34px;
}
.feedback-page-copy h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  margin: 14px 0 24px;
}
.feedback-page-copy p {
  font-size: 1.12rem;
  max-width: 560px;
}
.feedback-page .contact-form {
  padding: 38px;
}
.feedback-page-header .brand {
  color: #fff;
}
@media (max-width: 850px) {
  .feedback-page-grid {
    grid-template-columns: 1fr;
  }
  .feedback-page-main {
    padding-top: 70px;
  }
  .feedback-page-copy {
    padding-top: 0;
  }
  .feedback-page .contact-form {
    padding: 26px;
  }
}
