/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --brand-green:          #008145;
  --brand-green-hover:    #059669;
  --accent-success:       #10b981;

  --surface:              #f9f9f9;
  --surface-low:          #f3f3f4;
  --surface-high:         #e8e8e8;
  --primary-container:    #1c1b1b;
  --on-primary-container: #858383;
  --on-pf-variant:        #474646;

  --on-surface:           #1a1c1c;
  --on-surface-variant:   #444748;
  --ink-body:             #374151;
  --ink-muted:            #6b7280;
  --hairline:             #e5e7eb;

  --sp-xs:      8px;
  --sp-sm:      12px;
  --sp-md:      16px;
  --sp-lg:      24px;
  --sp-xl:      32px;
  --sp-xxl:     48px;
  --sp-section: 96px;

  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-full:9999px;
  --max-w:      1200px;
  --ease:       0.3s;
}

/* ============================================================
   RESET & BASE
============================================================ */
html, body { scroll-behavior: smooth; overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background: #ffffff;
  color: var(--ink-body);
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent-success); color: #fff; }
img { display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
a { cursor: pointer; text-decoration: none; }

/* ============================================================
   UTILITIES
============================================================ */
.hidden { display: none !important; }

.booking-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  display: inline-block;
  vertical-align: middle;
}

/* ============================================================
   SKELETON
============================================================ */
.page-skeleton {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s ease;
}
.page-skeleton.fade-out { opacity: 0; pointer-events: none; }

.skel-nav {
  height: 64px;
  background: var(--surface-low);
  animation: skel-pulse 1.4s ease-in-out infinite;
}
.skel-hero {
  flex: 1;
  max-height: 500px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  animation: skel-pulse 1.4s ease-in-out infinite;
}
.skel-hero-inner { display: flex; flex-direction: column; gap: 1rem; max-width: 360px; width: 100%; align-items: center; }
.skel-line { border-radius: 6px; background: var(--surface-high); }
.skel-line-lg { height: 36px; width: 70%; animation: skel-pulse 1.4s 0s ease-in-out infinite; }
.skel-line-md { height: 18px; width: 50%; animation: skel-pulse 1.4s 0.1s ease-in-out infinite; }
.skel-line-sm { height: 14px; width: 35%; animation: skel-pulse 1.4s 0.2s ease-in-out infinite; }

@keyframes skel-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-md);
  padding: var(--sp-sm) var(--sp-lg);
  transition: background-color var(--ease), color var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background-color: var(--brand-green);
  color: #ffffff;
  border: 1px solid transparent;
}
.btn-primary:hover { background-color: var(--brand-green-hover); }
.btn-primary:active { transform: scale(0.98); }
.btn-primary:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

.btn-outline {
  background-color: transparent;
  color: var(--brand-green);
  border: 1px solid var(--brand-green);
}
.btn-outline:hover { background-color: var(--surface-low); }

.btn-lg { padding: var(--sp-md) var(--sp-xl); }
.btn-full { width: 100%; }

/* ============================================================
   NAV
============================================================ */
.site-nav {
  background-color: rgba(249, 249, 249, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-md) var(--sp-md);
}
.nav-logo {
  font-family: 'MuseoModerno', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--brand-green);
}
.nav-links {
  display: none;
  align-items: center;
  gap: var(--sp-xl);
}
.nav-link {
  font-size: 14px;
  font-weight: 400;
  color: var(--on-surface-variant);
  transition: color var(--ease);
}
.nav-link:hover { color: var(--on-surface); }

/* ============================================================
   HERO
============================================================ */
.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-section) var(--sp-md);
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-intro { margin-bottom: var(--sp-xl); }

