/* ==========================================================================
   Arna Collective — design system
   Palette sampled directly from the supplied logo artwork:
   ivory #FEFBF2 · forest #203F28 · bronze #977346
   ========================================================================== */

/* ---------- Fonts (self-hosted, no third-party requests) ---------- */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/assets/fonts/cormorant-garamond-latin.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('/assets/fonts/cormorant-garamond-latin-ext.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Jost';
  src: url('/assets/fonts/jost-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Jost';
  src: url('/assets/fonts/jost-latin-ext.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Tokens ---------- */
:root {
  --ivory: #fefbf2;
  --ivory-warm: #f7f2e5;
  --ivory-deep: #efe8d8;
  --forest: #203f28;
  --forest-deep: #17301d;
  --forest-mid: #3a5c43;
  --bronze: #977346;
  --bronze-text: #7a5a33; /* 6.1:1 on ivory — safe for small text */
  --bronze-light: #cda478; /* 5.1:1 on forest */
  --body: #414a3f;
  --line: #e2dbc9;
  --line-strong: #cfc5ad;

  --serif: 'Cormorant Garamond', 'Iowan Old Style', Palatino, Georgia, serif;
  --sans: 'Jost', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;

  --wrap: 1180px;
  --gut: clamp(1.25rem, 4vw, 3rem);
  --sect: clamp(3.75rem, 8vw, 7rem);
  --radius: 2px;
  --shadow: 0 18px 50px -28px rgba(23, 48, 29, 0.38);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--body);
  font-family: var(--sans);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.75;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  color: var(--forest);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.008em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.35rem, 1.5rem + 3.6vw, 4.15rem);
}
h2 {
  font-size: clamp(1.85rem, 1.3rem + 2.1vw, 2.85rem);
}
h3 {
  font-size: clamp(1.3rem, 1.15rem + 0.7vw, 1.6rem);
}
h4 {
  font-size: 1.1rem;
}

p {
  margin: 0 0 1.15em;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--forest);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}
a:hover {
  color: var(--bronze-text);
}

ul,
ol {
  margin: 0 0 1.15em;
  padding-left: 1.15rem;
}
li {
  margin-bottom: 0.4em;
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: var(--sect) 0;
}

:focus-visible {
  outline: 3px solid var(--bronze-text);
  outline-offset: 3px;
  border-radius: 1px;
}

::selection {
  background: var(--forest);
  color: var(--ivory);
}

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.wrap--narrow {
  max-width: 760px;
}

.section {
  padding-block: var(--sect);
}
.section--tight {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.section--warm {
  background: var(--ivory-warm);
}
.section--forest {
  background: var(--forest);
  color: #eee8d9;
}
.section--forest h2,
.section--forest h3 {
  color: var(--ivory);
}
.section--forest a {
  color: var(--bronze-light);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--bronze-text);
  margin: 0 0 1.1rem;
}
.section--forest .eyebrow {
  color: var(--bronze-light);
}

.lede {
  font-size: clamp(1.075rem, 1rem + 0.45vw, 1.3rem);
  line-height: 1.6;
  color: #3a4338;
  max-width: 62ch;
}
.section--forest .lede {
  color: #ddd7c6;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -100px;
  z-index: 200;
  background: var(--forest);
  color: var(--ivory);
  padding: 0.7rem 1.1rem;
  font-size: 0.875rem;
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 0.75rem;
  color: var(--ivory);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.6rem;
  border: 1px solid var(--forest);
  border-radius: var(--radius);
  background: var(--forest);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}
.btn:hover {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  color: var(--ivory);
}

.btn--ghost {
  background: transparent;
  color: var(--forest);
}
.btn--ghost:hover {
  background: var(--forest);
  color: var(--ivory);
}

.btn--bronze {
  background: var(--bronze-text);
  border-color: var(--bronze-text);
  color: #fffdf7;
}
.btn--bronze:hover {
  background: #674b2a;
  border-color: #674b2a;
}

.btn--on-forest {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--forest);
}
.btn--on-forest:hover {
  background: var(--bronze-light);
  border-color: var(--bronze-light);
  color: var(--forest-deep);
}

