:root {
  --bg: #efe4c8;
  --surface: #fbf5e6;
  --panel: #e5d6ae;
  --ink: #241b0e;
  --ink-soft: #5b4e38;
  --primary: #23392c;
  --primary-deep: #142118;
  --cover: #17281e;
  --cover-2: #1e3327;
  --accent: #c4913c;
  --accent-bright: #e3b564;
  --accent-soft: #e6c688;
  --rust: #9c5a34;
  --line: rgba(36, 27, 14, 0.16);
  --line-cover: rgba(230, 220, 190, 0.2);
  --ink-cover: #ede4cc;
  --ink-cover-soft: rgba(237, 228, 204, 0.72);
  --error: #a6432f;
  --radius: 2px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
body {
  margin: 0;
  background-color: var(--bg);
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(36, 27, 14, 0.05) 1px,
    transparent 0
  );
  background-size: 15px 15px;
  color: var(--ink);
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
h1,
h2,
h3,
h4 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--primary-deep);
}
h1 {
  font-size: 20px;
}
.eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}
a {
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}
section {
  padding: 96px 0;
}
@media (max-width: 720px) {
  section {
    padding: 64px 0;
  }
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ---- Header ---- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 33, 24, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line-cover);
}
.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  height: 34px;
  width: auto;
  flex: none;
  object-fit: contain;
}
.brand-text {
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  color: var(--ink-cover);
  letter-spacing: 0.01em;
}
.brand-text small {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  color: var(--accent-soft);
  text-transform: uppercase;
  margin-top: 2px;
}
nav.links {
  display: flex;
  align-items: center;
  gap: 30px;
}
nav.links a {
  font-size: 0.88rem;
  text-decoration: none;
  color: var(--ink-cover-soft);
  position: relative;
  padding: 4px 0;
}
nav.links a:hover {
  color: var(--accent-bright);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    transform 0.15s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}
.btn-primary {
  background: var(--primary-deep);
  color: var(--surface);
}
.btn-primary:hover {
  background: var(--accent);
  color: var(--primary-deep);
}
.btn-ghost {
  border-color: var(--primary-deep);
  color: var(--primary-deep);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--primary-deep);
  color: var(--surface);
}
.btn-amber {
  background: var(--accent);
  color: var(--primary-deep);
}
.btn-amber:hover {
  background: var(--accent-bright);
}
.btn-outline {
  border-color: var(--line-cover);
  color: var(--ink-cover);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
}
.btn:active {
  transform: scale(0.98);
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink-cover);
  margin: 5px 0;
}
.nav-cta-mobile {
  display: none;
}
@media (max-width: 920px) {
  nav.links {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: var(--cover);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 28px 28px;
    gap: 16px;
    border-bottom: 1px solid var(--line-cover);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
  }
  nav.links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .menu-toggle {
    display: block;
  }
  .nav > .btn-amber {
    display: none;
  }
  .nav-cta-mobile {
    display: inline-flex;
  }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: 88px 0 64px;
  overflow: hidden;
  background:
    radial-gradient(
      60% 90% at 78% 8%,
      rgba(196, 145, 60, 0.16),
      transparent 60%
    ),
    linear-gradient(
      155deg,
      var(--cover-2) 0%,
      var(--cover) 62%,
      var(--primary-deep) 100%
    );
  color: var(--ink-cover);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(237, 228, 204, 0.05) 1px,
    transparent 0
  );
  background-size: 16px 16px;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}
.hero .eyebrow {
  color: var(--accent-bright);
}
.hero .eyebrow::before {
  background: var(--accent-bright);
}
.hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.5rem);
  max-width: 14ch;
  color: var(--ink-cover);
}
.hero h1 em {
  font-style: normal;
  color: var(--accent-bright);
}
.hero p.lead {
  font-size: 1.08rem;
  color: var(--ink-cover-soft);
  max-width: 44ch;
  margin: 18px 0 30px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.stat-row {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line-cover);
  padding-top: 24px;
}
.stat b {
  font-family: "Fraunces", serif;
  font-size: 1.7rem;
  color: var(--accent-bright);
  display: block;
}
.stat span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-cover-soft);
}

