/* =============================================================
   RESIDENZA DELLA BOLLENTE — Main Stylesheet
   Figma: https://www.figma.com/design/1pABCuIE7LwBdJ4pE8cQIE/
   ============================================================= */

/* ── Design tokens ─────────────────────────────────────────── */
:root {
  --color-bg:         #2C3E2D;  /* main dark green */
  --color-bg-footer:  #19241A;  /* darker green for footer */
  --color-bg-light:   #FFFBF2;  /* cream sections */
  --color-cream:      #EDE3D5;  /* primary text */
  --color-taupe:      #DED9D5;  /* secondary text */
  --color-tan:        #BDA078;  /* borders, secondary accents */
  --color-gold:       #E9BD51;  /* hero heading accent — rgba(233,189,81,1) */
  --color-brown:      #5C432F;  /* tertiary text */
  --color-rust:       #975532;  /* logo bg, accents */
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul { list-style: none; }
a  { text-decoration: none; color: inherit; }
img { display: block; }

/* ── Base ───────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  background-color: var(--color-bg);
  color: var(--color-cream);
  max-width: 1920px;
  margin: 0 auto;
}

/* =============================================================
   SITE HEADER
   Figma: Frame 7939 — 1920 × 170 px
   Layout: 3-column grid  [nav-left | logo | nav-right+lang]
   ============================================================= */
.site-header {
  width: 100%;
  height: 77px;
  background-color: var(--color-bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 clamp(20px, 13vw, 250px);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* ── Primary navigation (shared) ───────────────────────────── */
.nav-primary ul {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.56vw, 30px);  /* Figma: gap 30px */
}

.nav-primary a {
  font-size: clamp(13px, 0.85vw, 16px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-cream);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-primary a:hover { color: var(--color-tan); }

.nav-primary--left  ul { justify-content: flex-start; }
.nav-primary--right ul { justify-content: flex-end; }

/* Apartments: text + chevron vertically centered */
.has-dropdown {
  display: flex;
  align-items: center;
  gap: 6px;
}

.chevron { flex-shrink: 0; }

/* Submenu (desktop hover) */
.nav-primary li { position: relative; }
.nav-primary .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 280px;
  background-color: var(--color-bg);
  border: 1px solid var(--color-tan);
  border-radius: 4px;
  padding: 8px 0;
  list-style: none;
  margin: 8px 0 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 200;
}
.nav-primary li:hover > .sub-menu,
.nav-primary li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-primary .sub-menu li { width: 100%; }
.nav-primary .sub-menu a {
  display: block;
  padding: 10px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: var(--color-cream);
  white-space: nowrap;
}
.nav-primary .sub-menu a:hover { color: var(--color-tan); }

/* ── Logo ───────────────────────────────────────────────────── */
.site-logo {
  position: absolute;
  left: 50%;
  top: 6px;                            /* Figma y:6 */
  transform: translateX(-50%);
  z-index: 101;
}

.site-logo img {
  width: clamp(70px, 6.7vw, 128px);   /* Figma: 128×128 */
  height: clamp(70px, 6.7vw, 128px);
  object-fit: contain;
}

/* Brand text appears only on mobile (≤1024px) */
.site-logo__brand { display: none; }

/* ── Header end (right nav + language) ─────────────────────── */
.header-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.56vw, 30px);  /* Figma: gap 30px */
}

/* Book Now button in header */
.header-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--color-tan);
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(13px, 0.85vw, 16px);
  font-weight: 400;
  line-height: 1.5em;
  color: var(--color-cream);
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}
.header-book-btn:hover {
  background-color: var(--color-tan);
}

/* Contact Us link */
.header-contact {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(13px, 0.85vw, 16px);
  font-weight: 400;
  line-height: 1.5em;
  color: var(--color-cream);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.header-contact:hover { color: var(--color-tan); }

/* ── Language switcher ─────────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 10px;                 /* Figma: gap 10px between options */
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 4px;                  /* Figma: gap 4px (flag + label) */
  font-size: clamp(13px, 0.85vw, 16px);
  font-weight: 400;
  color: var(--color-cream);
  transition: opacity 0.2s ease;
  touch-action: manipulation;
}

.lang-option:hover { opacity: 0.65; }

/* Flag icon size override (flag-icons CDN defaults to 1.33em) */
.lang-option .fi {
  width: 24px;               /* Figma: 24 × 16 px */
  height: 16px;
  border-radius: 2px;
  background-size: cover;
  flex-shrink: 0;
}

/* =============================================================
   HERO
   Figma: Frame 13 — 1920 × 1003 px
   Layers (bottom→top):
     1. hero-bg.png        — main photo (x:-54, y:-52, 1974×1149)
     2. hero-overlay-img   — freepik photo + colour grading on top
     3. Ellipse 9          — blurred glow (825×484, blur 300px, op 0.18)
     4. Heading text       — x:242, y:183, 695×282 px
   ============================================================= */
.hero {
  position: relative;
  width: 100%;
  height: clamp(500px, 52.2vw, 1003px);  /* 1003/1920 ≈ 52.2% */
  overflow: hidden;

  background-image: url('../assets/images/hero-bg.png');
  background-size: cover;
  background-position: center;
}

/* Layer 2 — background video (replaces hero-rendered.png) */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Layer 3 — decorative blurred glow ellipse */
.hero__blur {
  position: absolute;
  left:   7%;                /* 135/1920 ≈ 7% */
  top:    9%;                /* 89/1003 ≈ 9% */
  width:  43%;               /* 825/1920 ≈ 43% */
  height: 48%;               /* 484/1003 ≈ 48% */
  background-color: #24283A;
  border-radius: 50%;
  filter: blur(300px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
}

/* Layer 4 — text content */
.hero__content {
  position: absolute;
  top:   18.2%;              /* 183/1003 ≈ 18.2% */
  left:  12.6%;              /* 242/1920 ≈ 12.6% */
  width: 36.2%;              /* 695/1920 ≈ 36.2% */
  z-index: 2;
}

/* Heading: Italiana uppercase */
.hero__heading {
  font-family: 'Italiana', serif;
  font-size: clamp(36px, 4.17vw, 80px);  /* 80/1920 ≈ 4.17vw */
  font-weight: 400;
  line-height: 1.178em;
  text-transform: uppercase;
  color: #ffffff;
}

/* "Where sunny" — золотой акцент (character override в Figma) */
.hero__heading .accent {
  color: var(--color-gold);    /* rgba(233, 189, 81, 1) = #E9BD51 */
}

/* =============================================================
   APARTMENTS SECTION — adaptive layout
   ============================================================= */
.apts-section {
  position: relative;
  width: 100%;
  background-color: var(--color-bg);
  isolation: isolate;
  overflow: hidden;
}

/* Background photo: absolute, behind everything */
/* Figma: 1686×1016, starts at section top */
.apts-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 88%;                       /* 1686/1920 */
  height: clamp(500px, 52.9vw, 1016px);
  object-fit: cover;
  object-position: top;
  z-index: 0;
}

