﻿/* ================================================
   The Barber Code | Mobile-First Stylesheet
   Elevated Dark + Geometric Sans
   ================================================ */

:root {
  --bg:            #090806;
  --bg-alt:        #0E0C0A;
  --bg-surface:    #161310;
  --bg-surface2:   #1E1B17;
  --accent:        #B8966A;
  --accent-light:  #D0AC82;
  --accent-dim:    rgba(184, 150, 106, 0.12);
  --accent-glow:   rgba(184, 150, 106, 0.20);
  --stone:         #C4AE94;
  --text:          #EDE7DD;
  --text-muted:    #9A9188;
  --border:        #1E1B17;
  --border-accent: rgba(184, 150, 106, 0.25);
  --error:         #d97070;

  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body:    'Space Grotesk', system-ui, sans-serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;

  --radius-sm: 2px;
  --radius:    4px;
  --radius-lg: 8px;

  --nav-h:      60px;
  --container:  1200px;
  --pad:        20px;
  --section-gap: 96px;

  --ease:     cubic-bezier(0.25, 0, 0.25, 1);
  --ease-out: cubic-bezier(0, 0, 0.3, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  animation: grainShift 0.5s steps(1) infinite;
}
@keyframes grainShift {
  0%   { background-position: 0 0; }
  20%  { background-position: -40px -60px; }
  40%  { background-position: 30px 20px; }
  60%  { background-position: -20px 40px; }
  80%  { background-position: 50px -30px; }
  100% { background-position: -10px 10px; }
}
@media (prefers-reduced-motion: reduce) {
  body::before { animation: none; }
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1, h2, h3 { line-height: 1.1; }

/* UTILITIES */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
section[id] { scroll-margin-top: var(--nav-h); }

/* SECTION CHROME */
.section { padding: var(--section-gap) 0; }
.section-alt { background: var(--bg-alt); }

.section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.01em;
  color: var(--text);
  line-height: 1.05;
}
.section-title.left { text-align: left; }

.section-subtitle {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 0.92rem;
  max-width: 460px;
  margin-inline: auto;
  font-weight: 300;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background 0.22s var(--ease), color 0.22s, border-color 0.22s,
              transform 0.2s var(--ease), box-shadow 0.22s;
  min-height: 52px;
  white-space: nowrap;
}
.btn-primary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(240, 235, 226, 0.28);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent);
  color: #0c0c0b;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--accent-glow);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  border: 1px solid var(--border-accent);
  color: var(--accent);
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--accent-dim);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }

/* SCROLL ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-in.visible { opacity: 1; transform: none; }

/* HERO CLIP-PATH REVEAL */
.reveal-clip {
  clip-path: inset(0 0 100% 0);
  animation: clipReveal 0.9s var(--ease-out) var(--reveal-delay, 0s) forwards;
}
@keyframes clipReveal {
  from { clip-path: inset(0 0 100% 0); }
  to   { clip-path: inset(0 0 0% 0); }
}
@media (prefers-reduced-motion: reduce) {
  .reveal-clip {
    clip-path: none;
    animation: none;
  }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  isolation: isolate;
  border-top: 1px solid rgba(184, 150, 106, 0.15);
  border-bottom: 1px solid var(--border);
}
.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(9, 8, 6, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.4s;
}
.navbar--scrolled {
  border-top-color: rgba(184, 150, 106, 0.28);
  border-bottom-color: rgba(184, 150, 106, 0.18);
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.5);
  transition: border-top-color 0.4s, border-bottom-color 0.4s, box-shadow 0.4s;
}
.navbar--scrolled::before {
  background: rgba(9, 8, 6, 0.99);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-logo {
  height: 44px;
  width: auto;
  flex-shrink: 0;
}
.nav-brand:hover { opacity: 0.72; }
.nav-brand-the {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 0.82rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--accent);
}
.nav-brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-indent: 0.08em;
  color: var(--text);
}

.hamburger {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  z-index: 1010;
}
.hamburger::before {
  content: '';
  position: absolute;
  inset: -14px -12px;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.32s var(--ease), opacity 0.25s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(8.25px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8.25px) rotate(-45deg); }

@media (max-width: 1023px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 9, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 32px var(--pad) 40px;
    overflow-y: auto;
    z-index: 1005;
    padding-bottom: max(40px, env(safe-area-inset-bottom));
  }
  .nav-menu.open { display: flex; }
  .nav-menu li { border-bottom: 1px solid var(--border); }
  .nav-link {
    display: block;
    font-family: var(--font-display);
    font-size: 2.4rem;
    letter-spacing: 0.05em;
    color: var(--text);
    padding: 18px 0;
    transition: color 0.2s, padding-left 0.2s;
  }
  .nav-link:hover,
  .nav-link:focus-visible { color: var(--accent); padding-left: 8px; }
  .nav-link--cta { color: var(--accent); }
}

