/* ============================================================
   Brooks Behavioral Group — design tokens
   A near-black emerald and brushed gold, set in a high-contrast
   Didone — the register of a couture house, not a clinic or a
   SaaS product. Bodoni Moda carries the voice; Jost stays quiet.
   ============================================================ */

:root {
  /* Color */
  --noir: #071a15;
  --emerald-900: #0c2a21;
  --emerald-800: #123c2e;
  --emerald-700: #1d5340;
  --emerald-600: #2c6b53;
  --gold-600: #7e5f2e; /* AA-safe gold-on-ivory text (~5.3:1) */
  --gold-500: #c9a24e;
  --gold-400: #ddba71;
  --gold-100: #f1e2ba;
  --ivory-100: #f7f2e6;
  --ivory-50: #fbf8f1;
  --ink-900: #14201a;
  --ink-700: #3d4a41;
  --cream-text: #f1ead9;
  --cream-text-dim: #cabfa2;

  /* Type */
  --font-display: "Bodoni Moda", "Didot", "Bodoni MT", Georgia, serif;
  --font-body: "Jost", "Century Gothic", "Futura", sans-serif;

  /* Scale */
  --step-h1: clamp(3.2rem, 2.1rem + 4.6vw, 6.75rem);
  --step-h2: clamp(2.25rem, 1.7rem + 2.4vw, 3.6rem);
  --step-h3: 1.4rem;
  --step-lead: clamp(1.15rem, 1.05rem + 0.4vw, 1.35rem);
  --step-body: 1.0625rem;
  --step-small: 0.875rem;
  --step-label: 0.75rem;

  /* Rhythm */
  --content-max: 72rem;
  --measure: 62ch;
  --space-section: clamp(4.5rem, 4rem + 3vw, 7.5rem);
  --radius: 1px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Native cross-document transitions — Home <-> Contact cross-fades
   instead of hard-cutting. No-op (progressive enhancement) in
   browsers that don't yet support it. */
@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: veil-out 0.5s var(--ease) forwards;
}

::view-transition-new(root) {
  animation: veil-in 0.55s var(--ease) 0.08s backwards;
}

@keyframes veil-out {
  to {
    opacity: 0;
    transform: scale(0.992);
  }
}

@keyframes veil-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation: none;
  }
}

/* ---------------- Reset ---------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory-100);
  color: var(--ink-900);
  font-family: var(--font-body);
  font-size: var(--step-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------------- Type primitives ---------------- */

.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.label {
  font-family: var(--font-body);
  font-size: var(--step-label);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lede {
  font-size: var(--step-lead);
  line-height: 1.55;
  max-width: var(--measure);
}

.measure {
  max-width: var(--measure);
}

/* ---------------- Layout ---------------- */

.wrap {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 1rem + 2vw, 3rem);
}

.section {
  padding-block: var(--space-section);
}

.section--tight {
  padding-block: clamp(3rem, 2.6rem + 1.6vw, 4.5rem);
}

.section--emerald {
  background: var(--emerald-900);
  color: var(--cream-text);
}

.section--ivory {
  background: var(--ivory-100);
  color: var(--ink-900);
}

.hairline {
  border: 0;
  border-top: 1px solid rgba(201, 162, 78, 0.35);
  margin: 0;
}

.hairline--dark {
  border-top-color: rgba(201, 162, 78, 0.28);
}

/* Fine brass-inlay divider with a small diamond mark, used once
   between major sections — not a repeating decorative eyebrow. */
.ornament-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gold-500);
}

.ornament-rule::before,
.ornament-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}

.ornament-rule__mark {
  width: 7px;
  height: 7px;
  border: 1px solid currentColor;
  transform: rotate(45deg);
  flex: none;
}

