/* ============================================================
   CUTEMDOWN — CSS
   ============================================================ */

/* RESET */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* CUSTOM PROPERTIES */
:root {
  --black:       #111822;
  --black-mid:   #182130;
  --black-light: #1F2B3A;
  --walnut:      #3E2C1A;
  --walnut-mid:  #4E3828;
  --walnut-light:#5F4534;
  --gold:        #C8952A;
  --gold-light:  #E0A830;
  --gold-dim:    rgba(200, 149, 42, 0.15);
  --gold-glow:   rgba(200, 149, 42, 0.09);
  --cream:       #F2EDE4;
  --cream-dim:   rgba(242, 237, 228, 0.55);
  --cream-faint: rgba(242, 237, 228, 0.10);
}

/* BASE */
html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Space Grotesk', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

/* ============================================================
   PROGRESS BAR
   ============================================================ */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: #1B6CB5;
  transform: scaleX(0);
  transform-origin: left;
  z-index: 300;
  pointer-events: none;
  will-change: transform;
}

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 100;
  transition: background 0.35s ease, border-bottom-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  background: var(--black);
  border-bottom-color: rgba(242, 237, 228, 0.08);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--cream);
  letter-spacing: 0.06em;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--cream-dim);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--cream);
}

.nav-book {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  background: var(--gold);
  text-decoration: none;
  padding: 9px 22px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.nav-book:hover {
  background: var(--gold-light);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--cream-dim);
  font-size: 22px;
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s ease;
}

.mobile-close:hover {
  color: var(--cream);
}

.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.04em;
  line-height: 1.15;
  transition: color 0.2s ease;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-menu-book {
  margin-top: 24px;
  display: inline-block;
  background: var(--gold) !important;
  color: var(--black) !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 14px 44px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 54fr 46fr;
  position: relative;
  overflow: hidden;
}

/* Mobile-only darkened background image (hidden on desktop) */
.hero-bg-mobile {
  display: none;
  position: absolute;
  inset: 0;
  background: url('../IMG_9526.jpeg') center top / cover no-repeat;
  z-index: 0;
}

.hero-bg-mobile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 34, 0.88);
}

/* Content column */
.hero-content {
  padding: 130px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* Small label above headline */
.hero-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Main headline */
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(68px, 9vw, 128px);
  line-height: 0.88;
  color: var(--cream);
  letter-spacing: 0.02em;
}

/* Gold rule divider */
.hero-divider {
  width: 44px;
  height: 2px;
  background: #1B6CB5;
  margin: 22px 0;
}

/* Sub text */
.hero-sub {
  font-size: 15px;
  line-height: 1.72;
  color: var(--cream-dim);
  max-width: 380px;
  margin-bottom: 40px;
  font-weight: 400;
}

/* CTA row */
.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--black);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 36px;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.btn-book:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-dim);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border: 1px solid rgba(242, 237, 228, 0.18);
  transition: border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn-ghost:hover {
  border-color: rgba(242, 237, 228, 0.45);
  color: var(--cream);
}

/* Stats strip */
.hero-stats {
  display: flex;
  align-items: center;
}

.hero-stat {
  padding: 0 24px;
  border-right: 1px solid rgba(242, 237, 228, 0.10);
}

.hero-stat:first-child {
  padding-left: 0;
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-num {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: var(--gold);
  display: block;
  margin-bottom: 3px;
}

.hero-stat-label {
  font-size: 10px;
  color: var(--cream-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
}

/* Image column */
.hero-img-col {
  position: relative;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.72) contrast(1.08) saturate(0.9);
}

/* Left-edge gradient: blends image into the walnut content column */
.hero-img-col::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--black) 0%,
    rgba(17, 24, 34, 0.55) 18%,
    rgba(17, 24, 34, 0.12) 42%,
    transparent 65%
  );
  z-index: 1;
}

/* Bottom-edge gradient: fades into walnut page */
.hero-img-col::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 32%;
  background: linear-gradient(to top, var(--black) 0%, transparent 100%);
  z-index: 1;
}

/* ============================================================
   SHARED SECTION ELEMENTS
   ============================================================ */

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.9;
  color: var(--cream);
  letter-spacing: 0.02em;
}

/* ============================================================
   MARQUEE
   ============================================================ */

.marquee-wrap {
  overflow: hidden;
  background: #1B6CB5;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cream);
  white-space: nowrap;
}

.marquee-dot {
  color: var(--gold) !important;
  font-size: 8px !important;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   CONCEPT — HOW IT WORKS
   ============================================================ */

.concept {
  background: var(--cream);
  padding: 100px 80px;
}

.concept .section-title {
  color: var(--black);
}

.concept-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(10, 10, 10, 0.10);
  margin-top: 60px;
}

.concept-step {
  background: var(--cream);
  padding: 52px 44px;
}

.concept-num {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 28px;
}