@media (min-width: 1024px) {
  .hamburger { display: none; }
  .nav-menu { display: flex; gap: 36px; align-items: center; }
  .nav-link {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 6px 0;
    position: relative;
    transition: color 0.2s;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.25s var(--ease);
  }
  .nav-link:hover,
  .nav-link.active { color: var(--text); }
  .nav-link:hover::after,
  .nav-link.active::after { width: 100%; }
  .nav-link--cta {
    color: var(--accent);
    border: 1px solid var(--border-accent);
    padding: 6px 16px;
    border-radius: var(--radius-sm);
  }
  .nav-link--cta::after { display: none; }
  .nav-link--cta:hover { background: var(--accent-dim); color: var(--accent); }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px var(--pad) 80px;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}
.hero::before {
  width: 600px;
  height: 400px;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center,
    rgba(184, 150, 106, 0.12) 0%,
    transparent 70%
  );
}
.hero::after {
  width: 400px;
  height: 300px;
  bottom: 60px;
  right: -80px;
  background: radial-gradient(ellipse at center,
    rgba(184, 150, 106, 0.06) 0%,
    transparent 70%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.hero-title {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.18em;
  color: var(--text);
  line-height: 1;
  flex-wrap: nowrap;
}
.hero-title-the {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: clamp(1rem, 2.6vw, 2rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--accent);
  flex-shrink: 0;
  padding-bottom: 0.12em;
}
.hero-title-main {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 11vw, 8rem);
  letter-spacing: 0.06em;
  text-indent: 0.06em;
  line-height: 0.9;
  white-space: nowrap;
  background: linear-gradient(
    105deg,
    var(--text) 0%,
    var(--text) 38%,
    rgba(240, 235, 226, 0.95) 44%,
    #fff 48%,
    rgba(240, 235, 226, 0.95) 52%,
    var(--text) 58%,
    var(--text) 100%
  );
  background-size: 300% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shimmerOnce 1.2s ease-out 1.05s 1 forwards;
}
@keyframes shimmerOnce {
  from { background-position: 100% 0; }
  to   { background-position: 0% 0; }
}
@supports not (-webkit-background-clip: text) {
  .hero-title-main {
    background: none;
    -webkit-text-fill-color: initial;
    color: var(--text);
    animation: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-title-main {
    animation: none;
    background-position: 0% 0;
  }
}
.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 2.2vw, 0.92rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding-top: 22px;
}
.hero-tagline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.hero-content .btn { margin-top: 6px; }
.footer-logo {
  height: 52px;
  width: auto;
  transition: opacity 0.2s;
}
.footer-brand:hover .footer-logo { opacity: 0.85; }
.hero-logo {
  display: block;
  width: 200px;
  height: auto;
  margin: 40px auto 0;
  filter: drop-shadow(0 4px 24px rgba(184, 150, 106, 0.35));
}

.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--border-accent);
  margin: 4px auto;
  opacity: 0;
  animation: fadeInDivider 0.6s ease-out 1.4s forwards;
}
@keyframes fadeInDivider {
  to { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-divider { animation: none; opacity: 1; }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-line {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, var(--border-accent));
  animation: scrollGrow 2.4s ease-in-out infinite;
}
@keyframes scrollGrow {
  0%   { transform: scaleY(0); transform-origin: top;    opacity: 0; }
  30%  { opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top;    opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ============================================
   SERVICES — numbered editorial list
   ============================================ */
.services-list { display: flex; flex-direction: column; }

.services-group-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
  padding: 36px 0 0;
}
.services-group-label:first-child { padding-top: 0; }

.service-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0 20px;
  padding: 28px 0;
  padding-left: 0;
  border-bottom: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-bottom-color 0.3s var(--ease),
              background-color 0.35s var(--ease),
              padding-left 0.35s var(--ease);
}
.services-group-label + .service-item { border-top: 1px solid var(--border); }
.service-item:hover {
  border-bottom-color: var(--border-accent);
  background-color: rgba(184, 150, 106, 0.04);
  padding-left: 12px;
}

.service-num {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.06em;
  padding-top: 3px;
  grid-row: 1;
  grid-column: 1;
  transition: color 0.3s, transform 0.3s var(--ease);
}
.service-item:hover .service-num {
  color: var(--accent-light);
  transform: translateX(2px);
}
.service-body {
  grid-row: 1;
  grid-column: 2;
}
.service-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0;
  transition: color 0.25s;
}
.service-item:hover .service-body h3 { color: var(--accent-light); }
.service-item:hover .badge {
  background: rgba(184, 150, 106, 0.2);
  border-color: rgba(184, 150, 106, 0.5);
}
.service-body p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 5px;
  line-height: 1.6;
  font-weight: 300;
}
.service-price {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}
.price {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--text);
  letter-spacing: 0.02em;
}
.price small {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-left: 2px;
}
.badge {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid var(--border-accent);
  padding: 3px 9px;
  border-radius: 20px;
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
.about-image { position: relative; }
.about-image::before {
  content: '';
  position: absolute;
  inset: 10px -10px -10px 10px;
  border: 1px solid var(--border-accent);
  z-index: -1;
  pointer-events: none;
}
.about-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 0;
}
.about-content { padding-top: 20px; }
.about-content .section-title { margin-bottom: 22px; }
.about-content p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 14px;
  font-size: 0.92rem;
  font-weight: 300;
}
.about-content strong { color: var(--text); font-weight: 600; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 7px;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  aspect-ratio: 1 / 1;
  background: var(--bg-surface);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.35s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ============================================
   BOOKING
   ============================================ */
.booking-wrapper { max-width: 600px; margin: 0 auto; }
.booking-form {
  background: var(--bg-surface);
  border: none;
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 20px; }

label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
label span { color: var(--accent); }

input, select {
  background: var(--bg-surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0 16px;
  width: 100%;
  height: 52px;
  transition: border-color 0.22s, box-shadow 0.22s;
  -webkit-appearance: none;
  appearance: none;
}
input:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-dim);
}
input::placeholder { color: var(--text-muted); opacity: 0.5; }
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.5) sepia(1) saturate(2) hue-rotate(5deg);
  cursor: pointer;
}
input.error, select.error { border-color: var(--error); }