/* ---------------- Buttons ---------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.9rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease);
  white-space: nowrap;
}

.btn--gold {
  background: transparent;
  border-color: var(--gold-400);
  color: var(--gold-400);
}

.btn--gold:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  color: var(--emerald-900);
}

.btn--ghost-dark {
  border-color: rgba(22, 33, 27, 0.35);
  color: var(--ink-900);
}

.btn--ghost-dark:hover {
  background: var(--ink-900);
  color: var(--ivory-100);
  border-color: var(--ink-900);
}

.btn--text {
  padding: 0.4rem 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
}

/* ============================================================
   Header
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 242, 230, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(201, 162, 78, 0.4);
  view-transition-name: site-header;
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.9rem;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.wordmark__logo {
  height: clamp(34px, 30px + 1.2vw, 44px);
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 1rem + 1vw, 2.25rem);
}

.site-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-700);
  position: relative;
  padding-bottom: 0.2rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold-600);
  transition: right 0.25s var(--ease);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  right: 0;
}

.site-nav a[aria-current="page"] {
  color: var(--ink-900);
}

.site-nav__phone {
  color: var(--gold-600) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 22px;
  height: 1px;
  background: var(--ink-900);
}

@media (max-width: 780px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
    background: var(--ivory-100);
    padding: 1.5rem clamp(1.5rem, 1rem + 2vw, 3rem) 2rem;
    border-bottom: 1px solid rgba(201, 162, 78, 0.4);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease),
      visibility 0.2s;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--noir);
  color: var(--cream-text);
  padding-block: clamp(5rem, 3.8rem + 6vw, 9.5rem) clamp(4rem, 3rem + 4vw, 6.5rem);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 22%;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      100deg,
      rgba(7, 26, 21, 0.96) 0%,
      rgba(7, 26, 21, 0.88) 38%,
      rgba(7, 26, 21, 0.55) 62%,
      rgba(7, 26, 21, 0.32) 100%
    ),
    linear-gradient(
      0deg,
      rgba(7, 26, 21, 0.5) 0%,
      rgba(7, 26, 21, 0) 30%
    );
}

.hero__frame {
  position: relative;
  z-index: 1;
  max-width: 46rem;
}

.hero__eyebrow {
  color: var(--gold-400);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: rise-in 0.8s var(--ease) 0.15s forwards;
}

.hero__title {
  font-size: var(--step-h1);
  line-height: 0.98;
  letter-spacing: -0.015em;
  opacity: 0;
  animation: rise-in 0.9s var(--ease) 0.3s forwards;
}

.hero__rule {
  width: 0;
  height: 1px;
  margin-block: clamp(1.75rem, 1.5rem + 1vw, 2.5rem);
  background: linear-gradient(
    90deg,
    var(--gold-500) 0%,
    rgba(201, 162, 78, 0.15) 100%
  );
  animation: draw-rule 1.1s var(--ease) 0.75s forwards;
}

@keyframes draw-rule {
  to {
    width: clamp(6rem, 5rem + 4vw, 10rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__rule {
    animation: none;
    width: clamp(6rem, 5rem + 4vw, 10rem);
  }
}

.hero__lede {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 300;
  font-size: var(--step-lead);
  line-height: 1.55;
  max-width: 34rem;
  color: var(--cream-text-dim);
  opacity: 0;
  animation: rise-in 0.8s var(--ease) 0.6s forwards;
}

.hero__actions {
  margin-top: 2.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.75rem;
  opacity: 0;
  animation: rise-in 0.8s var(--ease) 0.75s forwards;
}

.hero__call {
  text-decoration: none;
  font-weight: 600;
  color: var(--cream-text);
  border-bottom: 1px solid rgba(239, 233, 219, 0.4);
  padding-bottom: 2px;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand-strip {
  position: relative;
  z-index: 1;
  margin-top: clamp(3.5rem, 3rem + 3vw, 5.5rem);
  color: var(--gold-400);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* ============================================================
   About
   ============================================================ */

.about__grid {
  display: grid;
  grid-template-columns: minmax(14rem, 20rem) 1fr;
  gap: clamp(2.5rem, 2rem + 3vw, 5rem);
  align-items: start;
}

.about__portrait {
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(22, 33, 27, 0.18);
  padding: 10px;
}

.about__portrait-inner {
  height: 100%;
  width: 100%;
  background: linear-gradient(160deg, var(--emerald-800), var(--emerald-900));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  text-align: center;
  padding: 1.5rem;
}

.about__portrait-inner .label {
  color: var(--gold-400);
  opacity: 0.85;
}

/* Photo treated as a cameo/seal medallion, echoing the hero's
   engraved-ring motif instead of a plain rectangular crop. */
.about__photo {
  width: 78%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-500);
  outline: 1px solid rgba(201, 162, 78, 0.45);
  outline-offset: 10px;
}

.about__credential {
  margin-top: 0.6rem;
  color: var(--gold-600);
}

.about__name {
  font-size: clamp(2.5rem, 2rem + 2.4vw, 4rem);
  letter-spacing: -0.01em;
}

