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

:root {
  --gold: #B8965A;
  --gold-light: #D4B078;
  --gold-pale: #F5EDD8;
  --dark: #1A1512;
  --dark-2: #2C2319;
  --mid: #5C4A35;
  --stone: #8C7B6A;
  --stone-light: #C4B49E;
  --cream: #FAF6EF;
  --white: #FFFDF9;
  --sage: #7A8C72;
  --sage-light: #E8EDE6;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--cream); color: var(--dark); font-size: 16px; line-height: 1.7; }
.container { max-width: 1200px; margin: 0 auto; width: 100%; position: relative; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  background: rgba(26,21,18,0.92); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 68px;
}
.nav-logo {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--gold-light); letter-spacing: 0.12em; text-decoration: none;
  display: flex; align-items: center;
}
.nav-logo img { display: block; }
.nav-logo span { font-style: italic; font-weight: 300; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links > li { position: relative; padding: 10px 0; }
.nav-links a {
  font-family: var(--sans); font-size: 12px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone-light);
  text-decoration: none; transition: color 0.2s; display: flex; align-items: center; gap: 6px;
}
.nav-links a:hover { color: var(--gold-light); }
.dropdown-icon { width: 14px; height: 14px; stroke: currentColor; stroke-width: 1.5; fill: none; transition: transform 0.2s; }
.has-dropdown:hover .dropdown-icon { transform: rotate(180deg); }

/* Dropdown Menu */
.dropdown-menu {
  position: absolute; top: 100%; left: 0; background: rgba(250, 246, 239, 0.98);
  min-width: 260px; padding: 12px 0; border: 1px solid rgba(184,150,90,0.2);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08); list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all 0.3s ease; display: flex; flex-direction: column;
}
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li { padding: 0; }
.dropdown-menu a {
  font-family: var(--sans); font-size: 13px; font-weight: 400;
  color: var(--dark); padding: 10px 24px; text-transform: none; letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s; justify-content: flex-start;
}
.dropdown-menu a:hover { background: var(--gold-pale); color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.menu-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px;
}
.menu-toggle span {
  width: 24px; height: 2px; background: var(--gold-light); transition: 0.3s;
}
.nav-book {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--dark);
  background: var(--gold); padding: 10px 24px; text-decoration: none;
  transition: background 0.2s;
}
.nav-book:hover { background: var(--gold-light); }

/* ── PROMO BAR ── */
.promo-bar {
  background: var(--gold); color: var(--dark);
  text-align: center; padding: 10px;
  font-size: 12px; letter-spacing: 0.15em; font-weight: 500; text-transform: uppercase;
}
.promo-bar span { font-weight: 400; letter-spacing: 0.05em; text-transform: none; }

/* ── HERO ── */
.hero {
  position: relative; height: 92vh; min-height: 620px;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--dark-2);
  padding-top: 68px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(26,21,18,0.25) 0%, rgba(26,21,18,0.72) 100%),
    url('../img/hero-bg.jpg') center/cover no-repeat;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 80px 80px;
  max-width: 760px;
}
.hero-eyebrow {
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 20px; display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: var(--serif); font-size: clamp(52px,7vw,88px);
  font-weight: 300; line-height: 1.05; color: var(--white);
  margin-bottom: 10px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); font-weight: 300; }
.hero-sub {
  font-family: var(--serif); font-size: 20px; font-weight: 300;
  font-style: italic; color: var(--stone-light); margin-bottom: 36px;
}
.hero-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-tag {
  border: 1px solid rgba(184,150,90,0.5); color: var(--gold-light);
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 6px 16px; font-family: var(--sans); font-weight: 400;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--dark);
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 16px 36px; text-decoration: none;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--gold); color: var(--gold-light);
  font-family: var(--sans); font-size: 12px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 16px 36px; text-decoration: none;
  transition: all 0.2s;
}
.btn-outline:hover { background: rgba(184,150,90,0.1); }
.hero-scroll {
  position: absolute; right: 60px; bottom: 80px;
  writing-mode: vertical-rl; font-size: 10px;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--stone-light); display: flex; align-items: center; gap: 12px;
}
.hero-scroll::after { content: ''; display: block; width: 1px; height: 60px; background: var(--gold); }

