/* ==========================================================================
   Lumen & Oak — custom laser cutting studio
   Palette: warm off-white ground, dark walnut ink, soft amber light.
   ========================================================================== */

:root {
  /* Ground */
  --paper:        #FAF6F0;
  --paper-2:      #F3ECE1;
  --paper-3:      #EDE3D5;

  /* Walnut */
  --walnut:       #2E1F16;
  --walnut-2:     #4A3323;
  --walnut-3:     #6B5241;
  --walnut-soft:  #8A7360;

  /* Amber — the "laser light" */
  --amber:        #B9822F;
  --amber-lit:    #D19A45;
  --amber-glow:   #E8B968;
  --amber-wash:   rgba(185, 130, 47, 0.10);

  --line:         rgba(46, 31, 22, 0.13);
  --line-strong:  rgba(46, 31, 22, 0.24);

  --display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --measure:  76rem;
  --gutter:   clamp(1.25rem, 5vw, 4rem);
  --radius:   3px;

  --shadow-sm: 0 1px 2px rgba(46, 31, 22, 0.06),
               0 2px 8px rgba(46, 31, 22, 0.05);
  --shadow-md: 0 2px 4px rgba(46, 31, 22, 0.05),
               0 12px 32px rgba(46, 31, 22, 0.09);
  --shadow-lg: 0 4px 8px rgba(46, 31, 22, 0.06),
               0 24px 60px rgba(46, 31, 22, 0.14);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

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

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

@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;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--walnut);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--walnut);
}

p { margin: 0; }

a { color: inherit; text-decoration: none; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--walnut);
  color: var(--paper);
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

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

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

.section { padding-block: clamp(4.5rem, 11vw, 8.5rem); }
.section--tint { background: var(--paper-2); }
.section--rule { border-top: 1px solid var(--line); }

.eyebrow {
  font-family: var(--body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--line-strong), transparent);
  max-width: 5rem;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { display: none; }
.eyebrow--center::before {
  content: "";
  width: 2rem; height: 1px;
  background: var(--line-strong);
}

.section-title {
  font-size: clamp(2rem, 4.6vw, 3.25rem);
  max-width: 22ch;
}
.section-lede {
  margin-top: 1.25rem;
  max-width: 58ch;
  font-size: clamp(1.0625rem, 1.6vw, 1.1875rem);
  color: var(--walnut-3);
  line-height: 1.72;
}

.section-head--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-head--center .section-title,
.section-head--center .section-lede { max-width: 46ch; }

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  font-family: var(--body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 1rem 1.875rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.28s var(--ease),
              color 0.28s var(--ease),
              border-color 0.28s var(--ease),
              transform 0.28s var(--ease),
              box-shadow 0.28s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--walnut);
  color: var(--paper);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--walnut-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--walnut);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--walnut);
  background: rgba(46, 31, 22, 0.04);
  transform: translateY(-2px);
}

.btn--amber {
  background: var(--amber);
  color: #FFF9EF;
  box-shadow: 0 2px 12px rgba(185, 130, 47, 0.3);
}
.btn--amber:hover {
  background: var(--amber-lit);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(185, 130, 47, 0.38);
}

.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
}

