/* Doble Filo Demo — shared styles
 * Old-world Latino barbershop aesthetic.
 * Charcoal + cream + cognac terracotta + brass.
 * Heavy display type, warm photography, masculine restraint.
 */

:root {
  --ink: #1A1410;
  --ink-2: #2C1F1A;
  --ink-3: #3A2A21;
  --paper: #F5F0E8;
  --paper-2: #EFE7DA;
  --paper-3: #E2D8C5;
  --line: #2D211B;
  --line-light: #D4C8B5;
  --cognac: #B8512F;
  --cognac-dark: #8F3E22;
  --brass: #C9A266;
  --brass-dim: #9D7E4D;
  --gray-1: #6F665E;
  --gray-2: rgba(245, 240, 232, 0.7);
  --gray-3: rgba(245, 240, 232, 0.45);
  --max: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  color: var(--paper);
  background: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Big Shoulders Display', Impact, sans-serif;
  font-weight: 800;
  letter-spacing: 0.005em;
  line-height: 0.9;
  text-transform: uppercase;
}

.script {
  font-family: 'Pinyon Script', cursive;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.serif-italic {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.005em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* === DEMO BANNERS === */
.demo-banner {
  background: var(--brass);
  color: var(--ink);
  text-align: center;
  padding: 10px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-transform: uppercase;
}

.client-integration-banner {
  background: #2A1814;
  border-bottom: 2px solid var(--cognac);
  color: var(--paper);
  padding: 14px 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}
.client-integration-banner strong {
  color: var(--brass);
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* === HEADER === */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 20, 16, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--paper);
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}
.logo .blade {
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--cognac);
  position: relative;
}
.logo .blade::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brass);
  transform: translateY(4px);
  height: 2px;
}
.logo small {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 400;
  font-size: 9px;
  color: var(--gray-3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-left: 4px;
  align-self: center;
}
.nav { display: flex; gap: 28px; font-size: 13px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; }
.nav a { color: var(--gray-2); transition: color 0.15s; }
.nav a:hover { color: var(--brass); }
.book-cta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  background: var(--brass);
  padding: 10px 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.15s;
}
.book-cta:hover { background: var(--paper); }
@media (max-width: 860px) {
  .nav { display: none; }
  .header-inner { padding: 16px 20px; }
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(184, 81, 47, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, rgba(26, 20, 16, 0.2) 0%, rgba(26, 20, 16, 0.55) 60%, rgba(26, 20, 16, 0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px 32px 90px;
  width: 100%;
}
.hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--brass);
  display: inline-block;
}
.hero h1 {
  font-size: clamp(64px, 13vw, 180px);
  line-height: 0.85;
  letter-spacing: -0.005em;
  margin-bottom: 0;
  max-width: 980px;
  color: var(--paper);
}
.hero h1 .accent {
  color: var(--cognac);
  font-style: normal;
}
.hero-tagline {
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--brass);
  margin-top: 32px;
  display: block;
  line-height: 1;
  text-transform: none;
}
.hero-sub {
  font-size: clamp(17px, 1.5vw, 19px);
  max-width: 540px;
  line-height: 1.55;
  color: var(--gray-2);
  margin: 36px 0 40px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.18s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--brass);
  color: var(--ink);
}
.btn-primary:hover { background: var(--paper); transform: translateY(-1px); }
.btn-cognac {
  background: var(--cognac);
  color: var(--paper);
}
.btn-cognac:hover { background: var(--cognac-dark); }
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1.5px solid var(--gray-3);
}
.btn-ghost:hover { border-color: var(--brass); color: var(--brass); }
.btn-disabled {
  background: var(--ink-3);
  color: var(--gray-3);
  cursor: not-allowed;
  pointer-events: none;
}
.btn .arrow { font-size: 14px; transition: transform 0.18s; }
.btn:hover .arrow { transform: translateX(3px); }

/* === SECTIONS === */
section { scroll-margin-top: 80px; }
.section { max-width: var(--max); margin: 0 auto; padding: 140px 32px; }
.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--brass);
  display: inline-block;
}
.section-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 32px;
  max-width: 880px;
}
.section-lede {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--gray-2);
  max-width: 680px;
  line-height: 1.5;
}
.section-lede strong { color: var(--brass); font-weight: 500; font-style: normal; }
@media (max-width: 720px) {
  .section { padding: 90px 24px; }
}