.rings-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rings-wrap::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(227, 181, 100, 0.28),
    transparent 70%
  );
  filter: blur(6px);
}
.rings-wrap svg {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: auto;
}
.ring {
  transform-origin: 210px 210px;
}
.ring-1 {
  animation: spin 90s linear infinite;
}
.ring-2 {
  animation: spin 130s linear infinite reverse;
}
.ring-3 {
  animation: spin 70s linear infinite;
}
.dial-pulse {
  animation: pulse 3.2s ease-in-out infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

.hero-slides {
  display: grid;
}
.hero-slide {
  grid-area: 1/1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-slide.active > * {
  animation: heroRise 0.65s cubic-bezier(0.2, 0.7, 0.3, 1) both;
}
.hero-slide.active > *:nth-child(1) {
  animation-delay: 0.05s;
}
.hero-slide.active > *:nth-child(2) {
  animation-delay: 0.14s;
}
.hero-slide.active > *:nth-child(3) {
  animation-delay: 0.23s;
}
.hero-slide.active > *:nth-child(4) {
  animation-delay: 0.32s;
}
.hero-slide.active > *:nth-child(5) {
  animation-delay: 0.41s;
}

.hero-controls {
  margin-top: 8px;
}
.hero-dots {
  display: flex;
  gap: 9px;
  margin-bottom: 14px;
}
.hero-dot {
  width: 26px;
  height: 3px;
  background: var(--line-cover);
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: 2px;
  transition: background 0.2s ease;
}
.hero-dot:hover {
  background: var(--accent-soft);
}
.hero-dot.active {
  background: var(--accent-bright);
}
.hero-progress {
  height: 2px;
  background: var(--line-cover);
  width: 150px;
  overflow: hidden;
  border-radius: 2px;
}
.hero-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--accent-bright);
}
.hero-progress-bar.animate {
  transition: width linear;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-cover);
  background: rgba(20, 33, 24, 0.55);
  color: var(--ink-cover);
  font-size: 1.3rem;
  line-height: 1;
  font-family: "Work Sans", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}
.hero-arrow:hover {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
}
.hero-arrow-prev {
  left: 14px;
}
.hero-arrow-next {
  right: 14px;
}
@media (max-width: 720px) {
  .hero-arrow {
    display: none;
  }
}

/* ---- Section headers ---- */
.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}
.section-head p {
  color: var(--ink-soft);
}