.btn__arrow { transition: transform 0.28s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color 0.35s var(--ease),
              box-shadow 0.35s var(--ease),
              border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(250, 246, 240, 0.88);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 24px rgba(46, 31, 22, 0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 4.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.brand__mark { width: 30px; height: 30px; flex-shrink: 0; }
.brand__text {
  font-family: var(--display);
  font-size: 1.1875rem;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
}
.brand__amp { color: var(--amber); font-style: italic; padding-inline: 0.06em; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--walnut-3);
  position: relative;
  padding-block: 0.4rem;
  transition: color 0.24s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s var(--ease);
}
.nav__link:hover { color: var(--walnut); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__cta { padding: 0.75rem 1.375rem; font-size: 0.75rem; }

.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  width: 42px; height: 42px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav__toggle span {
  display: block;
  width: 17px; height: 1.5px;
  background: var(--walnut);
  position: relative;
  transition: background-color 0.2s var(--ease);
}
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 17px; height: 1.5px;
  background: var(--walnut);
  transition: transform 0.3s var(--ease);
}
.nav__toggle span::before { top: -5.5px; }
.nav__toggle span::after  { top: 5.5px; }
.nav__toggle[aria-expanded="true"] span { background: transparent; }
.nav__toggle[aria-expanded="true"] span::before { transform: translateY(5.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span::after  { transform: translateY(-5.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: fixed;
    inset: 4.75rem 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 0.5rem var(--gutter) 1.75rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.26s var(--ease), transform 0.26s var(--ease);
  }
  .nav__links.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav__links li { border-bottom: 1px solid var(--line); }
  .nav__links li:last-child { border-bottom: 0; padding-top: 1.125rem; }
  .nav__link { display: block; padding: 1.0625rem 0; font-size: 0.9375rem; }
  .nav__link::after { display: none; }
  .nav__cta { width: 100%; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  padding-top: clamp(8rem, 17vw, 12rem);
  padding-bottom: clamp(4.5rem, 10vw, 7.5rem);
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: -18%;
  right: -8%;
  width: min(58rem, 92vw);
  aspect-ratio: 1;
  background: radial-gradient(circle at 50% 50%,
              rgba(232, 185, 104, 0.30) 0%,
              rgba(232, 185, 104, 0.13) 34%,
              rgba(232, 185, 104, 0) 68%);
  pointer-events: none;
  z-index: 0;
}
.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.22'/%3E%3C/svg%3E");
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.hero__title {
  font-size: clamp(2.75rem, 7.2vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.028em;
}
.hero__title em {
  font-style: italic;
  color: var(--amber);
  position: relative;
}

.hero__lede {
  margin-top: 1.75rem;
  font-size: clamp(1.0625rem, 1.75vw, 1.25rem);
  line-height: 1.72;
  color: var(--walnut-3);
  max-width: 46ch;
}

.hero__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.hero__meta {
  margin-top: 3.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.hero__meta div { min-width: 0; }
.hero__meta dt {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--walnut-soft);
}
.hero__meta dd {
  margin: 0.375rem 0 0;
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--walnut);
  line-height: 1.2;
}

.hero__art {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--paper-3);
}
.hero__art img { width: 100%; height: 100%; object-fit: cover; }

.hero__badge {
  position: absolute;
  left: -1.5rem;
  bottom: 2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius);
  padding: 1rem 1.375rem;
  box-shadow: var(--shadow-md);
  max-width: 15rem;
}
.hero__badge strong {
  display: block;
  font-family: var(--display);
  font-size: 1.0625rem;
  font-weight: 500;
}
.hero__badge span {
  font-size: 0.8125rem;
  color: var(--walnut-3);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { aspect-ratio: 5 / 4; max-height: 26rem; order: -1; }
  .hero__badge { left: 1rem; bottom: 1rem; }
}

/* --------------------------------------------------------------------------
   Marquee strip
   -------------------------------------------------------------------------- */

.strip {
  background: var(--walnut);
  color: var(--paper);
  padding-block: 1.125rem;
  overflow: hidden;
}
.strip__track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: drift 42s linear infinite;
}
.strip:hover .strip__track { animation-play-state: paused; }
.strip__item {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.72);
  white-space: nowrap;
}
.strip__item::after {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--amber-glow);
  flex-shrink: 0;
}
@keyframes drift {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}

.about__body p + p { margin-top: 1.25rem; }
.about__body p {
  font-size: 1.0625rem;
  line-height: 1.78;
  color: var(--walnut-3);
}
/* The lead paragraph is the one directly after the heading — not .eyebrow,
   which happens to be the first child. */
.about__body > h2 + p {
  margin-top: 1.5rem;
  font-size: clamp(1.1875rem, 2vw, 1.4375rem);
  line-height: 1.6;
  color: var(--walnut);
  font-family: var(--display);
}