.hero-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--sp-md);
}
.hero-title {
  font-family: Arial, sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -1.2px;
  text-transform: uppercase;
  color: var(--ink-body);
  margin-bottom: var(--sp-xl);
  text-wrap: balance;
}
.hero-divider {
  width: 80px;
  height: 1px;
  background-color: var(--on-surface);
  border: none;
  margin: 0 auto var(--sp-xl);
}
.hero-subtitle-wrap {
  max-width: 40rem;
  margin: 0 auto var(--sp-xxl);
}
.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.625;
  letter-spacing: -0.02em;
  color: var(--ink-body);
}
.hero-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-md);
  color: var(--ink-muted);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: var(--sp-lg) 0;
  width: 100%;
  max-width: 52rem;
  margin-bottom: var(--sp-xxl);
}
.hero-info-item {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-info-item .material-symbols-outlined { font-size: 18px; }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-md);
}
.btn-hero { box-shadow: 0 8px 20px -4px rgba(0, 129, 69, 0.3); }

/* ============================================================
   PORTFOLIO — BENTO GRID
============================================================ */
.section-portfolio {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-section) var(--sp-md);
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--sp-xl);
}
.section-title {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--ink-body);
}
.section-meta {
  font-size: 13px;
  font-weight: 400;
  color: var(--on-surface-variant);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 200px;
  gap: 1px;
  background-color: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.bento-item {
  background-color: var(--surface-low);
  overflow: hidden;
}
.bento-item-large {
  grid-column: span 2;
  grid-row: span 2;
}
.bento-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--ease);
}
.bento-item img:hover { opacity: 0.88; }

/* ============================================================
   ABOUT
============================================================ */
.section-about { background-color: var(--surface-low); }

.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-section) var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xxl);
  align-items: center;
}
.about-text { width: 100%; }

.about-title {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--ink-body);
  margin-bottom: var(--sp-lg);
}
.about-body {
  font-size: 16px;
  line-height: 1.625;
  color: var(--ink-body);
  max-width: 34rem;
  white-space: pre-wrap;
}
.about-body > * + * { margin-top: var(--sp-md); }

.about-image-col { width: 100%; }
.about-image-wrap { position: relative; }

.about-border-effect {
  display: none;
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(0, 129, 69, 0.12);
  border-radius: var(--radius-lg);
  transition: inset 500ms;
  pointer-events: none;
}
.about-image-wrap:hover .about-border-effect { inset: -8px; }

.about-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  transition: filter 700ms;
}
@media (min-width: 768px) {
  .about-img { filter: grayscale(1); }
  .about-img:hover { filter: grayscale(0); }
}

/* ============================================================
   SERVICES
============================================================ */
.section-services {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-section) var(--sp-md);
}
.services-header { margin-bottom: var(--sp-xl); }
.services-subtitle {
  font-size: 14px;
  color: var(--on-surface-variant);
  margin-top: var(--sp-sm);
}

.booking-step-hint {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-muted);
  margin-bottom: var(--sp-md);
}
.booking-left .booking-step-hint { margin-bottom: 0; }

/* Mobile: bordered list */
.services-grid {
  display: block;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #ffffff;
}
.service-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-md);
  padding: 18px var(--sp-lg);
  background: #ffffff;
  border-radius: 0;
  border-bottom: 1px solid var(--hairline);
  transition: background var(--ease);
  cursor: pointer;
}
.service-card:last-child { border-bottom: none; }
.service-card:hover { background: rgba(0, 129, 69, 0.04); }
.service-card--selected { background: rgba(0, 129, 69, 0.07); }
.service-card--selected .service-name { color: var(--brand-green); }
.service-card--selected .service-book {
  border-color: var(--brand-green);
  color: var(--brand-green);
}

.service-card-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  flex: 1;
  min-width: 0;
}
.service-name {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink-body);
  transition: color var(--ease);
}
.service-badge {
  font-size: 13px;
  font-weight: 400;
  color: var(--on-surface-variant);
}
.service-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--sp-md);
  flex-shrink: 0;
}
.service-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-green);
  white-space: nowrap;
}
.service-price-unit {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-muted);
  text-transform: uppercase;
}
.service-book {
  padding: 8px 18px;
  border: 1.5px solid var(--hairline);
  border-radius: var(--radius-full);
  background: #ffffff;
  color: var(--on-surface-variant);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  transition: border-color var(--ease), color var(--ease), background var(--ease);
  white-space: nowrap;
  min-height: 36px;
}
.service-card:hover .service-book {
  border-color: var(--brand-green);
  color: var(--brand-green);
}