/* Gradient fade over bg photo only */
.apts-section__fade {
  position: absolute;
  top: 0;
  left: 0;
  width: 88%;
  height: clamp(500px, 52.9vw, 1016px);
  background:
    linear-gradient(0deg, var(--color-bg) 0%, transparent 30%),
    linear-gradient(270deg, var(--color-bg) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}

/* ── Hotel intro hero (bg photo + text overlay) ──────────── */
.apts-hero {
  position: relative;
  width: 100%;
  padding: 140px 0;
  z-index: 1;
}

.apts-hero__text {
  position: relative;
  width: clamp(300px, 25vw, 486px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 300;
  line-height: 1.7em;
  text-align: center;
  color: #DED9D5;
  z-index: 2;
}

.apts-hero__address {
  margin-top: 20px;
}

/* ── Apartment row (shared) ──────────────────────────────── */
.apt-row {
  position: relative;
  padding: 0 clamp(40px, 11vw, 210px) clamp(40px, 4vw, 80px);
  z-index: 2;
}

.apt-row__title {
  font-family: 'Italiana', serif;
  font-size: clamp(32px, 3.06vw, 58px);
  font-weight: 400;
  line-height: 1.178em;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-cream);
  margin-bottom: clamp(20px, 2vw, 40px);
}

.apt-row__content {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

/* Media container: takes half, equal with desc */
.apt-row__media {
  flex: 1 1 0;
  min-width: 0;
}

/* Photo fills its container */
.apt-row__photo {
  width: 100%;
  aspect-ratio: 710 / 533;
  object-fit: cover;
  display: block;
}

/* Description: takes other half */
.apt-row__desc {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(20px, 2vw, 40px);
}

.apt-row__desc p {
  max-width: 358px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 300;
  line-height: 1.5em;
  color: var(--color-cream);
}
.apt-row__desc .btn-pill {
  width: 280px;
  max-width: 100%;
}

/* ── No.2 reverse: desc LEFT, photo RIGHT ──────────────────── */
.apt-row--reverse .apt-row__content {
  flex-direction: row-reverse;
}

/* Reverse: no extra overrides — gap handles spacing */

.apt-row__desc--right {
  align-items: flex-end;
}

.apt-row__desc--right p {
  text-align: right;
}

/* ── Pill button (shared) ──────────────────────────────────── */
/* Figma: row, center, gap:10, padding 16px 32px               */
/* border 1px #BDA078, borderRadius 50px, Poppins 300 20px     */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border: 1px solid var(--color-tan); /* #BDA078 */
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5em;
  color: var(--color-cream);
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}
.btn-pill {
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn-pill:hover {
  background-color: var(--color-tan);  /* #BDA078 заливка */
}
.btn-pill:hover svg path {
  stroke: var(--color-cream);          /* стрелка → #EDE3D5 */
}

/* =============================================================
   ATTRACTIONS SECTION — adaptive layout
   ============================================================= */
.attractions {
  width: 100%;
  background-color: var(--color-bg);
  padding: clamp(40px, 4vw, 80px) clamp(40px, 11vw, 210px) clamp(30px, 3.1vw, 60px);
}

/* Title: Italiana 66px UPPER CENTER */
.attractions__title {
  font-family: 'Italiana', serif;
  font-size: clamp(32px, 3.06vw, 58px);
  font-weight: 400;
  line-height: 1.178em;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-cream);
  margin-bottom: clamp(8px, 0.68vw, 13px);
}

/* ── Attraction row (shared) ─────────────────────────────── */
.attr-row {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  margin-bottom: clamp(40px, 4vw, 80px);
}
.attr-row:last-child { margin-bottom: 0; }

/* Reversed row: text left, photo right */
.attr-row--reverse {
  flex-direction: row-reverse;
}

/* Media container: takes remaining space after gap */
.attr-row__media {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  align-self: flex-start;    /* не растягивается по высоте */
}

/* Photo fills its container */
.attr-row__media img {
  width: 100%;
  aspect-ratio: 710 / 481;
  object-fit: cover;
  display: block;
}

/* Region button on photo — centered at bottom */
.btn-region {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 24px;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  font-family: 'Poppins', sans-serif;
  font-size: clamp(14px, 0.94vw, 18px);
  font-weight: 300;
  line-height: 1.5em;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
  z-index: 2;
}

/* Text column: takes remaining space after gap */
.attr-row__text {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2vw, 40px);
}

.attr-row__label {
  display: block;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5em;
  color: var(--color-cream);
  text-align: center;
  margin: 0 0 clamp(40px, 4.5vw, 86px);
}

.attr-row__text p {
  max-width: 448px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 300;
  line-height: 1.5em;
  color: var(--color-cream);
}
.attr-row__text .btn-pill {
  width: 280px;
  max-width: 100%;
}

/* Right-aligned text for reversed row */
.attr-row__text--right {
  align-items: flex-end;
}
.attr-row__text--right p {
  text-align: right;
}
.attr-row__text .btn-pill      { align-self: flex-start; }
.attr-row__text--right .btn-pill { align-self: flex-end; }

/* Reverse: no extra overrides needed — gap handles spacing */

/* =============================================================
   REVIEWS SECTION — adaptive layout
   ============================================================= */
.reviews {
  width: 100%;
  background-color: var(--color-bg);
  padding: clamp(30px, 3.75vw, 72px) clamp(40px, 11vw, 210px) clamp(30px, 3.1vw, 60px);
}

.reviews__inner {
  max-width: 633px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.reviews__title {
  font-family: 'Italiana', serif;
  font-size: clamp(32px, 3.06vw, 58px);
  font-weight: 400;
  line-height: 1.178em;
  text-transform: uppercase;
  color: var(--color-cream);
  width: 463px;
  max-width: 100%;
}

/* Quote + text side by side */
.reviews__body {
  display: flex;
  gap: 12px;
  width: 100%;
  align-items: flex-start;
}

.reviews__quote {
  width: 73px;
  height: 63px;
  opacity: 0.6;
  flex-shrink: 0;
  align-self: flex-start;
}

.reviews__text {
  flex: 1;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 300;
  line-height: 1.7em;
  color: var(--color-cream);
}

.reviews__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 463px;
  max-width: 100%;
}

.reviews__author-name {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 300;
  line-height: 1.7em;
  color: var(--color-cream);
}

.reviews__author-country {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 300;
  line-height: 1.7em;
  color: var(--color-cream);
  opacity: 0.5;
}

.reviews__stars {
  width: 106px;
  height: auto;
}

/* Navigation arrows: circular buttons 46×46, border #BDA078 */
.reviews__nav {
  display: flex;
  gap: 14px;
}

.nav-arrow {
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-tan);   /* #BDA078 */
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-tan);               /* SVG stroke via currentColor */
  transition: background-color 0.3s ease, color 0.3s ease;
  padding: 0;
  touch-action: manipulation;
}

.nav-arrow:hover {
  background-color: var(--color-tan);    /* fill on hover */
  color: var(--color-cream);             /* arrow becomes cream */
}

/* =============================================================
   INQUIRY SECTION — Make an inquiry
   Figma: Frame 48096215 (270:1454) — 1136×auto, bg:#FFEBEB, r:20px
   ============================================================= */
.inquiry {
  width: 100%;
  padding: clamp(30px, 3.4vw, 65px) clamp(20px, 17.2vw, 330px) clamp(40px, 5vw, 100px);
  display: flex;
  justify-content: center;
  background-color: var(--color-bg);
}

