/* =========================================================
   Mada Malden — Premium Barbershop
   Palette: cream + gold + deep brown
   ========================================================= */

:root {
  --bg: #faf6ef;
  --bg-alt: #f2ebde;
  --ink: #1c140d;
  --ink-soft: #4a3a2a;
  --muted: #7a6a58;
  --line: #e6dcc8;
  --gold: #c9a45a;
  --gold-deep: #a8853f;
  --wine: #6e2a2a;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(28, 20, 13, .06);
  --shadow-md: 0 10px 30px rgba(28, 20, 13, .08);
  --shadow-lg: 0 24px 60px rgba(28, 20, 13, .12);
  --radius: 14px;
  --radius-sm: 8px;
  --container: 1180px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-ar: "Cairo", "Inter", sans-serif;
  --transition: .25s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
html[lang="ar"] body { font-family: var(--font-ar); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-deep); }
button { font: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; color: var(--ink); margin: 0 0 .4em; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw + 1rem, 4.2rem); }
h2 { font-size: clamp(1.8rem, 2.5vw + 1rem, 2.8rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1rem; letter-spacing: .12em; text-transform: uppercase; font-family: var(--font-body); font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin: 0 0 14px;
}
.section-lead { color: var(--muted); max-width: 640px; margin-top: 6px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 500; font-size: .95rem;
  border: 1px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  text-align: center;
}
.btn-gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bg); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); }
.btn-block { width: 100%; padding: 14px 22px; }

/* ---------- Demo bar ---------- */
.demo-bar {
  background: var(--wine);
  color: #f7eddb;
  text-align: center;
  font-size: .82rem;
  letter-spacing: .02em;
  padding: 8px 16px;
  position: relative;
  z-index: 60;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 239, .92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }

.nav-wrap { display: flex; align-items: center; gap: 24px; padding-block: 14px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand-mark { color: var(--gold-deep); display: grid; place-items: center; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; }
.brand-sub { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

.primary-nav { margin-inline-start: auto; display: flex; align-items: center; gap: 26px; }
.primary-nav a { font-size: .92rem; font-weight: 500; color: var(--ink-soft); position: relative; }
.primary-nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: center; transition: transform var(--transition);
}
.primary-nav a:not(.btn):hover::after { transform: scaleX(1); }
.nav-cta { margin-inline-start: 6px; }

.nav-tools { display: flex; align-items: center; gap: 14px; }
.lang-switch { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; overflow: hidden; }
.lang-switch button {
  background: transparent; border: 0; padding: 6px 10px; font-size: .78rem;
  color: var(--muted); font-weight: 600; letter-spacing: .05em;
}
.lang-switch button.active { background: var(--ink); color: var(--bg); }

.nav-toggle { display: none; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 8px; background: transparent; padding: 0; position: relative; }
.nav-toggle span { position: absolute; left: 9px; right: 9px; height: 2px; background: var(--ink); transition: transform .25s, opacity .25s, top .25s; }
.nav-toggle span:nth-child(1) { top: 12px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; min-height: 88vh; display: flex; align-items: center; padding: 80px 0 60px; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 164, 90, .18), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(110, 42, 42, .12), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60'><circle cx='30' cy='30' r='1' fill='%23c9a45a' opacity='0.18'/></svg>");
  opacity: .5;
}
.hero-inner { position: relative; z-index: 1; max-width: 820px; }
.hero h1 { margin-bottom: 18px; }
.hero .lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 620px; margin: 0 0 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 36px; border-top: 1px solid var(--line); padding-top: 28px; }
.hero-meta div { display: flex; flex-direction: column; gap: 4px; }
.hero-meta strong { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold-deep); font-weight: 600; }
.hero-meta span { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); color: var(--muted); font-size: 1.5rem; animation: bounce 2s infinite; z-index: 1; }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; margin: 0 auto 56px; max-width: 720px; }
.section-head .section-lead { margin-inline: auto; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px 22px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.service-card.highlight { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: .95rem; min-height: 60px; margin: 0 0 22px; }
.service-foot { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px dashed var(--line); padding-top: 14px; }
.service-foot .price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--gold-deep); }
.service-foot .duration { font-size: .82rem; color: var(--muted); }
.badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--gold); color: var(--ink);
  padding: 4px 10px; border-radius: 999px;
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
}
html[dir="rtl"] .badge { right: auto; left: 14px; }
.services-note { text-align: center; color: var(--muted); margin-top: 36px; font-size: .92rem; }
.services-note strong { color: var(--gold-deep); letter-spacing: .05em; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.gallery-grid figure {
  margin: 0; position: relative; overflow: hidden;
  border-radius: var(--radius); aspect-ratio: 4/5;
  background: var(--white); border: 1px solid var(--line);
}
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 18px; color: var(--white);
  background: linear-gradient(to top, rgba(28, 20, 13, .8), transparent);
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
}

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: start; }
.about-text p { color: var(--ink-soft); margin: 0 0 16px; max-width: 580px; }
.about-stats { display: flex; gap: 32px; margin-top: 32px; flex-wrap: wrap; }
.about-stats div { display: flex; flex-direction: column; gap: 4px; }
.about-stats strong { font-family: var(--font-display); font-size: 2.2rem; color: var(--gold-deep); font-weight: 600; line-height: 1; }
.about-stats span { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.about-card {
  background: var(--ink); color: var(--bg);
  border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow-md);
}
.about-card h3 { color: var(--gold); margin-bottom: 18px; }
.about-card ul { list-style: none; padding: 0; margin: 0; }
.about-card li { padding: 12px 0; border-top: 1px solid rgba(255, 255, 255, .12); font-size: .95rem; }
.about-card li:first-child { border-top: 0; }

