/* ============================================================
   South by Southwest Specialists — Shared Stylesheet
   sswspecialists.com.au
   Palette derived from SSWS logo: blue → green gradient
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Lora:ital,wght@0,500;0,600;1,400&display=swap');

/* ── Design Tokens — Sage, Earth & Slate palette ── */
:root {
  --sage-dark:     #3A5530;   /* deep sage — footer, page heroes, dark bg */
  --sage:          #6B8C5A;   /* mid sage — used sparingly for interactive */
  --sage-light:    #DDE8D6;   /* pale sage — section bg */
  --sage-pale:     #F0F3EC;   /* near-white sage — body sections */
  --slate:         #5C7A8F;   /* muted slate blue — labels, accents, links */
  --slate-light:   #D6E4EE;   /* pale slate — borders, subtle bg */
  --earth:         #8C7A62;   /* warm earth — secondary labels, tags */
  --earth-light:   #EDE7DF;   /* pale earth — warm backgrounds */
  --text-dark:     #262B22;   /* near-black */
  --text-body:     #4A5445;   /* body text */
  --text-muted:    #7A8575;   /* muted/secondary */
  --border:        #CDD8C6;   /* sage-tinted border */
  --white:         #FFFFFF;
  --nav-h:         70px;
  --radius:        12px;
  --shadow:        0 4px 24px rgba(38, 43, 34, 0.10);
  --shadow-sm:     0 2px 8px rgba(38, 43, 34, 0.06);

  /* Legacy aliases — keep so HTML inline vars still resolve */
  --green-dark:    var(--sage-dark);
  --green-primary: var(--sage);
  --green-hover:   #4A6B3A;
  --green-light:   var(--sage-light);
  --green-pale:    var(--sage-pale);
  --blue-accent:   var(--slate);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--slate); text-decoration: none; }
a:hover { color: var(--sage-dark); }

/* ── Typography ── */
h1, h2, h3 {
  font-family: 'Lora', Georgia, serif;
  color: var(--text-dark);
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 600; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 600; }
h3 { font-size: 1.15rem; font-weight: 600; }
h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--earth);
}
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; color: var(--text-dark); }

/* ── Layout ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 80px 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--sage-dark);
  color: var(--white);
  border-color: var(--sage-dark);
}
.btn-primary:hover {
  background: #2E4425;
  border-color: #2E4425;
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-green {
  background: transparent;
  color: var(--sage-dark);
  border-color: var(--sage-dark);
}
.btn-outline-green:hover {
  background: var(--sage-dark);
  color: var(--white);
}

/* ── Navigation ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}
.nav-inner {
  height: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img { height: 46px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--sage-pale);
  color: var(--sage-dark);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-phone {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}
.nav-phone:hover { color: var(--green-primary); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: 0.3s;
}

/* Mobile nav open */
.nav-links.nav-open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 20px;
  gap: 4px;
  box-shadow: var(--shadow);
}

/* ── Section Labels & Headers ── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 12px;
}
.section-header { margin-bottom: 48px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--green-dark);
  padding: calc(var(--nav-h) + 64px) 0 64px;
  color: var(--white);
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { font-size: 1.1rem; color: rgba(255, 255, 255, 0.82); max-width: 560px; }

/* ── Card ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

/* ── Info Block (contact info) ── */
.info-block { margin-bottom: 28px; }
.info-block:last-child { margin-bottom: 0; }
.info-block .label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 6px;
}
.info-block p, .info-block a {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}
.info-block a:hover { color: var(--sage-dark); }
.info-block .sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 4px;
}

/* ── FAQ Accordion ── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--green-pale); }
.faq-question.open { background: var(--sage-pale); color: var(--sage-dark); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--earth-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--earth);
  transition: transform 0.25s;
}
.faq-question.open .faq-icon { transform: rotate(45deg); background: var(--sage-dark); color: var(--white); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  background: var(--white);
}
.faq-answer.open { display: block; }
.faq-answer a { color: var(--slate); font-weight: 500; }

/* ── Footer ── */
.site-footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand-name {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.65; }
.footer-col h4 { color: rgba(255, 255, 255, 0.45); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--white); }
.footer-col .edi-tag {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-disclaimer { max-width: 560px; font-style: italic; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 64px 0; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .nav-phone { font-size: 0.82rem; }
  section { padding: 52px 0; }
}

/* ============================================================
   HOMEPAGE SPECIFIC
   ============================================================ */

/* Hero — full-bleed photo with light sage wash overlay */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(38, 43, 34, 0.28) 0%,
    rgba(38, 43, 34, 0.16) 60%,
    rgba(38, 43, 34, 0.06) 100%
  );
}
/* Wrapper that aligns the card to the left of the full viewport */
.hero-outer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* Override .container centering so the card hugs the left */
  max-width: 100%;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 60px;
  padding-right: 0;
}
.hero-content {
  max-width: 520px;
  width: 100%;
  color: var(--white);
  background: rgba(38, 43, 34, 0.50);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 44px 48px;
  border: 1px solid rgba(255, 255, 255, 0.10);
}
.hero-content h1 { color: var(--white); margin-bottom: 18px; }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.88);
}
.hero-detail-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.hero-detail a { color: rgba(255, 255, 255, 0.88); font-weight: 500; }
.hero-detail a:hover { color: var(--white); }

