/* ==========================================================================
   Belle's Pantry — site stylesheet
   Southern Gourmet Pantry, Lafayette, Louisiana
   Single stylesheet, no framework. Sections are ordered:
   tokens, reset, typography, layout, components, pages, utilities, media.
   ========================================================================== */

/* --------------------------------------------------------------- fonts -- */

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('/assets/fonts/cormorant-var.woff2') format('woff2');
  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: 'Karla';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/assets/fonts/karla-var.woff2') format('woff2');
  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: 'Parisienne';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/parisienne.woff2') format('woff2');
  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;
}

/* -------------------------------------------------------------- tokens -- */

:root {
  --olive: #4b4c20;
  --olive-deep: #333517;
  --olive-soft: #6f7146;
  --olive-pale: #d9d9c6;
  --rust: #9c5a42;
  --rust-deep: #7b4331;
  --rust-pale: #e6d3c9;
  --cream: #faf5ef;
  --cream-deep: #f3ebdf;
  --sand: #efe4d3;
  --ink: #2b2b22;
  --muted: #6a6a5b;
  --line: #e3dccf;
  --white: #fffdfa;

  --serif: 'Cormorant Garamond', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --sans: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --script: 'Parisienne', 'Snell Roundhand', 'Brush Script MT', cursive;

  --wrap: 1180px;
  --wrap-narrow: 760px;
  --gutter: clamp(1.25rem, 5vw, 3.5rem);
  --section: clamp(4rem, 9vw, 7.5rem);
  --radius: 3px;
  --shadow: 0 18px 44px -28px rgba(51, 53, 23, 0.42);
  --shadow-lift: 0 26px 60px -30px rgba(51, 53, 23, 0.5);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------------------------------------- reset -- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

img {
  height: auto;
}

a {
  color: var(--rust-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--olive);
}

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

ul,
ol {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------------------------------------------------------- typography -- */

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

h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 300;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

h4 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 1.1em;
}

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

.lede {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.65;
  color: var(--muted);
  max-width: 60ch;
}

.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0 0 1.1rem;
}

.eyebrow--rule {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.eyebrow--rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
  max-width: 120px;
}

.script {
  font-family: var(--script);
  font-weight: 400;
  color: var(--rust);
  text-transform: none;
  letter-spacing: 0;
}

.muted {
  color: var(--muted);
}

/* -------------------------------------------------------------- layout -- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wrap--narrow {
  max-width: var(--wrap-narrow);
}

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

.section--tight {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.section--cream {
  background: var(--cream-deep);
}

.section--sand {
  background: var(--sand);
}

.section-head {
  max-width: 44rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head--center .eyebrow--rule {
  justify-content: center;
}

.section-head--center .eyebrow--rule::before,
.section-head--center .eyebrow--rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
  max-width: 90px;
}

.section-head--center .lede {
  margin-inline: auto;
}

.grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(16.5rem, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  background: var(--olive);
  color: var(--cream);
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 1rem;
  color: var(--cream);
}

/* ------------------------------------------------------------- buttons -- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.9rem;
  border: 1px solid var(--olive);
  border-radius: var(--radius);
  background: var(--olive);
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
    border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn:hover {
  background: var(--olive-deep);
  border-color: var(--olive-deep);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--olive-deep);
  border-color: var(--olive-pale);
}

.btn--ghost:hover {
  background: transparent;
  border-color: var(--olive);
  color: var(--olive-deep);
}

.btn--rust {
  background: var(--rust);
  border-color: var(--rust);
}

.btn--rust:hover {
  background: var(--rust-deep);
  border-color: var(--rust-deep);
}

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

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--rust-pale);
  padding-bottom: 0.35rem;
  transition: gap 0.25s var(--ease), border-color 0.25s var(--ease);
}

.link-arrow::after {
  content: '\2192';
  font-size: 0.95rem;
}

.link-arrow:hover {
  gap: 0.85rem;
  border-color: var(--rust);
  color: var(--rust-deep);
}

/* -------------------------------------------------------------- header -- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 239, 0.94);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -26px rgba(51, 53, 23, 0.55);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.brand__mark {
  width: 34px;
  height: 38px;
  flex-shrink: 0;
}

.brand__name {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--olive);
  text-transform: uppercase;
}

.brand__sub {
  display: block;
  font-family: var(--script);
  font-size: 1.35rem;
  line-height: 1;
  color: var(--rust);
  margin-top: -0.1rem;
  margin-left: 1.6rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.1rem);
}

.nav__link {
  position: relative;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive-deep);
  text-decoration: none;
  padding-block: 0.4rem;
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--rust);
  transition: right 0.3s var(--ease);
}

.nav__link:hover::after,
.nav__link[aria-current='page']::after {
  right: 0;
}

.nav__link[aria-current='page'] {
  color: var(--rust-deep);
}

.header__cta {
  padding: 0.72rem 1.35rem;
  font-size: 0.72rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--olive-deep);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(6px);
}

.nav-toggle[aria-expanded='true'] span {
  background: transparent;
}

.nav-toggle[aria-expanded='true'] span::before {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded='true'] span::after {
  transform: rotate(-45deg);
}

/* ---------------------------------------------------------------- hero -- */

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(86vh, 760px);
  display: flex;
  align-items: center;
  padding-block: clamp(4rem, 10vw, 7rem);
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
      100deg,
      rgba(250, 245, 239, 0.97) 0%,
      rgba(250, 245, 239, 0.93) 34%,
      rgba(250, 245, 239, 0.62) 58%,
      rgba(51, 53, 23, 0.14) 100%
    );
}