.btn--ghost-on-forest {
  background: transparent;
  border-color: rgba(254, 251, 242, 0.55);
  color: var(--ivory);
}
.btn--ghost-on-forest:hover {
  background: rgba(254, 251, 242, 0.12);
  border-color: var(--ivory);
  color: var(--ivory);
}

.btn[disabled],
.btn[aria-disabled='true'] {
  opacity: 0.6;
  cursor: progress;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 2rem;
}

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze-text);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 0.3rem;
  min-height: 32px;
}
.textlink:hover {
  color: var(--forest);
  border-bottom-color: var(--forest);
}
.textlink::after {
  content: '→';
  font-size: 1rem;
  line-height: 1;
}

/* ---------- Header ---------- */
.site-header {
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
  padding-block: 0.85rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
}
.brand img {
  width: auto;
  height: clamp(26px, 6.4vw, 38px);
}

.site-nav {
  flex: 1 1 100%;
  order: 3;
  border-top: 1px solid var(--line);
  padding-top: 0.7rem;
}
.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav li {
  margin: 0;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.site-nav a:hover {
  color: var(--bronze-text);
  border-bottom-color: var(--bronze);
}
.site-nav a[aria-current='page'] {
  color: var(--bronze-text);
  border-bottom-color: var(--bronze-text);
}

.site-header .btn {
  order: 2;
  margin-left: auto;
  min-height: 42px;
  padding: 0.5rem 1.05rem;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
}

@media (min-width: 62rem) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
  }
  .site-header__inner {
    padding-block: 1.1rem;
    flex-wrap: nowrap;
  }
  .site-nav {
    flex: 1 1 auto;
    order: 0;
    border-top: 0;
    padding-top: 0;
    display: flex;
    justify-content: flex-end;
  }
  .site-nav ul {
    gap: 2rem;
  }
  .site-header .btn {
    order: 0;
    margin-left: 0;
    min-height: 46px;
    font-size: 0.75rem;
  }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}
.hero__grid {
  display: grid;
  gap: 0;
}
.hero__copy {
  padding: clamp(2.5rem, 7vw, 4.75rem) var(--gut) clamp(2.75rem, 7vw, 4.75rem);
  max-width: 44rem;
  margin-inline: auto;
  width: 100%;
}
.hero__copy h1 {
  margin-bottom: 1.1rem;
}
.hero__media {
  position: relative;
  background: var(--ivory-deep);
}
.hero__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: 50% 42%;
}
.hero__note {
  margin-top: 2rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze-text);
}

@media (min-width: 60rem) {
  .hero__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: stretch;
  }
  .hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-inline: clamp(2rem, 4.5vw, 4rem);
    margin-inline: 0;
    max-width: none;
  }
  .hero__media img {
    height: 100%;
    min-height: 34rem;
    max-height: 43rem;
    aspect-ratio: auto;
    object-position: 50% 45%;
  }
}

/* ---------- Page header (interior pages) ---------- */
.page-head {
  background: var(--ivory-warm);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(2.75rem, 6vw, 4.75rem);
}
.page-head h1 {
  margin-bottom: 1rem;
}

/* ---------- Feature band (image + copy) ---------- */
.feature {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}
@media (min-width: 58rem) {
  .feature {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature--flip .feature__media {
    order: 2;
  }
}
.feature__media img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--ivory-deep);
}
.feature__media--tall img {
  aspect-ratio: 4 / 5;
}
.feature__media--portrait img {
  aspect-ratio: 5 / 6;
  object-position: 50% 35%;
}

figure {
  margin: 0;
}
figcaption {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #59614f;
}