/* === CREDO STRIP === */
.credo {
  padding: 80px 32px;
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.credo-inner {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: start;
}
.credo-item { text-align: left; }
.credo-num {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  color: var(--cognac);
  margin-bottom: 12px;
}
.credo-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-2);
  line-height: 1.5;
}
@media (max-width: 720px) {
  .credo-inner { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .credo-num { font-size: 44px; }
}

/* === STORY (about) === */
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}
.story-text p {
  margin-bottom: 22px;
  color: var(--gray-2);
  font-size: 17px;
  line-height: 1.7;
}
.story-text p:first-of-type {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  color: var(--paper);
}
.story-quote {
  border-left: 2px solid var(--cognac);
  padding-left: 28px;
  margin-top: 36px;
  font-family: 'Pinyon Script', cursive;
  font-size: 36px;
  line-height: 1.1;
  color: var(--brass);
}
.story-image {
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid var(--cognac);
}
.story-image img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 880px) {
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* === SERVICES MENU === */
.services-section {
  background: var(--paper);
  color: var(--ink);
}
.services-section .section-title { color: var(--ink); }
.services-section .section-lede { color: var(--gray-1); }

.services-menu {
  margin-top: 64px;
  border-top: 1px solid var(--line-light);
}
.service-row {
  display: grid;
  grid-template-columns: 50px 1fr auto 180px;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-light);
  align-items: baseline;
  transition: padding 0.2s;
}
.service-row:hover { padding-left: 12px; }
.service-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--cognac);
  letter-spacing: 0.1em;
  font-weight: 500;
  align-self: start;
  padding-top: 14px;
}
.service-name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  color: var(--ink);
  line-height: 1;
}
.service-name small {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  text-transform: none;
  color: var(--gray-1);
  margin-top: 8px;
  letter-spacing: 0;
  line-height: 1.4;
}
.service-duration {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--gray-1);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.service-price {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 38px);
  color: var(--cognac);
  text-align: right;
  line-height: 1;
}
.service-row.featured .service-price { color: var(--ink); }
.service-row.featured {
  background: rgba(184, 81, 47, 0.04);
  margin-left: -16px;
  padding-left: 16px;
  padding-right: 16px;
  margin-right: -16px;
}
.services-cta {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--line-light);
}
.services-cta-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 19px;
  color: var(--gray-1);
  flex: 1;
}
@media (max-width: 720px) {
  .service-row { grid-template-columns: 1fr auto; gap: 8px 16px; }
  .service-num { display: none; }
  .service-duration { grid-column: 1; padding-top: 4px; }
  .service-price { grid-column: 2; grid-row: 1; }
}

/* === CRAFT (process strip) === */
.craft {
  padding: 0;
  background: var(--ink);
}
.craft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.craft-item {
  position: relative;
  aspect-ratio: 1/1.1;
  overflow: hidden;
}
.craft-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.craft-item:hover img { transform: scale(1.04); }
.craft-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(26, 20, 16, 0.92) 100%);
  pointer-events: none;
}
.craft-item .craft-meta {
  position: absolute;
  bottom: 36px;
  left: 36px;
  right: 36px;
  z-index: 1;
}
.craft-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 10px;
}
.craft-name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 42px);
  text-transform: uppercase;
  color: var(--paper);
  line-height: 0.95;
}
.craft-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 16px;
  color: var(--gray-2);
  margin-top: 10px;
  line-height: 1.4;
}
@media (max-width: 720px) {
  .craft-grid { grid-template-columns: 1fr; }
  .craft-item { aspect-ratio: 16/10; }
}

/* === TEAM === */
.team-section {
  background: var(--ink);
  border-top: 1px solid var(--line);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-top: 72px;
}
.team-card {}
.team-portrait {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 28px;
  position: relative;
  border-bottom: 3px solid var(--cognac);
}
.team-portrait img { width: 100%; height: 100%; object-fit: cover; }
.team-name {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  text-transform: uppercase;
  color: var(--paper);
  letter-spacing: 0.005em;
  line-height: 1;
  margin-bottom: 8px;
}
.team-role {
  font-family: 'Pinyon Script', cursive;
  font-size: 28px;
  color: var(--brass);
  margin-bottom: 16px;
  line-height: 1;
}
.team-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-3);
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.team-meta span::after {
  content: '·';
  margin-left: 20px;
  color: var(--gray-3);
}
.team-meta span:last-child::after { content: ''; margin: 0; }
.team-bio {
  font-size: 16px;
  color: var(--gray-2);
  line-height: 1.65;
}
@media (max-width: 720px) {
  .team-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* === REVIEWS === */
.reviews-section {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.review {
  padding: 36px 32px;
  border: 1px solid var(--line);
  background: rgba(26, 20, 16, 0.5);
  position: relative;
  transition: border-color 0.2s;
}
.review:hover { border-color: var(--cognac); }
.review-stars {
  color: var(--brass);
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.review-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--paper);
  margin-bottom: 24px;
}
.review-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-3);
}
.review-meta strong { color: var(--brass); font-weight: 500; }
@media (max-width: 720px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* === BOOK STRIP === */
.book-strip {
  background: var(--cognac);
  color: var(--paper);
  text-align: center;
  padding: 100px 32px;
  position: relative;
  overflow: hidden;
}
.book-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(255, 220, 180, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 100%, rgba(0, 0, 0, 0.2) 0%, transparent 60%);
  pointer-events: none;
}
.book-strip > * { position: relative; }
.book-strip h2 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 0.85;
  text-transform: uppercase;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}
