/* ===================================================================
   ARGOS CLUB — style.css
   Palette: Burgundy #6B1A1A · Gold #C9A96E · Cream #FAF7F2
   Fonts:   Cormorant Garamond (headings) · DM Sans (body)
   =================================================================== */

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

/* ── Root variables ─────────────────────────────────────────────── */
:root {
  --burgundy:      #6B1A1A;
  --burgundy-d:    #4E1111;
  --burgundy-l:    #8B2A2A;
  --gold:          #C9A96E;
  --gold-l:        #E8C89A;
  --gold-d:        #A08040;
  --cream:         #FAF7F2;
  --cream-d:       #F0EAE0;
  --cream-dd:      #E3DAD0;
  --text:          #1C1C1C;
  --text-m:        #4A4A4A;
  --text-l:        #7A7A7A;
  --white:         #FFFFFF;
  --green-ok:      #2D7A4F;
  --red-full:      #B83232;
  --shadow:        0 4px 24px rgba(107,26,26,.10);
  --shadow-lg:     0 16px 48px rgba(107,26,26,.16);
  --radius:        4px;
  --radius-l:      12px;
  --transition:    .3s ease;
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }

/* ── Typography ─────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  font-weight: 600;
}
.section-label {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-d);
  font-weight: 500;
  margin-bottom: .75rem;
  display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--burgundy);
  font-weight: 600;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-m);
  max-width: 560px;
  margin: 1rem auto 0;
  line-height: 1.7;
}

/* ── Navbar ─────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(250,247,242,.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  padding: .8rem 2rem;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .04em;
  transition: color var(--transition);
}
.nav-logo span { font-weight: 300; font-size: 1rem; vertical-align: middle; margin-left: .3rem; }
.navbar.scrolled .nav-logo { color: var(--burgundy); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  font-weight: 400;
  transition: color var(--transition);
}
.navbar.scrolled .nav-links a { color: var(--text-m); }
.nav-links a:hover { color: var(--gold); }
.navbar.scrolled .nav-links a:hover { color: var(--burgundy); }
.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: .55rem 1.4rem;
  border-radius: 2px;
  font-weight: 500;
  letter-spacing: .08em;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-d) !important; }

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/argos-store.png');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(.55);
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(78,17,17,.75) 0%,
    rgba(107,26,26,.4) 50%,
    rgba(0,0,0,.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}
.hero-eyebrow {
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-l);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .8s .3s ease forwards;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: .02em;
  opacity: 0;
  animation: fadeUp .9s .5s ease forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-l);
  font-weight: 400;
}
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: rgba(255,255,255,.82);
  margin: 1.2rem 0 2.8rem;
  font-style: italic;
  opacity: 0;
  animation: fadeUp .9s .7s ease forwards;
}
.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s .9s ease forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  padding: 1rem 2.4rem;
  font-size: .88rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.btn-primary:hover {
  background: var(--gold-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 1rem 2.4rem;
  font-size: .88rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,.5);
  cursor: pointer;
  border-radius: var(--radius);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.btn-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--white);
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  opacity: .7;
  animation: bounce 2s infinite;
}
.hero-scroll span { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--white); }
.hero-scroll svg  { color: var(--gold-l); }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ── Ribbon strip ───────────────────────────────────────────────── */
.ribbon {
  background: var(--burgundy);
  padding: 1rem 2rem;
  overflow: hidden;
}
.ribbon-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.ribbon-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: .95rem;
  color: var(--gold-l);
  letter-spacing: .1em;
  font-style: italic;
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Sections common ────────────────────────────────────────────── */
section { padding: 6rem 2rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 4rem; }

/* ── Services ───────────────────────────────────────────────────── */
.services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--cream-dd);
  border-radius: var(--radius-l);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover {
  border-color: var(--gold-l);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 72px; height: 72px;
  background: var(--cream-d);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: background var(--transition);
}
.service-card:hover .service-icon { background: var(--burgundy); }
.service-icon svg { transition: filter var(--transition); }
.service-card:hover .service-icon svg path { stroke: var(--gold-l); }
.service-card h3 {
  font-size: 1.45rem;
  color: var(--burgundy);
  margin-bottom: .6rem;
}
.service-card p {
  font-size: .93rem;
  color: var(--text-m);
  line-height: 1.7;
}
.service-price {
  margin-top: 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold-d);
  font-weight: 600;
  letter-spacing: .05em;
}