/* Specialists section */
.specialists-section { background: var(--sage-pale); }
.specialty-group { margin-bottom: 52px; }
.specialty-group:last-child { margin-bottom: 0; }
.specialty-heading {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-primary);
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}
.specialists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.specialists-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.spec-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.spec-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.spec-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--sage-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.spec-info h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--text-dark);
}
.spec-info .spec-role {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.spec-info a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate);
}
.spec-info a:hover { color: var(--sage-dark); }

/* How to Book */
.how-to-book { background: var(--white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 36px;
}
.step {
  padding: 32px 26px;
  background: var(--sage-pale);
  border-radius: var(--radius);
  position: relative;
}
.step-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--sage-dark);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-family: 'Lora', serif;
}
.step h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.step p { font-size: 0.92rem; color: var(--text-body); margin: 0; }
.step a { color: var(--slate); font-weight: 600; }
.book-callout {
  background: var(--green-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 28px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-body);
}
.book-callout a { color: var(--slate); font-weight: 600; }

/* Consulting Rooms CTA */
.rooms-cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.rooms-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.rooms-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(38, 43, 34, 0.92) 0%,
    rgba(38, 43, 34, 0.86) 45%,
    rgba(38, 43, 34, 0.62) 100%
  );
}
.rooms-cta-inner {
  position: relative;
  z-index: 2;
}
.rooms-cta-text { max-width: 580px; color: var(--white); }
.rooms-cta-text h2 { color: var(--white); margin-bottom: 16px; }
.rooms-cta-text p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}
.rooms-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.rooms-feature-tag {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
}

/* Contact strip */
.contact-strip { background: var(--earth-light); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.contact-strip-item h4 { margin-bottom: 10px; }
.contact-strip-item a {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 4px;
  line-height: 1.5;
}
.contact-strip-item a:hover { color: var(--sage-dark); }
.contact-strip-item .sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}
.contact-strip-item .edi {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-family: 'Inter', monospace;
  letter-spacing: 0.02em;
}
.contact-strip-center { text-align: center; }

/* ============================================================
   INNER PAGE: First Visit
   ============================================================ */
.visit-sections { max-width: 820px; margin: 0 auto; }
.visit-block {
  margin-bottom: 60px;
}
.visit-block:last-child { margin-bottom: 0; }
.visit-block h2 {
  color: var(--green-dark);
  font-size: 1.5rem;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--green-light);
}
.checklist { list-style: none; }
.checklist li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--text-body);
  align-items: flex-start;
}
.checklist li:last-child { border-bottom: none; }
.checklist-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sage-dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.visit-note {
  background: var(--green-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 0.95rem;
  margin-top: 20px;
  color: var(--text-body);
}
.visit-note a { color: var(--slate); font-weight: 500; }

/* ============================================================
   INNER PAGE: Consulting Rooms
   ============================================================ */
.rooms-photo-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.rooms-photo-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.rooms-intro { background: var(--white); }
.rooms-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.rooms-feature-card {
  background: var(--sage-pale);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.rooms-feature-card .icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.rooms-feature-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.rooms-feature-card p { font-size: 0.9rem; color: var(--text-body); margin: 0; }
.rooms-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 48px;
}
.rooms-gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.rooms-enquiry {
  background: var(--green-dark);
  border-radius: var(--radius);
  padding: 48px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.rooms-enquiry h2 { color: var(--white); margin-bottom: 10px; }
.rooms-enquiry p { color: rgba(255, 255, 255, 0.82); font-size: 1rem; margin: 0; }

/* ============================================================
   INNER PAGE: Contact
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  height: 460px;
  border: 1px solid var(--border);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   INNER PAGE: Legal (Privacy Policy & Disclaimer)
   ============================================================ */
.legal-body {
  max-width: 760px;
  margin: 0 auto;
}
.legal-body h2 {
  font-size: 1.15rem;
  margin-top: 48px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  color: var(--sage-dark);
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body p { font-size: 0.97rem; color: var(--text-body); margin-bottom: 14px; }
.legal-body ul {
  margin: 0 0 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-body ul li { font-size: 0.97rem; color: var(--text-body); }
.legal-body a { color: var(--slate); font-weight: 500; }
.legal-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

/* ============================================================
   RESPONSIVE — Inner pages
   ============================================================ */
@media (max-width: 960px) {
  .specialists-grid { grid-template-columns: repeat(2, 1fr); }
  .specialists-grid--2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .steps-grid { grid-template-columns: 1fr; gap: 18px; }
  .rooms-features-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-enquiry { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .map-container { height: 340px; }
}

@media (max-width: 640px) {
  .hero { min-height: auto; padding: calc(var(--nav-h) + 52px) 0 60px; }
  .hero-outer { padding-left: 20px; padding-right: 20px; }
  .hero-content { padding: 28px 24px; border-radius: 12px; }
  .hero-btns { flex-direction: column; }
  .specialists-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 20px; }
  .rooms-gallery { grid-template-columns: 1fr; }
  .rooms-gallery img { height: 220px; }
  .rooms-features-grid { grid-template-columns: 1fr; }
  .rooms-cta { padding: 64px 0; }
  .rooms-enquiry { padding: 32px 24px; }
  .rooms-photo-hero { height: 280px; }
}