.services-empty {
  padding: var(--sp-lg);
  font-size: 15px;
  color: var(--ink-muted);
}

/* ============================================================
   BOOKING
============================================================ */
.section-booking {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sp-section) var(--sp-md);
}
.booking-title {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--ink-body);
  margin-bottom: var(--sp-xl);
}
.booking-layout {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xxl);
}
.booking-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
}

/* Date picker */
.date-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-md);
}
.date-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--on-surface-variant);
  text-transform: uppercase;
}
.date-nav-btns { display: flex; gap: var(--sp-sm); }
.date-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color var(--ease);
  flex-shrink: 0;
  padding: 0;
}
.date-nav-btn:hover { background-color: var(--surface-high); }
.date-nav-btn .material-symbols-outlined { font-size: 18px; }
.date-nav-btn:disabled { opacity: 0.35; cursor: default; }
.date-nav-btn:disabled:hover { background-color: transparent; }

.date-strip-wrap { overflow: hidden; }
.date-strip {
  display: flex;
  gap: 8px;
}

.date-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 0;
  height: 88px;
  background-color: var(--surface-low);
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  transition: background-color var(--ease);
  padding: 0 2px;
}
.date-btn:hover:not(:disabled) { background-color: var(--surface-high); }
.date-btn--active {
  background-color: var(--brand-green);
  color: #ffffff;
  box-shadow: 0 4px 10px -2px rgba(0, 129, 69, 0.3);
}
.date-btn.date-btn--active:hover { background-color: var(--brand-green); cursor: default; }
.date-btn--unavail {
  opacity: 0.35;
  cursor: default;
}

.date-day {
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--on-surface-variant);
}
.date-num {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink-body);
  line-height: 1.1;
}
.date-month {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--on-surface-variant);
}
.date-btn--active .date-day,
.date-btn--active .date-num,
.date-btn--active .date-month { color: #ffffff; opacity: 1; }

/* Time slots */
.slots-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--on-surface-variant);
  text-transform: uppercase;
  margin-bottom: var(--sp-md);
}
.slot-hint,
.slot-empty {
  font-size: 14px;
  color: var(--ink-muted);
  padding: 4px 0;
}
.slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
}
.slot-btn {
  padding: var(--sp-md);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  background: transparent;
  color: var(--on-surface);
  transition: border-color var(--ease), background-color var(--ease), color var(--ease);
  min-height: 44px;
}
.slot-btn:hover { border-color: var(--on-surface); }
.slot-btn--selected {
  border: 2px solid var(--brand-green);
  color: var(--brand-green);
  background-color: rgba(16, 185, 129, 0.06);
}

/* Booking sidebar */
.booking-sidebar {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}
.summary-card,
.details-card {
  background-color: var(--surface-high);
  padding: var(--sp-xl);
  border-radius: var(--radius-lg);
}
.details-card .booking-step-hint { margin-bottom: var(--sp-md); }
.summary-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--ink-body);
  margin-bottom: var(--sp-lg);
}
.summary-details { margin-bottom: var(--sp-xl); }
.summary-details > * + * { margin-top: var(--sp-md); }
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  line-height: 1.5;
  gap: var(--sp-md);
}
.summary-row-label { color: var(--on-surface-variant); flex-shrink: 0; }
.summary-row-value { font-weight: 700; text-align: right; color: var(--ink-body); }
.summary-total {
  padding-top: var(--sp-md);
  border-top: 1px solid rgba(0,0,0,.1);
}
.summary-total-price {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #000000;
}