.pillars {
  margin-top: 2.75rem;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.pillar {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 1.25rem;
  padding-block: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.pillar__num {
  font-family: var(--display);
  font-size: 0.875rem;
  color: var(--amber);
  letter-spacing: 0.08em;
  padding-top: 0.25rem;
}
.pillar h3 { font-size: 1.1875rem; margin-bottom: 0.375rem; }
.pillar p { font-size: 0.9375rem; color: var(--walnut-3); line-height: 1.68; }

.about__aside {
  position: sticky;
  top: 6.5rem;
}
.about__art {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--paper-3);
}
.about__art img { width: 100%; height: 100%; object-fit: cover; }
.about__caption {
  margin-top: 1.125rem;
  font-size: 0.8125rem;
  color: var(--walnut-soft);
  font-style: italic;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__aside { position: static; }
  .about__art { aspect-ratio: 16 / 10; }
}

/* --------------------------------------------------------------------------
   Gallery
   -------------------------------------------------------------------------- */

.gallery__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.filters {
  margin-top: 2.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1.25rem;
}
.filter {
  font-family: var(--body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.625rem 1.125rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: transparent;
  color: var(--walnut-3);
  cursor: pointer;
  transition: all 0.26s var(--ease);
  white-space: nowrap;
}
.filter:hover {
  border-color: var(--walnut-soft);
  color: var(--walnut);
}
.filter[aria-pressed="true"] {
  background: var(--walnut);
  border-color: var(--walnut);
  color: var(--paper);
}
.filter__count {
  font-size: 0.6875rem;
  opacity: 0.6;
  margin-left: 0.375rem;
  font-variant-numeric: tabular-nums;
}

.grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 17.5rem), 1fr));
  gap: clamp(1rem, 2.2vw, 1.75rem);
}

.card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-3);
  box-shadow: var(--shadow-sm);
  transition: transform 0.42s var(--ease), box-shadow 0.42s var(--ease);
  cursor: zoom-in;
  border: 0;
  padding: 0;
  text-align: left;
  font: inherit;
  color: inherit;
  display: block;
  width: 100%;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.card__media {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--paper-3);
}
.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.125rem 1.25rem 1.375rem;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.card__tag {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
}
.card__title {
  font-family: var(--display);
  font-size: 1.125rem;
  margin-top: 0.375rem;
  line-height: 1.3;
}
.card__price {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--walnut-soft);
  font-variant-numeric: tabular-nums;
}

.card.is-hidden { display: none; }

.card__enter {
  opacity: 0;
  transform: translateY(14px);
  animation: cardIn 0.5s var(--ease) forwards;
}
@keyframes cardIn { to { opacity: 1; transform: translateY(0); } }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(24, 15, 10, 0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: clamp(1rem, 5vw, 3rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__figure {
  margin: 0;
  max-width: min(52rem, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  transform: scale(0.97);
  transition: transform 0.3s var(--ease);
}
.lightbox.is-open .lightbox__figure { transform: scale(1); }
.lightbox__figure img {
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--paper-3);
}
.lightbox__cap {
  margin-top: 1rem;
  color: rgba(250, 246, 240, 0.9);
  font-size: 0.9375rem;
  text-align: center;
}
.lightbox__cap span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-glow);
  margin-bottom: 0.375rem;
}
.lightbox__close {
  position: absolute;
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(250, 246, 240, 0.28);
  background: rgba(250, 246, 240, 0.08);
  color: var(--paper);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.24s var(--ease);
}
.lightbox__close:hover { background: rgba(250, 246, 240, 0.2); }

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */

.tiers {
  margin-top: 3.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15.5rem), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.tier {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem 2.125rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.34s var(--ease), box-shadow 0.34s var(--ease), border-color 0.34s var(--ease);
  position: relative;
  overflow: hidden;
}
.tier::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(to right, var(--amber), var(--amber-glow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.44s var(--ease);
}
.tier:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}
.tier:hover::before { transform: scaleX(1); }