/* ---------- Service cards ---------- */
.cards {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}
@media (min-width: 48rem) {
  .cards--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .cards--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--ivory);
  border: 1px solid var(--line);
}
.section--warm .card {
  background: var(--ivory);
}
.card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--ivory-deep);
}
.card__body {
  padding: clamp(1.4rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card__body h3 {
  margin-bottom: 0.65rem;
}
.card__body p {
  font-size: 0.97rem;
}
.card__body .textlink {
  margin-top: auto;
  align-self: flex-start;
  padding-top: 1.35rem;
}

/* ---------- Process ---------- */
.steps {
  display: grid;
  gap: clamp(1.75rem, 3.5vw, 2.5rem);
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 48rem) {
  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.steps li {
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(254, 251, 242, 0.28);
}
.steps li::before {
  counter-increment: step;
  content: '0' counter(step);
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--bronze-light);
  margin-bottom: 0.6rem;
  line-height: 1;
}
.steps h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.steps p {
  font-size: 0.95rem;
  color: #d9d3c2;
}

/* ---------- Detail list (services extras, designer points) ---------- */
.detail-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 46rem) {
  .detail-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .detail-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.detail-grid li {
  margin: 0;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line-strong);
}
.detail-grid h3 {
  font-size: 1.16rem;
  margin-bottom: 0.45rem;
}
.detail-grid p {
  font-size: 0.95rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}
.pill-list li {
  margin: 0;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: #4d5549;
  background: var(--ivory);
}

/* ---------- Service sections (Services page) ---------- */
.service-block {
  padding-block: var(--sect);
  border-bottom: 1px solid var(--line);
}
.service-block:last-of-type {
  border-bottom: 0;
}
.service-block__extras {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-strong);
}
.service-block__extras h3 {
  font-size: 1.1rem;
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  gap: clamp(0.9rem, 2vw, 1.5rem);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 17rem), 1fr));
}
.gallery__item {
  margin: 0;
}
.gallery__link {
  display: block;
  position: relative;
  background: var(--ivory-deep);
  text-decoration: none;
  border: 1px solid var(--line);
}
.gallery__link img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: opacity 0.25s ease;
}
.gallery__link:hover img {
  opacity: 0.88;
}
.gallery__item figcaption {
  font-size: 0.8rem;
  color: #59614f;
}
.gallery__zoom {
  position: absolute;
  inset-inline-end: 0.6rem;
  inset-block-end: 0.6rem;
  background: rgba(32, 63, 40, 0.88);
  color: var(--ivory);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.6rem;
}

/* Lightbox dialog */
.lightbox {
  border: 0;
  padding: 0;
  max-width: min(94vw, 1100px);
  max-height: 94vh;
  width: min(94vw, 1100px);
  background: var(--ivory);
  color: var(--body);
  box-shadow: 0 30px 90px -20px rgba(0, 0, 0, 0.55);
}
.lightbox::backdrop {
  background: rgba(23, 48, 29, 0.86);
}
.lightbox__inner {
  display: flex;
  flex-direction: column;
  max-height: 94vh;
}
.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: var(--ivory-deep);
}
.lightbox__bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border-top: 1px solid var(--line);
}
.lightbox__caption {
  font-size: 0.85rem;
  margin: 0;
}
.lightbox__close {
  flex: 0 0 auto;
  min-height: 44px;
  min-width: 44px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--forest);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.5rem 0.9rem;
}
.lightbox__close:hover {
  background: var(--forest);
  color: var(--ivory);
}

/* ---------- Contact details ---------- */
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-list li {
  margin: 0;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-list li:first-child {
  padding-top: 0;
}
.contact-list dt,
.contact-list .label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze-text);
  margin-bottom: 0.3rem;
}
.contact-list a {
  font-size: 1.05rem;
  color: var(--forest);
}

.notice {
  border-left: 3px solid var(--bronze);
  background: var(--ivory-warm);
  padding: 1.1rem 1.25rem;
  font-size: 0.93rem;
}
.notice strong {
  color: var(--forest);
}

/* ---------- Form ---------- */
.form-shell {
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: clamp(1.4rem, 4vw, 2.75rem);
}

fieldset {
  border: 0;
  margin: 0 0 2.25rem;
  padding: 0;
  min-width: 0;
}
fieldset:last-of-type {
  margin-bottom: 1.5rem;
}
legend {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--forest);
  padding: 0;
  margin-bottom: 0.35rem;
}
.fieldset-hint {
  font-size: 0.9rem;
  color: #5a624f;
  margin: 0 0 1.4rem;
}

.field-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 40rem) {
  .field-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}
.field--full {
  grid-column: 1 / -1;
}

.field label,
.field .field-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
}
.field .opt {
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: none;
  color: #6b7264;
}
.field .hint {
  font-size: 0.82rem;
  line-height: 1.5;
  color: #5a624f;
}