/* Booking form */
.booking-form { margin-bottom: var(--sp-xl); }
.booking-form > * + * { margin-top: var(--sp-md); }
.form-field { display: flex; flex-direction: column; gap: var(--sp-xs); }
.form-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--on-surface-variant);
  text-transform: uppercase;
}
.form-label-optional { font-weight: 400; color: var(--ink-muted); text-transform: none; letter-spacing: 0; }
.form-input {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: var(--sp-sm) var(--sp-md);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--on-surface);
  outline: none;
  transition: border-color var(--ease);
  -webkit-appearance: none;
}
.form-input:focus { border-color: var(--brand-green); }
textarea.form-input { resize: none; }

.btn-confirm {
  padding-top: 18px;
  padding-bottom: 18px;
  box-shadow: 0 8px 20px -4px rgba(0, 129, 69, 0.3);
  margin-bottom: var(--sp-md);
}
.booking-note {
  font-size: 12px;
  text-align: center;
  color: var(--on-surface-variant);
}
.booking-error {
  margin-bottom: var(--sp-md);
  color: #b91c1c;
  font-size: 13px;
  line-height: 1.5;
  padding: 10px 12px;
  background: #fef2f2;
  border-radius: 8px;
  border: 1px solid #fecaca;
}

/* ============================================================
   CONTACT
============================================================ */
.section-contact {
  background-color: var(--primary-container);
  color: #ffffff;
  padding: var(--sp-section) 0;
}
.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xxl);
}
.contact-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--sp-xl);
}
.contact-title {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: var(--sp-lg);
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
}
.contact-item { display: flex; gap: var(--sp-md); }
.contact-icon { color: var(--accent-success); flex-shrink: 0; }
.contact-info-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 3px;
}
.contact-info-text {
  font-size: 14px;
  color: var(--on-primary-container);
}
.contact-info-text a { color: var(--on-primary-container); }
.contact-info-text a:hover { color: #ffffff; }

.social-links { display: flex; gap: var(--sp-lg); }
.social-link {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  border: 1px solid var(--on-primary-container);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: background-color var(--ease), border-color var(--ease);
}
.social-link:hover {
  background-color: var(--accent-success);
  border-color: var(--accent-success);
}

.contact-map {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(133, 131, 131, 0.2);
  flex-shrink: 0;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background-color: #000000;
  color: #ffffff;
  padding: var(--sp-md) 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--sp-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-md);
}
.footer-logo {
  font-family: 'MuseoModerno', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #ffffff;
}
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-sm) var(--sp-md); }
.footer-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--on-pf-variant);
  transition: color var(--ease);
}
.footer-link:hover { color: #ffffff; }
.footer-copy {
  font-size: 14px;
  color: var(--on-pf-variant);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (min-width: 768px) {
  .nav-inner {
    padding-left: var(--sp-xl);
    padding-right: var(--sp-xl);
  }
  .nav-links { display: flex; }

  .hero { padding: var(--sp-section) var(--sp-xl) var(--sp-section); }
  .hero-title { font-size: 64px; line-height: 0.85; letter-spacing: -2px; }
  .hero-info { gap: var(--sp-xl); }

  .section-portfolio { padding: var(--sp-section) var(--sp-xl); }
  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
  }

  .about-inner {
    flex-direction: row;
    padding-left: var(--sp-xl);
    padding-right: var(--sp-xl);
  }
  .about-text { width: 50%; }
  .about-image-col { width: 50%; }
  .about-border-effect { display: block; }

  .section-services { padding: var(--sp-section) var(--sp-xl); }
  /* Card grid at 768px+ */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-lg);
    border: none;
    border-radius: 0;
    overflow: visible;
    background: none;
  }
  .service-card {
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    background: var(--surface-low);
    padding: var(--sp-xl);
    border-radius: var(--radius-md);
    border-bottom: none;
    min-height: 160px;
  }
  .service-card:hover { background: var(--surface-high); }
  .service-card--selected { background: var(--surface-high); }
  .service-card--selected .service-book {
    background: var(--brand-green);
    color: #ffffff;
    border-color: transparent;
  }
  .service-card-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--sp-md);
    flex: unset;
  }
  .service-name { font-size: 22px; letter-spacing: -0.3px; color: var(--ink-body); }
  .service-badge {
    background: #ffffff;
    padding: 4px var(--sp-sm);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--on-surface);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .service-footer { justify-content: space-between; flex-shrink: unset; }
  .service-price { font-size: 22px; font-weight: 600; color: #000000; }
  .service-book {
    padding: var(--sp-sm) var(--sp-xl);
    border: none;
    border-radius: var(--radius-md);
    background: var(--brand-green);
    color: #ffffff;
    font-size: 14px;
    min-height: 40px;
  }
  .service-card:hover .service-book {
    background: var(--accent-success);
    color: #ffffff;
    border-color: transparent;
  }

  .section-booking { padding: var(--sp-section) var(--sp-xl); }
  .date-strip { gap: var(--sp-md); }

  .section-contact { }
  .contact-inner {
    flex-direction: row;
    padding-left: var(--sp-xl);
    padding-right: var(--sp-xl);
  }
  .contact-left { width: 50%; }
  .contact-map { width: 50%; }

  .footer-inner {
    flex-direction: row;
    padding-left: var(--sp-xl);
    padding-right: var(--sp-xl);
  }
  .footer-links { gap: var(--sp-xl); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .booking-layout { flex-direction: row; }
  .booking-sidebar {
    width: 440px;
    flex-shrink: 0;
    position: sticky;
    top: 80px;
    align-self: flex-start;
  }
}

/* ============================================================
   ANIMATION SYSTEM
============================================================ */

/* Nav: elevation when user scrolls past hero ─────────────── */
.site-nav { transition: box-shadow 0.3s ease; }
.site-nav.nav--scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  border-bottom-color: transparent;
}

