:root {
  --ink: #181611;
  --forest: #17352c;
  --moss: #567264;
  --saddle: #9b5e30;
  --brass: #d7a84f;
  --cream: #f6efe2;
  --paper: #fffaf1;
  --clay: #d8c5aa;
  --line: rgba(24, 22, 17, 0.14);
  --dark-line: rgba(246, 239, 226, 0.2);
  --shadow: rgba(16, 12, 8, 0.22);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--brass);
  border-radius: 8px;
  font-weight: 900;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.copy-helper {
  position: fixed;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

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

button {
  cursor: pointer;
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--brass);
  outline-offset: 3px;
}

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

[id] {
  scroll-margin-top: 96px;
}

[hidden] {
  display: none !important;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 650;
  letter-spacing: 0;
}

h1 {
  max-width: 940px;
  font-size: clamp(44px, 6vw, 86px);
  line-height: 0.96;
}

h2 {
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 1;
}

h3 {
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.05;
}

p {
  margin: 0;
  line-height: 1.65;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 58px);
  color: var(--cream);
  background: rgba(24, 22, 17, 0.92);
  border-bottom: 1px solid var(--dark-line);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  min-width: 0;
  font-weight: 900;
}

.brand-mark {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border: 1px solid rgba(215, 168, 79, 0.7);
  border-radius: 50%;
}

.nav-links {
  gap: clamp(12px, 2vw, 30px);
  color: rgba(246, 239, 226, 0.82);
  font-size: 14px;
  font-weight: 850;
}

.nav-links a:hover,
.nav-links a[aria-current="true"] {
  color: var(--brass);
}

.hero {
  position: relative;
  min-height: clamp(580px, 78vh, 740px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(16, 14, 10, 0.92),
      rgba(23, 53, 44, 0.72) 52%,
      rgba(24, 22, 17, 0.14)
    ),
    linear-gradient(0deg, rgba(16, 14, 10, 0.82), rgba(16, 14, 10, 0.12) 46%);
}

.hero-content {
  position: relative;
  width: min(980px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 104px);
  padding: 76px 0 82px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #7b431f;
}