/* ---------- Reviews & stats (dark section) ---------- */
.section-dark { background: var(--ink); color: var(--bg); }
.section-dark h2 { color: var(--bg); }
.section-dark .eyebrow { color: var(--gold); }

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 56px;
}
.stat-tile {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(201, 164, 90, .25);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex; flex-direction: column; gap: 6px;
  text-align: center; align-items: center;
}
.stat-tile strong {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 600;
  color: var(--gold); line-height: 1;
}
.stat-tile > span { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(250, 246, 239, .65); }
.stat-tile em { font-style: normal; font-size: .82rem; color: rgba(250, 246, 239, .45); }
.star-gold { color: var(--gold); }

.lang-stats { text-align: start; align-items: stretch; gap: 10px; }
.lang-stats-label { display: block; margin-bottom: 2px; }
.lang-bar { display: flex; align-items: center; gap: 10px; }
.lang-bar b { width: 26px; font-size: .75rem; font-weight: 600; color: rgba(250, 246, 239, .8); }
.lang-bar .bar { flex: 1; height: 8px; background: rgba(255, 255, 255, .1); border-radius: 999px; overflow: hidden; }
.lang-bar .bar i { display: block; height: 100%; background: var(--gold); border-radius: 999px; transition: width .8s ease; }
.lang-bar u { text-decoration: none; font-size: .78rem; color: rgba(250, 246, 239, .6); min-width: 36px; text-align: end; font-variant-numeric: tabular-nums; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card {
  margin: 0;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.review-stars { color: var(--gold); letter-spacing: .2em; font-size: 1rem; }
.review-card p { margin: 0; color: rgba(250, 246, 239, .85); font-size: .95rem; flex: 1; }
.review-card footer { color: rgba(250, 246, 239, .5); font-size: .85rem; }

.rate-us { text-align: center; margin-top: 48px; }
.rate-us > p { color: rgba(250, 246, 239, .75); margin: 0 0 14px; }
.rate-stars { display: inline-flex; gap: 6px; }
.rate-stars button {
  background: transparent; border: 0; padding: 4px;
  font-size: 2rem; line-height: 1;
  color: rgba(250, 246, 239, .25);
  transition: color .15s ease, transform .15s ease;
}
.rate-stars button:not(:disabled):hover { transform: scale(1.15); }
.rate-stars button.lit { color: var(--gold); }
.rate-stars button:disabled { cursor: default; }
.rate-thanks { color: var(--gold); font-size: .9rem; min-height: 1.3em; margin: 10px 0 0; }

/* ---------- Hours ---------- */
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hours-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.hours-table th, .hours-table td { padding: 16px 22px; text-align: start; font-size: .95rem; }
.hours-table tr + tr th, .hours-table tr + tr td { border-top: 1px solid var(--line); }
.hours-table th { font-weight: 500; color: var(--ink-soft); font-family: var(--font-body); text-transform: none; letter-spacing: 0; }
.hours-table td { font-variant-numeric: tabular-nums; color: var(--ink); text-align: end; }
.hours-table tr.closed td { color: var(--wine); font-style: italic; }

/* ---------- Booking ---------- */
.book-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.book-points { list-style: none; padding: 0; margin: 24px 0 28px; color: var(--ink-soft); }
.book-points li { padding: 6px 0; }
.quick-contact { display: flex; gap: 12px; flex-wrap: wrap; }
.qc-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border: 1px solid var(--line);
  border-radius: 999px; font-weight: 500; font-size: .9rem;
  background: var(--white); transition: all var(--transition);
}
.qc-btn:hover { border-color: var(--gold); color: var(--gold-deep); }
.qc-btn.whatsapp { background: #25d366; color: var(--white); border-color: #25d366; }
.qc-btn.whatsapp:hover { background: #1ebe57; color: var(--white); }

.book-form {
  background: var(--white); padding: 32px; border-radius: var(--radius);
  border: 1px solid var(--line); box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 16px;
}
.book-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: .82rem; font-weight: 600; color: var(--ink-soft); letter-spacing: .03em; }
.field input, .field select, .field textarea {
  font: inherit; font-size: .95rem;
  padding: 12px 14px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: var(--bg);
  color: var(--ink); transition: border-color var(--transition), background var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 164, 90, .15);
}
.form-status { margin: 6px 0 0; font-size: .9rem; min-height: 1.3em; color: var(--gold-deep); }
.form-status.error { color: var(--wine); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 24px 0 0; }
.contact-list li { padding: 14px 0; border-top: 1px solid var(--line); font-size: .95rem; color: var(--ink-soft); }
.contact-list li:first-child { border-top: 0; padding-top: 0; }
.contact-list strong { display: inline-block; font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; font-weight: 600; }
.contact-list a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--line); text-underline-offset: 3px; }
.contact-list a:hover { text-decoration-color: var(--gold); color: var(--gold-deep); }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-wrap iframe { display: block; border: 0; filter: grayscale(.2) contrast(.95); }