/* Portfolio bento: hover zoom + darken ─────────────────────
   Replaces the old opacity:0.88 rule                         */
.bento-item img {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.55s ease,
              opacity 0.3s ease;
}
.bento-item:hover img {
  opacity: 1;
  transform: scale(1.05);
  filter: brightness(0.84);
}

/* Date buttons: press scale ─────────────────────────────── */
.date-btn {
  transition: background-color var(--ease), transform 0.1s ease;
}
.date-btn:active:not(:disabled) { transform: scale(0.93); }

/* Slot buttons: stagger entrance + press ────────────────── */
@keyframes slot-rise {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
.slot-btn {
  animation: slot-rise 0.22s cubic-bezier(0.22, 1, 0.36, 1) calc(var(--i, 0) * 28ms) both;
  transition: border-color var(--ease), background-color var(--ease),
              color var(--ease), transform 0.1s ease;
}
.slot-btn:active { transform: scale(0.91); }

/* Slots grid: fade-slide in when revealed ───────────────── */
@keyframes slots-appear {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}
.slots-grid:not(.hidden) {
  animation: slots-appear 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Summary rows: green flash on value change ─────────────── */
@keyframes sum-flash {
  0%   { color: inherit; }
  30%  { color: var(--brand-green); }
  100% { color: inherit; }
}
.sum-flash {
  animation: sum-flash 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* Booking submit: spinner while loading ─────────────────── */
@keyframes spin { to { transform: rotate(360deg); } }
.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
  flex-shrink: 0;
}

/* About section: scroll reveal ─────────────────────────── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.scroll-reveal.in-view {
  opacity: 1;
  transform: none;
}
.about-image-col.scroll-reveal { transition-delay: 0.1s; }

/* Service cards: hover lift on desktop grid ─────────────── */
@media (min-width: 768px) {
  .service-card {
    transition: background var(--ease), transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  }
  .service-card--selected {
    transform: none !important;
    box-shadow: none !important;
  }
}

/* Reduced motion: cut all animation ─────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .slot-btn,
  .slots-grid:not(.hidden),
  .sum-flash,
  .btn-spinner {
    animation: none !important;
  }
  .bento-item img,
  .date-btn,
  .slot-btn,
  .site-nav,
  .service-card,
  .scroll-reveal {
    transition-duration: 0.01ms !important;
  }
  .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Preview mode (onboarding iframe) ─────────────────── */
body.preview-mode nav.site-nav {
  display: none;
}