.hero-copy {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(246, 239, 226, 0.9);
  font-size: clamp(19px, 2vw, 25px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof span {
  padding: 8px 11px;
  color: rgba(246, 239, 226, 0.82);
  background: rgba(246, 239, 226, 0.08);
  border: 1px solid rgba(246, 239, 226, 0.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
  transition:
    transform 160ms ease,
    filter 160ms ease,
    border-color 160ms ease;
}

.button.primary {
  color: var(--ink);
  background: linear-gradient(135deg, #f1c56d, var(--brass));
  box-shadow: 0 18px 42px rgba(24, 22, 17, 0.18);
}

.button.secondary {
  color: var(--cream);
  background: rgba(246, 239, 226, 0.08);
  border-color: rgba(246, 239, 226, 0.46);
}

.section {
  padding: clamp(54px, 6.5vw, 88px) clamp(18px, 6vw, 88px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.8fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: start;
}

.about-section {
  background: var(--paper);
}

.home-story {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: center;
}

.story-copy {
  max-width: 680px;
}

.story-copy > p {
  margin-top: 18px;
  color: rgba(24, 22, 17, 0.74);
  font-size: 18px;
}

.story-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 24px;
}

.story-links a {
  color: #754018;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.maker-photo-slot {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: rgba(216, 197, 170, 0.36);
  border: 1px solid rgba(24, 22, 17, 0.14);
  border-radius: 14px;
  box-shadow: 0 22px 56px rgba(24, 22, 17, 0.14);
}

.maker-photo-slot img {
  display: block;
  width: 100%;
  height: clamp(300px, 36vw, 470px);
  object-fit: cover;
}

.maker-photo-slot figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 11px 13px;
  color: var(--cream);
  background: rgba(24, 22, 17, 0.78);
  border: 1px solid rgba(246, 239, 226, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 800;
}

.featured-section,
.faq-section {
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 200px;
  gap: 12px;
}

.featured-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  min-height: 200px;
  color: var(--cream);
  background: var(--ink);
  border: 1px solid rgba(24, 22, 17, 0.12);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(24, 22, 17, 0.08);
}

.featured-grid article:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.featured-grid article:nth-child(6) {
  grid-column: span 2;
}

.featured-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.featured-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(15, 12, 9, 0.94),
    rgba(15, 12, 9, 0.1) 68%
  );
}

.featured-grid h3,
.featured-grid p {
  position: relative;
  z-index: 1;
  padding-right: 18px;
  padding-left: 18px;
}

.featured-grid h3 {
  padding-top: 32px;
  font-size: 22px;
}

.featured-grid p {
  padding-top: 6px;
  padding-bottom: 16px;
  color: rgba(246, 239, 226, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.make-section {
  background:
    linear-gradient(
      135deg,
      rgba(246, 239, 226, 0.96),
      rgba(216, 197, 170, 0.74)
    ),
    var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 960px;
  margin-bottom: 32px;
}

.section-heading p {
  max-width: 720px;
  margin-top: 14px;
  color: rgba(24, 22, 17, 0.72);
  font-size: 18px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.category-grid article {
  min-height: 210px;
  padding: 24px;
  background: rgba(255, 250, 241, 0.92);
}

.category-grid h3 {
  font-size: clamp(23px, 2.3vw, 32px);
}

.category-grid p {
  margin: 12px 0 18px;
  color: rgba(24, 22, 17, 0.68);
}

.category-grid a {
  color: #754018;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(23, 53, 44, 0.96), rgba(24, 22, 17, 0.94)),
    var(--forest);
}

.trust-section .button {
  margin-top: 28px;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.trust-list div {
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  color: rgba(246, 239, 226, 0.88);
  background: rgba(246, 239, 226, 0.08);
  border: 1px solid var(--dark-line);
  border-radius: 8px;
}

.trust-list strong {
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.trust-list span {
  color: rgba(246, 239, 226, 0.7);
  font-size: 13px;
  line-height: 1.45;
}

.reviews-section {
  display: grid;
  gap: 24px;
  background:
    radial-gradient(
      circle at 88% 6%,
      rgba(215, 168, 79, 0.18),
      transparent 30%
    ),
    var(--paper);
}

.reviews-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
}

.reviews-intro > p {
  width: min(440px, 100%);
  margin: 0;
  color: rgba(24, 22, 17, 0.68);
  font-size: 16px;
  line-height: 1.6;
}

.review-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  padding: 12px 16px;
  color: var(--cream);
  background: var(--forest);
  border-radius: 999px;
}

.review-summary strong {
  color: var(--brass);
  font-size: 20px;
}

.review-summary span {
  color: rgba(246, 239, 226, 0.76);
  font-size: 13px;
  font-weight: 850;
}

.verified-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.verified-review-card {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 245px;
  padding: 22px;
  background: rgba(255, 250, 240, 0.82);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 14px 38px rgba(24, 22, 17, 0.08);
}

.verified-review-stars {
  color: #9d6b14;
  font-size: 19px;
  letter-spacing: 0.07em;
}

.verified-review-card blockquote {
  margin: 0;
  color: rgba(24, 22, 17, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.5;
}

.verified-review-card footer {
  display: grid;
  gap: 4px;
  align-self: end;
  margin-top: auto;
}

.verified-review-card footer strong {
  font-size: 14px;
}

.verified-review-card footer span {
  color: rgba(24, 22, 17, 0.58);
  font-size: 11px;
  line-height: 1.45;
}

.reviews-empty {
  margin: 0;
  padding: 24px;
  color: rgba(24, 22, 17, 0.62);
  background: rgba(255, 250, 240, 0.64);
  border: 1px dashed rgba(24, 22, 17, 0.26);
  border-radius: 10px;
  text-align: center;
}

.shop-section {
  color: var(--cream);
  background: #1a1711;
}

.shop-section .section-heading p {
  color: rgba(246, 239, 226, 0.74);
}

.gallery-filter {
  position: sticky;
  top: var(--sticky-header-height, 71px);
  z-index: 19;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  margin: 0 calc(clamp(18px, 6vw, 88px) * -1) 22px;
  padding: 12px clamp(18px, 6vw, 88px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  color: var(--cream);
  background: rgba(26, 23, 17, 0.96);
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
  scrollbar-color: rgba(215, 168, 79, 0.7) transparent;
  scrollbar-width: thin;
}

.gallery-filter a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 15px;
  color: rgba(246, 239, 226, 0.84);
  background: rgba(246, 239, 226, 0.08);
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-filter a[aria-pressed="true"] {
  color: var(--ink);
  background: var(--brass);
  border-color: var(--brass);
}

.gallery-category {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: 24px 0;
  border-top: 1px solid var(--dark-line);
  scroll-margin-top: calc(
    var(--sticky-header-height, 71px) + var(--gallery-filter-height, 70px) +
      16px
  );
}

.gallery-category:last-child {
  border-bottom: 1px solid var(--dark-line);
}

.gallery-copy {
  padding: 22px;
  background: rgba(246, 239, 226, 0.07);
  border: 1px solid var(--dark-line);
  border-radius: 8px;
}

.gallery-copy h3 {
  margin-bottom: 14px;
}

.gallery-note,
.safety-note {
  color: rgba(246, 239, 226, 0.7);
  font-size: 14px;
}

.gallery-note {
  margin-bottom: 16px;
}

.safety-note {
  margin-bottom: 18px;
  padding: 14px;
  background: rgba(215, 168, 79, 0.1);
  border: 1px solid rgba(215, 168, 79, 0.24);
  border-radius: 8px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.photo-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  margin: 0;
  border-radius: 8px;
  background: rgba(246, 239, 226, 0.08);
}

.photo-grid img,
.photo-grid span {
  min-height: 220px;
  border-radius: 8px;
}

.photo-grid img {
  width: 100%;
  height: 100%;
  max-height: 330px;
  object-fit: cover;
  border: 1px solid rgba(246, 239, 226, 0.2);
}

.photo-card img {
  min-height: 100%;
  border-radius: 8px;
}

.photo-grid span {
  display: grid;
  place-items: center;
  padding: 18px;
  color: rgba(246, 239, 226, 0.6);
  background:
    linear-gradient(135deg, rgba(86, 114, 100, 0.26), rgba(155, 94, 48, 0.22)),
    rgba(246, 239, 226, 0.06);
  border: 1px dashed rgba(246, 239, 226, 0.28);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.gallery-button {
  grid-column: 2;
  justify-self: start;
}

.orders-section {
  background:
    radial-gradient(
      circle at 88% 8%,
      rgba(215, 168, 79, 0.16),
      transparent 28%
    ),
    var(--paper);
}

.orders-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
}

.orders-heading {
  margin: 0;
}

.orders-heading .button {
  margin-top: 26px;
}

.order-ready-list {
  display: grid;
  gap: 9px;
  margin-top: 24px;
}

.order-ready-list span {
  position: relative;
  padding-left: 24px;
  color: rgba(24, 22, 17, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.order-ready-list span::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #754018;
  font-weight: 950;
}

.orders-collage {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  grid-template-rows: repeat(2, minmax(150px, 1fr));
  gap: 10px;
  min-height: 520px;
}

.orders-collage figure {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--clay);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 20px 48px rgba(24, 22, 17, 0.12);
}

.orders-collage .orders-photo-main {
  grid-row: 1 / -1;
}

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

.journey-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin: clamp(56px, 7vw, 86px) 0 24px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.journey-heading .eyebrow {
  flex: 0 0 auto;
  margin-bottom: 8px;
}

.journey-heading h3 {
  max-width: 700px;
  font-size: clamp(26px, 3.2vw, 42px);
  text-align: right;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.steps-grid article {
  position: relative;
  overflow: hidden;
  min-height: 450px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(24, 22, 17, 0.08);
}

.steps-grid article > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.step-copy {
  padding: 24px;
}

.steps-grid .step-copy > span {
  display: grid;
  width: 42px;
  height: 42px;
  margin: -45px 0 18px;
  place-items: center;
  color: var(--cream);
  background: var(--forest);
  border: 4px solid var(--paper);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 950;
}

.steps-grid h3 {
  font-size: 27px;
}

.steps-grid p {
  margin-top: 12px;
  color: rgba(24, 22, 17, 0.68);
  font-size: 15px;
}

.orders-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 24px;
  padding: clamp(24px, 4vw, 42px);
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(23, 53, 44, 0.98), rgba(24, 22, 17, 0.94)),
    var(--forest);
  border-radius: 12px;
}

.orders-cta h3 {
  max-width: 760px;
  font-size: clamp(26px, 3.3vw, 42px);
}

.orders-cta .button {
  flex: 0 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.faq-grid details {
  overflow: hidden;
  background: rgba(255, 250, 241, 0.94);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.faq-grid summary {
  position: relative;
  padding: 20px 54px 20px 20px;
  list-style: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 650;
  line-height: 1.2;
  cursor: pointer;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--forest);
  border-radius: 50%;
  transform: translateY(-50%);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.faq-grid details[open] summary::after {
  content: "−";
}

.faq-grid details p {
  padding: 0 20px 20px;
  color: rgba(24, 22, 17, 0.68);
  font-size: 15px;
}

.wide-faq {
  grid-column: 1 / -1;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 86px);
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(24, 22, 17, 0.98), rgba(23, 53, 44, 0.92)),
    var(--ink);
}

.contact-intro p {
  margin-top: 18px;
  color: rgba(246, 239, 226, 0.76);
  font-size: 18px;
}

.contact-intro .location-line {
  padding-left: 16px;
  border-left: 3px solid var(--brass);
  font-size: 15px;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-links a {
  padding: 14px 16px;
  background: rgba(246, 239, 226, 0.08);
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  font-weight: 850;
}

.order-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 20px;
  background: rgba(246, 239, 226, 0.08);
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

label {
  display: grid;
  gap: 7px;
  color: rgba(246, 239, 226, 0.84);
  font-size: 13px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(24, 22, 17, 0.2);
  border-radius: 8px;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(215, 168, 79, 0.2);
}

textarea {
  resize: vertical;
}

.full-field {
  grid-column: 1 / -1;
}

.form-help,
.form-note,
.form-status {
  margin: 0;
}

.form-help {
  color: rgba(246, 239, 226, 0.82);
  font-size: 13px;
}

.form-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.form-actions .button {
  width: 100%;
}

.copy-button {
  color: var(--cream);
  background: rgba(246, 239, 226, 0.08);
  border-color: rgba(246, 239, 226, 0.36);
}

.form-status {
  min-height: 24px;
  color: #f1c56d;
  font-size: 14px;
  font-weight: 850;
}

.form-note {
  color: rgba(246, 239, 226, 0.62);
  font-size: 12px;
  line-height: 1.5;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(18px, 6vw, 88px);
  color: rgba(246, 239, 226, 0.66);
  background: #15130f;
  border-top: 1px solid var(--dark-line);
}

.footer a {
  color: rgba(246, 239, 226, 0.9);
  font-weight: 850;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(24, 22, 17, 0.98), rgba(23, 53, 44, 0.92)),
    var(--ink);
}

.error-card {
  width: min(680px, 100%);
  padding: clamp(32px, 7vw, 72px);
  background: rgba(246, 239, 226, 0.08);
  border: 1px solid var(--dark-line);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.error-card .brand-mark {
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
}

.error-card h1 {
  font-size: clamp(42px, 8vw, 74px);
}

.error-card p:not(.eyebrow) {
  max-width: 540px;
  margin: 22px 0 30px;
  color: rgba(246, 239, 226, 0.76);
  font-size: 18px;
}

html.reveal-enabled .scroll-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 620ms ease var(--reveal-delay, 0ms),
    transform 620ms cubic-bezier(0.2, 0.75, 0.25, 1) var(--reveal-delay, 0ms);
}

html.reveal-enabled .scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) {
  .button:hover,
  .contact-links a:hover,
  .category-grid a:hover,
  .story-links a:hover {
    filter: brightness(1.08);
  }

  .button:hover {
    transform: translateY(-2px);
  }

  .featured-grid article:hover img {
    transform: scale(1.035);
  }
}

@media (max-width: 980px) {
  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 16px;
  }

  .split,
  .home-story,
  .orders-intro,
  .trust-section,
  .gallery-category,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .steps-grid,
  .photo-grid,
  .featured-grid,
  .faq-grid,
  .verified-review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wide-faq {
    grid-column: span 2;
  }

  .featured-grid article:first-child {
    grid-column: span 1;
  }

  .featured-grid article:nth-child(6) {
    grid-column: span 1;
  }

  .orders-collage {
    min-height: 460px;
  }

  .gallery-button {
    grid-column: 1;
  }

  .form-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .reviews-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-filter {
    top: 0;
  }

  .hero {
    min-height: 640px;
  }

  .hero-content {
    padding-top: 64px;
    padding-bottom: 68px;
  }

  .category-grid,
  .steps-grid,
  .photo-grid,
  .featured-grid,
  .faq-grid,
  .verified-review-grid,
  .order-form {
    grid-template-columns: 1fr;
  }

  .wide-faq {
    grid-column: auto;
  }

  .featured-grid article:first-child {
    grid-column: auto;
    grid-row: auto;
  }

  .featured-grid article:nth-child(6) {
    grid-column: auto;
  }

  .featured-grid {
    grid-auto-rows: 290px;
  }

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

  .orders-collage {
    grid-template-columns: 1.2fr 0.8fr;
    min-height: 390px;
  }

  .journey-heading,
  .orders-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .journey-heading h3 {
    text-align: left;
  }

  .orders-cta .button {
    flex: auto;
  }

  .steps-grid article > img {
    height: 210px;
  }

  .category-grid article,
  .steps-grid article {
    min-height: auto;
  }

  .button {
    width: 100%;
  }
}

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

  .button,
  .featured-grid img,
  html.reveal-enabled .scroll-reveal {
    transition: none;
  }

  html.reveal-enabled .scroll-reveal {
    opacity: 1;
    transform: none;
  }
}