/* ---------- Footer ---------- */
.site-foot { background: var(--ink); color: var(--bg); padding: 60px 0 24px; margin-top: 0; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.site-foot h4 { color: var(--gold); margin-bottom: 14px; }
.site-foot a { display: block; padding: 4px 0; color: rgba(250, 246, 239, .8); font-size: .92rem; }
.site-foot a:hover { color: var(--gold); }
.site-foot .brand-name { color: var(--bg); font-family: var(--font-display); font-size: 1.4rem; margin: 0 0 8px; }
.site-foot .muted { color: rgba(250, 246, 239, .6); font-size: .9rem; max-width: 320px; }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 40px; padding-top: 20px; flex-wrap: wrap; gap: 10px;
  color: rgba(250, 246, 239, .55); font-size: .82rem;
}
.foot-bottom a { display: inline; color: inherit; padding: 0; }

/* ---------- Demo payment modal ---------- */
.pay-modal {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(28, 20, 13, .55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: grid; place-items: center;
  padding: 20px;
}
.pay-modal[hidden] { display: none; }
.pay-card {
  position: relative;
  width: 100%; max-width: 420px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  padding: 32px 28px 28px;
  animation: payIn .25s ease;
}
@keyframes payIn { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
.pay-demo-badge {
  position: absolute; top: 16px; inset-inline-start: 20px;
  background: var(--wine); color: #f7eddb;
  font-size: .65rem; font-weight: 700; letter-spacing: .18em;
  padding: 3px 10px; border-radius: 999px;
}
.pay-card h3 { margin: 26px 0 6px; }
.pay-summary { color: var(--muted); font-size: .92rem; margin: 0 0 20px; }
.pay-state { display: flex; flex-direction: column; gap: 14px; }
.pay-state[hidden] { display: none; }
.pay-x {
  position: absolute; top: 12px; inset-inline-end: 14px;
  background: transparent; border: 0; font-size: 1.5rem;
  color: var(--muted); line-height: 1; padding: 6px;
}
.pay-x:hover { color: var(--ink); }
.spinner {
  width: 42px; height: 42px; margin: 10px auto;
  border: 3px solid var(--line);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
#payBusy p, #payDone p { text-align: center; color: var(--ink-soft); margin: 0; }
.pay-check {
  width: 54px; height: 54px; margin: 8px auto;
  border-radius: 50%;
  background: #2e7d4f; color: var(--white);
  display: grid; place-items: center;
  font-size: 1.7rem; font-weight: 700;
}

/* ---------- Floating WhatsApp ---------- */
.float-whatsapp {
  position: fixed; bottom: 20px; right: 20px; z-index: 40;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: var(--white);
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .35);
  transition: transform var(--transition);
}
.float-whatsapp:hover { transform: scale(1.08); color: var(--white); }
html[dir="rtl"] .float-whatsapp { right: auto; left: 20px; }

/* ---------- RTL adjustments ---------- */
html[dir="rtl"] .hero-meta strong,
html[dir="rtl"] .about-stats strong,
html[dir="rtl"] .service-foot .price { font-family: var(--font-ar); }
html[dir="rtl"] .brand-name,
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3 { font-family: var(--font-ar); }
html[dir="rtl"] .site-foot .brand-name { font-family: var(--font-ar); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .about-grid, .hours-grid, .book-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-strip, .reviews-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .primary-nav {
    position: fixed; inset: 64px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-top: 1px solid var(--line);
    padding: 16px 24px; transform: translateY(-120%);
    transition: transform .3s ease; box-shadow: var(--shadow-md);
  }
  .primary-nav.open { transform: translateY(0); }
  .primary-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .primary-nav a:last-child { border-bottom: 0; }
  .primary-nav a:not(.btn)::after { display: none; }
  .nav-toggle { display: block; }
  .hero { min-height: auto; padding: 60px 0 40px; }
  .hero-meta { gap: 22px; }
  .hero-meta strong { font-size: 1.3rem; }
  .book-form { padding: 24px; }
  .book-form .row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .about-stats { gap: 22px; }
  .about-stats strong { font-size: 1.7rem; }
}
@media (max-width: 480px) {
  .container { padding-inline: 18px; }
  .hero h1 { font-size: 2.2rem; }
  .section { padding: 56px 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition: none !important; }
}