.inquiry__form {
  width: 100%;
  max-width: 1260px;
  background-color: #FFF0F0;
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.inquiry__form > * {
  width: 100%;
  max-width: 1140px;
}

/* Header */
.inquiry__header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 20px;
}

.inquiry__eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #2C3E2D;
}

.inquiry__title {
  font-family: 'Italiana', serif;
  font-size: clamp(28px, 2.2vw, 42px);
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  color: #2C3E2D;
}

.inquiry__desc {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: #5D6A5E;
  padding-top: 4px;
}

/* Row of fields */
.inquiry__row { display: flex; gap: 20px; }
.inquiry__row--2 > .inquiry__field { flex: 1 1 0; min-width: 0; }
.inquiry__row--3 > .inquiry__field { flex: 1 1 0; min-width: 0; }

.inquiry__field { display: flex; flex-direction: column; gap: 4px; }

/* Label above field */
.inquiry__label {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4em;
  text-transform: uppercase;
  color: #2C3E2D;
  padding: 0 26px;
}

/* Input */
.inquiry__input {
  width: 100%;
  padding: 16px 26px;
  background-color: #FFFFFF;
  border: 1px solid #CCB28F;
  border-radius: 30px;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4em;
  color: #2C3E2D;
  outline: none;
  transition: border-color 0.2s ease;
}
.inquiry__input::placeholder { color: #5D6A5E; }
.inquiry__input:focus { border-color: #BDA078; }

/* Select-like wrapper (with icons) */
.inquiry__select {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 26px;
  background-color: #FFFFFF;
  border: 1px solid #CCB28F;
  border-radius: 30px;
  cursor: pointer;
}

.inquiry__select .inquiry__input {
  flex: 1;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.inquiry__icon,
.inquiry__check {
  flex-shrink: 0;
}

.inquiry__chevron {
  flex-shrink: 0;
  margin-left: auto;
}

.inquiry__value {
  flex: 1;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4em;
  color: #556156;
}

/* Select fields use a different (greener) placeholder tone than text inputs */
.inquiry__select .inquiry__input::placeholder { color: #556156; }

/* Native <select> styled like the custom selects */
.inquiry__input--select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4em;
  color: #556156;
  outline: none;
}
.inquiry__input--select::-ms-expand { display: none; }

/* Apartment cards */
.inquiry__apts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.apt-card {
  display: block;
  background-color: #FFFFFF;
  border: 1px solid #CCB28F;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.apt-card input[type="radio"] { display: none; }

.apt-card:has(input:checked),
.apt-card--selected {
  background-color: #FFF9F0;
  border-color: #A8875A;
  border-width: 1px;
  box-shadow: 0 4px 10px rgba(77, 49, 9, 0.15);
}

.apt-card__body { display: flex; flex-direction: column; }

.apt-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  padding: 20px 26px 16px;
}

.apt-card__name {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4em;
  color: rgba(44, 62, 45, 0.8);
  margin-bottom: 6px;
}

.apt-card:has(input:checked) .apt-card__name,
.apt-card--selected .apt-card__name {
  color: #2C3E2D;
}

.apt-card__meta {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4em;
  color: #556156;
  margin-bottom: 6px;
}

.apt-card__price {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4em;
  color: #556156;
}
.apt-card__price strong {
  font-weight: 600;
  color: #2C3E2D;
}

.apt-card__radio {
  width: 22px;
  height: 22px;
  border: 1.4px solid #BDA078;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
  position: relative;
}

.apt-card:has(input:checked) .apt-card__radio,
.apt-card--selected .apt-card__radio {
  border-width: 6.5px;
  border-color: #A8875A;
}

.apt-card__photo {
  display: block;
  width: 100%;
  aspect-ratio: 366 / 162;
  max-height: 162px;
  object-fit: cover;
}

.inquiry__hint {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  color: #5D6A5E;
  padding: 0 26px;
  margin-top: 8px;
}

/* Textarea */
.inquiry__textarea {
  width: 100%;
  height: 70px;
  padding: 18px 26px 14px;
  background-color: #FFFFFF;
  border: 1px solid #CCB28F;
  border-radius: 36px;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4em;
  color: #2C3E2D;
  outline: none;
  resize: none;
  transition: border-color 0.2s ease;
}
.inquiry__textarea::placeholder { color: #5D6A5E; }
.inquiry__textarea:focus { border-color: #BDA078; }

/* Footer of form: privacy left, submit right */
.inquiry__footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-left: 30px;
}

.inquiry__privacy {
  max-width: 550px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #5D6A5E;
}
.inquiry__privacy a {
  color: #5D6A5E;
  text-decoration: underline;
}

.inquiry__submit {
  align-self: flex-end;
  min-width: 225px;
  padding: 14px 48px;
  background-color: #BDA078;
  border: 1px solid #BDA078;
  border-radius: 98px;
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4em;
  color: #FFFFFF;
  cursor: pointer;
  transition: opacity 0.2s ease, background-color 0.2s ease;
}
.inquiry__submit:hover { opacity: 0.85; }

/* =============================================================
   FOOTER — adaptive layout
   ============================================================= */
.site-footer {
  width: 100%;
  min-height: clamp(280px, 19.5vw, 373px);
  background-color: #19241A;
  padding: clamp(24px, 1.6vw, 30px) clamp(40px, 13vw, 250px) clamp(40px, 7vw, 140px);
}

/* 3-column grid: contacts | brand | nav */
.footer__grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(20px, 3vw, 40px);
}

/* Brand: centered column */
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 1.3vw, 24px);
}

.footer__brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.footer__logo img {
  display: block;
  width: clamp(90px, 6.7vw, 128px);
  height: clamp(90px, 6.7vw, 128px);
}

.footer__name {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(16px, 1.04vw, 20px);
  font-weight: 300;
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: center;
  color: #DED9D5;
}

.footer__city {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(14px, 0.83vw, 16px);
  font-weight: 300;
  line-height: 1.5em;
  text-align: center;
  color: #DED9D5;
}

/* (footer__columns removed — replaced by footer__grid) */

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 16px;                         /* Figma gap:16 */
}

.footer__col--right {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(20px, 2vw, 40px);
}

.footer__label {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(14px, 0.83vw, 16px);
  font-weight: 400;
  line-height: 1.5em;
  color: rgba(222, 217, 213, 0.6);
}

.footer__value {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(14px, 0.94vw, 18px);
  font-weight: 300;
  line-height: 1.5em;
  color: #DED9D5;
  text-decoration: none;
}

.footer__address,
.footer__email {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  color: #ffffff;
  transition: opacity 0.2s ease;
}
.footer__social-link:hover { opacity: 0.7; }

.footer__social-link img,
.footer__social-link svg { display: block; }

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__nav a {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(13px, 0.85vw, 16px);
  font-weight: 400;
  line-height: 1.5em;
  color: #DED9D5;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.footer__nav a:hover { opacity: 0.7; }

.footer__scroll-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width:  50px;
  height: 50px;
  background-color: transparent;
  border: 1px solid var(--color-tan);
  border-radius: 50%;
  text-decoration: none;
  flex-shrink: 0;
  color: var(--color-tan);
  transition: background-color 0.3s ease, color 0.3s ease;
}
.footer__scroll-top svg path { stroke: currentColor; }
.footer__scroll-top:hover {
  background-color: var(--color-tan);
  color: var(--color-cream);
}