.hero__inner {
  max-width: 40rem;
}

.hero__seal {
  width: clamp(88px, 12vw, 118px);
  margin-bottom: 1.6rem;
}

.hero h1 {
  margin-bottom: 0.35em;
}

.hero h1 .script {
  display: block;
  font-size: 1.15em;
  line-height: 0.9;
  margin-top: 0.05em;
}

.hero__place {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1.6rem;
}

/* page hero for interior pages */
.page-hero {
  position: relative;
  padding-block: clamp(3.5rem, 8vw, 6rem) clamp(2.5rem, 5vw, 4rem);
  background: var(--cream-deep);
  border-bottom: 1px solid var(--line);
}

.page-hero__inner {
  max-width: 46rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.6rem;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--rust-deep);
}

.breadcrumb li + li::before {
  content: '\2022';
  margin-right: 0.5rem;
  color: var(--olive-pale);
}

/* ------------------------------------------------------------ trustbar -- */

.trustbar {
  background: var(--olive);
  color: var(--cream);
  padding-block: 1.4rem;
}

.trustbar__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.8rem clamp(1.25rem, 3vw, 2.75rem);
  list-style: none;
  text-align: center;
}

.trustbar__list li {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(250, 245, 239, 0.92);
}

.trustbar__list svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  opacity: 0.85;
}

/* --------------------------------------------------------------- cards -- */

.card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--olive-pale);
}

.card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-deep);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.card:hover .card__media img {
  transform: scale(1.045);
}

.card__body {
  padding: 1.6rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__body h3 {
  font-size: clamp(1.3rem, 1.7vw, 1.5rem);
  margin-bottom: 0.5rem;
}

/* keeps the body copy on one baseline when a title wraps to two lines */
@media (min-width: 900px) {
  .grid--4 .card__body h3 {
    min-height: 2.4em;
  }
}

.card__body p {
  color: var(--muted);
  font-size: 0.97rem;
  flex: 1;
}

.card__link {
  margin-top: 1.2rem;
  align-self: flex-start;
}

/* arch-topped feature card */
.arch {
  border-radius: 999px 999px var(--radius) var(--radius);
  overflow: hidden;
}

/* value / feature tile without image */
.tile {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  height: 100%;
}

.tile__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.2rem;
  color: var(--rust);
}

.tile h3,
.tile h2 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.tile p {
  color: var(--muted);
  font-size: 0.97rem;
  margin: 0;
}

.tile--plain {
  background: transparent;
  border: 0;
  padding: 0;
}