.tier__label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}
.tier__name {
  font-size: 1.375rem;
  margin-top: 0.625rem;
}
.tier__eg {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--walnut-soft);
  line-height: 1.6;
}
.tier__price {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1.625rem;
  color: var(--walnut);
  line-height: 1.2;
}
.tier__price small {
  display: block;
  font-family: var(--body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--walnut-soft);
  margin-bottom: 0.375rem;
}
.tier__blank {
  color: var(--amber);
  letter-spacing: 0.04em;
}
.tier__list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.625rem;
}
.tier__list li {
  font-size: 0.875rem;
  color: var(--walnut-3);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
}
.tier__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.6em;
  width: 6px; height: 1px;
  background: var(--amber);
}

.pricing-note {
  margin-top: 2.25rem;
  font-size: 0.875rem;
  color: var(--walnut-soft);
  text-align: center;
  line-height: 1.7;
  max-width: 62ch;
  margin-inline: auto;
}

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

.quote {
  background: var(--walnut);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.quote::before {
  content: "";
  position: absolute;
  bottom: -30%; left: -10%;
  width: min(50rem, 90vw);
  aspect-ratio: 1;
  background: radial-gradient(circle,
              rgba(232, 185, 104, 0.18) 0%,
              rgba(232, 185, 104, 0) 66%);
  pointer-events: none;
}
.quote .wrap { position: relative; z-index: 1; }

.quote__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.quote h2, .quote h3 { color: var(--paper); }
.quote .eyebrow { color: var(--amber-glow); }
.quote .eyebrow::after { background: linear-gradient(to right, rgba(250,246,240,0.3), transparent); }

.quote__lede {
  margin-top: 1.25rem;
  color: rgba(250, 246, 240, 0.72);
  font-size: 1.0625rem;
  line-height: 1.75;
  max-width: 42ch;
}

.quote__steps {
  margin-top: 2.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.25rem;
}
.quote__steps li {
  display: grid;
  grid-template-columns: 1.75rem 1fr;
  gap: 0.875rem;
  align-items: start;
  font-size: 0.9375rem;
  color: rgba(250, 246, 240, 0.76);
  line-height: 1.6;
}
.quote__steps b {
  display: grid;
  place-items: center;
  width: 1.75rem; height: 1.75rem;
  border-radius: 50%;
  border: 1px solid rgba(232, 185, 104, 0.5);
  color: var(--amber-glow);
  font-family: var(--display);
  font-size: 0.8125rem;
  font-weight: 400;
}

.quote__contact {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(250, 246, 240, 0.16);
  font-size: 0.875rem;
  color: rgba(250, 246, 240, 0.62);
  line-height: 1.7;
}
.quote__contact a { color: var(--amber-glow); text-decoration: underline; text-underline-offset: 3px; }

/* Form card */
.form-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  box-shadow: var(--shadow-lg);
  color: var(--walnut);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.125rem;
}
.field--full { grid-column: 1 / -1; }

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

.field { display: flex; flex-direction: column; gap: 0.4375rem; min-width: 0; }

.field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--walnut-2);
}
.field label .opt {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--walnut-soft);
  font-size: 0.75rem;
}
.field .req { color: var(--amber); }

.field input,
.field select,
.field textarea {
  font-family: var(--body);
  font-size: 0.9375rem;
  color: var(--walnut);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.8125rem 0.9375rem;
  width: 100%;
  transition: border-color 0.22s var(--ease), box-shadow 0.22s var(--ease), background-color 0.22s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { resize: vertical; min-height: 8rem; line-height: 1.65; }

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%236B5241' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9375rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--paper);
  border-color: var(--amber);
  box-shadow: 0 0 0 3px var(--amber-wash);
}

.field input::placeholder,
.field textarea::placeholder { color: var(--walnut-soft); opacity: 0.75; }

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #B4472F;
  box-shadow: 0 0 0 3px rgba(180, 71, 47, 0.1);
}
.field__err {
  font-size: 0.75rem;
  color: #9E3D28;
  min-height: 0;
}