/* Footer mobile layout — triggered earlier to avoid cramped 3-column view */
@media (max-width: 1200px) {
  .footer__grid {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  /* Brand — first, centered */
  .footer__brand {
    order: -1;
    align-items: center;
    margin-bottom: 16px;
  }

  /* Contacts & nav — left-aligned */
  .footer__col { align-items: flex-start; }

  /* Right col: nav list + scroll-top on right */
  .footer__col--right {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
  }

  .footer__nav { align-items: flex-start; }
}

/* =============================================================
   SINGLE APARTMENT PAGE
   Figma: 445:1493 — 1920×5607
   ============================================================= */
.apt-single {
  width: 100%;
  background-color: var(--color-bg);
  display: flex;
  flex-direction: column;
}

/* 1. Hero photo */
.apt-hero {
  width: 100%;
  padding: 0 clamp(20px, 13vw, 250px);
  margin-top: 0;
}
.apt-hero__photo {
  width: 100%;
  height: clamp(280px, 32.7vw, 628px);
  object-fit: cover;
  border-radius: 0;
  display: block;
}

/* 2. Intro: title + pills + description */
.apt-intro {
  padding: 30px clamp(20px, 13vw, 250px) 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.apt-intro__title {
  font-family: 'Italiana', serif;
  font-size: clamp(36px, 3.44vw, 66px);
  font-weight: 400;
  line-height: 1.178em;
  text-transform: uppercase;
  color: var(--color-cream);
}
.apt-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.apt-pill {
  background-color: #253426;
  color: var(--color-cream);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  padding: 8px 24px;
  border-radius: 20px;
  white-space: nowrap;
}
.apt-intro__desc {
  max-width: 922px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 300;
  line-height: 1.5em;
  color: var(--color-cream);
}
.apt-intro__desc p { margin-bottom: 0.6em; }
.apt-intro__desc p:last-child { margin-bottom: 0; }

/* 3. Gallery */
.apt-gallery {
  padding: 50px clamp(20px, 13vw, 250px) 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
.apt-gallery__hint {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--color-cream);
  opacity: 0.6;
}
.apt-gallery__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.apt-gallery__item {
  display: block;
  aspect-ratio: 695 / 521;
  overflow: hidden;
  cursor: zoom-in;
  border-radius: 4px;
}
.apt-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.apt-gallery__item:hover img { transform: scale(1.03); }
.apt-gallery__item--hidden { display: none; }
.apt-gallery__more {
  align-self: center;
}

/* 4. Features */
.apt-features {
  padding: 60px clamp(20px, 13vw, 250px) 0;
}
.apt-features__title {
  font-family: 'Italiana', serif;
  font-size: clamp(28px, 2.5vw, 48px);
  font-weight: 400;
  line-height: 1.178em;
  text-transform: uppercase;
  color: var(--color-cream);
  margin-bottom: 24px;
}
.apt-features__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 80px;
  list-style: none;
  padding: 0;
}
.apt-features__list li {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 300;
  line-height: 1.5em;
  color: var(--color-cream);
  padding-left: 16px;
  position: relative;
}
.apt-features__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-tan);
}

/* 5. Location section: photo + apartment info */
.apt-location {
  padding: 60px clamp(20px, 13vw, 250px) 0;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}
.apt-location__media {
  flex: 1 1 0;
  min-width: 0;
  aspect-ratio: 680 / 510;
  overflow: hidden;
  border-radius: 4px;
}
.apt-location__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.apt-location__body {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 30px;
}
.apt-location__heading {
  font-family: 'Italiana', serif;
  font-size: clamp(28px, 2.5vw, 48px);
  font-weight: 400;
  line-height: 1.178em;
  text-transform: uppercase;
  color: var(--color-cream);
  margin-bottom: 12px;
}
.apt-location__floor {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 300;
  line-height: 1.5em;
  color: var(--color-cream);
  max-width: 302px;
}
.apt-location__floor p { margin: 0; }
.apt-location__distance {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}
.apt-location__distance-num {
  font-family: 'Italiana', serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-cream);
}
.apt-location__distance-text {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-cream);
}
.apt-location__nearby {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.apt-location__nearby li {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 300;
  line-height: 1.5em;
  color: var(--color-cream);
  padding-left: 16px;
  position: relative;
}
.apt-location__nearby li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-tan);
}

/* 7. Other apartments */
.apt-others {
  padding: 60px clamp(20px, 13vw, 250px);
}
.apt-others__title {
  font-family: 'Italiana', serif;
  font-size: clamp(28px, 2.5vw, 48px);
  font-weight: 400;
  line-height: 1.178em;
  text-transform: uppercase;
  color: var(--color-cream);
  margin-bottom: 30px;
}
.apt-others__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.apt-others__card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 695 / 475;
  transition: transform 0.3s ease;
}
.apt-others__card:hover { transform: translateY(-4px); }
.apt-others__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.apt-others__overlay { display: none; }
.apt-others__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 37.7%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 24px 30px 30px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 42%, rgba(0,0,0,0.85) 100%);
  color: #fff;
  gap: 0;
}
.apt-others__name {
  font-family: 'Raleway', serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  margin: 0 0 10px 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.apt-others__name-no {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 400;
}
.apt-others__name-num {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 500;
}
.apt-others__meta {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin: 0;
}
.apt-others__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  gap: 20px;
}
.apt-others__price {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
}
.apt-others__price strong {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
}
.apt-others__price-sep { margin: 0 2px; }
.apt-others__price-night { font-size: 18px; }
.apt-others__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid var(--color-tan);
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--color-tan);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.apt-others__btn:hover {
  background-color: var(--color-tan);
  color: #fff;
}
.apt-others__note {
  margin-top: 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--color-cream);
  opacity: 0.6;
}

/* Mobile single apartment */
@media (max-width: 1024px) {
  .apt-hero { padding: 0; }
  .apt-hero__photo { height: 280px; }
  .apt-intro,
  .apt-gallery,
  .apt-features,
  .apt-location,
  .apt-others { padding-left: 20px; padding-right: 20px; }
  .apt-intro__title { font-size: 32px; }
  .apt-intro__desc { font-size: 13px; max-width: 100%; }
  .apt-gallery__grid { grid-template-columns: 1fr; gap: 16px; }
  .apt-features__list { grid-template-columns: 1fr; }
  .apt-location { flex-direction: column; gap: 30px; }
  .apt-location__media { width: 100%; }
  .apt-others__grid { grid-template-columns: 1fr; }
  .apt-others__card { aspect-ratio: 4 / 3; }
  .apt-others__body { padding: 16px 20px 20px; height: auto; }
  .apt-others__name { font-size: 22px; margin-bottom: 6px; }
  .apt-others__name-no { font-size: 18px; }
  .apt-others__name-num { font-size: 22px; }
  .apt-others__meta { font-size: 14px; }
  .apt-others__row { gap: 8px; flex-wrap: wrap; }
  .apt-others__price { font-size: 16px; width: 100%; }
  .apt-others__price strong { font-size: 18px; }
  .apt-others__btn { font-size: 15px; padding: 5px 14px; }
}