.about__dek {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: var(--step-lead);
  line-height: 1.6;
  max-width: var(--measure);
  color: var(--ink-900);
  margin-top: 1.5rem;
}

.about__bio {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  color: var(--ink-700);
}

.fact-list {
  margin-top: 2.75rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem 3rem;
}

.fact-list dt {
  font-family: var(--font-body);
  font-size: var(--step-label);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-600);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(201, 162, 78, 0.35);
  margin-bottom: 0.75rem;
}

.fact-list dd {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.97rem;
  color: var(--ink-700);
}

@media (max-width: 760px) {
  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__portrait {
    max-width: 16rem;
  }

  .fact-list {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   In-home lifestyle banner (full-bleed, between About and Services)
   ============================================================ */

.lifestyle-band {
  position: relative;
  height: clamp(18rem, 14rem + 18vw, 30rem);
  overflow: hidden;
}

.lifestyle-band__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
}

.lifestyle-band__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(7, 26, 21, 0.75) 0%,
    rgba(7, 26, 21, 0.05) 55%
  );
}

.lifestyle-band__caption {
  position: absolute;
  left: clamp(1.5rem, 1rem + 2vw, 3rem);
  bottom: clamp(1.5rem, 1.25rem + 1.5vw, 2.75rem);
  max-width: 26rem;
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 1.1rem + 1.1vw, 1.9rem);
  color: var(--gold-400);
}

/* ============================================================
   Services (menu treatment — a catalog, not a numbered process)
   ============================================================ */

.services__head {
  max-width: 42rem;
}

.services__head .lede {
  margin-top: 1.25rem;
  color: var(--cream-text-dim);
}

.service-explorer {
  margin-top: clamp(3rem, 2.5rem + 2vw, 4.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  align-items: start;
}

.service-explorer__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
  align-items: stretch;
}

.service-group {
  border: 1px solid rgba(201, 162, 78, 0.4);
  padding: clamp(1.25rem, 1rem + 0.75vw, 1.75rem) clamp(0.85rem, 0.7rem + 0.5vw, 1.1rem);
}

@media (max-width: 1180px) {
  .service-explorer__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.menu__group-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 0.95rem + 0.5vw, 1.4rem);
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(201, 162, 78, 0.35);
  margin-bottom: 0.25rem;
  overflow-wrap: break-word;
}

.menu__item {
  display: block;
  width: 100%;
  text-align: left;
  padding-block: 1.1rem;
  border-bottom: 1px solid rgba(201, 162, 78, 0.16);
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--cream-text-dim);
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}

li:last-child > .menu__item {
  border-bottom: none;
}

.menu__item:hover,
.menu__item:focus-visible {
  color: var(--gold-400);
  padding-left: 0.5rem;
}

.menu__item.is-active {
  color: var(--cream-text);
  padding-left: 0.5rem;
}

.service-stage {
  position: sticky;
  top: 6rem;
}

.service-stage__frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 78, 0.4);
}

.service-stage__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06) translateX(0);
  opacity: 1;
  transition: opacity 0.55s var(--ease), transform 0.9s var(--ease);
}

.service-stage__img[data-state="leaving-next"] {
  opacity: 0;
  transform: scale(1.1) translateX(-3%);
  transition: opacity 0.35s var(--ease), transform 0.45s var(--ease);
}

.service-stage__img[data-state="leaving-prev"] {
  opacity: 0;
  transform: scale(1.1) translateX(3%);
  transition: opacity 0.35s var(--ease), transform 0.45s var(--ease);
}

.service-stage__img[data-state="entering-next"] {
  opacity: 0;
  transform: scale(1.12) translateX(3%);
  transition: none;
}

.service-stage__img[data-state="entering-prev"] {
  opacity: 0;
  transform: scale(1.12) translateX(-3%);
  transition: none;
}

.service-stage__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 242, 230, 0.5);
  background: rgba(7, 26, 21, 0.35);
  color: var(--cream-text);
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  opacity: 0.85;
  transition: opacity 0.25s var(--ease), background-color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.service-stage__arrow:hover,
.service-stage__arrow:focus-visible {
  opacity: 1;
  background-color: rgba(7, 26, 21, 0.65);
  border-color: var(--gold-400);
}

.service-stage__arrow--prev {
  left: 1rem;
}

.service-stage__arrow--next {
  right: 1rem;
}

