:root {
  --ink: #22181c;
  --muted: #695b61;
  --paper: #fff9f3;
  --soft: #f7ece7;
  --rose: #a41652;
  --teal: #087b75;
  --gold: #d79a2b;
  --green: #426b47;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(34, 24, 28, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

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

.site-header {
  align-items: center;
  background: rgba(255, 249, 243, 0.92);
  border-bottom: 1px solid rgba(34, 24, 28, 0.08);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: 270px;
}

.brand-logo-wrap {
  align-items: center;
  aspect-ratio: 1;
  background: var(--white);
  border: 1px solid rgba(34, 24, 28, 0.12);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(34, 24, 28, 0.14);
  display: inline-flex;
  flex: 0 0 auto;
  justify-content: center;
  overflow: hidden;
  width: 58px;
}

.brand-logo {
  height: 100%;
  object-fit: cover;
  transform: scale(1.58);
  width: 100%;
}

.brand-name,
.brand-subtitle {
  display: block;
}

.brand-name {
  font-weight: 800;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(14px, 3vw, 30px);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  background: var(--rose);
  bottom: -7px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  align-items: flex-end;
  background:
    linear-gradient(90deg, rgba(34, 24, 28, 0.74), rgba(34, 24, 28, 0.38) 48%, rgba(34, 24, 28, 0.12)),
    url("Blankets%3AThrows/hexagon%20multi%20colored.jpg") center / cover;
  color: var(--white);
  display: flex;
  min-height: 68svh;
  padding: 112px clamp(20px, 5vw, 72px) 48px;
}

.hero-content {
  max-width: 860px;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.feature-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
  line-height: 0.98;
  margin: 0;
}

.hero h1 {
  font-size: clamp(3.2rem, 7.6vw, 6.2rem);
  max-width: 860px;
}

.hero-copy {
  font-size: clamp(1rem, 2vw, 1.35rem);
  margin: 24px 0 0;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  align-items: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--rose);
  box-shadow: 0 14px 32px rgba(164, 22, 82, 0.28);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #8f1247;
}

.button-secondary {
  background: var(--white);
  color: var(--ink);
}

.intro-strip {
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.intro-strip article {
  background: rgba(255, 255, 255, 0.055);
  min-height: 140px;
  padding: clamp(22px, 4vw, 34px);
}

.intro-strip strong,
.intro-strip span {
  display: block;
}

.intro-strip strong {
  color: var(--gold);
  font-size: 1.02rem;
  margin-bottom: 10px;
}

.intro-strip span {
  color: rgba(255, 255, 255, 0.78);
  max-width: 360px;
}

.section {
  padding: clamp(64px, 8vw, 108px) clamp(20px, 5vw, 72px);
}

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

.section-heading h2,
.feature-copy h2 {
  font-size: clamp(2.3rem, 6vw, 5.2rem);
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
  margin: 16px 0 0;
  max-width: 680px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-button {
  background: var(--white);
  border: 1px solid rgba(34, 24, 28, 0.14);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  min-height: 42px;
  padding: 0 15px;
}

.filter-button.active,
.filter-button:hover,
.filter-button:focus-visible {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.gallery-card {
  background: var(--white);
  border: 1px solid rgba(34, 24, 28, 0.08);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(34, 24, 28, 0.06);
  overflow: hidden;
}

.gallery-card[hidden] {
  display: none;
}

.gallery-card figure {
  margin: 0;
}

.gallery-card img {
  aspect-ratio: 1;
  object-fit: cover;
}

.gallery-card figcaption {
  min-height: 106px;
  padding: 14px;
}

.gallery-card strong,
.gallery-card span {
  display: block;
}

.gallery-card strong {
  font-size: 1rem;
  line-height: 1.25;
}

.gallery-card span {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 6px;
}

.feature-band {
  background: var(--teal);
  color: var(--white);
  display: grid;
  gap: clamp(32px, 5vw, 80px);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  padding: clamp(64px, 8vw, 108px) clamp(20px, 5vw, 72px);
}

.feature-copy .eyebrow {
  color: #ffcf77;
}

.process-list {
  display: grid;
  gap: 16px;
}

.process-list article {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  gap: 20px;
  grid-template-columns: 50px minmax(120px, 180px) 1fr;
  padding: 0 0 18px;
}

.process-list span {
  color: #ffcf77;
  font-weight: 900;
}

.process-list h3,
.detail-grid h3,
.request-preview h3 {
  font-size: 1.2rem;
  line-height: 1.2;
  margin: 0;
}

.process-list p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.custom-section {
  background: var(--soft);
}

.custom-layout {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.order-form {
  background: var(--white);
  border: 1px solid rgba(34, 24, 28, 0.08);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(18px, 3vw, 30px);
}

label {
  color: var(--ink);
  display: grid;
  font-size: 0.9rem;
  font-weight: 800;
  gap: 8px;
}

input,
select,
textarea {
  background: #fffdfb;
  border: 1px solid rgba(34, 24, 28, 0.16);
  border-radius: 8px;
  color: var(--ink);
  min-height: 48px;
  padding: 0 13px;
  width: 100%;
}

textarea {
  min-height: 136px;
  padding: 12px 13px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(8, 123, 117, 0.14);
  outline: none;
}

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

.request-preview {
  align-self: start;
  background:
    linear-gradient(150deg, rgba(164, 22, 82, 0.9), rgba(8, 123, 117, 0.9)),
    url("Plushy%3AStuffies/plushy%20bears.jpg") center / cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--white);
  min-height: 420px;
  padding: clamp(22px, 4vw, 32px);
  position: sticky;
  top: 92px;
}

.request-preview .eyebrow {
  color: #ffcf77;
}

.request-preview p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.84);
}

.request-preview .button {
  margin-top: 20px;
}

.hidden {
  display: none;
}

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

.detail-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.detail-grid article {
  background: var(--white);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 28px);
}

.detail-grid article:nth-child(2) {
  border-left-color: var(--gold);
}

.detail-grid article:nth-child(3) {
  border-left-color: var(--rose);
}

.detail-grid p {
  color: var(--muted);
  margin: 12px 0 0;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 28px clamp(20px, 5vw, 72px);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 4px;
}

.site-footer a {
  color: #ffcf77;
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    position: absolute;
  }

  .site-nav {
    overflow-x: auto;
    padding-bottom: 2px;
    width: 100%;
  }

  .hero {
    min-height: 82svh;
    padding-top: 150px;
  }

  .intro-strip,
  .feature-band,
  .custom-layout,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .process-list article {
    grid-template-columns: 44px 1fr;
  }

  .process-list p {
    grid-column: 2;
  }

  .request-preview {
    min-height: 320px;
    position: static;
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .site-nav {
    font-size: 0.88rem;
    gap: 16px;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(34, 24, 28, 0.4), rgba(34, 24, 28, 0.82)),
      url("Blankets%3AThrows/hexagon%20multi%20colored.jpg") center / cover;
    min-height: 74svh;
    padding-bottom: 42px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 15vw, 4.5rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .intro-strip article {
    min-height: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card figcaption {
    min-height: 118px;
  }

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

  .section-heading h2,
  .feature-copy h2 {
    font-size: clamp(2.1rem, 11vw, 3.4rem);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .filter-button {
    flex: 1 1 auto;
  }
}