.book-strip .script-tag {
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(36px, 4.5vw, 52px);
  color: var(--paper);
  margin-bottom: 20px;
  line-height: 1;
}
.book-strip p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 20px;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.5;
}

/* === VISIT === */
.visit-section {
  background: var(--ink);
  border-top: 1px solid var(--line);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  margin-top: 60px;
}
.visit-list {
  list-style: none;
  padding: 0;
}
.visit-list li {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: baseline;
}
.visit-list li:first-child { border-top: none; padding-top: 0; }
.visit-list .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}
.visit-list .value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 21px;
  color: var(--paper);
  line-height: 1.4;
}
.visit-list .value a { color: var(--paper); border-bottom: 1px solid var(--cognac); }
.visit-list .value a:hover { color: var(--brass); border-color: var(--brass); }
.visit-list .value .small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 14px;
  color: var(--gray-2);
  margin-top: 6px;
}
.map-frame {
  overflow: hidden;
  min-height: 460px;
  background: var(--ink-2);
  border: 1px solid var(--line);
}
.map-frame iframe {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 460px;
  filter: invert(0.85) hue-rotate(180deg) saturate(0.5) brightness(0.95);
}
@media (max-width: 880px) {
  .visit-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* === FOOTER === */
.footer {
  background: var(--ink);
  color: var(--gray-2);
  padding: 80px 32px 40px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
}
.footer-brand .logo { color: var(--paper); margin-bottom: 24px; }
.footer-brand p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--gray-2);
  max-width: 320px;
}
.footer-brand .footer-script {
  font-family: 'Pinyon Script', cursive;
  font-size: 28px;
  color: var(--brass);
  margin-top: 16px;
  font-style: normal;
}
.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: 14px;
  color: var(--gray-2);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  max-width: var(--max);
  margin: 56px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  color: var(--gray-3);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* === MOCK / FORM PAGES === */
body.mock-page { background: var(--paper); color: var(--ink); }
body.mock-page .header {
  background: rgba(245, 240, 232, 0.96);
  border-bottom: 1px solid var(--line-light);
}
body.mock-page .logo { color: var(--ink); }
body.mock-page .logo small { color: var(--gray-1); }
body.mock-page .nav a { color: var(--ink-2); }
body.mock-page .nav a:hover { color: var(--cognac); }
body.mock-page .book-cta { background: var(--ink); color: var(--paper); }
body.mock-page .book-cta:hover { background: var(--cognac); }

.mock-section {
  max-width: 880px;
  margin: 0 auto;
  padding: 80px 32px 100px;
}
.mock-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cognac);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.mock-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--cognac);
  display: inline-block;
}
.mock-title {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
  color: var(--ink);
}
.mock-lede {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: var(--gray-1);
  margin-bottom: 56px;
  line-height: 1.5;
  max-width: 640px;
}

.form-card {
  background: var(--paper-2);
  border: 1px solid var(--line-light);
  padding: 56px;
}
.form-section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-1);
  margin: 36px 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-light);
}
.form-section-label:first-child { margin-top: 0; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-1);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--line-light);
  font-size: 16px;
  font-family: inherit;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 0.15s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: none; border-color: var(--cognac); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line-light);
}
.form-note {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 16px;
  color: var(--gray-1);
}
@media (max-width: 720px) {
  .form-card { padding: 36px 24px; }
  .form-row { grid-template-columns: 1fr; }
}

.integration-note {
  background: #FFF4E0;
  border: 1px solid var(--brass);
  padding: 28px 32px;
  margin-top: 36px;
  font-size: 14px;
  line-height: 1.6;
  color: #5D2E00;
}
.integration-note h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cognac);
  margin-bottom: 14px;
}
.integration-note ul { padding-left: 22px; margin-top: 10px; }
.integration-note li { margin-bottom: 6px; }
.integration-note code {
  background: rgba(184, 81, 47, 0.12);
  padding: 2px 7px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--cognac-dark);
}

/* services page list */
body.mock-page .services-menu { border-top: 1px solid var(--line-light); margin-top: 0; }
body.mock-page .services-section { background: var(--paper); padding: 0; }

/* booking date picker grid */
.timeslot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.timeslot {
  padding: 14px 8px;
  text-align: center;
  border: 1.5px solid var(--line-light);
  background: var(--paper);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.15s;
}
.timeslot:hover { border-color: var(--cognac); }
.timeslot.taken {
  background: var(--paper-3);
  color: var(--gray-1);
  text-decoration: line-through;
  cursor: not-allowed;
  pointer-events: none;
}
.timeslot.selected {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
@media (max-width: 720px) {
  .timeslot-grid { grid-template-columns: repeat(3, 1fr); }
}