/* numbered step */
.step {
  position: relative;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.step__num {
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--rust);
  opacity: 0.55;
  margin-bottom: 0.7rem;
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.step p {
  color: var(--muted);
  font-size: 0.96rem;
  margin: 0;
}

/* ------------------------------------------------------------ splitrow -- */

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.split__media {
  position: relative;
}

.split__media img {
  width: 100%;
  border-radius: var(--radius);
}

.split__media--arch img {
  border-radius: 16rem 16rem var(--radius) var(--radius);
}

.split--reverse .split__media {
  order: 2;
}

.split__badge {
  position: absolute;
  right: -1.25rem;
  bottom: -1.25rem;
  width: clamp(92px, 11vw, 128px);
  background: var(--cream);
  border-radius: 50%;
  padding: 6px;
  box-shadow: var(--shadow);
}

/* ------------------------------------------------------------- feature -- */

.feature {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
  padding-block: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}

.feature:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.feature__media img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.feature--reverse .feature__media {
  order: 2;
}

.feature__body h2 {
  font-size: clamp(1.45rem, 2.2vw, 1.95rem);
  margin-bottom: 0.6rem;
}

.feature__body p {
  color: var(--muted);
}

.feature__list {
  list-style: none;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.5rem;
}

.feature__list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.96rem;
  color: var(--muted);
}

.feature__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border: 1px solid var(--rust);
  border-radius: 50%;
}

/* ------------------------------------------------------------- quotes -- */

.quote-band {
  position: relative;
  isolation: isolate;
  color: var(--cream);
  text-align: center;
  padding-block: clamp(4.5rem, 9vw, 7rem);
  overflow: hidden;
}

.quote-band__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.quote-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-band::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(35, 37, 15, 0.62) 0%,
    rgba(35, 37, 15, 0.44) 45%,
    rgba(35, 37, 15, 0.66) 100%
  );
}

.quote-band blockquote {
  margin: 0 auto;
  max-width: 44rem;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  line-height: 1.32;
  color: var(--cream);
}

.quote-band cite {
  display: block;
  margin-top: 1.6rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust-pale);
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial__stars {
  display: flex;
  gap: 3px;
  color: var(--rust);
  margin-bottom: 1rem;
}

.testimonial__stars svg {
  width: 15px;
  height: 15px;
}

.testimonial blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.24rem;
  line-height: 1.5;
  color: var(--olive-deep);
  flex: 1;
}

.testimonial cite {
  display: block;
  margin-top: 1.3rem;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ----------------------------------------------------------- accordion -- */

.accordion {
  border-top: 1px solid var(--line);
}

.accordion__item {
  border-bottom: 1px solid var(--line);
}

.accordion__trigger {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.3;
  color: var(--olive-deep);
}

.accordion__trigger:hover {
  color: var(--rust-deep);
}

.accordion__icon {
  position: relative;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 0.3rem;
  border: 1px solid var(--olive-pale);
  border-radius: 50%;
}

.accordion__icon::before,
.accordion__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  background: var(--rust);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__trigger[aria-expanded='true'] .accordion__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}

.accordion__panel > div {
  overflow: hidden;
}

.accordion__panel[data-open='true'] {
  grid-template-rows: 1fr;
}

.accordion__panel p {
  color: var(--muted);
  max-width: 62ch;
  padding-bottom: 1.6rem;
}

.accordion__panel p:first-child {
  padding-top: 0.1rem;
}

/* ---------------------------------------------------------------- form -- */

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.75rem);
}

.field {
  margin-bottom: 1.25rem;
}

.field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-deep);
  margin-bottom: 0.5rem;
}

.field .req {
  color: var(--rust);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--olive-soft);
  background: var(--white);
  outline: none;
}

.field input[aria-invalid='true'],
.field textarea[aria-invalid='true'],
.field select[aria-invalid='true'] {
  border-color: #b04a35;
  background: #fdf4f1;
}

.field__error {
  display: none;
  margin-top: 0.4rem;
  font-size: 0.83rem;
  color: #a8402c;
}

.field__error[data-show='true'] {
  display: block;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 0 1.25rem;
}

.field--check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.field--check input {
  width: 18px;
  height: 18px;
  margin-top: 0.28rem;
  flex-shrink: 0;
  accent-color: var(--olive);
}

