/* ============ TOKENS ============ */
:root {
  --ink: #1b2b25;
  --ink-soft: #2c3f37;
  --sand: #f3eee3;
  --sand-2: #eae2d2;
  --sage: #aebba0;
  --sage-dark: #748267;
  --stone: #8c8478;
  --amber: #b8863d;
  --amber-light: #d8ae6e;
  --line: rgba(27, 43, 37, 0.12);
  --shadow: 0 20px 60px -25px rgba(27, 43, 37, 0.35);
  --radius: 2px;
  --ff-display: "Fraunces", serif;
  --ff-body: "Work Sans", sans-serif;
  --ff-mono: "JetBrains Mono", monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html {
  overflow-x: hidden;
  width: 100%;
}
body {
  font-family: var(--ff-body);
  background: var(--sand);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}
body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
ul {
  list-style: none;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) {
  .wrap {
    padding: 0 20px;
  }
}

.eyebrow {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--amber);
  display: inline-block;
}

h1,
h2,
h3,
h4 {
  font-family: var(--ff-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.section-title {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 16px;
}
.section-sub {
  max-width: 520px;
  color: var(--stone);
  font-size: 16px;
}

section {
  position: relative;
}
.pad {
  padding: 120px 0;
}
@media (max-width: 900px) {
  .pad {
    padding: 80px 0;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.3s,
    color 0.3s,
    border-color 0.3s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: var(--sand);
}
.btn-primary:hover {
  background: var(--ink);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn-light {
  background: var(--sand);
  color: var(--ink);
}
.btn-light:hover {
  background: var(--amber);
  color: var(--sand);
  transform: translateY(-2px);
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

/* ============ RIPPLE SIGNATURE ============ */
.ripple-svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
}
@keyframes rippleGrow {
  0% {
    transform: scale(0.7);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
.ripple-mark {
  width: 14px;
  height: 14px;
  position: relative;
  flex: none;
}
.ripple-mark span {
  position: absolute;
  inset: 0;
  border: 1px solid var(--amber);
  border-radius: 50%;
}

/* ============ NAV ============ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 26px 0;
  transition:
    padding 0.4s ease,
    background 0.4s ease,
    box-shadow 0.4s ease;
}
header.scrolled {
  padding: 14px 0;
  background: rgba(243, 238, 227, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}
body.nav-open header.scrolled {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}
body.nav-open .burger {
  color: var(--sand);
}
header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--ff-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
header.scrolled .logo,
.nav-links a {
  color: var(--ink);
}
body:not(.scrolled-yet) header:not(.scrolled) .logo,
body:not(.scrolled-yet) header:not(.scrolled) .nav-links a {
  color: var(--sand);
}

.nav-links {
  display: flex;
  gap: 38px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  position: relative;
  padding: 4px 0;
  transition: opacity 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 0;
  background: var(--amber);
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 22px;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
}
.burger span {
  width: 24px;
  height: 1px;
  background: currentColor;
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: 50%;
    max-width: 340px;
    min-height: 100dvh;
    background: var(--ink);
    color: var(--sand);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 120;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links a {
    color: var(--sand) !important;
    font-size: 20px;
    font-family: var(--ff-display);
  }
  .burger {
    display: flex;
    position: relative;
    z-index: 130;
  }
  .nav-cta .btn-primary {
    display: none;
  }
  body:not(.scrolled-yet) header:not(.scrolled) .burger {
    color: var(--sand);
  }
}

/* ============ HERO ============ */
.hero {
  min-height: 100svh;
  background: radial-gradient(
    ellipse at 76% 18%,
    #24382f 0%,
    var(--ink) 55%,
    #101d18 100%
  );
  color: var(--sand);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.035) 1px,
    transparent 1px
  );
  background-size: 3px 3px;
  pointer-events: none;
}
.hero .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.95fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
}
.hero-copy {
  max-width: 650px;
}
.hero-title {
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--amber-light);
}
.hero-lede {
  max-width: 420px;
  color: rgba(243, 238, 227, 0.72);
  font-size: 17px;
  margin: 26px 0 38px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
  height: clamp(480px, 54vh, 560px);
  border: 1px solid rgba(243, 238, 227, 0.14);
  border-radius: 0 0 46px 0;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  isolation: isolate;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 18px auto auto 18px;
  width: 78px;
  height: 78px;
  border-top: 1px solid rgba(216, 174, 110, 0.75);
  border-left: 1px solid rgba(216, 174, 110, 0.75);
  z-index: 2;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
}
.hero-visual-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(27, 43, 37, 0.68), rgba(27, 43, 37, 0.08) 48%),
    linear-gradient(0deg, rgba(10, 20, 16, 0.72), transparent 46%);
  pointer-events: none;
}
.hero-meta {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(243, 238, 227, 0.18);
  background: rgba(14, 27, 22, 0.58);
  backdrop-filter: blur(12px);
  font-family: var(--ff-mono);
  font-size: 13px;
  color: rgba(243, 238, 227, 0.6);
}
.hero-meta div {
  padding: 14px 16px;
}
.hero-meta strong {
  display: block;
  color: var(--sand);
  font-family: var(--ff-body);
  font-size: 15px;
  margin-bottom: 2px;
}
.hero-meta span {
  display: block;
  color: rgba(243, 238, 227, 0.68);
  font-family: var(--ff-body);
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: 0;
}
.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 32px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(243, 238, 227, 0.55);
}
.scroll-cue .line {
  width: 1px;
  height: 34px;
  background: rgba(243, 238, 227, 0.4);
  position: relative;
  overflow: hidden;
}
.scroll-cue .line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--amber);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% {
    top: -100%;
  }
  50% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 118px 0 70px;
  }
  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-title {
    font-size: clamp(43px, 13vw, 58px);
  }
  .hero-lede {
    max-width: 100%;
    margin: 22px 0 28px;
  }
  .hero-visual {
    height: 230px;
    border-radius: 0 0 30px 0;
  }
  .hero-visual::before {
    width: 56px;
    height: 56px;
  }
  .hero-visual img {
    object-position: 58% center;
  }
  .hero-visual-shade {
    background:
      linear-gradient(90deg, rgba(27, 43, 37, 0.36), rgba(27, 43, 37, 0.05) 58%),
      linear-gradient(0deg, rgba(10, 20, 16, 0.82), transparent 54%);
  }
  .hero-meta {
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 11px;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }
  .hero-meta div {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
  }
  .hero-meta div:not(:last-child)::after {
    content: "";
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--amber-light);
    opacity: 0.85;
  }
  .hero-meta strong {
    display: inline;
    font-size: 12px;
    margin: 0;
  }
  .hero-meta span {
    display: none;
  }
  .scroll-cue {
    display: none;
  }
}

