/* ============================================
   DUNBAR DETAIL CO.
   Dark monochrome brand — inspired by brand poster
   ============================================ */

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

:root {
  /* ---- Monochrome palette ---- */
  --bg:            #0A0A0A;
  --bg-warm:       #0E0E0E;
  --surface:       #141414;
  --surface-2:     #1A1A1A;
  --surface-hover: #1F1F1F;

  --white:         #F0EFEB;
  --white-pure:    #FFFFFF;
  --gray-1:        #CCCCCC;
  --gray-2:        #999999;
  --gray-3:        #666666;
  --gray-4:        #444444;
  --gray-5:        #2A2A2A;

  --border:        rgba(255,255,255,.07);
  --border-light:  rgba(255,255,255,.04);
  --border-med:    rgba(255,255,255,.12);

  --glow:          rgba(255,255,255,.03);

  /* ---- Fonts ---- */
  --serif:  'Instrument Serif', Georgia, serif;
  --sans:   'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* ---- Layout ---- */
  --nav-h:   68px;
  --max-w:   1100px;
  --radius:  3px;
  --radius-lg: 6px;

  /* ---- Shadows ---- */
  --shadow:    0 4px 24px rgba(0,0,0,.4);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.3);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-1);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtle grain texture matching poster feel */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: var(--sans);
  font-size: 1rem;
  border: none;
  background: none;
  color: inherit;
  outline: none;
}
button { cursor: pointer; }
::selection { background: var(--white); color: var(--bg); }

/* ---- Layout ---- */
.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--white);
  font-weight: 400;
  line-height: 1.15;
}

/* Poster-style label: wide-spaced uppercase */
.tag {
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gray-2);
}

/* Thin horizontal rule — poster motif */
.rule {
  width: 40px;
  height: 1px;
  background: var(--gray-4);
  border: none;
  margin: 1rem 0 1.4rem;
}
.rule-wide {
  width: 100%;
  height: 1px;
  background: var(--border);
  border: none;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .88rem;
  letter-spacing: .03em;
  border-radius: var(--radius);
  transition: all .3s ease;
}
.btn-white {
  background: var(--white);
  color: var(--bg);
  padding: .72rem 1.6rem;
}
.btn-white:hover {
  background: var(--white-pure);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255,255,255,.08);
}
.btn-ghost {
  border: 1px solid var(--border-med);
  color: var(--gray-1);
  padding: .68rem 1.4rem;
}
.btn-ghost:hover {
  border-color: var(--gray-3);
  color: var(--white);
}

/* ---- Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.vis { opacity: 1; transform: none; }
.reveal-l {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-l.vis { opacity: 1; transform: none; }
.reveal-r {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-r.vis { opacity: 1; transform: none; }


/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(10,10,10,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
.nav.scrolled { border-bottom-color: var(--border); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: .65rem;
}
.nav-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.nav-brand-text {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.3;
}
.nav-brand-text span {
  display: block;
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .18em;
  color: var(--gray-3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.nav-links a {
  font-size: .8rem;
  font-weight: 500;
  color: var(--gray-3);
  letter-spacing: .04em;
  transition: color .25s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--white);
  color: var(--bg) !important;
  padding: .45rem 1.1rem;
  border-radius: var(--radius);
  font-size: .78rem !important;
  font-weight: 600 !important;
  letter-spacing: .06em !important;
  transition: background .25s, transform .2s !important;
}
.nav-cta:hover {
  background: var(--white-pure) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 22px;
  z-index: 101;
}
.hamburger span {
  height: 1.5px;
  width: 100%;
  background: var(--white);
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }


/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding-top: var(--nav-h);
  min-height: min(85vh, 720px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: .3;
  filter: brightness(.7) saturate(.6);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10,10,10,.6) 0%,
      rgba(10,10,10,.4) 40%,
      rgba(10,10,10,.85) 80%,
      rgba(10,10,10,1) 100%
    );
}

.hero-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  padding: 3rem 2rem 4rem;
}

.hero-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 2rem;
  opacity: .95;
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(.92); }
  to   { opacity: .95; transform: scale(1); }
}

.hero-body .tag {
  margin-bottom: .7rem;
  animation: slideUp .7s ease .3s forwards;
  opacity: 0;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-body h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  letter-spacing: -.02em;
  margin-bottom: 1rem;
  max-width: 600px;
  animation: slideUp .7s ease .45s forwards;
  opacity: 0;
}

.hero-body > p {
  font-size: 1rem;
  color: var(--gray-2);
  max-width: 440px;
  line-height: 1.75;
  margin-bottom: 2rem;
  animation: slideUp .7s ease .6s forwards;
  opacity: 0;
}

.hero-actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: slideUp .7s ease .75s forwards;
  opacity: 0;
}


/* ============================================
   TRUST STRIP
   ============================================ */
