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

:root {
  --teal:      #0D4F5C;
  --teal-dark: #092e3a;
  --amber:     #F5923A;
  --amber-light: #ffd9b8;
  --cream:     #FDFAF6;
  --cream-dark: #f5ede2;
  --ink:       #1a1a1a;
  --ink-muted: #5a5a5a;
  --white:     #ffffff;
  --success:   #22c55e;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--amber-light);
  color: var(--teal-dark);
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 250, 246, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13, 79, 92, 0.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.site-header nav {
  display: flex;
  gap: 32px;
}

.site-header nav a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
}

.site-header nav a:hover {
  color: var(--teal);
}

/* === HERO === */
.hero {
  padding: 140px 32px 100px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 146, 58, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 79, 92, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  color: var(--teal-dark);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 0;
}

.meta-stat {
  display: flex;
  flex-direction: column;
  padding: 0 24px;
}

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

.meta-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--teal);
}

.meta-label {
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-top: 2px;
}

.meta-divider {
  width: 1px;
  height: 36px;
  background: rgba(13, 79, 92, 0.15);
}

/* === CALENDAR STACK (Hero Visual) === */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.calendar-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  width: 100%;
  max-width: 520px;
}

.calendar-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: 0 2px 20px rgba(13, 79, 92, 0.08), 0 1px 4px rgba(13, 79, 92, 0.04);
  border: 1px solid rgba(13, 79, 92, 0.06);
  position: relative;
}

.calendar-card-1 {
  grid-column: 1;
  grid-row: 1;
}

.calendar-card-2 {
  grid-column: 2;
  grid-row: 1;
}

.calendar-card-3 {
  grid-column: 1 / -1;
  grid-row: 2;
}

.card-header {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green  { background: #28c840; }

.card-body { display: flex; flex-direction: column; gap: 10px; }

/* Lead items */
.lead-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: var(--cream);
}

.lead-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}

.lead-info { flex: 1; min-width: 0; }

.lead-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lead-company {
  font-size: 0.7rem;
  color: var(--ink-muted);
}

.lead-status {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.status-hot  { background: #fef2f2; color: #dc2626; }
.status-warm { background: #fffbeb; color: #d97706; }
.status-new  { background: #f0fdf4; color: #16a34a; }

/* Appointments */
.appt-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--teal);
  background: rgba(13, 79, 92, 0.04);
}

.appt-row-muted { opacity: 0.6; border-left-color: var(--ink-muted); }

.appt-time {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal);
  width: 56px;
  flex-shrink: 0;
}

.appt-info { flex: 1; }

.appt-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
}

.appt-detail {
  font-size: 0.68rem;
  color: var(--ink-muted);
}

.appt-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(13, 79, 92, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.appt-pending { background: rgba(245, 146, 58, 0.12); }

/* Outreach list */
.pulse-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--success);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse-label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.outreach-list { display: flex; flex-direction: column; gap: 8px; }

.outreach-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--ink-muted);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  background: var(--cream);
}

.outreach-sent { color: var(--success); }
.outreach-active { color: var(--teal); font-weight: 500; }

.outreach-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.outreach-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 1.8s infinite;
}

/* === SHARED SECTION STYLES === */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 16px;
}

.section-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--teal-dark);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1rem;
  color: var(--ink-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* === HOW IT WORKS === */
.howitworks {
  padding: 100px 0;
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.step-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--cream);
  border: 1px solid rgba(13, 79, 92, 0.07);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13, 79, 92, 0.08);
}

.step-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(13, 79, 92, 0.1);
  line-height: 1;
  margin-bottom: 16px;
}

.step-icon {
  margin-bottom: 20px;
}