input[type='text'],
input[type='email'],
input[type='tel'],
input[type='url'],
input[type='date'],
input[type='file'],
select,
textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--forest);
  background: #fffdf7;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 0.75rem 0.85rem;
  min-height: 48px;
  width: 100%;
  max-width: 100%;
}
textarea {
  min-height: 8.5rem;
  line-height: 1.65;
  resize: vertical;
}
select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--forest) 50%),
    linear-gradient(135deg, var(--forest) 50%, transparent 50%);
  background-position:
    calc(100% - 1.15rem) calc(50% + 1px),
    calc(100% - 0.8rem) calc(50% + 1px);
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
}
input[type='file'] {
  padding: 0.6rem 0.7rem;
  line-height: 1.4;
}
input:hover,
select:hover,
textarea:hover {
  border-color: var(--bronze);
}
input[aria-invalid='true'],
select[aria-invalid='true'],
textarea[aria-invalid='true'] {
  border-color: #9c3a21;
  border-width: 2px;
  background: #fdf5f1;
}

.error-text {
  font-size: 0.83rem;
  line-height: 1.45;
  color: #8f3520;
  font-weight: 500;
}
.error-text:empty {
  display: none;
}

.radio-set {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 46rem) {
  .radio-set {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.radio-card {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  border: 1px solid var(--line-strong);
  background: #fffdf7;
  padding: 0.95rem 1rem;
  cursor: pointer;
  min-height: 48px;
}
.radio-card input {
  margin: 0.15rem 0 0;
  width: 1.15rem;
  height: 1.15rem;
  min-height: 0;
  flex: 0 0 auto;
  accent-color: var(--forest);
}
.radio-card .rc-title {
  display: block;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--forest);
  text-transform: none;
}
.radio-card .rc-note {
  display: block;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #5a624f;
}
.radio-card:hover {
  border-color: var(--bronze);
}
.radio-card:has(input:checked) {
  border-color: var(--forest);
  border-width: 2px;
  padding: calc(0.95rem - 1px) calc(1rem - 1px);
  background: var(--ivory-warm);
}
.radio-card:focus-within {
  outline: 3px solid var(--bronze-text);
  outline-offset: 2px;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  line-height: 1.55;
}
.checkbox-row input {
  width: 1.15rem;
  height: 1.15rem;
  min-height: 0;
  margin: 0.2rem 0 0;
  flex: 0 0 auto;
  accent-color: var(--forest);
}

.hp {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

.form-status {
  margin-bottom: 1.5rem;
  padding: 1rem 1.15rem;
  font-size: 0.95rem;
  line-height: 1.6;
  border-left: 3px solid #9c3a21;
  background: #fdf3ef;
  color: #74301c;
}
.form-status[hidden] {
  display: none;
}
.form-status strong {
  color: #5f2715;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.25rem;
  padding-top: 0.5rem;
}
.form-actions .fine {
  font-size: 0.82rem;
  line-height: 1.5;
  color: #5a624f;
  margin: 0;
  flex: 1 1 15rem;
}

.spinner {
  width: 0.9rem;
  height: 0.9rem;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--forest);
  color: #d9d3c2;
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  font-size: 0.93rem;
}
.site-footer a {
  color: #e8e2d1;
}
.site-footer a:hover {
  color: var(--bronze-light);
}
.footer-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 48rem) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
}
.site-footer img.footer-logo {
  width: clamp(150px, 40vw, 210px);
  height: auto;
  margin-bottom: 1.35rem;
}
.site-footer h2 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--bronze-light);
  margin: 0 0 1rem;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer ul li {
  margin-bottom: 0.55rem;
}
.site-footer address {
  font-style: normal;
  line-height: 1.7;
}
.footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(254, 251, 242, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.75rem;
  align-items: center;
  font-size: 0.82rem;
  color: #bdb6a4;
}
.footer-bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
}
.footer-bottom ul li {
  margin: 0;
}
.footer-bottom p {
  margin: 0;
}