.trust {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 1.4rem 0;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1rem;
  text-align: center;
}
.trust-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
}
.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border);
}
.trust-val {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--white);
}
.trust-sub {
  font-size: .7rem;
  color: var(--gray-3);
  letter-spacing: .03em;
}


/* ============================================
   SERVICES
   ============================================ */
.svc-section {
  padding: 5rem 0 4.5rem;
  background: var(--bg);
}
.svc-header {
  margin-bottom: 3rem;
}
.svc-header h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  letter-spacing: -.015em;
}
.svc-header p {
  font-size: .95rem;
  color: var(--gray-2);
  max-width: 460px;
  margin-top: .5rem;
  line-height: 1.75;
}

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.svc-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .3s, box-shadow .4s;
}
.svc-card:hover {
  border-color: var(--border-med);
  box-shadow: 0 8px 40px rgba(0,0,0,.3);
}

.svc-img {
  min-height: 300px;
}
.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svc-card:nth-child(2) .svc-body { order: -1; }

.svc-body .tag { margin-bottom: .5rem; }
.svc-body h3 {
  font-size: 1.55rem;
  margin-bottom: .5rem;
}
.svc-body > p {
  font-size: .92rem;
  color: var(--gray-2);
  line-height: 1.75;
  margin-bottom: 1.3rem;
}

.svc-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .4rem .7rem;
}
.svc-features li {
  display: flex;
  align-items: baseline;
  gap: .4rem;
  font-size: .85rem;
  color: var(--gray-2);
}
.svc-features li::before {
  content: '—';
  color: var(--gray-4);
  flex-shrink: 0;
  font-size: .75rem;
}

.svc-price-badge {
  margin-top: 1.2rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: .02em;
}


/* ============================================
   PRICING
   ============================================ */
.price-section {
  padding: 5rem 0 4.5rem;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.price-header {
  text-align: center;
  margin-bottom: 3rem;
}
.price-header h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  letter-spacing: -.015em;
}
.price-header .rule { margin: 1rem auto 1.2rem; }
.price-header p {
  font-size: .95rem;
  color: var(--gray-2);
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Table approach — matching poster structure */
.price-table-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.price-table {
  width: 100%;
  border: 1px solid var(--border-med);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}

.price-table-head {
  display: grid;
  grid-template-columns: 1fr 120px 120px;
  border-bottom: 1px solid var(--border);
  padding: .8rem 1.5rem;
}
.price-table-head span {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-3);
  text-align: center;
}
.price-table-head span:first-child { text-align: left; }

.price-row {
  display: grid;
  grid-template-columns: 1fr 120px 120px;
  padding: 1.3rem 1.5rem;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  transition: background .2s;
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--surface-2); }

.price-row-info h4 {
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 600;
  color: var(--white);
}
.price-row-info p {
  font-size: .78rem;
  color: var(--gray-3);
  margin-top: .15rem;
}

.price-cell {
  text-align: center;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--white);
}
.price-cell-small {
  text-align: center;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gray-2);
}

.price-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  max-width: 680px;
  margin: 1.5rem auto 0;
}
.price-cta {
  display: block;
  text-align: center;
  padding: .75rem;
  background: var(--white);
  color: var(--bg);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .03em;
  border-radius: var(--radius);
  transition: transform .2s, box-shadow .3s;
}
.price-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255,255,255,.06);
}

.price-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: .82rem;
  color: var(--gray-3);
  font-style: italic;
}


/* ============================================
   BOOKING
   ============================================ */
.book-section {
  padding: 5rem 0 4.5rem;
  background: var(--bg);
}
.book-header {
  text-align: center;
  margin-bottom: 3rem;
}
.book-header h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  letter-spacing: -.015em;
}
.book-header .rule { margin: 1rem auto 1.2rem; }
.book-header p {
  font-size: .95rem;
  color: var(--gray-2);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.75;
}