.concept-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  color: var(--black);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 16px;
}

.concept-desc {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(10, 10, 10, 0.6);
}

/* ============================================================
   SERVICES
   ============================================================ */

.services {
  background: var(--black);
  padding: 100px 80px;
}

.services-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 56px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(242, 237, 228, 0.06);
}

.service-item {
  background: var(--black);
  padding: 36px 48px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  transition: background 0.2s ease;
}

.service-item:hover {
  background: var(--black-mid);
}

.service-left {
  flex: 1;
}

.service-item-num {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}

.service-item-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--cream);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 10px;
}

.service-item-desc {
  font-size: 13px;
  color: var(--cream-dim);
  line-height: 1.65;
  max-width: 360px;
}

.service-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
  padding-top: 4px;
}

.service-price {
  font-family: 'Space Mono', monospace;
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}

.service-duration {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--cream-dim);
  letter-spacing: 0.1em;
}

.btn-book-sm {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--gold);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 18px;
  border: 1px solid rgba(200, 149, 42, 0.45);
  margin-top: 10px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-book-sm:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in, .fade-in-left, .fade-in-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   WORK / GALLERY
   ============================================================ */

.work {
  background: var(--black-mid);
  padding: 100px 80px;
}

.work-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.work-header {
  margin-bottom: 56px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.work-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.92) contrast(1.05) saturate(0.95);
  transition: filter 0.35s ease;
}

.work-photo:hover {
  filter: brightness(1.0) contrast(1.05) saturate(1);
}

.work-footer {
  text-align: center;
  margin-top: 48px;
}

/* ============================================================
   REVIEWS
   ============================================================ */

.reviews {
  background: var(--black);
  padding: 100px 80px;
}

.reviews-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.reviews-header {
  margin-bottom: 60px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(242, 237, 228, 0.06);
}

.review-card {
  background: var(--black);
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
}

.review-mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: var(--gold);
  line-height: 0.65;
  opacity: 0.5;
  margin-bottom: 20px;
}

.review-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 28px;
}

.review-meta {
  padding-top: 20px;
  border-top: 1px solid rgba(242, 237, 228, 0.08);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.review-name {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--cream);
  letter-spacing: 0.06em;
}

.review-service {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--cream-dim);
  letter-spacing: 0.06em;
}

.reviews-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(242, 237, 228, 0.06);
  flex-wrap: wrap;
  gap: 16px;
}

.reviews-summary {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--cream-dim);
  letter-spacing: 0.06em;
}

/* ============================================================
   SERVICE AREA
   ============================================================ */

.service-area {
  background: var(--cream);
  padding: 100px 80px;
}

.service-area .section-title {
  color: var(--black);
}

.service-area-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.service-area-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}

.service-area-text p {
  font-size: 15px;
  color: rgba(10, 10, 10, 0.65);
  line-height: 1.75;
  margin-bottom: 36px;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-tag {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: rgba(10, 10, 10, 0.65);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid rgba(10, 10, 10, 0.2);
}

.service-area-detail {
  display: flex;
  flex-direction: column;
}

.area-info-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.10);
}

.area-info-row:first-child {
  padding-top: 0;
}

.area-info-row:last-child {
  border-bottom: none;
}

.area-info-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.area-info-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  color: var(--black);
  line-height: 1.5;
}

.area-info-value a {
  color: var(--gold);
  transition: color 0.2s ease;
}

.area-info-value a:hover {
  color: var(--gold-light);
}

/* ============================================================
   CTA BLOCK
   ============================================================ */

.cta-block {
  background: var(--black);
  padding: 140px 80px;
  text-align: center;
  border-top: 1px solid rgba(242, 237, 228, 0.06);
}

.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-inner .section-label {
  justify-content: center;
}

.cta-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 9vw, 120px);
  line-height: 0.88;
  color: var(--cream);
  letter-spacing: 0.02em;
  margin: 16px 0 52px;
}

.cta-phone {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--cream-dim);
  letter-spacing: 0.1em;
  margin-top: 20px;
}

.cta-phone a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cta-phone a:hover {
  color: var(--gold-light);
}

/* ============================================================
   FOOTER
   ============================================================ */

footer {
  background: var(--black-mid);
  padding: 80px 80px 40px;
  border-top: 1px solid rgba(242, 237, 228, 0.06);
}

.footer-top {
  margin-bottom: 60px;
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--cream);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--cream-dim);
  line-height: 1.7;
}

.footer-mid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(242, 237, 228, 0.06);
  margin-bottom: 32px;
}

.footer-col-title {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.footer-col a {
  font-size: 13px;
  color: var(--cream-dim);
  line-height: 2;
  display: block;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--cream-dim);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: rgba(242, 237, 228, 0.35);
  letter-spacing: 0.08em;
}

/* ============================================================
   HOUSE CALL
   ============================================================ */

