/* ===================================================
   A Soos Care Home — Styles
   Palette: Navy + warm cream/sand + gold accent
   =================================================== */

:root {
  --navy: #1e3a5f;
  --navy-dark: #16293f;
  --navy-light: #2c5282;
  --gold: #c89b54;
  --gold-soft: #e2c290;
  --cream: #faf6ef;
  --sand: #f0e8da;
  --warm-gray: #6b5d4a;
  --text: #2d2a26;
  --muted: #6f6a62;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(30, 58, 95, 0.14);
  --shadow-sm: 0 6px 20px rgba(30, 58, 95, 0.08);
  --shadow-lg: 0 30px 70px rgba(22, 41, 63, 0.28);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1180px;
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Nunito Sans", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 22px; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; color: var(--navy); font-weight: 700; }

.section { padding: 84px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--gold); display: inline-block; border-radius: 2px;
}
.section-head { text-align: center; }
.section-head .eyebrow::before { display: none; }
.eyebrow.light { color: var(--gold-soft); }

.section-head { max-width: 680px; margin: 0 auto 54px; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; }
.section-sub { color: var(--muted); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  padding: 14px 30px; border-radius: 50px; font-weight: 800; font-size: 0.98rem;
  cursor: pointer; border: 2px solid transparent; transition: all .25s ease;
  font-family: var(--font-body);
}
.btn-primary { background: linear-gradient(135deg, var(--gold), #d9ab63); color: var(--navy-dark); box-shadow: 0 8px 22px rgba(200,155,84,.35); }
.btn-primary:hover { background: linear-gradient(135deg, var(--gold-soft), var(--gold)); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(200,155,84,.45); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: var(--white); border-color: var(--gold-soft); }
.btn-outline-light:hover { background: var(--gold-soft); color: var(--navy-dark); }
.btn-block { width: 100%; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--navy); color: #fff;
  padding: 10px 16px; z-index: 2000; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Top Bar ---------- */
.topbar {
  background: linear-gradient(90deg, var(--navy-dark), var(--navy-light));
  color: #dce4ee; font-size: 0.85rem; font-weight: 600;
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; height: 42px; }
.topbar-item { white-space: nowrap; }
.topbar-phone { color: var(--gold-soft); font-weight: 800; }
.topbar-phone:hover { color: #fff; }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky; top: 0; z-index: 1000; background: rgba(250, 246, 239, 0.95);
  backdrop-filter: blur(10px); border-bottom: 1px solid rgba(30,58,95,.08);
  transition: box-shadow .3s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { border-radius: 10px; }
.brand-text { font-family: var(--font-head); font-size: 1.25rem; color: var(--navy); font-weight: 600; white-space: nowrap; }
.brand-text strong { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links > a { font-weight: 700; font-size: 0.95rem; color: var(--navy); transition: color .2s; }
.nav-links > a:hover { color: var(--gold); }
.nav-cta { background: var(--navy); color: var(--white) !important; padding: 9px 20px; border-radius: 50px; }
.nav-cta:hover { background: var(--navy-light); }
.nav-call { color: var(--gold) !important; font-weight: 800 !important; white-space: nowrap; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { width: 26px; height: 3px; background: var(--navy); border-radius: 3px; transition: .3s; }
.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); animation: heroZoom 18s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.14); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(22,41,63,.94) 0%, rgba(30,58,95,.72) 48%, rgba(30,58,95,.42) 100%); }
.hero-shape { position: absolute; border-radius: 50%; filter: blur(8px); opacity: .35; pointer-events: none; }
.hero-shape-1 { width: 360px; height: 360px; background: radial-gradient(circle, rgba(226,194,144,.5), transparent 70%); top: -90px; right: -60px; }
.hero-shape-2 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(44,82,130,.6), transparent 70%); bottom: -80px; left: -50px; }
.hero-content { position: relative; max-width: 740px; padding-top: 40px; padding-bottom: 60px; animation: fadeUp 1s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.hero-content .eyebrow { color: var(--gold-soft); }
.hero-content .eyebrow::before { background: var(--gold-soft); }
.hero-content h1 { color: #fff; font-size: clamp(2.4rem, 6vw, 4.2rem); margin-bottom: 18px; letter-spacing: -.5px; text-shadow: 0 4px 30px rgba(0,0,0,.25); }
.hero-content h1 span { color: var(--gold-soft); font-style: italic; }
.hero-sub { font-size: clamp(1rem, 2vw, 1.22rem); color: #e9eef4; max-width: 600px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-badges { list-style: none; display: flex; gap: 26px; flex-wrap: wrap; }
.hero-badges li { font-weight: 700; font-size: 0.95rem; color: var(--gold-soft); }

.scroll-cue { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.6); border-radius: 14px; display: flex; justify-content: center; padding-top: 7px; z-index: 2; }
.scroll-cue span { width: 4px; height: 8px; background: var(--gold-soft); border-radius: 4px; animation: scrollDot 1.6s ease infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(-4px); } 50% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }

/* ---------- Stats Band ---------- */
.stats-band { background: linear-gradient(135deg, var(--navy), var(--navy-light)); padding: 46px 0; position: relative; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat { padding: 8px; position: relative; }
.stat:not(:last-child)::after { content: ""; position: absolute; right: -10px; top: 50%; transform: translateY(-50%); width: 1px; height: 56px; background: rgba(255,255,255,.16); }
.stat-num { display: block; font-family: var(--font-head); font-weight: 700; font-size: clamp(2rem, 4vw, 3rem); color: var(--gold-soft); line-height: 1; }
.stat-label { display: block; margin-top: 8px; color: #cdd8e6; font-size: 0.86rem; font-weight: 600; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.about-img { position: relative; }
.about-img img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.about-img-badge {
  position: absolute; bottom: -22px; right: -10px; background: var(--navy); color: #fff;
  padding: 18px 24px; border-radius: var(--radius-sm); box-shadow: var(--shadow); text-align: center;
}
.about-img-badge .num { display: block; font-family: var(--font-head); font-size: 2rem; color: var(--gold-soft); font-weight: 700; }
.about-img-badge .lbl { font-size: 0.8rem; letter-spacing: .5px; }
.about-text h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 18px; }
.about-text p { color: var(--muted); margin-bottom: 16px; }
.about-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 22px 0 28px; }
.about-list li { font-weight: 700; color: var(--navy); font-size: 0.96rem; }

/* ---------- Services / Cards ---------- */
.services { background: var(--sand); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--white); padding: 34px 28px; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; border: 1px solid rgba(30,58,95,.05);
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card:hover::before { transform: scaleX(1); }
.card:hover .card-icon { background: var(--navy); transform: rotate(-6deg) scale(1.05); }
.card-icon {
  width: 64px; height: 64px; border-radius: 16px; background: var(--cream);
  display: flex; align-items: center; justify-content: center; font-size: 1.85rem; margin-bottom: 18px;
  transition: background .3s, transform .3s;
}
.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.97rem; }