/* ---- About ---- */
.about {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 820px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.about-figure {
  position: relative;
  border: 1px solid var(--line);
  padding: 20px;
  background: var(--bg);
}
.about-figure::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 24px;
  width: 34px;
  height: 8px;
  background: var(--accent);
}
.about-figure h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.about-figure .role {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.about-figure p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.credentials {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  border-top: 1px solid var(--line);
}
.credentials li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
}
.credentials li span:first-child {
  color: var(--ink-soft);
}
.credentials li span:last-child {
  font-family: "IBM Plex Mono", monospace;
  color: var(--rust);
}
.about-body p {
  margin: 0 0 18px;
  color: var(--ink-soft);
}
.about-body p:first-of-type {
  color: var(--ink);
  font-size: 1.05rem;
}
.about-divider-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 12px 0 28px;
}
.about-divider-heading h2 {
  margin: 0;
  font-size: 1.4rem;
  color: var(--primary-deep);
  white-space: nowrap;
}
.about-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 0;
  width: 100%;
  max-width: 100%;
}
.team-card {
  min-height: 100%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(20, 33, 24, 0.08);
}
.team-card-1 {
  background: linear-gradient(180deg, #f6ead3 0%, #efe4c8 100%);
}
.team-card-2 {
  background: linear-gradient(180deg, #e6f0e9 0%, #dde6de 100%);
}
.team-card-3 {
  background: linear-gradient(180deg, #f3dfcf 0%, #ecd8bf 100%);
}
.team-avatar {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  margin: -20px -20px 12px;
  border-bottom: 1px solid rgba(36, 27, 14, 0.1);
}
@media (max-width: 640px) {
  .team-avatar {
    height: 280px;
  }
}
.about-team-grid .about-figure h1 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.about-team-grid .about-figure small {
  color: var(--ink-soft);
}
@media (max-width: 920px) {
  .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .about-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---- Treatments ---- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 820px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}
.care-card {
  position: relative;
  background: var(--surface);
  padding: 32px 26px 26px;
  transition: background 0.2s ease;
}
.care-card:hover {
  background: var(--panel);
}
.care-card .n {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  color: var(--rust);
  letter-spacing: 0.06em;
}
.care-card h3 {
  font-size: 1.08rem;
  margin: 10px 0 8px;
}
.care-card p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin: 0;
}

/* ---- Process ---- */
.process {
  background:
    radial-gradient(
      50% 70% at 90% 100%,
      rgba(196, 145, 60, 0.1),
      transparent 60%
    ),
    var(--cover);
  color: var(--ink-cover);
}
.process .section-head h2,
.process .section-head p {
  color: var(--ink-cover);
}
.process .section-head p {
  opacity: 0.75;
}
.process .eyebrow {
  color: var(--accent-bright);
}
.process .eyebrow::before {
  background: var(--accent-bright);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 920px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .steps {
    grid-template-columns: 1fr;
  }
}
.step {
  border-top: 1px solid var(--line-cover);
  padding-top: 18px;
}
.step .idx {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  color: var(--accent-bright);
}
.step h4 {
  color: var(--ink-cover);
  margin: 10px 0 8px;
  font-size: 1.02rem;
}
.step p {
  color: var(--ink-cover-soft);
  font-size: 0.88rem;
  margin: 0;
}

/* ---- Testimonials ---- */
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 920px) {
  .t-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .t-grid {
    grid-template-columns: 1fr;
  }
}
.t-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 28px 26px 22px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.t-card::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 16px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--panel);
}
.t-card .quote {
  font-family: "Fraunces", serif;
  font-size: 1.02rem;
  color: var(--ink);
  flex: 1;
}
.t-card .who {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--rust);
}

/* ---- Appointment ---- */
.appt {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.appt-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--surface);
}
@media (max-width: 920px) {
  .appt-shell {
    grid-template-columns: 1fr;
  }
}
.appt-side {
  background:
    radial-gradient(
      120% 100% at 0% 0%,
      rgba(196, 145, 60, 0.12),
      transparent 55%
    ),
    var(--cover);
  color: var(--ink-cover);
  padding: 46px 38px;
}
.appt-side h3 {
  color: var(--ink-cover);
  font-size: 1.4rem;
}
.appt-side p {
  color: var(--ink-cover-soft);
  font-size: 0.92rem;
}
.appt-side ul {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}
.appt-side li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line-cover);
  font-size: 0.87rem;
  color: var(--ink-cover-soft);
}
.appt-side li b {
  color: var(--accent-bright);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  font-size: 0.78rem;
}
.appt-form {
  padding: 44px 38px;
}
.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 560px) {
  .f-row {
    grid-template-columns: 1fr;
  }
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  padding: 12px 13px;
  font-family: "Work Sans", sans-serif;
  font-size: 0.94rem;
  border-radius: var(--radius);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}