/* ============ QUOTE STRIP ============ */
.quote-strip {
  background: var(--sage);
  color: var(--ink);
  padding: 70px 0;
  text-align: center;
}
.quote-strip q {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(22px, 3.4vw, 36px);
  quotes: none;
  display: block;
}
.quote-strip cite {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.65;
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============ SERVICES ============ */
.services-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--sand);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.4s ease;
}
.service-card:hover {
  background: var(--sand-2);
}
.service-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.service-name {
  font-size: 21px;
}
.service-icon {
  width: 34px;
  height: 34px;
  color: var(--amber);
  flex: none;
}
.service-desc {
  color: var(--stone);
  font-size: 14.5px;
  flex-grow: 1;
}
.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--ff-mono);
  font-size: 13px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.service-price {
  color: var(--amber);
  font-weight: 600;
}
.service-pick {
  font-family: var(--ff-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding-top: 4px;
  border-bottom: 1px solid var(--ink);
}
.service-pick:hover {
  color: var(--amber);
  border-color: var(--amber);
}

@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ PHOTO GALLERY (services in pictures) ============ */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.photo-card {
  background: var(--sand-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.4s ease;
}
.photo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.photo-card figure {
  margin: 0;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--sage);
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.photo-card:hover img {
  transform: scale(1.06);
}
.photo-card-body {
  padding: 24px 24px 26px;
}
.photo-card-body h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.photo-card-body p {
  color: var(--stone);
  font-size: 14px;
  margin-bottom: 18px;
}
.photo-badge {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 20px;
  background: var(--sand);
  border: 1px solid var(--line);
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .photo-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ PRICING ============ */
.pricing-wrap {
  background: var(--ink);
  color: var(--sand);
}
.price-table {
  border-top: 1px solid rgba(243, 238, 227, 0.18);
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(243, 238, 227, 0.14);
}
.price-row .pname {
  font-family: var(--ff-display);
  font-size: 19px;
}
.price-row .pdur {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: rgba(243, 238, 227, 0.5);
  margin-left: 14px;
}
.price-row .pval {
  font-family: var(--ff-mono);
  font-size: 17px;
  color: var(--amber-light);
  white-space: nowrap;
}
.price-note {
  margin-top: 28px;
  color: rgba(243, 238, 227, 0.55);
  font-size: 13.5px;
  font-family: var(--ff-mono);
}

/* ============ BOOKING ============ */
.booking-wrap {
  background: var(--sand-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px;
}
.booking-wrap.success-pulse {
  animation: bookingSuccessPulse 1s ease;
}
@media (max-width: 640px) {
  .booking-wrap {
    padding: 26px;
  }
}
@keyframes bookingSuccessPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(184, 134, 61, 0);
    transform: translateY(0);
  }
  35% {
    box-shadow: 0 0 0 8px rgba(184, 134, 61, 0.16);
    transform: translateY(-2px);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(184, 134, 61, 0);
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .booking-wrap.success-pulse {
    animation: none;
    outline: 2px solid rgba(184, 134, 61, 0.42);
    outline-offset: 4px;
  }
}
.booking-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
}
.booking-grid > div {
  min-width: 0;
}
@media (max-width: 960px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }
}

.b-label {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 14px;
  display: block;
}
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}
.chip {
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  font-size: 13.5px;
  background: var(--sand);
  transition: all 0.25s ease;
}
.chip small {
  display: block;
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--stone);
  margin-top: 2px;
}
.chip.active {
  background: var(--ink);
  color: var(--sand);
  border-color: var(--ink);
}
.chip.active small {
  color: var(--amber-light);
}
.chip:hover:not(.active) {
  border-color: var(--amber);
}