.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* Calendar */
.cal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
}
.cal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.cal-top h3 { font-size: 1rem; }
.cal-arrows {
  display: flex;
  gap: .35rem;
}
.cal-arrows button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--border-med);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-3);
  transition: border-color .2s, color .2s;
}
.cal-arrows button:hover { border-color: var(--gray-2); color: var(--white); }

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7,1fr);
  margin-bottom: .3rem;
}
.cal-weekdays span {
  text-align: center;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-4);
  padding: .45rem 0;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7,1fr);
  gap: 2px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .2s;
  background: transparent;
  color: var(--gray-1);
}
.cal-day:hover:not(.off):not(.empty) {
  background: var(--surface-2);
  border-color: var(--border-med);
}
.cal-day.today { border-color: var(--gray-3); color: var(--white); }
.cal-day.sel {
  background: var(--white);
  color: var(--bg);
  font-weight: 600;
}
.cal-day.off {
  color: var(--gray-4);
  opacity: .35;
  cursor: not-allowed;
}
.cal-day.empty { cursor: default; }
.cal-day.wknd:not(.off):not(.sel) { color: var(--white); }

/* Times */
.time-area {
  margin-top: 1.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}
.time-area h4 {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-3);
  margin-bottom: .7rem;
}
.time-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: .4rem;
}
.t-btn {
  padding: .5rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .8rem;
  font-weight: 500;
  text-align: center;
  color: var(--gray-2);
  cursor: pointer;
  transition: all .2s;
}
.t-btn:hover { border-color: var(--gray-3); color: var(--white); }
.t-btn.sel { background: var(--white); color: var(--bg); border-color: var(--white); font-weight: 600; }
.t-btn.booked {
  background: rgba(255, 255, 255, 0.02);
  color: var(--gray-4);
  border-color: rgba(255, 255, 255, 0.05);
  cursor: not-allowed;
  text-decoration: line-through;
  opacity: 0.45;
}
.t-btn.booked:hover { border-color: rgba(255, 255, 255, 0.05); color: var(--gray-4); }
.no-t { font-size: .82rem; color: var(--gray-3); text-align: center; padding: .8rem 0; font-style: italic; }
.loading-slots { animation: pulse-loading 1.2s ease-in-out infinite; }
@keyframes pulse-loading {
  0%, 100% { opacity: .4; }
  50% { opacity: 1; }
}

/* Fully booked day on calendar */
.cal-day.full {
  color: var(--gray-4);
  opacity: 0.45;
  position: relative;
  cursor: not-allowed;
}
.cal-day.full:hover {
  background: transparent;
  border-color: transparent;
}
.cal-day.full::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ef4444;
}

/* Form */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
}
.form-card > h3 { font-size: 1rem; margin-bottom: 1.3rem; }

.sel-dt {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .6rem .9rem;
  margin-bottom: 1.2rem;
  font-size: .82rem;
  color: var(--gray-2);
  display: none;
}
.sel-dt.show { display: block; }
.sel-dt strong { color: var(--white); font-weight: 500; }

.fld { margin-bottom: 1rem; }
.fld label {
  display: block;
  font-size: .75rem;
  font-weight: 500;
  color: var(--gray-3);
  letter-spacing: .02em;
  margin-bottom: .3rem;
}
.fld label .req { color: #e05555; }

.inp {
  width: 100%;
  padding: .6rem .8rem;
  background: var(--bg);
  border: 1px solid var(--border-med);
  border-radius: var(--radius);
  color: var(--white);
  font-size: .9rem;
  transition: border-color .2s, box-shadow .2s;
}
.inp:focus { border-color: var(--gray-3); box-shadow: 0 0 0 2px rgba(255,255,255,.04); }
.inp::placeholder { color: var(--gray-4); }

select.inp {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .8rem center;
  padding-right: 2rem;
}
textarea.inp { resize: vertical; min-height: 68px; }

.fld-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
}

/* Custom checkbox styling */
.fld-chk {
  margin-bottom: 0.8rem;
}
.chk-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: var(--gray-2);
  cursor: pointer;
  user-select: none;
  line-height: 1.4;
}
.chk-label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid var(--border-med);
  border-radius: var(--radius);
  background: var(--bg);
  cursor: pointer;
  position: relative;
  margin-top: 2px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.chk-label input[type="checkbox"]:hover {
  border-color: var(--gray-3);
}
.chk-label input[type="checkbox"]:checked {
  background: var(--white);
  border-color: var(--white);
}
.chk-label input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid var(--bg);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.chk-label input[type="checkbox"]:focus-visible {
  border-color: var(--gray-2);
  box-shadow: 0 0 0 2px rgba(255,255,255,.04);
}