.house-call {
  background: var(--black-mid);
  padding: 100px 80px;
  border-top: 1px solid rgba(242, 237, 228, 0.06);
}

.house-call-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.house-call-left .section-title {
  margin-top: 16px;
  margin-bottom: 28px;
}

.house-call-desc {
  font-size: 15px;
  color: var(--cream-dim);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 40px;
}

.house-call-card {
  background: var(--black-light);
  border: 1px solid rgba(200, 149, 42, 0.25);
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.house-call-card-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.house-call-card-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 10vw, 128px);
  color: var(--gold);
  line-height: 0.85;
  letter-spacing: 0.02em;
}

.house-call-card-note {
  font-size: 13px;
  color: var(--cream-dim);
  line-height: 1.65;
  padding-top: 12px;
  border-top: 1px solid rgba(242, 237, 228, 0.08);
}

/* ============================================================
   SCHEDULE
   ============================================================ */

.schedule {
  background: var(--cream);
  padding: 100px 80px;
}

.schedule .section-title {
  color: var(--black);
  margin-bottom: 56px;
}

.schedule-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.schedule-rows {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(10, 10, 10, 0.10);
}

.schedule-row {
  background: var(--cream);
  display: grid;
  grid-template-columns: 200px 150px 1fr;
  align-items: center;
  gap: 32px;
  padding: 24px 32px;
  transition: background 0.2s ease;
}

.schedule-row:hover {
  background: #ece7de;
}

.schedule-days {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: rgba(10, 10, 10, 0.80);
  letter-spacing: 0.04em;
}

.schedule-tag {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  display: inline-block;
  white-space: nowrap;
}

.schedule-tag.closed {
  color: rgba(10, 10, 10, 0.35);
  border: 1px solid rgba(10, 10, 10, 0.18);
}

.schedule-tag.in-shop {
  color: var(--walnut);
  border: 1px solid var(--walnut-mid);
  background: rgba(62, 44, 26, 0.07);
}

.schedule-tag.mobile {
  color: #1B6CB5;
  border: 1px solid rgba(27, 108, 181, 0.38);
  background: rgba(27, 108, 181, 0.07);
}

.schedule-location {
  font-size: 14px;
  color: rgba(10, 10, 10, 0.60);
  line-height: 1.5;
}

.schedule-note {
  margin-top: 32px;
  font-size: 13px;
  color: rgba(10, 10, 10, 0.55);
  line-height: 1.65;
}

.schedule-note a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s ease;
}

.schedule-note a:hover {
  color: var(--gold-light);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  nav {
    padding: 0 24px;
  }
  .nav-links,
  .nav-book {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-bg-mobile {
    display: block;
  }

  .hero-img-col {
    display: none;
  }

  .hero-content {
    width: 100%;
    padding: 140px 24px 80px;
    position: relative;
    z-index: 1;
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-stats {
    flex-wrap: wrap;
    row-gap: 16px;
  }

  .hero-stat {
    padding: 0 16px;
  }

  .hero-stat:first-child {
    padding-left: 0;
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .concept {
    padding: 80px 40px;
  }
  .concept-step {
    padding: 40px 32px;
  }
  .services {
    padding: 80px 40px;
  }
  .service-item {
    padding: 32px 40px;
  }
}

@media (max-width: 768px) {
  .concept {
    padding: 64px 24px;
  }
  .concept-grid {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }
  .concept-step {
    padding: 36px 24px;
  }
  .concept-title {
    font-size: 32px;
  }

  .services {
    padding: 64px 24px;
  }
  .service-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 24px;
  }
  .service-right {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .service-price {
    font-size: 22px;
  }
}

@media (max-width: 900px) {
  .house-call { padding: 80px 40px; }
  .house-call-inner { gap: 56px; }
  .schedule { padding: 80px 40px; }
  .work { padding: 80px 40px; }
  .reviews { padding: 80px 40px; }
  .review-card { padding: 40px 36px; }
  .service-area { padding: 80px 40px; }
  .cta-block { padding: 100px 40px; }
  footer { padding: 64px 40px 32px; }
}

@media (max-width: 768px) {
  .work {
    padding: 64px 24px;
  }
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews {
    padding: 64px 24px;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .review-card {
    padding: 36px 24px;
  }
  .reviews-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .house-call {
    padding: 64px 24px;
  }
  .house-call-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .house-call-card {
    padding: 36px 28px;
  }

  .schedule {
    padding: 64px 24px;
  }
  .schedule-row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px 16px;
    padding: 20px 24px;
  }
  .schedule-location {
    grid-column: 1 / -1;
    font-size: 13px;
  }

  .service-area {
    padding: 64px 24px;
  }
  .service-area-body {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cta-block {
    padding: 80px 24px;
  }

  footer {
    padding: 64px 24px 32px;
  }
  .footer-mid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