.field textarea {
  resize: vertical;
  min-height: 88px;
}
.radio-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.radio-chip {
  position: relative;
}
.radio-chip input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}
.radio-chip span {
  display: block;
  padding: 10px 16px;
  border: 1px solid var(--line);
  font-size: 0.85rem;
  cursor: pointer;
  font-family: "IBM Plex Mono", monospace;
  background: var(--surface);
}
.radio-chip input:checked + span {
  background: var(--primary-deep);
  color: var(--ink-cover);
  border-color: var(--primary-deep);
}
.radio-chip input:focus-visible + span {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.slot-legend {
  display: flex;
  gap: 16px;
  font-size: 0.76rem;
  color: var(--ink-soft);
  margin: 2px 0 12px;
}
.slot-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}
.dot.open {
  background: var(--accent);
}
.dot.taken {
  background: var(--line);
}
.slot-group {
  margin-bottom: 16px;
}
.slot-group h5 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--rust);
  margin: 0 0 10px;
}
.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (max-width: 480px) {
  .slot-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.slot-btn {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 9px 6px;
  text-align: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  cursor: pointer;
  color: var(--ink);
  border-radius: var(--radius);
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}
.slot-btn:hover:not(:disabled) {
  border-color: var(--accent);
  background: var(--panel);
}
.slot-btn.selected {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary-deep);
  font-weight: 600;
}
.slot-btn:disabled {
  opacity: 0.35;
  text-decoration: line-through;
  cursor: not-allowed;
}

.form-msg {
  font-size: 0.85rem;
  padding: 12px 14px;
  border-left: 3px solid var(--error);
  background: #f6e7e2;
  color: var(--error);
  display: none;
  margin-bottom: 16px;
}
.form-msg.show {
  display: block;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.success-state {
  display: none;
  border: 1px solid var(--accent);
  background: linear-gradient(180deg, #f7efda, #efe4c8);
  padding: 26px;
  margin-top: 8px;
}
.success-state.show {
  display: block;
}
.success-state h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.success-state p {
  margin: 0 0 10px;
  color: var(--ink-soft);
}
.success-state .success-note {
  color: var(--ink);
  font-size: 0.92rem;
}
.appt-form.is-success .form-fields {
  display: none;
}
.appt-form.is-success .success-state {
  display: block;
}

.confirm {
  display: none;
  border: 1px solid var(--accent);
  background: var(--panel);
  padding: 26px;
  margin-top: 8px;
}
.confirm.show {
  display: block;
}
.confirm h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.confirm .ref {
  font-family: "IBM Plex Mono", monospace;
  color: var(--rust);
}
.confirm dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 16px;
  margin: 16px 0;
  font-size: 0.88rem;
}
.confirm dt {
  color: var(--ink-soft);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  text-transform: uppercase;
  align-self: baseline;
  padding-top: 2px;
}
.confirm dd {
  margin: 0;
}
.confirm-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 780px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact-card {
  background: var(--surface);
  padding: 36px;
}
.contact-card h3 {
  font-size: 1.1rem;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.contact-list li {
  display: flex;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}
.contact-list li b {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 3px;
}
.map-block {
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  padding: 36px;
  text-align: center;
}
.map-block p {
  color: var(--ink-soft);
  font-size: 0.85rem;
  max-width: 26ch;
  margin: 10px auto 0;
}

/* ---- Footer ---- */
footer {
  background:
    radial-gradient(
      60% 90% at 15% 0%,
      rgba(196, 145, 60, 0.08),
      transparent 60%
    ),
    var(--cover);
  color: var(--ink-cover-soft);
  padding: 56px 0 28px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line-cover);
}
@media (max-width: 720px) {
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.foot-brand .brand-text {
  color: var(--ink-cover);
}
footer h5 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-bright);
  margin: 0 0 14px;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer li {
  margin-bottom: 10px;
  font-size: 0.88rem;
}
footer a {
  text-decoration: none;
  color: var(--ink-cover-soft);
}
footer a:hover {
  color: var(--ink-cover);
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  font-size: 0.78rem;
  font-family: "IBM Plex Mono", monospace;
  color: rgba(237, 228, 204, 0.45);
}