.service-stage__foot {
  margin-top: 1.5rem;
}

.service-stage__count {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--gold-400);
}

.service-stage__name {
  margin-top: 0.6rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(201, 162, 78, 0.35);
  font-size: 1.35rem;
  color: var(--cream-text);
}

.service-stage__desc {
  margin-top: 0.6rem;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--cream-text-dim);
}

.service-stage__foot > * {
  transition: opacity 0.4s var(--ease) 0.08s, transform 0.4s var(--ease) 0.08s;
}

.service-stage__foot.is-updating > * {
  opacity: 0;
  transform: translateY(6px);
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .service-stage__img {
    transition: opacity 0.2s linear !important;
    transform: none !important;
  }

  .service-stage__foot > * {
    transition: opacity 0.2s linear !important;
    transform: none !important;
  }
}

@media (max-width: 760px) {
  .service-explorer {
    grid-template-columns: 1fr;
  }

  .service-explorer__list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-stage {
    position: static;
  }

  .service-stage__arrow {
    opacity: 1;
  }
}

.pay-note {
  margin-top: clamp(3rem, 2.5rem + 2vw, 4.5rem);
  padding: clamp(1.75rem, 1.5rem + 1vw, 2.5rem);
  border: 1px solid rgba(201, 162, 78, 0.4);
  display: grid;
  grid-template-columns: minmax(10rem, 14rem) 1fr;
  gap: 1.5rem 2.5rem;
}

.pay-note__title {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--gold-400);
}

.pay-note p {
  color: var(--cream-text-dim);
}

@media (max-width: 700px) {
  .pay-note {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Closing CTA band (index.html)
   ============================================================ */

.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
}

.cta-band__title {
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 1.15rem + 1vw, 1.85rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
  max-width: 30rem;
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  background: var(--ivory-100);
  color: var(--ink-700);
  padding-block: 3rem;
  border-top: 1px solid rgba(201, 162, 78, 0.4);
}

.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 2.5rem;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
}

.site-footer__nav a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--ink-700);
}

.site-footer__nav a:hover {
  color: var(--gold-600);
}

.site-footer__contact {
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: right;
}

.site-footer__contact a {
  text-decoration: none;
  color: var(--gold-600);
}

@media (max-width: 600px) {
  .site-footer__contact {
    text-align: left;
  }
}

.site-footer__bottom {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(201, 162, 78, 0.3);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-700);
}

.site-footer__tagline {
  color: var(--gold-600);
}

/* ============================================================
   Contact page
   ============================================================ */

.contact-hero {
  padding-block: clamp(3.5rem, 3rem + 3vw, 5.5rem) 0;
}

.contact-hero__title {
  font-size: clamp(2.75rem, 2.1rem + 3vw, 4.5rem);
  line-height: 1.02;
  max-width: 30rem;
}

.contact-hero__lede {
  font-family: var(--font-body);
  font-style: italic;
  font-size: var(--step-lead);
  line-height: 1.6;
  margin-top: 1.5rem;
  max-width: 34rem;
  color: var(--ink-700);
}

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 22rem);
  gap: clamp(2.5rem, 2rem + 3vw, 5rem);
  align-items: start;
}

@media (max-width: 860px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}

.form-field {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 520px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-field label {
  display: block;
  font-size: var(--step-label);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-700);
  margin-bottom: 0.5rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.8rem 0.1rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(22, 33, 27, 0.3);
  border-radius: 0;
  transition: border-color 0.2s var(--ease);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--gold-500);
}

.form-field textarea {
  resize: vertical;
  min-height: 7rem;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--ink-700);
}

.info-panel {
  background: var(--emerald-900);
  color: var(--cream-text);
  padding: clamp(1.75rem, 1.5rem + 1vw, 2.5rem);
}

.info-panel__item {
  padding-block: 1.1rem;
  border-bottom: 1px solid rgba(201, 162, 78, 0.25);
}

.info-panel__item:first-of-type {
  padding-top: 0;
}

.info-panel__item:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.info-panel__label {
  color: var(--gold-400);
}

.info-panel__value {
  margin-top: 0.5rem;
}

.info-panel__value a {
  text-decoration: none;
  color: var(--cream-text);
}

.info-panel__value a:hover {
  color: var(--gold-400);
}

.form-status {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status--ok {
  color: #3f6b4e;
}

.form-status--error {
  color: #8a3b2b;
}