.select-wrapper { position: relative; }
.select-wrapper::after {
  content: '';
  pointer-events: none;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--accent);
}
.select-wrapper select { padding-right: 40px; cursor: pointer; }
select option { background: var(--bg-surface2); color: var(--text); }
select:disabled { opacity: 0.4; cursor: not-allowed; }
.field-error { display: none; font-size: 0.73rem; color: var(--error); line-height: 1.4; }
.field-error.show { display: block; }
.date-hint { font-size: 0.72rem; color: var(--text-muted); line-height: 1.4; }

.booking-confirmation {
  background: var(--bg-surface);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 36px 20px;
  text-align: center;
}
.confirmation-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #0c0c0b;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.booking-confirmation h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 8px;
}
.confirmation-sub { color: var(--text-muted); margin-bottom: 22px; font-size: 0.9rem; font-weight: 300; }
.confirmation-sub strong { color: var(--accent); font-weight: 600; }
.confirmation-details {
  background: var(--bg-surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  text-align: left;
  margin-bottom: 24px;
}
.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.87rem;
}
.detail-row:last-child { border-bottom: none; }
.detail-label {
  color: var(--text-muted);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.detail-value { color: var(--text); font-weight: 500; text-align: right; word-break: break-word; }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 18px; }
.contact-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 5px;
}
.contact-item p { color: var(--text-muted); font-size: 0.92rem; font-weight: 300; }
.contact-item a { color: var(--text-muted); transition: color 0.2s; }
.contact-item a:hover { color: var(--accent); }

.hours-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.hours-table { width: 100%; border-collapse: collapse; margin-bottom: 28px; }
.hours-table td { padding: 13px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:last-child { text-align: right; color: var(--accent); font-weight: 500; }
.hours-table tr.closed td:last-child { color: var(--text-muted); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 44px 0;
  padding-bottom: max(44px, env(safe-area-inset-bottom));
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  padding-left: 0.08em;
  color: var(--accent);
  transition: opacity 0.2s;
}
.footer-brand:hover { opacity: 0.72; }
.footer-copy {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}
.footer-social { display: flex; gap: 12px; }
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  transition: border-color 0.24s, color 0.24s, transform 0.24s;
}
.social-link:hover {
  border-color: var(--border-accent);
  color: var(--accent);
  transform: translateY(-3px);
}

/* ============================================
   BREAKPOINTS
   ============================================ */
@media (min-width: 640px) {
  :root { --pad: 28px; }

  .service-item {
    grid-template-columns: 40px 1fr auto;
    align-items: center;
  }
  .service-price {
    grid-column: 3;
    grid-row: 1;
    margin-top: 0;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
  }

  .form-row { grid-template-columns: 1fr 1fr; }
  .booking-form { padding: 36px 32px; }
  .booking-confirmation { padding: 44px 36px; }
}

@media (min-width: 1024px) {
  :root { --pad: 44px; --section-gap: 112px; }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .about-image img { max-height: none; height: 540px; }
  .about-image::before { inset: 14px -14px -14px 14px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* Accessibility */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
/* ---- Cancel / modify booking ---- */
.cancel-section {
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.cancel-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  padding: 28px 24px 24px;
}
.cancel-title {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.cancel-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.cancel-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
@media (max-width: 480px) {
  .cancel-fields { grid-template-columns: 1fr; }
}
.conf-id-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 12px 0 0;
  line-height: 1.6;
}
.conf-id-note strong { color: var(--accent); }
.cancel-msg {
  margin-top: 14px;
  font-size: 0.84rem;
  line-height: 1.6;
}
.cancel-msg.error   { color: var(--error); }
.cancel-msg.success { color: #6dbb7a; }

.cancel-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 0; }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.btn-ghost:hover { border-color: var(--border-accent); color: var(--text); }

.modify-divider { border-top: 1px solid var(--border); margin: 24px 0 20px; }

.modify-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.modify-panel .cancel-actions { margin-top: 4px; }

/* ---- Contact icons (SVG) ---- */
.contact-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
  display: block;
}

/* ---- Contact CTA ---- */
.contact-cta {
  text-align: center;
  margin-top: 48px;
}