/* ── Why us ─────────────────────────────────────────────────────── */
.why-us {
  background: var(--burgundy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: 'AC';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20rem;
  font-weight: 700;
  color: rgba(255,255,255,.04);
  line-height: 1;
  pointer-events: none;
}
.why-us .section-title { color: var(--gold-l); }
.why-us .section-sub   { color: rgba(255,255,255,.7); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  margin-top: 3.5rem;
}
.why-item { text-align: center; }
.why-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .5rem;
}
.why-item h4 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: .6rem;
}
.why-item p {
  font-size: .91rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
}

/* ── How it works ───────────────────────────────────────────────── */
.how-it-works { background: var(--cream-d); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.step-item { text-align: center; padding: 0 2rem; position: relative; z-index: 1; }
.step-num {
  width: 72px; height: 72px;
  background: var(--burgundy);
  color: var(--gold-l);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 700;
  border: 3px solid var(--gold);
}
.step-item h4 {
  font-size: 1.3rem;
  color: var(--burgundy);
  margin-bottom: .5rem;
}
.step-item p {
  font-size: .9rem;
  color: var(--text-m);
  line-height: 1.7;
}

/* ── Testimonials ───────────────────────────────────────────────── */
.testimonials { background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 2.5rem;
  border: 1px solid var(--cream-dd);
  position: relative;
}
.testi-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold-l);
  line-height: 1;
  position: absolute;
  top: 1rem; left: 1.5rem;
  opacity: .5;
}
.testi-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.testi-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testi-author {
  font-size: .85rem;
  font-weight: 500;
  color: var(--burgundy);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.testi-author span {
  display: block;
  font-weight: 300;
  color: var(--text-l);
  text-transform: none;
  letter-spacing: 0;
  font-size: .82rem;
}

/* ── CTA Banner ─────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--burgundy-d) 0%, var(--burgundy) 60%, var(--burgundy-l) 100%);
  padding: 5rem 2rem;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 1.2rem;
}
.cta-banner p {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}
.cta-banner .btn-primary { font-size: .95rem; padding: 1.1rem 3rem; }

/* ── Footer ─────────────────────────────────────────────────────── */
footer {
  background: var(--text);
  color: rgba(255,255,255,.75);
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-l);
  margin-bottom: .6rem;
}
.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: .8rem; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  font-size: .85rem;
}
.footer-social a:hover { background: var(--gold); }
.footer-col h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold-l);
  margin-bottom: 1.2rem;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .6rem; font-size: .88rem; }
.footer-col a:hover { color: var(--gold-l); }
.footer-contact-item {
  display: flex;
  gap: .75rem;
  margin-bottom: .8rem;
  font-size: .88rem;
  align-items: flex-start;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

/* ── Booking page ───────────────────────────────────────────────── */
.page-header {
  background: var(--burgundy);
  padding: 8rem 2rem 4rem;
  text-align: center;
}
.page-header h1 { color: var(--white); font-size: clamp(2.5rem, 5vw, 4rem); }
.page-header p  { color: var(--gold-l); font-family: 'Cormorant Garamond',serif; font-style: italic; font-size: 1.3rem; margin-top: .5rem; }

.booking-section { padding: 5rem 2rem; background: var(--cream); }
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}
.booking-panel {
  background: var(--white);
  border-radius: var(--radius-l);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--cream-dd);
}
.panel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--burgundy);
  margin-bottom: 1.8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--cream-dd);
}