/* =============================================================
   APARTMENTS LISTING PAGE (page-apartments.php)
   ============================================================= */
.apts-listing {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Hero */
.apts-listing__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 140px;
  text-align: center;
  padding-left: clamp(20px, 4vw, 80px);
  padding-right: clamp(20px, 4vw, 80px);
}
.apts-listing__hero-title {
  font-family: 'Italiana', serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.1em;
  text-transform: uppercase;
  color: var(--color-cream);
  margin: 0;
}
.apts-listing__hero-sub {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 300;
  line-height: 1.7em;
  color: var(--color-cream);
  max-width: 640px;
  margin: 0;
}

/* Apartment block */
.apts-listing__apt {
  padding: 0 clamp(20px, 2.08vw, 40px);
}
.apts-listing__apt-inner {
  max-width: 1420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.apts-listing__apt-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.apts-listing__apt-title {
  font-family: 'Italiana', serif;
  font-size: clamp(28px, 2.9vw, 42px);
  font-weight: 400;
  line-height: 1.15em;
  text-transform: uppercase;
  color: var(--color-cream);
  margin: 0;
}
.apts-listing__apt-desc {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 300;
  line-height: 1.7em;
  color: var(--color-cream);
  max-width: 820px;
  margin: 0 0 -20px;
}

/* 2-column photo grid */
.apts-listing__photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.apts-listing__photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
}
.apts-listing__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* "Learn more" button — right-aligned */
.apts-listing__apt-footer {
  display: flex;
  justify-content: flex-end;
}

/* Inquiry wrapper */
.apts-listing__inquiry {
  background-color: #253426;
}
.apts-listing__inquiry .inquiry {
  background-color: transparent;
  padding-top: clamp(60px, 7.3vw, 140px);
  padding-bottom: clamp(60px, 7.3vw, 140px);
}

/* Mobile */
@media (max-width: 768px) {
  .apts-listing { gap: 60px; }
  .apts-listing__photos { grid-template-columns: 1fr; }
  .apts-listing__apt-footer { justify-content: flex-start; }
  .apts-listing__apt-footer .btn-pill { width: 100%; justify-content: center; }
}

/* =============================================================
   BURGER MENU (hidden on desktop)
   ============================================================= */
.burger {
  display: none;             /* visible only in @media */
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 8px;
  z-index: 200;
  touch-action: manipulation;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Burger → X animation */
.nav-open .burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .burger span:nth-child(2) { opacity: 0; }
.nav-open .burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =============================================================
   RESPONSIVE — Tablet (≤1024px)
   ============================================================= */
@media (max-width: 1024px) {

  /* Header: show burger, hide nav */
  .burger { display: flex; }

  .site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    height: 74px;
  }

  .site-header .nav-primary,
  .site-header .header-end { display: none; }

  /* Logo on the LEFT (not absolute centered) */
  .site-header .site-logo {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    order: 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .site-header .site-logo img {
    width: 62px;
    height: 62px;
  }
  /* Brand text next to logo — visible always on mobile */
  .site-header .site-logo__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
  }
  .site-header .site-logo__brand-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--color-cream);
  }
  .site-header .site-logo__brand-sub {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.01em;
    color: var(--color-cream);
  }

  /* Burger on the RIGHT, no box, 3 lines like bar-chart (different lengths) */
  .burger {
    order: 1;
    position: relative;
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    padding: 0;
  }
  .burger span {
    display: block;
    height: 2px;
    background-color: var(--color-cream);
    border-radius: 1px;
  }
  .burger span:nth-child(1) { width: 28px; }
  .burger span:nth-child(2) { width: 22px; }
  .burger span:nth-child(3) { width: 16px; }

  /* ── Blur page content when menu is open ─────────────────── */
  .menu-open > *:not(.site-header) {
    filter: blur(6px) brightness(0.4);
    pointer-events: none;
    user-select: none;
    transition: filter 0.3s ease;
  }

  /* ── Mobile nav overlay ───────────────────────────────────── */
  .nav-open {
    position: fixed;
    inset: 0;
    height: 100dvh;
    background-color: #2C3E2D;
    z-index: 9999;
    transform: translateZ(0);
    display: block;
    overflow-y: auto;
    padding: 0;
  }

  .nav-open .nav-primary,
  .nav-open .header-end {
    display: flex;
  }

  /* Top bar: logo + brand text on left, × on right — SAME position as closed state */
  .nav-open .site-logo {
    position: absolute;
    top: 6px;
    left: 20px;
    transform: none;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .nav-open .site-logo img { width: 62px; height: 62px; }

  .nav-open .site-logo__brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    line-height: 1.2;
  }
  .site-logo__brand-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
    color: var(--color-cream);
  }
  .site-logo__brand-sub {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.01em;
    color: var(--color-cream);
  }

  /* × close button (uses .burger via JS) — SAME position as closed state */
  .nav-open .burger {
    position: absolute;
    top: 17px;
    right: 20px;
    width: 40px;
    height: 40px;
    align-items: center;
    border: 1.4px solid var(--color-tan);
    border-radius: 50%;
    gap: 0;
    padding: 0;
    z-index: 10000;
  }
  .nav-open .burger span {
    position: absolute;
    width: 14px !important;
    height: 1.5px;
    background-color: var(--color-tan);
  }
  /* × shape from 3 burger spans */
  .nav-open .burger span:nth-child(1) { transform: rotate(45deg); }
  .nav-open .burger span:nth-child(2) { display: none; }
  .nav-open .burger span:nth-child(3) { transform: rotate(-45deg); }

  /* Horizontal divider below brand */
  .nav-open::before {
    content: "";
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: 315px;
    max-width: calc(100% - 30px);
    height: 1px;
    background-color: rgba(189, 160, 120, 0.5);
  }

  /* Overlay layout: brand at top, menu items flow vertically, Book Now + langs absolute at bottom */
  .nav-open {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 118px 30px 110px;
    gap: 0;
  }
  .nav-open .header-end { display: contents; }

  /* Menu items stack from top */
  .nav-open .nav-primary { width: 100%; }
  .nav-open .nav-primary--left  { order: 1; }
  .nav-open .nav-primary--right { order: 2; }
  .nav-open .header-contact     { order: 3; }

  .nav-open .nav-primary ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
  .nav-open .nav-primary li {
    width: 100%;
    border: 0;
  }
  .nav-open .nav-primary a,
  .nav-open .header-contact {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 12px 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 13px;
    line-height: normal;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #DED9D5;
    opacity: 1;
    border-left: 1.6px solid transparent;
    touch-action: manipulation;
    transition: color 0.2s ease, border-color 0.2s ease;
  }
  .nav-open .nav-primary .current-menu-item a,
  .nav-open .nav-primary a:hover,
  .nav-open .header-contact:hover {
    color: #FFDCDC;
    border-left-color: #FFDCDC;
  }

  /* Parent li: wrap so sub-menu drops to its own row */
  .nav-open .nav-primary .menu-item-has-children {
    flex-wrap: wrap;
    align-items: center;
  }
  /* Sub-menu: always expanded, full-width row below the link */
  .nav-open .nav-primary .sub-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: flex !important;
    flex-direction: column;
    flex-basis: 100%;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    border-radius: 0;
    min-width: 0;
    margin: 0;
  }
  .nav-open .nav-primary .sub-menu li {
    width: 100%;
  }
  .nav-open .nav-primary .sub-menu a {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 6px 16px 6px 46px;
    border-left: 0;
    color: #DED9D5;
  }
  .nav-open .nav-primary .sub-menu a:hover {
    color: #FFDCDC;
  }
  /* Chevron points up when sub-menu is always open */
  .nav-open .nav-primary .menu-item-has-children .chevron {
    transform: rotate(180deg);
  }

  /* Bottom strip: Book Now + langs absolute, side by side */
  .nav-open .header-book-btn {
    position: absolute;
    bottom: 30px;
    left: 30px;
    font-size: 13px;
    padding: 8px 20px;
    text-transform: none;
    border-left: 0;
  }
  .nav-open .lang-switcher {
    position: absolute;
    bottom: 30px;
    left: calc(30px + 175px + 43px);  /* Book Now ≈175 + gap 43 */
    gap: 16px;
    flex-direction: row;
  }
  .nav-open .lang-option {
    gap: 6px;
    font-size: 13px;
    padding: 0;
    border-left: 0;
    text-transform: none;
  }

  /* Hero heading: Figma mobile 53px */
  .hero__heading { font-size: 42px; }
  .hero__content { width: 80%; left: 5%; }

  /* Section paddings */
  .apt-row { padding: 30px 20px; }
  .apt-row__content { flex-wrap: wrap; gap: 20px; }
  .apt-row__media { flex: 1 1 100%; margin: 0 -20px; }  /* выход за padding */
  .apt-row__photo { width: 100%; }
  .apt-row__desc { flex: 1 1 100%; padding: 0 20px; }

  .apt-row__title { font-size: 36px; }

  .attractions { padding: 30px 20px; }
  .attractions__title { font-size: 36px; }
  .attr-row { flex-wrap: wrap; gap: 20px; padding: 0; }
  .attr-row__media { flex: 1 1 100%; margin: 0 -20px; }  /* выход за padding секции */
  .attr-row__media img { width: 100%; }
  .attr-row__text { flex: 1 1 100%; padding: 0 20px; }
  .attr-row--reverse { flex-direction: column; }

  /* Apts hero text */
  .apts-hero__text {
    width: 80%;
    max-width: none;
    font-size: 16px;
  }

  /* Reviews */
  .reviews { padding: 40px 20px; }
  .reviews__title { font-size: 36px; }

  /* Inquiry form — responsive */
  .inquiry { padding: 40px 20px; }
  .inquiry__form { padding: 30px 20px; gap: 24px; }
  .inquiry__row--2,
  .inquiry__row--3 { flex-direction: column; gap: 16px; }
  .inquiry__apts { grid-template-columns: 1fr; }

  /* Footer */
  .site-footer { padding: 30px 20px; }
  /* footer layout — в отдельном медиа-запросе @media (max-width: 1200px) */
}