/* ---------- Amenities ---------- */
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.amenity {
  background: var(--white); border-radius: var(--radius-sm); padding: 26px 18px; text-align: center;
  font-weight: 700; color: var(--navy); font-size: 1.9rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 10px; align-items: center; transition: transform .2s;
}
.amenity:hover { transform: translateY(-4px); }
.amenity span { font-size: 0.95rem; color: var(--muted); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item {
  border: none; padding: 0; cursor: pointer; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); position: relative; aspect-ratio: 4/3; background: var(--sand);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item::after {
  content: "🔍"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(30,58,95,.45); color: #fff; font-size: 1.6rem; opacity: 0; transition: opacity .3s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--navy); }
.testimonials .section-head h2 { color: #fff; }
.quote {
  background: var(--navy-light); border-radius: var(--radius); padding: 32px 28px; color: #eaf0f7;
  border: 1px solid rgba(255,255,255,.08);
}
.quote .stars { color: var(--gold-soft); font-size: 1.2rem; margin-bottom: 14px; letter-spacing: 2px; }
.quote p { font-style: italic; margin-bottom: 18px; }
.quote cite { font-style: normal; font-weight: 800; color: var(--gold-soft); font-size: 0.92rem; }

/* ---------- Why Choose Us ---------- */
.why { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.why-lead { color: var(--muted); margin-bottom: 28px; font-size: 1.05rem; }
.why-list { list-style: none; display: grid; gap: 22px; }
.why-list li { display: flex; gap: 18px; align-items: flex-start; }
.why-ico {
  flex: 0 0 56px; width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.why-list h3 { font-size: 1.18rem; margin-bottom: 4px; }
.why-list p { color: var(--muted); font-size: 0.96rem; }
.why-media { position: relative; }
.why-media > img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.why-quote {
  position: absolute; bottom: -26px; left: -22px; background: var(--gold);
  color: var(--navy-dark); padding: 22px 26px; border-radius: var(--radius-sm);
  max-width: 250px; box-shadow: var(--shadow); font-family: var(--font-head); font-weight: 600; font-size: 1.1rem;
}
.why-quote-mark { font-size: 2.6rem; line-height: 0; position: absolute; top: 18px; left: 14px; opacity: .3; }
.why-quote p { margin: 0; padding-left: 18px; }

/* ---------- Floating Action Buttons ---------- */
.fab {
  position: fixed; z-index: 900; border: none; cursor: pointer;
  box-shadow: var(--shadow-lg); transition: transform .25s, opacity .25s, box-shadow .25s;
}
.fab-call {
  bottom: 24px; left: 24px; display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, var(--gold), #d9ab63); color: var(--navy-dark);
  padding: 14px 22px; border-radius: 50px; font-weight: 800; font-size: 0.98rem;
}
.fab-call:hover { transform: translateY(-3px); }
.fab-call .fab-icon { font-size: 1.1rem; animation: ring 2.2s ease-in-out infinite; }
@keyframes ring { 0%, 70%, 100% { transform: rotate(0); } 75% { transform: rotate(14deg); } 80% { transform: rotate(-14deg); } 85% { transform: rotate(10deg); } 90% { transform: rotate(-10deg); } }
.fab-top {
  bottom: 24px; right: 24px; width: 50px; height: 50px; border-radius: 50%;
  background: var(--navy); color: #fff; font-size: 1.3rem; line-height: 1;
  opacity: 0; pointer-events: none;
}
.fab-top.show { opacity: 1; pointer-events: auto; }
.fab-top:hover { background: var(--navy-light); transform: translateY(-3px); }

/* ---------- FAQ ---------- */
.faq { background: var(--sand); }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: var(--white); border-radius: var(--radius-sm); padding: 4px 24px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(30,58,95,.05);
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 18px 30px 18px 0; position: relative;
  font-weight: 800; color: var(--navy); font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; color: var(--gold); font-weight: 400; transition: transform .25s;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { color: var(--muted); padding: 0 0 20px; margin: 0; }

/* ---------- Location ---------- */
.location-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: center; }
.location-text h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 16px; }
.location-text p { color: var(--muted); margin-bottom: 22px; }
.contact-info { list-style: none; display: grid; gap: 14px; }
.contact-info li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--navy); }
.contact-info li span { font-size: 1.3rem; }
.contact-info a:hover { color: var(--gold); }
.location-map { height: 380px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.location-map iframe { width: 100%; height: 100%; }

/* ---------- Contact ---------- */
.contact { background: linear-gradient(135deg, var(--navy-dark), var(--navy-light)); color: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: center; }
.contact-intro h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 16px; }
.contact-intro p { color: #d8e1ec; margin-bottom: 24px; }
.contact-form { background: #fff; padding: 34px; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 700; font-size: 0.9rem; color: var(--navy); margin-bottom: 7px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid #dfe3e8; border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.97rem; color: var(--text); transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,155,84,.15);
}
.form-group textarea { resize: vertical; }
.form-note { margin-top: 14px; font-weight: 700; font-size: 0.92rem; text-align: center; }
.form-note.success { color: #1c7a3e; }
.form-note.error { color: #c0392b; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-dark); color: #c8d2de; padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.brand-light .brand-text { color: #fff; }
.footer-brand p { margin-top: 16px; font-size: 0.95rem; max-width: 340px; }
.footer-col h4 { color: #fff; margin-bottom: 16px; font-size: 1.1rem; }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; text-align: center; font-size: 0.85rem; color: #9aa7b6; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; background: rgba(16,27,42,.94); z-index: 3000;
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox-figure { max-width: 900px; text-align: center; }
.lightbox-figure img { max-height: 80vh; border-radius: var(--radius); box-shadow: var(--shadow); }
.lightbox-figure figcaption { color: #fff; margin-top: 14px; font-weight: 700; font-family: var(--font-head); }
.lightbox-close {
  position: absolute; top: 18px; right: 26px; background: none; border: none; color: #fff;
  font-size: 2.6rem; line-height: 1; cursor: pointer;
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===================================================
   Responsive
   =================================================== */
@media (max-width: 1080px) {
  .nav-call { display: none; }
}

@media (max-width: 980px) {
  .about-grid, .location-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-badge { right: 16px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 50px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 10px; }
  .stat:nth-child(2)::after { display: none; }
}

@media (max-width: 900px) {
  .topbar-mid { display: none; }
  .nav-links {
    position: fixed; top: 72px; right: 0; height: calc(100vh - 72px); width: min(78vw, 320px);
    background: var(--cream); flex-direction: column; align-items: flex-start; gap: 4px;
    padding: 26px 26px; transform: translateX(100%); transition: transform .32s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,.12); overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links > a { width: 100%; padding: 12px 0; border-bottom: 1px solid rgba(30,58,95,.08); }
  .nav-cta { text-align: center; }
  .nav-call { display: block; }
  .hamburger { display: flex; }

  .section { padding: 60px 0; }
  .hero { min-height: 84vh; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .why-quote { left: 50%; transform: translateX(-50%); bottom: -30px; text-align: center; }
  .fab-call .fab-text { display: none; }
  .fab-call { padding: 16px; border-radius: 50%; }
}

@media (max-width: 600px) {
  .section { padding: 52px 0; }
  .container { padding: 0 18px; }

  /* Hero */
  .hero { min-height: auto; padding: 96px 0 72px; }
  .hero-content { padding-top: 10px; padding-bottom: 10px; }
  .hero-content h1 { font-size: clamp(2.1rem, 9vw, 2.9rem); }
  .hero-sub { font-size: 1.02rem; margin-bottom: 26px; }
  .hero-btns { gap: 12px; }
  .hero-btns .btn { width: 100%; flex: 1 1 100%; padding: 15px 24px; }
  .hero-badges {
    gap: 10px; margin-top: 4px;
  }
  .hero-badges li {
    background: rgba(255,255,255,.1); border: 1px solid rgba(226,194,144,.35);
    padding: 7px 14px; border-radius: 50px; font-size: 0.82rem; backdrop-filter: blur(4px);
  }
  .scroll-cue { display: none; }

  /* Stats */
  .stats-band { padding: 34px 0; }
  .stats-grid { gap: 26px 12px; }
  .stat-num { font-size: 2.1rem; }
  .stat-label { font-size: 0.8rem; }

  /* Section heads */
  .section-head { margin-bottom: 38px; }
  .section-head h2 { font-size: 1.7rem; }
  .section-sub { font-size: 0.98rem; }

  /* Cards / about */
  .card { padding: 28px 24px; }
  .about-img-badge { right: 14px; bottom: -18px; padding: 14px 20px; }
  .about-list { gap: 10px; }
  .why-ico { flex-basis: 50px; width: 50px; height: 50px; font-size: 1.3rem; }
}

@media (max-width: 480px) {
  .cards, .amenities-grid, .form-row, .about-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .brand-text { font-size: 1.08rem; }
  .contact-form { padding: 22px; }
  .topbar { font-size: 0.74rem; }
  .topbar-inner { justify-content: center; }
  .topbar-item:not(.topbar-phone) { display: none; }
  .nav { height: 64px; }
  .nav-links { top: 64px; height: calc(100vh - 64px); }
  .fab-call { bottom: 18px; left: 18px; }
  .fab-top { bottom: 18px; right: 18px; }
  .why-quote { font-size: 1rem; padding: 18px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