/* Calendar */
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.cal-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--burgundy);
  font-weight: 600;
  text-transform: capitalize;
}
.cal-nav {
  background: none;
  border: 1px solid var(--cream-dd);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  transition: all var(--transition);
  font-size: 1.1rem;
}
.cal-nav:hover { background: var(--burgundy); color: var(--white); }
.cal-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-l);
  margin-bottom: .6rem;
  font-weight: 500;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-day {
  aspect-ratio: 1;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
  font-weight: 500;
  cursor: default;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.cal-day.empty    { visibility: hidden; }
.cal-day.closed   { color: var(--cream-dd); cursor: not-allowed; }
.cal-day.past     { color: var(--cream-dd); cursor: not-allowed; }
.cal-day.green    { background: rgba(45,122,79,.1); color: var(--green-ok); cursor: pointer; border-color: rgba(45,122,79,.2); }
.cal-day.green:hover { background: var(--green-ok); color: var(--white); transform: scale(1.08); }
.cal-day.red      { background: rgba(184,50,50,.08); color: var(--red-full); cursor: not-allowed; border-color: rgba(184,50,50,.15); }
.cal-day.selected { background: var(--burgundy) !important; color: var(--white) !important; border-color: var(--gold) !important; transform: scale(1.08); }
.cal-day.today    { font-weight: 700; text-decoration: underline; }
.cal-legend {
  display: flex;
  gap: 1.2rem;
  margin-top: 1rem;
  font-size: .8rem;
  color: var(--text-l);
}
.legend-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: .3rem;
}
.legend-dot.green { background: var(--green-ok); }
.legend-dot.red   { background: var(--red-full); }

/* Slots */
.slots-label {
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-l);
  margin: 1.5rem 0 .8rem;
  font-weight: 500;
}
.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem;
}
.slot-btn {
  background: var(--cream);
  border: 1px solid var(--cream-dd);
  border-radius: var(--radius);
  padding: .55rem .4rem;
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  color: var(--text);
  transition: all var(--transition);
}
.slot-btn:hover    { background: var(--burgundy); color: var(--white); border-color: var(--burgundy); }
.slot-btn.selected { background: var(--burgundy); color: var(--white); border-color: var(--gold); }
.slot-btn.occupied { background: var(--cream); color: var(--cream-dd); cursor: not-allowed; text-decoration: line-through; }

/* Form */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-m);
  margin-bottom: .4rem;
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid var(--cream-dd);
  border-radius: var(--radius);
  background: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: .93rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,.15);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-summary {
  background: var(--cream-d);
  border: 1px solid var(--cream-dd);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
  font-size: .9rem;
}
.form-summary strong { color: var(--burgundy); }
.btn-book {
  width: 100%;
  background: var(--burgundy);
  color: var(--white);
  border: none;
  padding: 1.1rem;
  font-size: .92rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'DM Sans', sans-serif;
}
.btn-book:hover { background: var(--burgundy-d); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-book:disabled { background: var(--cream-dd); color: var(--text-l); cursor: not-allowed; transform: none; box-shadow: none; }

/* ── Alert ──────────────────────────────────────────────────────── */
.alert {
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  margin-bottom: 1.2rem;
  font-size: .9rem;
}
.alert-success { background: rgba(45,122,79,.1); color: var(--green-ok); border: 1px solid rgba(45,122,79,.25); }
.alert-error   { background: rgba(184,50,50,.08); color: var(--red-full);  border: 1px solid rgba(184,50,50,.2); }

/* ── Conferma page ──────────────────────────────────────────────── */
.confirm-box {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 2rem;
}
.confirm-icon {
  width: 80px; height: 80px;
  background: rgba(45,122,79,.12);
  border-radius: 50%;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--green-ok);
}
.confirm-box h2 {
  font-size: 2.5rem;
  color: var(--burgundy);
  margin-bottom: 1rem;
}
.confirm-details {
  background: var(--cream-d);
  border-radius: var(--radius-l);
  padding: 1.8rem;
  text-align: left;
  margin: 2rem 0;
}
.confirm-detail-row {
  display: flex;
  justify-content: space-between;
  padding: .6rem 0;
  border-bottom: 1px solid var(--cream-dd);
  font-size: .92rem;
}
.confirm-detail-row:last-child { border: none; }
.confirm-detail-row span:first-child { color: var(--text-l); }
.confirm-detail-row span:last-child  { font-weight: 500; color: var(--text); }

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .booking-layout { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .footer-grid  { grid-template-columns: 1fr; }
  .form-grid-2  { grid-template-columns: 1fr; }
  .slots-grid   { grid-template-columns: repeat(3, 1fr); }
  section       { padding: 4rem 1.2rem; }
}

/* ── Loader ─────────────────────────────────────────────────────── */
.loader {
  border: 2px solid var(--cream-dd);
  border-top-color: var(--burgundy);
  border-radius: 50%;
  width: 24px; height: 24px;
  animation: spin .7s linear infinite;
  margin: 1.5rem auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hidden { display: none !important; }