.step-card h3 {
  font-size: 1.3rem;
  color: var(--teal-dark);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

.howitworks-callout {
  background: linear-gradient(135deg, var(--teal) 0%, #0a6b7f 100%);
  border-radius: var(--radius-md);
  padding: 2px;
}

.callout-inner {
  background: linear-gradient(135deg, var(--teal) 0%, #0a6b7f 100%);
  border-radius: calc(var(--radius-md) - 2px);
  padding: 28px 40px;
}

.callout-text {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.65;
  opacity: 0.92;
}

.callout-text strong {
  color: var(--amber);
  font-weight: 600;
}

/* === VERTICALS === */
.verticals {
  padding: 100px 0;
  background: var(--cream);
}

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

.vertical-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(13, 79, 92, 0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}

.vertical-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(13, 79, 92, 0.08);
}

.vertical-icon { margin-bottom: 20px; }

.vertical-card h3 {
  font-size: 1.25rem;
  color: var(--teal-dark);
  margin-bottom: 12px;
}

.vertical-card > p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.vertical-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(13, 79, 92, 0.06);
  color: var(--teal);
}

.tag-high { background: rgba(245, 146, 58, 0.12); color: #b45309; }

/* === OUTCOMES === */
.outcomes {
  padding: 100px 0;
  background: var(--white);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.outcome-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--cream);
  border: 1px solid rgba(13, 79, 92, 0.06);
}

.outcome-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 8px;
  line-height: 1;
}

.outcome-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.4;
}

.outcome-detail {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* === PRICING === */
.pricing-anchor {
  max-width: 420px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--teal-dark);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}

.pricing-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 12px;
}

.pricing-amount {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-amount span {
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.6;
  font-family: 'DM Sans', sans-serif;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin: 28px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pricing-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(245, 146, 58, 0.2);
  flex-shrink: 0;
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5 5.5-5' stroke='%23F5923A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.pricing-cta {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}

/* === CLOSING === */
.closing {
  padding: 100px 0 120px;
  background: var(--cream);
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  position: relative;
}

.closing-headline {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--teal-dark);
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.closing-body {
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 560px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.closing-visual {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.closing-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(13, 79, 92, 0.12);
}

.ring-1 { width: 160px; height: 160px; }
.ring-2 { width: 110px; height: 110px; border-color: rgba(245, 146, 58, 0.2); }
.ring-3 { width: 70px; height: 70px; border-color: var(--amber); opacity: 0.4; }

.closing-center {
  position: absolute;
}

/* === FOOTER === */
.site-footer {
  padding: 48px 0;
  border-top: 1px solid rgba(13, 79, 92, 0.08);
  background: var(--white);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.footer-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.footer-legal {
  font-size: 0.75rem;
  color: rgba(90, 90, 90, 0.5);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .calendar-stack { max-width: 100%; }
  .steps-grid { grid-template-columns: 1fr; }
  .verticals-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero { padding: 120px 20px 72px; }
  .section-inner { padding: 0 20px; }
  .howitworks, .verticals, .outcomes, .closing { padding: 72px 0; }
  .hero-meta { flex-wrap: wrap; gap: 16px; }
  .meta-divider { display: none; }
  .meta-stat { padding: 0; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .steps-grid { gap: 16px; }
  .site-header nav { display: none; }
  .calendar-stack { grid-template-columns: 1fr; }
  .calendar-card-2 { grid-column: 1; }
}

/* === DEMO SECTION === */
.demo-section {
  background: var(--teal-dark);
  padding: 96px 0;
}

.demo-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}

.demo-header {
  text-align: center;
  margin-bottom: 48px;
}

.demo-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.demo-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.demo-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.demo-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* ── Form ── */
.demo-form {
  padding: 36px;
}

.demo-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  margin-bottom: 28px;
}

.demo-field:last-child {
  grid-column: 1 / -1;
}

.demo-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.demo-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.7;
}

.demo-field input {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.demo-field input::placeholder {
  color: rgba(255,255,255,0.3);
}

.demo-field input:focus {
  border-color: var(--amber);
  background: rgba(255,255,255,0.12);
}

.demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--amber);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s, transform 0.15s;
}

.demo-btn:hover:not(:disabled) {
  background: #e07b2a;
  transform: translateY(-1px);
}

.demo-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.demo-btn-loading .demo-btn-icon {
  animation: demo-spin 0.8s linear infinite;
}

@keyframes demo-spin {
  to { transform: rotate(360deg); }
}

/* ── Output ── */
.demo-output {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 0;
}

.demo-output-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.demo-dots {
  display: flex;
  gap: 6px;
}

.demo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }

.demo-email-meta {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-family: 'DM Sans', sans-serif;
}

.demo-email-subject {
  padding: 20px 28px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  min-height: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding-bottom: 16px;
}

.demo-email-body {
  padding: 20px 28px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  white-space: pre-wrap;
  min-height: 80px;
}

.demo-cursor {
  display: inline-block;
  color: var(--amber);
  animation: demo-blink 0.8s step-end infinite;
  font-weight: 300;
  margin-left: 1px;
}

@keyframes demo-blink {
  50% { opacity: 0; }
}

.demo-output-cta {
  background: rgba(245,146,58,0.12);
  border-top: 1px solid rgba(245,146,58,0.25);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.demo-cta-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  flex: 1;
}

.demo-cta-btn {
  display: inline-block;
  background: var(--amber);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s;
}

.demo-cta-btn:hover { background: #e07b2a; }

/* ── Error ── */
.demo-error {
  padding: 16px 36px;
  color: #fca5a5;
  font-size: 0.88rem;
  border-top: 1px solid rgba(252,165,165,0.2);
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .demo-section { padding: 72px 0; }
  .demo-inner { padding: 0 20px; }
  .demo-fields { grid-template-columns: 1fr; }
  .demo-field:last-child { grid-column: 1; }
  .demo-form { padding: 24px 20px; }
  .demo-output-cta { flex-direction: column; align-items: flex-start; }
}

/* === CONTACT SECTION === */
.contact-section {
  background: var(--cream);
  padding: 96px 32px;
  border-top: 1px solid rgba(13, 79, 92, 0.08);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 16px;
}

.contact-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  color: var(--teal-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact-sub {
  font-size: 1.05rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 360px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s;
}

.contact-link:hover { color: var(--amber); }
.contact-link svg { flex-shrink: 0; opacity: 0.8; }

/* ── Form ── */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid rgba(13, 79, 92, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 4px 32px rgba(13, 79, 92, 0.06);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cf-field-full { grid-column: 1 / -1; }

.cf-field label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-muted);
}

.cf-required { color: var(--amber); }

.cf-field input,
.cf-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid rgba(13, 79, 92, 0.18);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
  color: rgba(90, 90, 90, 0.5);
}

.cf-field input:focus,
.cf-field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 79, 92, 0.08);
  background: var(--white);
}

.cf-field textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.55;
}

.cf-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 13px 28px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  align-self: flex-start;
}

.cf-submit:hover { background: var(--teal-dark); }
.cf-submit:active { transform: scale(0.98); }
.cf-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.cf-btn-icon { flex-shrink: 0; }

.cf-success {
  font-size: 1rem;
  font-weight: 500;
  color: var(--teal);
  padding: 20px;
  background: rgba(13, 79, 92, 0.06);
  border-radius: var(--radius-sm);
  text-align: center;
}

.cf-error {
  font-size: 0.88rem;
  color: #dc2626;
  padding: 12px 14px;
  background: rgba(220, 38, 38, 0.06);
  border-radius: var(--radius-sm);
  margin-top: 4px;
}

/* ── Contact footer line ── */
.footer-contact {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.footer-contact a {
  color: var(--teal);
  text-decoration: none;
}

.footer-contact a:hover { text-decoration: underline; }

.footer-cities {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin: 4px 0 0;
  font-family: var(--sans);
}
.footer-cities a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  margin-right: 10px;
}
.footer-cities a:hover { color: var(--orange); }

/* ── Responsive ── */
@media (max-width: 860px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-sub { max-width: 100%; }
}