/* ---------- Utilities ---------- */
.stack > * + * {
  margin-top: 1.15rem;
}
.mt-0 {
  margin-top: 0;
}
.mt-2 {
  margin-top: 2rem;
}
.mt-3 {
  margin-top: 3rem;
}
.center {
  text-align: center;
}
.center .lede,
.center .eyebrow {
  margin-inline: auto;
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.section-head {
  max-width: 44rem;
  margin-bottom: clamp(2.25rem, 4vw, 3.25rem);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.error-page {
  padding-block: clamp(4rem, 12vw, 8rem);
  text-align: center;
}
.error-page .code {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 12vw, 6rem);
  color: var(--bronze);
  line-height: 1;
  margin: 0 0 1rem;
}

/* ---------- Motion preferences ---------- */
@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;
  }
  .spinner {
    border-top-color: currentColor;
    opacity: 0.6;
  }
}

/* ---------- Contact layout ---------- */
.contact-layout {
  display: grid;
  gap: clamp(2rem, 4vw, 3.25rem);
  align-items: start;
}
@media (min-width: 64rem) {
  .contact-layout {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  }
}
.contact-aside {
  background: var(--ivory-warm);
  border: 1px solid var(--line);
  padding: clamp(1.4rem, 3vw, 2rem);
}
.contact-aside h2 {
  font-size: 1.45rem;
}
.contact-aside h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.contact-aside .notice {
  background: var(--ivory);
}
.aside-block + .aside-block {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-strong);
}
.contact-list + .aside-block {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-strong);
}

/* ---------- Thank-you page emphasis ---------- */
.notice[data-emphasis='true'] {
  border-left-width: 4px;
  border-left-color: var(--forest);
  background: var(--ivory-deep);
}

/* ---------- Gallery caption spacing ---------- */
.gallery__item figcaption {
  margin-top: 0.7rem;
}

/* ---------- 404 ---------- */
.error-page .contact-list {
  text-align: left;
  max-width: 34rem;
  margin-inline: auto;
}
.error-page .btn-row {
  justify-content: center;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  padding-top: 1.5rem;
}
.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #59614f;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.breadcrumbs li + li::before {
  content: '/';
  color: var(--line-strong);
}
.breadcrumbs a {
  color: #59614f;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--forest);
  border-bottom-color: var(--bronze);
}
.breadcrumbs [aria-current='page'] {
  color: var(--forest);
}

/* ---------- Visible Q&A ---------- */
.faq {
  display: grid;
  gap: 0.85rem;
  max-width: 52rem;
}
.faq__item {
  border: 1px solid var(--line);
  background: var(--ivory-deep);
}
.faq__item > summary {
  cursor: pointer;
  padding: 1.05rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--forest);
  display: flex;
  gap: 0.9rem;
  align-items: baseline;
  justify-content: space-between;
  list-style: none;
}
.faq__item > summary::-webkit-details-marker {
  display: none;
}
.faq__item > summary::after {
  content: '+';
  font-size: 1.2rem;
  line-height: 1;
  color: var(--bronze);
  flex: none;
}
.faq__item[open] > summary::after {
  content: '\2013';
}
.faq__item > summary:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 2px;
}
.faq__answer {
  padding: 0 1.25rem 1.2rem;
}
.faq__answer > :first-child {
  margin-top: 0;
}
.faq__answer > :last-child {
  margin-bottom: 0;
}
.faq__answer p,
.faq__answer li {
  font-size: 0.97rem;
}

/* ---------- Service area block ---------- */
.area {
  border: 1px solid var(--line);
  background: var(--ivory-deep);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.area__grid {
  display: grid;
  gap: clamp(1.1rem, 3vw, 2rem);
}
@media (min-width: 48rem) {
  .area__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.area__item h3 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze);
  margin: 0 0 0.5rem;
}
.area__item p {
  margin: 0;
  font-size: 0.97rem;
}
.area__note {
  margin: clamp(1.2rem, 3vw, 1.8rem) 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-strong);
  font-size: 0.92rem;
  color: #59614f;
}

/* ---------- Gallery focal points on small screens ---------- */
@media (max-width: 40rem) {
  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery__link img {
    aspect-ratio: auto;
    object-fit: contain;
    height: auto;
  }
}

/* ---------- Image captions ---------- */
.caption {
  margin: 0.7rem 0 0;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  line-height: 1.55;
  color: #59614f;
}