/* =============================================================
   RESPONSIVE — Mobile (≤480px)
   ============================================================= */
@media (max-width: 480px) {

  /* Hero */
  .hero { height: clamp(400px, 120vw, 465px); }
  .hero__heading { font-size: 36px; }
  .hero__content { width: 90%; left: 5%; top: 12%; }

  /* Apts hero: shrink photo area */
  .apts-hero { aspect-ratio: auto; height: auto; padding: 60px 20px; }
  .apts-hero__text { font-size: 14px; width: 90%; }

  /* Apartment rows: text has padding, photos bleed full width */
  .apt-row { padding: 20px 0; }
  .apt-row__title { font-size: 32px; padding: 0 20px; }
  .apt-row__content { padding: 0; }
  .apt-row__photo {
    flex-basis: 100%;
    max-width: 100%;
    width: 100vw;
    margin-left: 0;
    border-radius: 0;
  }
  .apt-row__desc { max-width: 100%; flex-basis: 100%; padding: 0 20px; }
  .apt-row__desc p { font-size: 13px; }

  /* Attractions */
  .attractions { padding: 20px 0; }
  .attractions__title { font-size: 32px; padding: 0 20px; }
  .attr-row { padding: 0; margin-bottom: 30px; }
  .attr-row { flex-wrap: wrap; gap: 20px; }
  .attr-row__media { flex: 1 1 100%; }
  .attr-row__media img { width: 100%; }
  .attr-row__text { flex: 1 1 100%; padding: 0 20px; }
  .attr-row__text p { font-size: 13px; }

  /* Reverse row: text above photo on mobile */
  .attr-row--reverse { flex-direction: column; }

  /* Reviews */
  .reviews__title { font-size: 32px; }
  .reviews__text { font-size: 13px; }
  .reviews__body { flex-direction: column; }

  /* Inquiry — mobile */
  .inquiry__title { font-size: 28px; }
  .inquiry__footer { flex-direction: column; align-items: stretch; gap: 16px; }
  .inquiry__submit { width: 100%; }

  /* Footer */
  .footer__nav { gap: 6px; }
  .footer__nav a { font-size: 16px; }
}

/* Inquiry success message */
.inquiry__success {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #2C3E2D;
  text-align: center;
  padding: 40px 0;
}

/* Pets checkbox — pill container with checkbox inside */
.pets-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 16px 26px;
  background-color: #FFFFFF;
  border: 1px solid #CCB28F;
  border-radius: 30px;
}

.pets-checkbox input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }

.pets-checkbox__box {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1.5px solid #BDA078;
  background: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.pets-checkbox__box svg { opacity: 0; transition: opacity 0.15s; }

.pets-checkbox input:checked ~ .pets-checkbox__box {
  background: #BDA078;
  border-color: #BDA078;
}

.pets-checkbox input:checked ~ .pets-checkbox__box svg { opacity: 1; }

.pets-checkbox__label {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4em;
  color: #556156;
}

/* Guests dropdown */
.inquiry__select--guests { position: relative; }

/* Guests display text (visible value inside the pill) */
.guests-display {
  flex: 1;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4em;
  color: #556156;
}

/* Guests dropdown panel */
.guests-options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 8px 16px;
  display: none;
  flex-direction: column;
  gap: 3px;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  list-style: none;
  margin: 0;
}
.inquiry__select--guests[aria-expanded="true"] .guests-options { display: flex; }

.guests-option {
  padding: 4px 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.1;
  color: #556156;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.15s ease;
}
.guests-option:hover,
.guests-option--selected {
  background-color: #D7C6AE;
}

/* Reviews slider */
.reviews__slide { display: none; }
.reviews__slide--active { display: flex; flex-direction: column; align-items: center; gap: 40px; width: 100%; }

/* =============================================================
   LOCAL HIGHLIGHTS PAGE (page-local-highlights.php)
   Figma: Frame 103:815
   ============================================================= */
.attr-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

/* Hero */
.attr-page__hero {
  padding: 117px 20px 0;
  max-width: 850px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.attr-page__hero-title {
  font-family: 'Italiana', serif;
  font-size: clamp(32px, 4.03vw, 58px);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-cream);
  margin: 0;
}