@media (max-width: 560px) {
  .contact-section { padding: 72px 20px; }
  .contact-form-wrap { padding: 28px 20px; }
  .cf-row { grid-template-columns: 1fr; }
}

/* ── Booking widget section ── */
.booking-section {
  padding: 96px 40px;
  background: var(--cream);
}

.booking-inner {
  max-width: 860px;
  margin: 0 auto;
}

.booking-header {
  text-align: center;
  margin-bottom: 48px;
}

.booking-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.booking-headline {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}

.booking-sub {
  font-size: 1rem;
  color: var(--ink-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Widget container */
.booking-widget {
  background: var(--white);
  border: 1px solid #e8e0d6;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 2px 24px rgba(13,79,92,0.06);
}

/* Slot picker */
.bw-slots-loading {
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.9rem;
  padding: 24px 0;
}

.bw-error {
  color: #dc2626;
  font-size: 0.875rem;
  padding: 12px;
  background: rgba(220,38,38,0.06);
  border-radius: 8px;
}

.bw-days {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bw-day-col {
  flex: 1;
  min-width: 120px;
}

.bw-day-header {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
  text-align: center;
}

.bw-day-slots {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bw-slot {
  width: 100%;
  padding: 10px 8px;
  border: 1.5px solid #d8d0c6;
  border-radius: 8px;
  background: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  text-align: center;
  font-family: var(--sans);
}

.bw-slot:hover:not([disabled]) {
  border-color: var(--teal);
  background: #f0f9fb;
  color: var(--teal);
}

.bw-slot.bw-slot-taken {
  border-color: #e8e0d6;
  background: #f8f5f0;
  color: #bbb;
  cursor: not-allowed;
  font-size: 0.8rem;
}

.bw-taken-label {
  font-size: 0.68rem;
  opacity: 0.7;
}

.bw-no-slots {
  color: var(--ink-muted);
  font-size: 0.875rem;
  text-align: center;
  padding: 16px 0;
}

/* Form */
.bw-selected-slot {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 20px;
  padding: 12px 16px;
  background: #f0f9fb;
  border-radius: 8px;
  border-left: 3px solid var(--teal);
}

.bw-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bw-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.bw-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.bw-field-full {
  margin-bottom: 12px;
}

.bw-field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

.bw-req {
  color: var(--orange);
}

.bw-optional {
  font-weight: 400;
  color: var(--ink-muted);
  opacity: 0.7;
}

.bw-field input,
.bw-field textarea {
  padding: 10px 12px;
  border: 1.5px solid #d8d0c6;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.15s;
  width: 100%;
  box-sizing: border-box;
}

.bw-field input:focus,
.bw-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,79,92,0.08);
}

.bw-field textarea {
  resize: vertical;
  min-height: 80px;
}

.bw-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.bw-back {
  background: none;
  border: none;
  color: var(--ink-muted);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
  font-family: var(--sans);
  text-decoration: underline;
}

.bw-back:hover { color: var(--ink); }

.bw-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--sans);
  transition: background 0.15s;
}

.bw-submit:hover:not([disabled]) { background: #092e3a; }
.bw-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.bw-form-error {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #dc2626;
  padding: 10px 14px;
  background: rgba(220,38,38,0.06);
  border-radius: 8px;
}

/* Confirmation */
.bw-confirm {
  text-align: center;
  padding: 24px 0;
}

.bw-confirm-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.bw-confirm-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.bw-confirm-slot {
  font-size: 1rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 12px;
}

.bw-confirm-note {
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* Contact success book link */
.cf-book-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.875rem;
  color: var(--teal);
  text-decoration: none;
  font-weight: 500;
}

.cf-book-link:hover { text-decoration: underline; }

/* Responsive booking widget */
@media (max-width: 720px) {
  .booking-section { padding: 72px 20px; }
  .booking-widget { padding: 24px 16px; }
  .bw-days { gap: 8px; }
  .bw-day-col { min-width: 90px; }
  .bw-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .bw-days { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
  .bw-day-col { min-width: 100px; flex: 0 0 100px; }
}