.date-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  margin-bottom: 34px;
}
.date-chip {
  flex: none;
  width: 64px;
  text-align: center;
  padding: 12px 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sand);
  font-family: var(--ff-mono);
}
.date-chip .dow {
  display: block;
  font-size: 11px;
  color: var(--stone);
  text-transform: uppercase;
}
.date-chip .dnum {
  display: block;
  font-size: 18px;
  font-family: var(--ff-body);
  font-weight: 600;
  margin-top: 4px;
}
.date-chip.active {
  background: var(--ink);
  color: var(--sand);
  border-color: var(--ink);
}
.date-chip.active .dow {
  color: var(--amber-light);
}
.date-chip:hover:not(.active) {
  border-color: var(--amber);
}

.slot-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -6px 0 14px;
  color: var(--stone);
  font-family: var(--ff-mono);
  font-size: 11px;
}
.slot-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.slot-legend i {
  width: 10px;
  height: 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.legend-free {
  background: var(--sand);
}
.legend-selected {
  background: var(--amber);
  border-color: var(--amber) !important;
}
.legend-taken {
  background: transparent;
  opacity: 0.45;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 8px;
}
@media (max-width: 480px) {
  .slot-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.slot {
  padding: 12px 4px;
  text-align: center;
  font-family: var(--ff-mono);
  font-size: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sand);
  transition: all 0.2s ease;
}
.slot.taken {
  color: var(--stone);
  text-decoration: line-through;
  opacity: 0.45;
  cursor: not-allowed;
  background: transparent;
}
.slot.active {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--sand);
}
.slot:not(.taken):not(.active):hover {
  border-color: var(--amber);
  color: var(--amber);
}
.slot-message {
  grid-column: 1 / -1;
  padding: 14px;
  color: var(--stone);
  font-family: var(--ff-mono);
  font-size: 12.5px;
  text-align: center;
}

.slot-loading-text {
  color: rgba(77, 68, 58, 0.72);
  letter-spacing: 0.02em;
}

.slot-skeleton {
  min-height: 43px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.64), transparent),
    rgba(184, 134, 61, 0.12);
  background-size: 220% 100%, 100% 100%;
  animation: slotSkeletonShimmer 1.25s ease-in-out infinite;
}

@keyframes slotSkeletonShimmer {
  from { background-position: 120% 0, 0 0; }
  to { background-position: -120% 0, 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  .slot-skeleton {
    animation: none;
  }
}

.b-summary {
  background: var(--ink);
  color: var(--sand);
  border-radius: var(--radius);
  padding: 32px;
  position: sticky;
  top: 110px;
}
.b-summary h4 {
  font-size: 20px;
  margin-bottom: 22px;
}
.sum-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(243, 238, 227, 0.14);
}
.sum-row span:first-child {
  color: rgba(243, 238, 227, 0.55);
}
.b-form {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.b-form input {
  width: 100%;
  padding: 13px 14px;
  background: rgba(243, 238, 227, 0.06);
  border: 1px solid rgba(243, 238, 227, 0.22);
  border-radius: var(--radius);
  color: var(--sand);
  font-family: var(--ff-body);
  font-size: 14px;
}
.b-form input::placeholder {
  color: rgba(243, 238, 227, 0.4);
}
.b-form input:focus-visible {
  outline-color: var(--amber-light);
}
.b-form textarea {
  width: 100%;
  min-height: 92px;
  resize: vertical;
  padding: 14px 16px;
  background: rgba(243, 238, 227, 0.06);
  border: 1px solid rgba(243, 238, 227, 0.22);
  border-radius: var(--radius);
  color: var(--sand);
  font-family: var(--ff-body);
  font-size: 14px;
  outline: none;
}
.b-form textarea::placeholder {
  color: rgba(243, 238, 227, 0.4);
}
.b-form textarea:focus-visible {
  outline-color: var(--amber-light);
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.b-submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}
.b-submit:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.b-error {
  font-size: 12.5px;
  color: #e7a98c;
  font-family: var(--ff-mono);
  min-height: 16px;
}

/* confirmation */
.confirm-panel {
  display: none;
  color: var(--ink);
  text-align: center;
  padding: 10px 0 6px;
}
.confirm-panel.show {
  display: block;
}
.confirm-panel .check {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--amber-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--amber-light);
}
.notif-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
  text-align: left;
}
.notif-card {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.notif-card .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber-light);
  margin-top: 6px;
  flex: none;
}
.notif-card b {
  display: block;
  color: var(--ink);
  font-size: 13px;
}
.notif-card span {
  font-size: 12.5px;
  color: var(--stone);
}
.confirm-panel .btn-ghost {
  color: var(--ink);
  border-color: var(--line);
}