.field--check label {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
  margin: 0;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin-top: 1.1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.form-status {
  display: none;
  margin-top: 1.4rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.form-status[data-state='ok'] {
  display: block;
  background: #eef1e4;
  border: 1px solid var(--olive-pale);
  color: var(--olive-deep);
}

.form-status[data-state='error'] {
  display: block;
  background: #fdf1ed;
  border: 1px solid var(--rust-pale);
  color: var(--rust-deep);
}

/* ------------------------------------------------------------- contact -- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.info-list {
  list-style: none;
  display: grid;
  gap: 1.6rem;
}

.info-list__item {
  display: flex;
  gap: 1rem;
}

.info-list__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 0.28rem;
  color: var(--rust);
}

.info-list__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.info-list__value {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--olive-deep);
}

.info-list__value a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--rust-pale);
}

.info-list__value a:hover {
  border-color: var(--rust);
}

.hours {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin-top: 0.4rem;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
  border-bottom: 1px dotted var(--line);
  padding-bottom: 0.5rem;
}

.hours strong {
  color: var(--olive-deep);
  font-weight: 500;
}

/* ------------------------------------------------------------- cta band -- */

.cta-band {
  background: var(--olive);
  color: var(--cream);
  text-align: center;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.cta-band h2 {
  color: var(--cream);
}

.cta-band p {
  color: rgba(250, 245, 239, 0.82);
  max-width: 46ch;
  margin-inline: auto;
}

.cta-band .btn {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--olive-deep);
}

.cta-band .btn:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--olive-deep);
}

.cta-band .btn--ghost {
  background: transparent;
  border-color: rgba(250, 245, 239, 0.45);
  color: var(--cream);
}

.cta-band .btn--ghost:hover {
  background: transparent;
  border-color: var(--cream);
  color: var(--cream);
}

.cta-band .btn-row {
  justify-content: center;
}

/* -------------------------------------------------------------- footer -- */

.site-footer {
  background: var(--olive-deep);
  color: rgba(250, 245, 239, 0.75);
  padding-block: clamp(3.5rem, 7vw, 5rem) 2rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(auto-fit, minmax(11rem, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
}

.site-footer h2 {
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.site-footer a {
  color: rgba(250, 245, 239, 0.78);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--cream);
  text-decoration: underline;
}

.footer-brand__seal {
  width: 104px;
  margin-bottom: 1.2rem;
  background: var(--cream);
  border-radius: 50%;
  padding: 5px;
}

.footer-brand p {
  max-width: 32ch;
  color: rgba(250, 245, 239, 0.68);
  font-size: 0.95rem;
}

.footer-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.6rem;
  border-top: 1px solid rgba(250, 245, 239, 0.14);
  font-size: 0.82rem;
  color: rgba(250, 245, 239, 0.55);
}

.social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(250, 245, 239, 0.25);
  border-radius: 50%;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.social a:hover {
  border-color: var(--cream);
  background: rgba(250, 245, 239, 0.08);
}

.social svg {
  width: 17px;
  height: 17px;
}

/* ----------------------------------------------------------- utilities -- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal[data-delay='1'] {
  transition-delay: 0.09s;
}

.reveal[data-delay='2'] {
  transition-delay: 0.18s;
}

.reveal[data-delay='3'] {
  transition-delay: 0.27s;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

/* --------------------------------------------------------------- media -- */

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

  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  }
}

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

  .nav {
    position: fixed;
    inset: 84px 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--gutter) 1.75rem;
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease),
      visibility 0.25s;
    max-height: calc(100dvh - 84px);
    overflow-y: auto;
  }

  .nav[data-open='true'] {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav__link {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.86rem;
  }

  .nav__link::after {
    display: none;
  }

  .header__cta {
    margin-top: 1.25rem;
    width: 100%;
  }

  .split--reverse .split__media,
  .feature--reverse .feature__media {
    order: 0;
  }

  .split__badge {
    right: 0.5rem;
    bottom: -1rem;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 1rem;
  }

  .hero {
    min-height: 0;
  }

  .hero::after {
    background: linear-gradient(
      175deg,
      rgba(250, 245, 239, 0.96) 0%,
      rgba(250, 245, 239, 0.9) 55%,
      rgba(51, 53, 23, 0.2) 100%
    );
  }

  .split__media--arch img {
    border-radius: 9rem 9rem var(--radius) var(--radius);
  }

  .btn {
    width: 100%;
  }

  .btn-row {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .cta-band,
  .nav-toggle {
    display: none;
  }
}

/* -------------------------------------------------------------- faq -- */

.faq-group__title {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin: clamp(2.5rem, 5vw, 3.5rem) 0 0.9rem;
}

.faq-group__title:first-child {
  margin-top: 0;
}