.field__hint { font-size: 0.75rem; color: var(--walnut-soft); }

/* File drop */
.drop {
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper-2);
  padding: 1.5rem 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.24s var(--ease), background-color 0.24s var(--ease);
  position: relative;
}
.drop:hover, .drop.is-over {
  border-color: var(--amber);
  background: var(--amber-wash);
}
.drop input[type="file"] {
  position: absolute; inset: 0;
  opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
.drop__icon { color: var(--amber); margin: 0 auto 0.625rem; }
.drop__main { font-size: 0.875rem; font-weight: 500; }
.drop__main u { text-decoration-color: var(--amber); text-underline-offset: 3px; }
.drop__sub { font-size: 0.75rem; color: var(--walnut-soft); margin-top: 0.25rem; }

.drop-preview {
  display: none;
  align-items: center;
  gap: 0.875rem;
  margin-top: 0.75rem;
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
}
.drop-preview.is-shown { display: flex; }
.drop-preview img {
  width: 46px; height: 46px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}
.drop-preview__meta { min-width: 0; flex: 1; }
.drop-preview__name {
  font-size: 0.8125rem;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.drop-preview__size { font-size: 0.75rem; color: var(--walnut-soft); }
.drop-preview__x {
  background: none; border: 0; cursor: pointer;
  color: var(--walnut-soft); font-size: 1.125rem; line-height: 1;
  padding: 0.25rem 0.5rem; flex-shrink: 0;
}
.drop-preview__x:hover { color: #9E3D28; }

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

.form-actions {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.form-actions .btn { flex: 1; min-width: 12rem; }
.form-legal { font-size: 0.75rem; color: var(--walnut-soft); line-height: 1.6; flex: 1; min-width: 12rem; }

.spinner {
  width: 15px; height: 15px;
  border: 2px solid rgba(255, 249, 239, 0.35);
  border-top-color: #FFF9EF;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
.is-sending .spinner { display: block; }
.is-sending .btn__label { opacity: 0.85; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Form status */
.form-status {
  margin-top: 1.25rem;
  padding: 1rem 1.125rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  line-height: 1.65;
  display: none;
  border: 1px solid transparent;
}
.form-status.is-shown { display: block; }
.form-status--ok {
  background: rgba(93, 124, 78, 0.1);
  border-color: rgba(93, 124, 78, 0.32);
  color: #3F5836;
}
.form-status--warn {
  background: var(--amber-wash);
  border-color: rgba(185, 130, 47, 0.36);
  color: #7A5518;
}
.form-status--err {
  background: rgba(180, 71, 47, 0.08);
  border-color: rgba(180, 71, 47, 0.3);
  color: #8C3521;
}
.form-status a { color: inherit; text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }

.form-success {
  display: none;
  text-align: center;
  padding: 1rem 0 0.5rem;
}
.form-success.is-shown { display: block; }
.form-success__mark {
  width: 56px; height: 56px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  border: 1px solid var(--amber);
  display: grid; place-items: center;
  color: var(--amber);
  background: var(--amber-wash);
}
.form-success h3 { font-size: 1.5rem; }
.form-success p { margin-top: 0.75rem; color: var(--walnut-3); font-size: 0.9375rem; line-height: 1.7; }
.form-success .btn { margin-top: 1.5rem; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
}
@media (max-width: 760px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }

.footer__brand p {
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: var(--walnut-3);
  line-height: 1.7;
  max-width: 34ch;
}
.footer__col h4 {
  font-family: var(--body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--walnut-soft);
  margin-bottom: 1rem;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.625rem; }
.footer__col a {
  font-size: 0.9375rem;
  color: var(--walnut-3);
  transition: color 0.2s var(--ease);
}
.footer__col a:hover { color: var(--amber); }

.footer__bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: var(--walnut-soft);
}

/* --------------------------------------------------------------------------
   Reveal on scroll
   -------------------------------------------------------------------------- */

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

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .strip__track { animation: none; }
  .card__enter { animation: none; opacity: 1; transform: none; }
}