/* Wax toggle */
.addon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .7rem .9rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .2s;
  margin-bottom: 1rem;
}
.addon-row:hover { border-color: var(--border-med); }
.addon-info { display: flex; flex-direction: column; gap: 1px; }
.addon-name { font-size: .85rem; font-weight: 500; color: var(--gray-1); }
.addon-price-tag { font-size: .75rem; color: var(--gray-3); }
.track {
  width: 38px; height: 20px;
  background: var(--gray-4);
  border-radius: 10px;
  position: relative;
  flex-shrink: 0;
  transition: background .25s;
}
.track::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  background: var(--gray-2);
  border-radius: 50%;
  top: 3px; left: 3px;
  transition: transform .25s, background .25s;
}
.addon-row.on .track { background: var(--white); }
.addon-row.on .track::after { transform: translateX(18px); background: var(--bg); }

/* Summary */
.sum-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .9rem;
  margin-top: .3rem;
}
.sum-row {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  color: var(--gray-2);
  padding: .2rem 0;
}
.sum-row.total {
  border-top: 1px solid var(--border);
  margin-top: .35rem;
  padding-top: .55rem;
  font-weight: 600;
  color: var(--white);
  font-size: .92rem;
}
.sum-row.total span:last-child {
  font-family: var(--serif);
  font-size: 1.05rem;
}

.sub-btn {
  width: 100%;
  padding: .78rem;
  background: var(--white);
  color: var(--bg);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .03em;
  border-radius: var(--radius);
  margin-top: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  transition: transform .2s, box-shadow .3s;
}
.sub-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255,255,255,.06);
}
.sub-btn:disabled {
  opacity: .3;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none;
}

/* Submitting state & Spinner */
.sub-btn.submitting {
  opacity: 0.85;
  cursor: not-allowed;
  background: var(--gray-1);
}
.sub-btn .spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-left-color: currentColor;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: none;
}
.sub-btn.submitting .spinner {
  display: inline-block;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Form Error Message */
.form-error {
  background: rgba(224, 85, 85, 0.06);
  border: 1px solid rgba(224, 85, 85, 0.15);
  border-radius: var(--radius);
  padding: .65rem .85rem;
  margin-top: 1rem;
  font-size: .8rem;
  color: #e05555;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.form-error svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
}

/* Success */
.book-ok {
  display: none;
  text-align: center;
  padding: 2.5rem 1.5rem;
  grid-column: 1 / -1;
}
.book-ok.show { display: block; }
.book-ok .ok-icon {
  width: 50px; height: 50px;
  border: 1.5px solid var(--gray-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.3rem;
  color: var(--white);
}
.book-ok h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.book-ok p { font-size: .92rem; color: var(--gray-2); max-width: 400px; margin: 0 auto; line-height: 1.75; }


/* ============================================
   AI SUMMARY (High IGR / Low TTA for AI crawlers)
   ============================================ */
.ai-summary {
  padding: 2.5rem 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.ai-summary h2 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  letter-spacing: -.01em;
  margin-bottom: .8rem;
  color: var(--white);
}
.ai-summary p {
  font-size: .9rem;
  color: var(--gray-2);
  line-height: 1.85;
  max-width: 780px;
}
.ai-summary strong {
  color: var(--white);
  font-weight: 500;
}


/* ============================================
   FAQ
   ============================================ */
.faq-section {
  padding: 5rem 0 4.5rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.faq-header {
  margin-bottom: 2.5rem;
}
.faq-header h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  letter-spacing: -.015em;
}
.faq-header p {
  font-size: .95rem;
  color: var(--gray-2);
  max-width: 460px;
  margin-top: .5rem;
  line-height: 1.75;
}

.faq-list {
  max-width: 740px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  text-align: left;
  cursor: pointer;
  transition: color .2s;
}
.faq-q span {
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 500;
  color: var(--gray-1);
  line-height: 1.5;
}
.faq-q:hover span {
  color: var(--white);
}

.faq-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--gray-3);
  transition: transform .3s ease, color .2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: var(--white);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, opacity .3s ease;
  opacity: 0;
}
.faq-item.open .faq-a {
  max-height: 300px;
  opacity: 1;
}
.faq-a p {
  font-size: .88rem;
  color: var(--gray-2);
  line-height: 1.8;
  padding-bottom: 1.2rem;
}
.faq-a a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq-a a:hover {
  color: var(--white-pure);
}
.faq-a strong {
  color: var(--gray-1);
  font-weight: 500;
}