.attr-page__hero-sub {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(14px, 1.39vw, 20px);
  font-weight: 400;
  color: var(--color-cream);
  margin: 0;
}

/* Full-width photos */
.attr-page__photo {
  max-width: 1182px;
  width: 100%;
  overflow: hidden;
}

.attr-page__photo img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.attr-page__photo--1 img {
  aspect-ratio: 1182 / 592;
  object-position: center;
}

.attr-page__photo--2 img {
  aspect-ratio: 1182 / 549;
  object-position: center top;
}

/* Content section */
.attr-page__section {
  max-width: 970px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.attr-page__section--long {
  padding-bottom: 20px;
}

/* Section titles */
.attr-page__section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-cream);
  max-width: 700px;
  margin: 0;
  padding-top: 10px;
}

.attr-page__section-title--sub {
  margin-top: 24px;  /* gap-24px + extra 24px = 48px total from prev element */
}

/* "Why it is worth stopping" — slightly smaller (32px in Figma) */
.attr-page__section-sub {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(18px, 2.22vw, 32px);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-cream);
  max-width: 700px;
  margin: 24px 0 0;
  padding-top: 24px;
}

/* Body paragraphs */
.attr-page__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.attr-page__body p {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 300;
  line-height: 1.5em;
  color: var(--color-cream);
  margin: 0;
}

/* "Explore the city" interlude */
.attr-page__interlude {
  max-width: 565px;
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.attr-page__interlude-title {
  font-family: 'Italiana', serif;
  font-size: clamp(42px, 4.86vw, 70px);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-cream);
  margin: 0;
  padding-top: 30px;
}

.attr-page__interlude-sub {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(14px, 1.39vw, 20px);
  font-weight: 400;
  color: var(--color-cream);
  margin: 0;
}

/* Inquiry section */
.attr-page__inquiry {
  width: 100%;
  background-color: #253426;
}

.attr-page__inquiry .inquiry {
  background-color: transparent;
  padding-top: 90px;
  padding-bottom: 100px;
}

/* Responsive */
@media (max-width: 1020px) {
  .attr-page__section { padding: 0 20px; }
  .attr-page__photo { padding: 0 20px; }
}

@media (max-width: 768px) {
  .attr-page { gap: 40px; }
  .attr-page__hero { padding-top: 80px; }
  .attr-page__section-title { font-size: 22px; }
  .attr-page__section-sub { font-size: 18px; }
  .attr-page__interlude-title { font-size: 42px; padding-top: 16px; }
  .attr-page__inquiry .inquiry { padding-top: 50px; padding-bottom: 60px; }
}

/* ─── Contact page ───────────────────────────────────────────── */
.contact-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.contact-page__hero {
  padding-top: 117px; /* 77px fixed header + 40px Figma gap */
  width: 100%;
  max-width: 591px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
}

.contact-page__title {
  font-family: 'Italiana', serif;
  font-size: clamp(36px, 4.86vw, 66px);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-cream);
  text-align: center;
  line-height: normal;
  margin: 0;
}

.contact-page__photo {
  width: calc(100% - 40px);
  max-width: 1420px;
  height: 557px;
  overflow: hidden;
  border-radius: 2px;
}

.contact-page__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-page__info {
  width: 100%;
  max-width: 464px;
  padding: 60px 20px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.contact-page__address-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact-page__address-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--color-cream);
  line-height: normal;
  margin: 0;
  text-align: center;
}

.contact-page__address-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: var(--color-taupe);
  line-height: normal;
}

.contact-page__icon-pin {
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-page__email-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-page__icon-mail {
  flex-shrink: 0;
}

.contact-page__email {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: var(--color-taupe);
  text-decoration: none;
  line-height: normal;
  white-space: nowrap;
  transition: color .2s;
}

.contact-page__email:hover {
  color: var(--color-tan);
}

.contact-page__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-page__social-label {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: var(--color-taupe);
  line-height: normal;
  width: 80px;
}

.contact-page__social-link {
  display: flex;
  align-items: center;
  opacity: 0.8;
  transition: opacity .2s;
}

.contact-page__social-link:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .contact-page { gap: 40px; }
  .contact-page__hero { padding-top: 90px; }
  .contact-page__photo { height: 260px; }
  .contact-page__info { padding: 20px 24px 80px; }
  .contact-page__address-label { font-size: 18px; }
}

/* ─── About Us page ──────────────────────────────────────────── */
.about-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.about-page__hero {
  padding-top: 97px; /* 77px fixed header + 20px Figma gap */
  width: 100%;
  max-width: 591px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px;
}

.about-page__title {
  font-family: 'Italiana', serif;
  font-size: clamp(36px, 4.86vw, 66px);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-cream);
  text-align: center;
  line-height: normal;
  margin: 0;
}

.about-page__photo {
  width: calc(100% - 40px);
  max-width: 1420px;
  height: 548px;
  overflow: hidden;
  border-radius: 2px;
}

.about-page__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page__content {
  width: 100%;
  max-width: 970px;
  padding: 0 20px 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-page__section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: clamp(22px, 2.5vw, 36px);
  text-transform: uppercase;
  color: var(--color-cream);
  line-height: normal;
  margin: 0;
  padding-top: 10px;
}

.about-page__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-page__body p {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(13px, 0.9vw, 17px);
  color: var(--color-cream);
  line-height: 1.5em;
  margin: 0;
}

@media (max-width: 768px) {
  .about-page { gap: 40px; }
  .about-page__hero { padding-top: 90px; }
  .about-page__photo { height: 260px; }
  .about-page__content { padding-bottom: 60px; }
}

/* =============================================================
   REVIEWS PAGE (page-reviews.php)
   ============================================================= */
.reviews-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

/* Hero */
.reviews-page__hero {
  padding: 117px 20px 0;
  max-width: 592px;
  width: 100%;
  text-align: center;
}

.reviews-page__title {
  font-family: 'Italiana', serif;
  font-size: clamp(36px, 4.03vw, 58px);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-cream);
  margin: 0;
  line-height: 1.1;
}

/* Reviews block: filter + list + show-more */
.reviews-page__reviews-block {
  width: 100%;
  max-width: 1320px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Filter pills */
.reviews-page__filter {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.reviews-page__pill {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 24px;
  border-radius: 20px;
  border: 1px solid rgba(189, 160, 120, 0.6);
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--color-cream);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.reviews-page__pill:hover {
  border-color: #BDA078;
}

.reviews-page__pill--active {
  background: #BDA078;
  border-color: #BDA078;
  color: #2C3E2D;
  font-weight: 400;
}

/* Reviews list */
.reviews-page__list {
  display: flex;
  flex-direction: column;
}

/* Individual review */
.reviews-page__item[hidden] { display: none; }
.reviews-page__item {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(189, 160, 120, 0.2);
}

.reviews-page__item:first-child {
  border-top: 1px solid rgba(189, 160, 120, 0.2);
}

/* Left column */
.reviews-page__item-left {
  width: 188px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.reviews-page__reviewer {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-cream);
  line-height: 1.4;
}

.reviews-page__country {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--color-taupe);
  line-height: 1.4;
}

.reviews-page__stars {
  display: flex;
  gap: 2px;
  margin: 2px 0;
}

.reviews-page__star {
  font-size: 15px;
  color: rgba(189, 160, 120, 0.25);
  line-height: 1;
}

.reviews-page__star--filled {
  color: #BDA078;
}

.reviews-page__apt {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--color-taupe);
  line-height: 1.4;
}