/* ── SECTIONS ── */
section { padding: 90px 80px; }
.section-eyebrow {
  font-family: var(--sans); font-size: 10px; font-weight: 400;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px;
}
h2 {
  font-family: var(--serif); font-size: clamp(32px,4vw,52px);
  font-weight: 300; line-height: 1.1; color: var(--dark);
}
h2 em { font-style: italic; color: var(--mid); }
.divider {
  width: 48px; height: 1px; background: var(--gold); margin: 24px 0;
}
p { color: var(--mid); font-size: 16px; line-height: 1.8; }

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--dark); padding: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.intro-img {
  background: url('../img/intro-img.jpg') center/cover;
}
.intro-text {
  padding: 80px 72px; display: flex; flex-direction: column; justify-content: center;
}
.intro-text .section-eyebrow { color: var(--gold-light); }
.intro-text h2 { color: var(--white); }
.intro-text h2 em { color: var(--gold-light); }
.intro-text .divider { background: var(--gold); }
.intro-text p { color: var(--stone-light); }
.intro-text p + p { margin-top: 16px; }
.treatment-details {
  margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.detail-item { border-left: 2px solid var(--gold); padding-left: 16px; }
.detail-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); margin-bottom: 4px; }
.detail-value { font-family: var(--serif); font-size: 17px; font-weight: 400; color: var(--gold-light); }

/* ── BENEFITS ── */
.benefits-section { background: var(--cream); }
.benefits-section .section-eyebrow { text-align: center; }
.benefits-section h2 { text-align: center; }
.benefits-section .divider { margin: 24px auto; }
.benefits-grid {
  margin-top: 60px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.benefit-card {
  background: var(--white); padding: 44px 36px;
  border-top: 3px solid transparent;
  transition: border-color 0.3s;
}
.benefit-card:hover { border-top-color: var(--gold); }
.benefit-icon {
  width: 52px; height: 52px; background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.benefit-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.benefit-card h3 {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--dark); margin-bottom: 12px;
}
.benefit-card p { font-size: 14px; color: var(--stone); line-height: 1.7; }

/* ── WHO SHOULD ── */
.who-section {
  background: var(--gold-pale);
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px;
  align-items: center;
}
.who-img {
  height: 520px;
  background: url('../img/who-img.jpg') center/cover;
}
.who-list { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.who-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; color: var(--mid);
}
.who-list li::before {
  content: ''; display: block; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%; margin-top: 9px; flex-shrink: 0;
}

/* ── PROCEDURE ── */
.procedure-section { background: var(--dark); }
.procedure-section .section-eyebrow { color: var(--gold-light); }
.procedure-section h2 { color: var(--white); }
.procedure-section h2 em { color: var(--gold-light); }
.procedure-section .divider { background: var(--gold); }
.procedure-section > p { color: var(--stone-light); margin-bottom: 60px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.step-card { background: rgba(255,255,255,0.04); padding: 40px 32px; position: relative; }
.step-num {
  font-family: var(--serif); font-size: 64px; font-weight: 300;
  color: rgba(184,150,90,0.18); line-height: 1;
  position: absolute; top: 24px; right: 28px;
}
.step-card h3 {
  font-family: var(--serif); font-size: 20px; font-weight: 400;
  color: var(--gold-light); margin-bottom: 12px;
}
.step-card p { font-size: 14px; color: var(--stone-light); line-height: 1.7; }
.step-line {
  width: 32px; height: 1px; background: var(--gold);
  margin-bottom: 24px;
}

/* ── OILS ── */
.oils-section { background: var(--white); }
.oils-section .section-eyebrow { text-align: center; }
.oils-section h2 { text-align: center; }
.oils-section .divider { margin: 24px auto; }
.oils-grid {
  margin-top: 60px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.oil-card {
  border: 1px solid var(--stone-light); padding: 36px 28px; text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.oil-card:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(184,150,90,0.12); }
.oil-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gold-pale); border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.oil-circle svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.oil-card h3 { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--dark); margin-bottom: 10px; }
.oil-card p { font-size: 13px; color: var(--stone); line-height: 1.6; }

/* ── COMPARISON ── */
.compare-section { background: var(--cream); }
.compare-section h2 { text-align: center; }
.compare-section .section-eyebrow { text-align: center; }
.compare-section .divider { margin: 24px auto; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 60px; }
.compare-card { background: var(--white); padding: 44px 40px; border-left: 4px solid var(--gold-pale); }
.compare-card.featured { border-left-color: var(--gold); }
.compare-card .badge {
  display: inline-block; background: var(--gold); color: var(--dark);
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 5px 14px; margin-bottom: 20px;
}
.compare-card h3 { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--dark); margin-bottom: 16px; }
.compare-card p { font-size: 15px; color: var(--stone); line-height: 1.8; }