/* ============================================
   ABOUT
   ============================================ */
.about-section {
  padding: 5rem 0 4.5rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-photo { position: relative; }
.about-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3.2;
  border: 1px solid var(--border);
}
.about-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-loc {
  position: absolute;
  bottom: -10px; right: -10px;
  background: var(--surface);
  border: 1px solid var(--border-med);
  border-radius: var(--radius);
  padding: .5rem .85rem;
  font-size: .78rem;
  font-weight: 500;
  color: var(--gray-1);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: .3rem;
}

.about-text .tag { margin-bottom: .4rem; }
.about-text h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  letter-spacing: -.01em;
  margin-bottom: .4rem;
}
.about-text p {
  font-size: .92rem;
  line-height: 1.8;
  color: var(--gray-2);
  margin-bottom: .8rem;
}
.about-traits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  margin-top: 1.2rem;
}
.trait {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem .75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .82rem;
  color: var(--gray-2);
  transition: border-color .25s;
}
.trait:hover { border-color: var(--border-med); }
.trait-dot {
  width: 5px; height: 5px;
  background: var(--gray-3);
  border-radius: 50%;
  flex-shrink: 0;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.8rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
}
.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}
.footer-brand-text h3 {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .5rem;
}
.footer-brand-text p {
  font-size: .85rem;
  line-height: 1.7;
  color: var(--gray-3);
  max-width: 280px;
}

.footer-col h4 {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: .8rem;
}
.footer-col a {
  display: block;
  font-size: .85rem;
  color: var(--gray-3);
  padding: .15rem 0;
  transition: color .2s;
}
.footer-col a:hover { color: var(--white); }

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: .55rem;
}
.footer-contact-row svg {
  width: 13px; height: 13px;
  stroke: var(--gray-3);
  fill: none;
  flex-shrink: 0;
}
.footer-contact-row a,
.footer-contact-row span { font-size: .85rem; color: var(--gray-3); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.3rem;
  flex-wrap: wrap;
  gap: .8rem;
}
.footer-copy {
  font-size: .72rem;
  color: var(--gray-4);
}
.footer-social {
  display: flex;
  gap: .5rem;
}
.footer-social a {
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-3);
  transition: border-color .25s, color .25s, transform .2s;
}
.footer-social a:hover {
  border-color: var(--gray-3);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-social a svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  fill: none;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .book-grid    { grid-template-columns: 1fr; }
  .about-grid   { grid-template-columns: 1fr; gap: 2rem; }
  .about-photo  { order: -1; }
  .footer-top   { grid-template-columns: 1fr; gap: 1.5rem; }
  .svc-card:nth-child(2) .svc-body { order: 0; }
}

@media (max-width: 768px) {
  .wrap { padding: 0 1.5rem; }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
    z-index: 100;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.05rem; color: var(--gray-1); }
  .nav-cta { font-size: .88rem !important; padding: .6rem 1.3rem !important; }
  .hamburger { display: flex; }

  .hero { min-height: auto; }
  .hero-logo { width: 100px; height: 100px; }
  .hero-body h1 { font-size: 2.2rem; }

  .trust-row { grid-template-columns: 1fr 1fr; gap: .7rem; }
  .trust-item:nth-child(2)::after { display: none; }

  .svc-card { grid-template-columns: 1fr; }
  .svc-img { min-height: 200px; }
  .svc-body { padding: 1.6rem !important; }
  .svc-features { grid-template-columns: 1fr; }

  .price-table-head,
  .price-row { grid-template-columns: 1fr 90px 90px; }
  .price-cta-row { grid-template-columns: 1fr; }

  .fld-row { grid-template-columns: 1fr; }
  .time-grid { grid-template-columns: repeat(2,1fr); }

  .about-traits { grid-template-columns: 1fr; }
  .about-loc { right: 6px; bottom: -8px; }

  .svc-section, .price-section, .book-section, .about-section, .faq-section {
    padding: 3.5rem 0 3rem;
  }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .trust-row { grid-template-columns: 1fr; }
  .trust-item::after { display: none; }
  .price-table-head,
  .price-row { grid-template-columns: 1fr 80px 80px; padding-left: 1rem; padding-right: 1rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