/* ============ REVIEWS ============ */
.reviews-wrap {
  overflow: hidden;
  position: relative;
  padding: 4px 0;
}
.reviews-wrap::before,
.reviews-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 70px;
  pointer-events: none;
}
.reviews-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--sand-2), rgba(234, 226, 210, 0));
}
.reviews-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--sand-2), rgba(234, 226, 210, 0));
}
.reviews-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: reviewsMarquee 34s linear infinite;
  will-change: transform;
}
.reviews-wrap:hover .reviews-track,
.reviews-wrap:focus-within .reviews-track {
  animation-play-state: paused;
}
.review-card {
  flex: none;
  width: 340px;
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.stars {
  color: var(--amber);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-text {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 20px;
  min-height: 76px;
}
.review-who {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-mono);
  font-size: 12.5px;
  color: var(--stone);
}
.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(27, 43, 37, 0.12);
  flex: none;
}
@keyframes reviewsMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 11px));
  }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-track {
    width: auto;
    overflow-x: auto;
    animation: none;
    scroll-snap-type: x mandatory;
    padding-bottom: 16px;
  }
  .review-card {
    scroll-snap-align: start;
  }
}
@media (max-width: 600px) {
  .reviews-wrap::before,
  .reviews-wrap::after {
    width: 36px;
  }
  .reviews-track {
    animation-duration: 42s;
  }
  .review-card {
    width: min(310px, 82vw);
  }
}
.google-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  font-family: var(--ff-mono);
  font-size: 13px;
  color: var(--stone);
}
.google-badge b {
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 22px;
  font-weight: 700;
}

/* ============ FAQ ============ */
.faq-section {
  background: var(--sand);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.faq-item {
  background: var(--sand-2);
  padding: 30px;
}
.faq-item h3 {
  margin-bottom: 12px;
  font-size: 22px;
}
.faq-item p {
  color: var(--stone);
  font-size: 15px;
}
@media (max-width: 760px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ CONTACT ============ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 900px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }
}
.contact-info {
  background: var(--sand);
  padding: 52px;
}
.info-block {
  margin-bottom: 30px;
}
.info-block .b-label {
  margin-bottom: 8px;
}
.info-block p {
  font-size: 15.5px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--ff-mono);
  font-size: 13.5px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.map-frame {
  background: var(--sand);
  min-height: 340px;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  filter: grayscale(0.3) contrast(1.05);
}

/* ============ FOOTER ============ */
footer {
  background: var(--ink);
  color: rgba(243, 238, 227, 0.6);
  padding: 50px 0;
  font-size: 13px;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
footer .logo {
  color: var(--sand);
}
.foot-links {
  display: flex;
  gap: 24px;
}
.foot-links a:hover {
  color: var(--sand);
}

.mobile-summary {
  display: none;
}

@media (max-width: 760px) {
  body.has-mobile-summary {
    padding-bottom: 92px;
  }

  .mobile-summary {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 90;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(243, 238, 227, 0.16);
    border-radius: 8px;
    background: rgba(27, 43, 37, 0.96);
    color: var(--sand);
    box-shadow: 0 18px 44px rgba(27, 43, 37, 0.26);
  }

  body.has-mobile-summary .mobile-summary {
    display: flex;
  }

  .mobile-summary[hidden] {
    display: none;
  }

  .mobile-summary span,
  .mobile-summary strong {
    display: block;
  }

  .mobile-summary span {
    color: var(--amber-light);
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-summary strong {
    max-width: 230px;
    overflow: hidden;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-summary a {
    flex: none;
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid rgba(243, 238, 227, 0.22);
    border-radius: 6px;
    color: var(--sand);
    display: inline-flex;
    align-items: center;
    font-family: var(--ff-mono);
    font-size: 11px;
    text-transform: uppercase;
  }
}