/* ── SAFETY ── */
.safety-section {
  background: var(--dark-2); padding: 72px 80px;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px;
}
.safety-card { }
.safety-icon { font-size: 28px; margin-bottom: 14px; }
.safety-card h3 { font-family: var(--serif); font-size: 20px; color: var(--gold-light); margin-bottom: 10px; }
.safety-card p { font-size: 14px; color: var(--stone-light); line-height: 1.7; }

/* ── AFTER ── */
.after-section { background: var(--sage-light); }
.after-section h2 { text-align: center; }
.after-section .section-eyebrow { text-align: center; }
.after-section .divider { margin: 24px auto; }
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 60px; position: relative; }
.timeline::before {
  content: ''; position: absolute; top: 30px; left: calc(100%/6); right: calc(100%/6);
  height: 1px; background: var(--sage);
}
.timeline-item { text-align: center; padding: 0 24px; }
.timeline-dot {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--sage);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; position: relative; z-index: 2;
  font-family: var(--serif); font-size: 22px; font-weight: 300; color: var(--sage);
}
.timeline-item h3 { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--dark); margin-bottom: 10px; }
.timeline-item p { font-size: 14px; color: var(--mid); }

/* ── WHY YARA ── */
.why-section {
  background: var(--dark); padding: 90px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.why-text .section-eyebrow { color: var(--gold-light); }
.why-text h2 { color: var(--white); }
.why-text h2 em { color: var(--gold-light); }
.why-text .divider { background: var(--gold); }
.why-text p { color: var(--stone-light); }
.why-list { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 20px; }
.why-item-num {
  font-family: var(--serif); font-size: 36px; font-weight: 300;
  color: rgba(184,150,90,0.4); line-height: 1; flex-shrink: 0; width: 32px;
}
.why-item-text h4 { font-family: var(--serif); font-size: 18px; color: var(--gold-light); margin-bottom: 6px; }
.why-item-text p { font-size: 14px; color: var(--stone-light); }
.why-img {
  height: 520px;
  background: url('../img/why-img.jpg') center/cover;
  position: relative;
}
.why-img::after {
  content: '28,000+\ASuccessful\ASessions'; white-space: pre;
  position: absolute; bottom: 32px; left: -32px;
  background: var(--gold); color: var(--dark);
  font-family: var(--serif); font-size: 20px; text-align: center;
  padding: 24px 28px; line-height: 1.4;
}

/* ── FINAL CTA ── */
.cta-section {
  background: var(--gold-pale); text-align: center; padding: 100px 80px;
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { color: var(--mid); max-width: 560px; margin: 0 auto 40px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.location-select {
  display: flex; gap: 12px; justify-content: center; margin-top: 28px; flex-wrap: wrap;
}
.location-btn {
  border: 1px solid var(--stone-light); padding: 10px 24px; background: transparent;
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--mid); cursor: pointer;
  transition: all 0.2s;
}
.location-btn:hover, .location-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(184,150,90,0.06); }
.price-display {
  font-family: var(--serif); font-size: 40px; font-weight: 300;
  color: var(--dark); margin-top: 24px;
}
.price-display small { font-size: 16px; color: var(--stone); font-family: var(--sans); font-weight: 300; }

/* ── FOOTER NAV ── */
.footer {
  background: var(--dark); padding: 40px 80px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(184,150,90,0.2);
}
.footer-logo { font-family: var(--serif); font-size: 18px; color: var(--gold-light); letter-spacing: 0.1em; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); text-decoration: none; }
.footer-links a:hover { color: var(--gold-light); }
.footer p { font-size: 12px; color: var(--stone); }