.reviews-page__date {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--color-taupe);
  opacity: 0.6;
  line-height: 1.4;
}

/* Right column */
.reviews-page__item-right {
  flex: 1;
  min-width: 0;
}

.reviews-page__text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reviews-page__text-body {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(14px, 1.11vw, 16px);
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-cream);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.reviews-page__text--expanded .reviews-page__text-body {
  -webkit-line-clamp: unset;
  display: block;
}

.reviews-page__learn-more {
  align-self: flex-start;
  background: none;
  border: none;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #BDA078;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}

.reviews-page__learn-more:hover { opacity: 0.7; }

/* Show more button */
.reviews-page__more-wrap {
  display: flex;
  justify-content: center;
}

.reviews-page__show-more {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 32px;
  border-radius: 24px;
  border: 1px solid rgba(189, 160, 120, 0.6);
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--color-cream);
  cursor: pointer;
  transition: border-color 0.2s;
}

.reviews-page__show-more:hover { border-color: #BDA078; }

/* CTA card */
.reviews-page__cta-wrap {
  width: 100%;
  max-width: 1320px;
  padding: 0 40px;
}

.reviews-page__cta {
  max-width: 1150px;
  margin: 0 auto;
  background: #FFF0F0;
  border-radius: 20px;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.reviews-page__cta-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.reviews-page__cta-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #BDA078;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}

.reviews-page__cta-title {
  font-family: 'Italiana', serif;
  font-size: 42px;
  font-weight: 400;
  text-transform: uppercase;
  color: #2C3E2D;
  margin: 0;
  line-height: 1.1;
  text-align: center;
}

.reviews-page__cta-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #5D6A5E;
  margin: 0;
  max-width: 580px;
  text-align: center;
  line-height: normal;
}

.reviews-page__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 40px;
  border-radius: 50px;
  border: 1px solid #BDA078;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #2C3E2D;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}

.reviews-page__cta-btn:hover {
  background-color: #BDA078;
  color: #fff;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Review form section */
.reviews-page__form-section {
  width: 100%;
  max-width: 1320px;
  padding: 0 40px;
}

.reviews-page__form-wrap {
  max-width: 1150px;
  margin: 0 auto;
  background: #FFF0F0;
  border-radius: 20px;
  padding: 60px 80px;
}

.reviews-page__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Form header */
.reviews-page__form-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 16px;
}

.reviews-page__form-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #2C3E2D;
  text-transform: uppercase;
  letter-spacing: 0.42px;
  margin: 0;
}

.reviews-page__form-title {
  font-family: 'Italiana', serif;
  font-size: 42px;
  font-weight: 400;
  color: #2C3E2D;
  text-transform: uppercase;
  margin: 0;
  line-height: normal;
}

/* Section label (Overall rating) */
.reviews-page__form-section-label {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #2C3E2D;
  text-transform: uppercase;
  letter-spacing: 0.42px;
}

.reviews-page__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.reviews-page__form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reviews-page__form-field--rating {
  gap: 6px;
}

.reviews-page__form-field--textarea {
  gap: 2px;
}

.reviews-page__form-input,
.reviews-page__form-select,
.reviews-page__form-textarea {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #5D6A5E;
  background: transparent;
  border: 1px solid #BFC0C0;
  border-radius: 40px;
  padding: 18px 26px;
  height: 57px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.reviews-page__form-input::placeholder,
.reviews-page__form-textarea::placeholder { color: #5D6A5E; }

.reviews-page__form-input:focus,
.reviews-page__form-select:focus,
.reviews-page__form-textarea:focus { border-color: #BDA078; }

.reviews-page__form-input--error,
.reviews-page__form-input--error:focus { border-color: #C0392B; }

.reviews-page__rating--error .reviews-page__rating-star { color: #C0392B; opacity: 0.6; }

.reviews-page__form-textarea {
  border-radius: 30px;
  height: auto;
  min-height: 64px;
  resize: vertical;
}

.reviews-page__form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23BFC0C0' stroke-width='1.3' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 48px;
  cursor: pointer;
}

/* Star rating */
.reviews-page__rating-row {
  display: flex;
  align-items: center;
  gap: 30px;
}

.reviews-page__rating {
  display: flex;
  gap: 4px;
}

.reviews-page__rating-star {
  background: none;
  border: none;
  padding: 0;
  font-size: 31px;
  color: rgba(189, 160, 120, 0.25);
  cursor: pointer;
  line-height: 1;
  transition: color 0.15s, transform 0.1s;
}

.reviews-page__rating-star:hover,
.reviews-page__rating-star--active { color: #BDA078; }

.reviews-page__rating-star:active { transform: scale(0.9); }

.reviews-page__rating-hint {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #3F4D40;
}

/* Optional hint above textarea */
.reviews-page__form-optional {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #3E4D3F;
  text-align: right;
  margin: 0;
  line-height: 1.4;
}

/* Form footer */
.reviews-page__form-footer {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
  align-items: center;
  padding-left: 26px;
}

.reviews-page__form-disclaimer {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #5D6A5E;
  margin: 0;
  line-height: normal;
  align-self: start;
}

.reviews-page__form-submit {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 241px;
  padding: 13px 48px;
  border-radius: 98px;
  border: 1px solid #BDA078;
  background: #BDA078;
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.reviews-page__form-submit:disabled { opacity: 0.5; cursor: default; }
.reviews-page__form-submit:hover:not(:disabled) { opacity: 0.85; }

.reviews-page__form-success {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  color: #2C3E2D;
  text-align: center;
  padding: 60px 0;
}

/* Inquiry section */
.reviews-page__inquiry {
  width: 100%;
  background-color: #253426;
}

.reviews-page__inquiry .inquiry {
  background-color: transparent;
  padding-top: 90px;
  padding-bottom: 100px;
}

/* Responsive */
@media (max-width: 1100px) {
  .reviews-page__item { gap: 32px; }
  .reviews-page__item-left { width: 160px; }
  .reviews-page__cta,
  .reviews-page__form-wrap { padding: 40px 40px; }
}

@media (max-width: 768px) {
  .reviews-page { gap: 50px; }
  .reviews-page__hero { padding-top: 90px; }
  .reviews-page__reviews-block,
  .reviews-page__cta-wrap,
  .reviews-page__form-section { padding: 0 20px; }
  .reviews-page__item { flex-direction: column; gap: 16px; }
  .reviews-page__item-left {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px 14px;
    align-items: center;
  }
  .reviews-page__reviewer { width: 100%; }
  .reviews-page__cta { padding: 36px 24px; }
  .reviews-page__cta-title { font-size: 32px; }
  .reviews-page__form-wrap { padding: 36px 24px; }
  .reviews-page__form-title { font-size: 32px; }
  .reviews-page__form-row { grid-template-columns: 1fr; }
  .reviews-page__form-footer { grid-template-columns: 1fr; gap: 20px; padding-left: 0; }
  .reviews-page__form-submit { width: 100%; justify-self: stretch; }
  .reviews-page__rating-hint { font-size: 14px; }
}