/* ── ROOMS GRID (LIFESTYLE AT YARA) ── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}
.room-card {
  background: var(--white);
  border: 1px solid rgba(184,150,90,0.1);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}
.room-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  border-color: var(--gold);
}
.room-img-container {
  height: 250px;
  overflow: hidden;
  position: relative;
}
.room-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.room-card:hover .room-img-container img {
  transform: scale(1.1);
}
.room-info {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.room-category {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.room-info h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 15px;
  color: var(--dark);
}
.room-info p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.6;
  margin-bottom: 20px;
}
.room-meta {
  list-style: none;
  display: flex;
  gap: 20px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--gold-pale);
}
.room-meta li {
  font-size: 11px;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-room {
  margin-top: 25px;
  text-align: center;
  border: 1px solid var(--gold);
  padding: 12px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--dark);
  transition: all 0.3s;
}
.btn-room:hover {
  background: var(--gold);
  color: var(--white);
}

/* ── FAQ ── */
.faq-section { background: var(--white); }
.faq-section .section-eyebrow { text-align: center; }
.faq-section h2 { text-align: center; }
.faq-section .divider { margin: 24px auto; }
.faq-section > p { text-align: center; color: var(--stone); max-width: 560px; margin: 0 auto 56px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.faq-item {
  background: var(--cream); padding: 0;
  border-bottom: 1px solid var(--stone-light);
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 28px 32px;
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--serif); font-size: 19px; font-weight: 400; color: var(--dark);
  line-height: 1.3; transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-question.open { color: var(--gold); }
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px;
  border: 1px solid var(--stone-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  font-size: 18px; color: var(--stone); line-height: 1;
}
.faq-question.open .faq-icon { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 32px;
  font-size: 14px; color: var(--stone); line-height: 1.8;
}
.faq-answer.open { max-height: 300px; padding: 0 32px 28px; }

@media (max-width: 1200px) {
  nav { padding: 0 32px; }
  .menu-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 68px; left: 0; width: 100%; height: calc(100vh - 68px);
    background: var(--dark); flex-direction: column; align-items: flex-start;
    padding: 40px 32px; gap: 24px; overflow-y: auto;
    opacity: 0; visibility: hidden; transform: translateX(100%);
    transition: all 0.3s ease; display: flex;
  }
  .nav-links.active { opacity: 1; visibility: visible; transform: translateX(0); }
  .nav-links > li { width: 100%; }
  .nav-links a { font-size: 16px; width: 100%; justify-content: space-between; }
  .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; background: transparent; border: none; padding: 0;
    display: none; margin-top: 10px; border-left: 1px solid rgba(184,150,90,0.3); padding-left: 16px;
  }
  .has-dropdown.open .dropdown-menu { display: flex; }
  .dropdown-menu a { font-size: 14px; color: var(--stone-light); padding: 8px 0; }
  .dropdown-menu a:hover { background: transparent; color: var(--gold-light); }
  
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Tablet Layout Tweaks */
  section { padding: 70px 40px; }
  .intro-text { padding: 40px; }
  .who-section, .why-section { gap: 40px; }
  .why-section { padding: 70px 40px; }
  .oils-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid, .steps-grid { gap: 16px; grid-template-columns: 1fr 1fr; }
  .timeline { gap: 32px; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { padding: 32px 24px; }
  section { padding: 60px 24px; }
  .hero-content { padding: 0 24px 60px; }
  .intro-strip, .who-section, .why-section { grid-template-columns: 1fr; }
  .intro-img, .who-img, .why-img { height: 320px; }
  .why-section { padding: 60px 24px; }
  .benefits-grid, .steps-grid { grid-template-columns: 1fr; }
  .oils-grid { grid-template-columns: 1fr 1fr; }
  .compare-grid, .timeline { grid-template-columns: 1fr; }
  .timeline::before { display: none; }
  .safety-section { grid-template-columns: 1fr; padding: 60px 24px; }
  .footer { flex-direction: column; gap: 20px; text-align: center; padding: 32px 24px; }
  .why-img::after { left: 0; bottom: 0; font-size: 16px; padding: 16px 20px; }
  .cta-section { padding: 60px 24px; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-question { padding: 22px 20px; font-size: 17px; }
  .faq-answer { padding: 0 20px; }
  .faq-answer.open { padding: 0 20px 22px; }
  .rooms-grid { grid-template-columns: 1fr; }
}
