:root {
  color-scheme: light;
  --bg: #f6f2ee;
  --surface: #ffffff;
  --surface-2: #f3ece7;
  --ink: #1c1b1a;
  --ink-muted: #5b534c;
  --accent: #b1744f;
  --accent-strong: #8b4f34;
  --accent-soft: rgba(177, 116, 79, 0.14);
  --line: rgba(28, 27, 26, 0.12);
  --shadow: 0 24px 60px rgba(18, 16, 14, 0.16);
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  padding-top: 4.2rem;
  overflow-x: hidden;
  max-width: 100%;
}

body:has(#announcement-bar:not([hidden])) {
  padding-top: 7.55rem;
}

body:has(#main > .hero-banner:first-child) {
  padding-top: 3.55rem;
}

body:has(#main > .hero-banner:first-child):has(#announcement-bar:not([hidden])) {
  padding-top: 6.35rem;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -40px;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  z-index: 20;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: max(1rem, env(safe-area-inset-left, 0px));
  padding-right: max(1rem, env(safe-area-inset-right, 0px));
}

main.shop-page,
main[data-contact] {
  box-sizing: border-box;
  padding-inline: clamp(0.75rem, 3vw, 1.5rem);
}

.shop-page .wrap,
main[data-contact] .wrap {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 0;
}

.announcement {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 0.55rem 0;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.announcement-marquee {
  position: relative;
  width: 100%;
}

.announcement-marquee__viewport {
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}

.announcement-marquee__track {
  display: flex;
  width: max-content;
  animation: announcement-marquee-scroll 48s linear infinite;
  will-change: transform;
}

.announcement-marquee__set {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-right: 3.5rem;
  white-space: nowrap;
}

.announcement-marquee__set-inner {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 0;
  white-space: nowrap;
}

.announcement-marquee__kicker {
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.92);
}

.announcement-marquee__dash {
  margin: 0 0.35rem 0 0.25rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
}

.announcement-marquee__body {
  color: rgba(255, 255, 255, 0.96);
}

.announcement-marquee__dot,
.announcement-marquee__tail {
  color: rgba(255, 255, 255, 0.4);
  padding: 0 0.15rem;
}

@keyframes announcement-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .announcement-marquee__viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .announcement-marquee__track {
    animation: none;
    width: 100%;
    max-width: min(52rem, 100%);
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
  }

  .announcement-marquee__set {
    padding-right: 0;
    white-space: normal;
    justify-content: center;
    text-align: center;
  }

  .announcement-marquee__set:last-child {
    display: none;
  }

  .announcement-marquee__set-inner {
    white-space: normal;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: var(--bg);
  max-width: 100%;
  overflow-x: hidden;
}

.site-header {
  position: static;
  background: linear-gradient(
    180deg,
    #fdf9f5 0%,
    #f1e4da 42%,
    #e8d5c6 100%
  );
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(28, 27, 26, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}

.brand {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  gap: clamp(1.5rem, 2.8vw, 2.65rem);
  align-items: center;
}

.nav a {
  font-size: 0.95rem;
  color: var(--ink-muted);
  position: relative;
  letter-spacing: 0.04em;
  padding: 0.35rem 0;
}

.nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}

.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.4rem;
  height: 2px;
  background: var(--accent);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink);
  box-shadow: 0 2px 10px rgba(28, 27, 26, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-toggle-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-toggle:hover {
  border-color: rgba(28, 27, 26, 0.22);
  box-shadow: 0 4px 14px rgba(28, 27, 26, 0.08);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
}

.cart-count {
  min-width: 1.4rem;
  height: 1.4rem;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.main {
  padding-bottom: 4rem;
  max-width: 100%;
  overflow-x: hidden;
}

.main > .hero-banner:first-child {
  margin-top: -2.35rem;
}

body:has(#announcement-bar:not([hidden])) .main > .hero-banner:first-child {
  margin-top: -3.6rem;
}

.hero {
  position: relative;
  padding: 6rem 0 5rem;
  overflow: hidden;
}

.hero-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow);
}

main[data-about] .hero-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  grid-template-columns: 1fr;
  justify-items: center;
}

main[data-about] .section:first-child {
  padding-top: 1.5rem;
  padding-bottom: 1.25rem;
}

main[data-about] .section:first-child + .section {
  padding-top: 1.25rem;
}

main[data-about] .hero-card > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  text-align: center;
  width: 100%;
  max-width: min(42rem, 100%);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.hero-image {
  border-radius: var(--radius-lg);
  min-height: 360px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(26, 24, 22, 0.2), rgba(26, 24, 22, 0));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent-soft);
  color: var(--accent-strong);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.hero-banner {
  position: relative;
  width: 100%;
  min-height: clamp(22rem, 74vh, 52rem);
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #1a1816;
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.15s ease-in-out;
  transform: scale(1);
  will-change: opacity, transform;
  pointer-events: none;
}

.hero-carousel-slide.is-active {
  opacity: 1;
  z-index: 2;
  animation: heroKenBurns 8.5s ease-out forwards;
}

@keyframes heroKenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

.hero-banner-scrim {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
      180deg,
      rgba(12, 10, 9, 0.38) 0%,
      rgba(12, 10, 9, 0.08) 42%,
      rgba(12, 10, 9, 0.18) 58%,
      rgba(12, 10, 9, 0.65) 100%
    );
}

.hero-banner-content {
  position: relative;
  z-index: 4;
  padding: 7.5rem 0 5.5rem;
  width: 100%;
  max-width: 1200px;
}

.hero-banner-title {
  color: #fff;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
  max-width: 18ch;
}

.hero-banner-lead {
  color: rgba(255, 255, 255, 0.9);
  max-width: 36rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hero-badge--banner {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
}

.hero-banner-actions {
  margin-top: 0.5rem;
}

.hero-banner .btn-on-dark {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.hero-banner .btn-on-dark:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.75);
}

.hero-carousel-dots {
  position: relative;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  padding: 0 0 1.75rem;
  margin-top: -1rem;
}

.hero-dot {
  width: 0.65rem;
  height: 0.65rem;
  padding: 0;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-dot:hover,
.hero-dot:focus-visible {
  border-color: rgba(255, 255, 255, 0.85);
  outline: none;
  transform: scale(1.15);
}

.hero-dot.is-active {
  background: #fff;
  border-color: #fff;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", "Times New Roman", serif;
  margin: 0 0 0.6rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.3rem, 3vw, 3.2rem);
}

h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
}

p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 30px rgba(177, 116, 79, 0.26);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.btn-ghost {
  border-color: transparent;
  background: transparent;
  color: var(--ink);
}

.section {
  padding: 4rem 0;
}

#main > .section:has([data-featured-grid]) {
  padding-bottom: 2rem;
}

#main > .section:has([data-featured-grid]) + .section {
  padding-top: 2rem;
}

#main > .section:has(.process-list) {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

#main > .section:has(.process-list) + .section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

#main > .section:has(.process-list) + .section + .section {
  padding-top: 2rem;
}

.shop-page .section:first-child {
  padding-top: 3.25rem;
  padding-bottom: 0.7rem;
}

main[data-contact] .section:first-child {
  padding-top: 3.25rem;
}

.shop-page .section:first-child + .section {
  padding-top: 0.75rem;
}

.shop-page > .section:first-of-type .section-header,
main[data-contact] > .section:first-of-type .section-header {
  margin-bottom: 1.85rem;
  align-items: flex-start;
  width: 100%;
}

.shop-page > .section:first-of-type .section-header > div:first-child,
main[data-contact] > .section:first-of-type .section-header > div:first-child {
  position: relative;
  width: 100%;
  max-width: none;
  flex: 1 1 100%;
  min-width: 0;
  padding: 0.5rem 0 0.5rem 1.65rem;
  border-left: 3px solid var(--accent);
  background: linear-gradient(
    90deg,
    rgba(177, 116, 79, 0.06) 0%,
    transparent 100%
  );
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.shop-page > .section:first-of-type .section-header .eyebrow,
main[data-contact] > .section:first-of-type .section-header .eyebrow {
  margin: 0 0 0.9rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(177, 116, 79, 0.28);
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--accent-strong);
}

.shop-page > .section:first-of-type .section-header h2,
main[data-contact] > .section:first-of-type .section-header h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2.05rem, 4.5vw, 3.05rem);
  font-weight: 500;
  line-height: 1.11;
  letter-spacing: 0.02em;
  margin: 0 0 1.15rem;
  color: var(--ink);
  text-wrap: balance;
}

.shop-page > .section:first-of-type .section-header > div:first-child > p,
main[data-contact] > .section:first-of-type .section-header > div:first-child > p {
  margin: 0;
  font-size: 1.07rem;
  line-height: 1.72;
  color: var(--ink-muted);
  font-weight: 400;
  max-width: none;
}

main[data-contact] > .section:first-of-type .section-header {
  justify-content: center;
}

main[data-contact] > .section:first-of-type .section-header > div:first-child {
  text-align: center;
  border-left: none;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-radius: var(--radius-sm);
}

main[data-contact] .contact-studio-eyebrow,
main[data-contact] .contact-studio-heading,
main[data-contact] .contact-studio-designer {
  text-align: center;
}

main[data-contact] .form-card > h3 {
  text-align: center;
}

@media (max-width: 760px) {
  .shop-page > .section:first-of-type .section-header > div:first-child {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  main[data-contact] > .section:first-of-type .section-header > div:first-child {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .shop-page > .section:first-of-type .section-header h2,
  main[data-contact] > .section:first-of-type .section-header h2 {
    font-size: clamp(1.75rem, 6.5vw, 2.35rem);
  }
}

.shop-page > .section:first-of-type .section-header,
main[data-contact] > .section:first-of-type .section-header {
  align-items: center;
  justify-content: center;
}

main[data-contact] > .section:first-of-type .section-header {
  margin-bottom: clamp(2.75rem, 6vw, 4rem);
}

.shop-page > .section:first-of-type .section-header > div:first-child,
main[data-contact] > .section:first-of-type .section-header > div:first-child {
  text-align: center;
  border-left: none;
  padding-block: 0.5rem;
  padding-inline: 0;
  background: transparent;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, max-content) minmax(15rem, 26rem) minmax(0, 1fr);
  grid-template-areas:
    "hero-eyebrow hero-eyebrow hero-eyebrow hero-eyebrow"
    ". hero-title hero-callout .";
  column-gap: clamp(1.5rem, 4vw, 2.75rem);
  row-gap: 0.85rem;
  justify-items: center;
}

.shop-page > .section:first-of-type .section-header > div:first-child {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas:
    "hero-eyebrow hero-eyebrow hero-eyebrow"
    "hero-title hero-title hero-callout";
  column-gap: 1rem;
}

.shop-page > .section:first-of-type .section-header > div:first-child,
main[data-contact] > .section:first-of-type .section-header > div:first-child {
  grid-template-columns: 1fr;
  grid-template-areas:
    "hero-eyebrow"
    "hero-title"
    "hero-callout";
  row-gap: 0.9rem;
  justify-items: center;
}

.shop-page > .section:first-of-type .section-header h2 {
  justify-self: start;
  text-align: left;
}

.shop-page > .section:first-of-type .section-header > div:first-child > p {
  width: auto;
  justify-self: start;
}

.shop-page > .section:first-of-type .section-header .eyebrow,
main[data-contact] > .section:first-of-type .section-header .eyebrow {
  margin: 0;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(37, 99, 235, 0.35);
  color: #334155;
  grid-area: hero-eyebrow;
}

.shop-page > .section:first-of-type .section-header h2,
main[data-contact] > .section:first-of-type .section-header h2 {
  margin: 0;
  color: #0f172a;
  font-weight: 700;
  letter-spacing: 0.01em;
  grid-area: hero-title;
  align-self: center;
}

.shop-page > .section:first-of-type .section-header > div:first-child > p,
main[data-contact] > .section:first-of-type .section-header > div:first-child > p {
  margin: 0;
  width: 100%;
  max-width: 26rem;
  padding: 1.2rem 1.35rem;
  font-style: italic;
  font-weight: 500;
  color: #1e3a5f;
  background: #f1f5f9;
  border-left: 1px solid #2563eb;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 22px rgba(15, 23, 42, 0.07);
  grid-area: hero-callout;
}

/* Refined hero heading style for Shop + Contact */
.shop-page > .section:first-of-type .section-header,
main[data-contact] > .section:first-of-type .section-header {
  align-items: center;
  justify-content: center;
}

.shop-page > .section:first-of-type .section-header > div:first-child,
main[data-contact] > .section:first-of-type .section-header > div:first-child {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "hero-eyebrow"
    "hero-title"
    "hero-callout";
  row-gap: 0.9rem;
  align-items: center;
  justify-content: center;
  justify-items: center;
  text-align: center;
  padding: 0;
  border: 0;
  background: transparent;
}

.shop-page > .section:first-of-type .section-header .eyebrow,
main[data-contact] > .section:first-of-type .section-header .eyebrow {
  display: none;
}

.shop-page > .section:first-of-type .section-header h2,
main[data-contact] > .section:first-of-type .section-header h2 {
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  line-height: 1.12;
  text-shadow: none;
  text-align: center;
  justify-self: center;
}

.shop-page > .section:first-of-type .section-header h2::before,
main[data-contact] > .section:first-of-type .section-header h2::before {
  content: "";
  display: block;
  width: min(28.4rem, calc(100vw - 2rem));
  max-width: 100%;
  height: 1px;
  margin: 0 auto 0.55rem;
  background: linear-gradient(
    90deg,
    rgba(28, 27, 26, 0),
    rgba(28, 27, 26, 0.35),
    rgba(28, 27, 26, 0)
  );
  box-shadow: 0 1px 2px rgba(28, 27, 26, 0.12);
}

.shop-page > .section:first-of-type .section-header > div:first-child > p::after,
main[data-contact] > .section:first-of-type .section-header > div:first-child > p::after {
  content: "";
  display: block;
  width: 10.4rem;
  height: 1px;
  margin: 0.65rem auto 0;
  background: linear-gradient(
    90deg,
    rgba(28, 27, 26, 0),
    rgba(28, 27, 26, 0.32),
    rgba(28, 27, 26, 0)
  );
  box-shadow: 0 1px 2px rgba(28, 27, 26, 0.12);
}

.shop-page > .section:first-of-type .section-header > div:first-child > p,
main[data-contact] > .section:first-of-type .section-header > div:first-child > p {
  font-style: normal;
  font-weight: 400;
  color: var(--ink-muted);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  max-width: min(34rem, 100%);
  text-align: center;
  justify-self: center;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

/* About page heading styling (fancy, matches theme) */
main[data-about] .section-header {
  justify-content: center;
  text-align: center;
}

main[data-about] .section-header > div {
  width: 100%;
}

main[data-about] .section-header .eyebrow {
  display: inline-block;
  margin: 0 0 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

main[data-about] .section-header h2 {
  position: relative;
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.015em;
  text-align: center;
}

main[data-about] .section-header h2::before,
main[data-about] .section-header h2::after {
  content: "";
  display: block;
  height: 1px;
  margin: 0.6rem auto;
  background: linear-gradient(
    90deg,
    rgba(28, 27, 26, 0),
    rgba(28, 27, 26, 0.35),
    rgba(28, 27, 26, 0)
  );
  box-shadow: 0 1px 2px rgba(28, 27, 26, 0.12);
}

main[data-about] .section-header h2::before {
  width: 10rem;
  margin-top: 0;
}

main[data-about] .section-header h2::after {
  width: 6.5rem;
  margin-bottom: 0;
}

main[data-about] .hero-card h1 {
  position: relative;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  max-width: min(40rem, 100%);
  box-sizing: border-box;
}

main[data-about] .hero-card h1::before,
main[data-about] .hero-card h1::after {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(28, 27, 26, 0),
    rgba(28, 27, 26, 0.35),
    rgba(28, 27, 26, 0)
  );
  box-shadow: 0 1px 2px rgba(28, 27, 26, 0.12);
}

main[data-about] .hero-card h1::before {
  width: min(28.4rem, 100%);
  max-width: 100%;
  margin: 0 auto 0.55rem;
}

main[data-about] .hero-card h1::after {
  content: none;
}

main[data-about] .hero-card [data-about-lead]::after {
  content: "";
  display: block;
  width: min(10.4rem, 100%);
  height: 1px;
  margin: 0.65rem auto 0;
  background: linear-gradient(
    90deg,
    rgba(28, 27, 26, 0),
    rgba(28, 27, 26, 0.32),
    rgba(28, 27, 26, 0)
  );
  box-shadow: 0 1px 2px rgba(28, 27, 26, 0.12);
}

main[data-about] .hero-card .eyebrow {
  display: none;
}

main[data-about] .hero-card [data-about-lead] {
  text-align: center;
  width: 100%;
  max-width: min(36rem, 100%);
  margin: 0 auto;
  box-sizing: border-box;
}

main[data-about] .grid-2 .hero-image {
  min-height: 720px;
  background-position: center top;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent-strong);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.quotes-carousel {
  min-width: 0;
}

.quotes-carousel__stage {
  min-width: 0;
  width: 100%;
}

.quotes-carousel__viewport {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: contain;
  scroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 5%,
    #000 95%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 5%,
    #000 95%,
    transparent 100%
  );
}

.quotes-carousel__viewport::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(
    ellipse 120% 85% at 50% 118%,
    rgba(20, 18, 16, 0.12) 0%,
    rgba(177, 116, 79, 0.07) 38%,
    rgba(255, 255, 255, 0) 64%
  );
}

.quotes-carousel__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(28, 27, 26, 0.22);
  border-radius: 999px;
  background: #fff;
  color: rgba(28, 27, 26, 0.72);
  cursor: pointer;
  box-shadow: 0 12px 36px rgba(20, 18, 16, 0.2), 0 2px 8px rgba(20, 18, 16, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  opacity: 1;
  backdrop-filter: blur(8px);
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.quotes-carousel__nav svg {
  width: 1.35rem;
  height: 1.35rem;
}

.quotes-carousel__nav svg path {
  stroke-width: 2.65;
}

.quotes-carousel__nav--prev {
  left: 0.5rem;
}

.quotes-carousel__nav--next {
  right: 0.5rem;
}

.quotes-carousel__viewport:hover .quotes-carousel__nav {
  opacity: 1;
}

.quotes-carousel__nav:hover {
  color: var(--accent-strong);
  background: #fff;
  border-color: rgba(177, 116, 79, 0.45);
  box-shadow: 0 12px 34px rgba(177, 116, 79, 0.18), 0 1px 0 rgba(255, 255, 255, 0.95) inset;
}

.quotes-carousel__nav:focus-visible {
  opacity: 1;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.quotes-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.quotes-carousel__track {
  display: flex;
  align-items: stretch;
  gap: 1.8rem;
  padding: 0.25rem 0;
  will-change: transform;
}

.quotes-carousel__track .card {
  flex: 0 0 max(17rem, 28vw);
  scroll-snap-align: start;
  display: grid;
  gap: 1.1rem;
  align-content: start;
}

.quotes-carousel__track .card > p {
  margin: 0;
}

.quotes-carousel__meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.1rem;
}

.quotes-carousel__avatar {
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 22px rgba(20, 18, 16, 0.14), 0 0 0 1px rgba(28, 27, 26, 0.06);
}

.quotes-carousel__name {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.03em;
}

@media (max-width: 640px) {
  .quotes-carousel__nav {
    width: 2.7rem;
    height: 2.7rem;
  }

  .quotes-carousel__nav--prev {
    left: 0.35rem;
  }

  .quotes-carousel__nav--next {
    right: 0.35rem;
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  border: 1px solid rgba(28, 27, 26, 0.06);
  box-shadow: 0 18px 40px rgba(20, 18, 16, 0.08);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.product-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(28, 27, 26, 0.08);
  display: grid;
}

.product-image {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
}

.product-body {
  padding: 1.4rem;
  display: grid;
  gap: 0.6rem;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.product-price {
  font-weight: 700;
  color: var(--ink);
}

.tag {
  display: inline-flex;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.75rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.process-step {
  padding: 1.6rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid rgba(28, 27, 26, 0.08);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.stat {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: var(--surface-2);
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.4rem;
  color: var(--ink);
}

.cta {
  background: linear-gradient(120deg, rgba(177, 116, 79, 0.1), rgba(255, 255, 255, 0));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(177, 116, 79, 0.25);
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.85rem;
  background: #fff;
}

.pill.is-active {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding: 3rem 0 2rem;
  text-align: center;
}

.footer-brand {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.4rem;
  margin: 0;
}

.footer-muted {
  color: var(--ink-muted);
  margin-top: 0.6rem;
}

.footer-col h3 {
  margin: 0 0 0.8rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
  color: var(--ink-muted);
  justify-items: center;
}

.footer-legal {
  border-top: 1px solid rgba(28, 27, 26, 0.08);
  padding: 1rem 0 2rem;
  color: var(--ink-muted);
  font-size: 0.85rem;
  text-align: center;
}

.site-footer {
  background: linear-gradient(
    180deg,
    #f7f0e8 0%,
    #ebdccc 38%,
    #ddc4ae 72%,
    #d1b89e 100%
  );
  border-top: none;
  position: relative;
  overflow: hidden;
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(177, 116, 79, 0),
    rgba(177, 116, 79, 0.45),
    rgba(177, 116, 79, 0)
  );
  box-shadow: 0 1px 2px rgba(28, 27, 26, 0.12);
}

.site-footer::before {
  top: 0;
}

.site-footer::after {
  bottom: 0;
}

.footer-grid {
  position: relative;
}

.footer-grid::before,
.footer-grid::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(28, 27, 26, 0),
    rgba(28, 27, 26, 0.2),
    rgba(28, 27, 26, 0)
  );
}

.footer-grid::before {
  top: 0;
}

.footer-grid::after {
  bottom: 0;
}

.footer-col h3 {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-strong);
  font-size: 0.75rem;
}

.footer-legal {
  border-top: 0;
  position: relative;
}

.footer-legal::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(177, 116, 79, 0),
    rgba(177, 116, 79, 0.35),
    rgba(177, 116, 79, 0)
  );
}

.contact-grid,
.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.contact-studio-card {
  position: relative;
  overflow: hidden;
  padding: 2.25rem 2.25rem 2rem;
  background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(246, 242, 238, 0.98) 45%,
      rgba(243, 236, 231, 0.99) 100%
    );
  border: 1px solid rgba(177, 116, 79, 0.22);
  box-shadow: 0 20px 50px rgba(18, 16, 14, 0.07);
}

.contact-studio-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.contact-studio-heading {
  margin: 0 0 0.15rem;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
}

.contact-studio-designer {
  margin: 0 0 1.75rem;
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.contact-studio-details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}

.contact-studio-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-md);
  border: 1px solid rgba(28, 27, 26, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-studio-row:hover {
  border-color: rgba(177, 116, 79, 0.28);
  box-shadow: 0 8px 24px rgba(177, 116, 79, 0.1);
}

.contact-studio-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  flex-shrink: 0;
}

.contact-studio-copy {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.contact-studio-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.contact-studio-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  word-break: break-word;
  transition: color 0.2s ease;
}

.contact-studio-link:hover {
  color: var(--accent-strong);
}

.contact-studio-foot {
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px dashed rgba(28, 27, 26, 0.12);
}

.contact-studio-foot-line {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

.contact-studio-foot-line:last-child {
  margin-bottom: 0;
}

.form-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.8rem;
  border: 1px solid rgba(28, 27, 26, 0.08);
}

label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

input,
textarea,
select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  margin-top: 0.35rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-row.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.notice {
  background: var(--surface-2);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  border: 1px dashed rgba(28, 27, 26, 0.15);
  color: var(--ink-muted);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
}

.cart-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 16, 14, 0.5);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.cart-panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(420px, 100%);
  max-width: 100%;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.2s ease;
  display: grid;
  grid-template-rows: auto 1fr auto;
  box-shadow: var(--shadow);
}

.cart-drawer.open {
  pointer-events: auto;
}

.cart-drawer.open .cart-overlay {
  opacity: 1;
}

.cart-drawer.open .cart-panel {
  transform: translateX(0);
}

.cart-header,
.cart-footer {
  padding: 1.2rem 1.4rem;
  border-bottom: 1px solid rgba(28, 27, 26, 0.08);
}

.cart-footer {
  border-top: 1px solid rgba(28, 27, 26, 0.08);
  border-bottom: none;
}

.cart-items {
  padding: 1rem 1.4rem;
  overflow-y: auto;
  display: grid;
  gap: 1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  align-items: center;
}

.cart-item img {
  border-radius: 12px;
  height: 90px;
  object-fit: cover;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: #fff;
}

.cart-summary {
  display: grid;
  gap: 0.4rem;
  font-size: 0.95rem;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  color: var(--ink-muted);
}

.cart-summary-row strong {
  color: var(--ink);
}

.empty-state {
  padding: 2rem;
  text-align: center;
  color: var(--ink-muted);
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(18, 16, 14, 0.56);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 30;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: min(720px, 92vw);
  max-height: 86vh;
  overflow-y: auto;
}

.modal-close {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  margin-left: auto;
}

.product-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.admin {
  background: #f4f1ed;
}

.admin-shell {
  padding: 2.5rem 0 4rem;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.8rem;
}

.admin-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  border: 1px solid rgba(28, 27, 26, 0.08);
  box-shadow: 0 16px 40px rgba(20, 18, 16, 0.08);
}

.admin-card h3 {
  margin-bottom: 1rem;
}

.admin-list {
  display: grid;
  gap: 1.2rem;
}

.admin-product {
  border: 1px solid rgba(28, 27, 26, 0.08);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
  background: var(--surface-2);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.admin-note {
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.table th,
.table td {
  text-align: left;
  padding: 0.6rem 0.4rem;
  border-bottom: 1px solid rgba(28, 27, 26, 0.08);
}

.product-detail-section {
  padding-top: 1.5rem;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.75rem;
  align-items: start;
}

.product-detail-gallery {
  position: sticky;
  top: 6.5rem;
}

.pd-stage {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: min(88vh, 52rem);
  background: #1a1816;
  box-shadow: var(--shadow);
}

.pd-main-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.pd-main-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.85s ease, opacity 0.35s ease;
}

@media (hover: hover) {
  .pd-stage:hover .pd-main-image {
    transform: scale(1.07);
  }
}

.pd-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(12, 10, 9, 0.2);
  transition: background 0.2s ease, transform 0.2s ease;
}

.pd-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}

.pd-nav--prev {
  left: 1rem;
}

.pd-nav--next {
  right: 1rem;
}

.pd-thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.65rem;
  margin-top: 1.15rem;
  padding: 0.2rem 0;
  overflow-x: auto;
  scrollbar-width: thin;
}

.pd-thumb {
  flex: 0 0 auto;
  width: 5.25rem;
  height: 6.5rem;
  border-radius: 14px;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-color: var(--surface-2);
  opacity: 0.82;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.pd-thumb:hover,
.pd-thumb:focus-visible {
  opacity: 1;
  outline: none;
  transform: translateY(-2px);
}

.pd-thumb.is-active {
  border-color: var(--accent);
  opacity: 1;
  box-shadow: 0 6px 20px rgba(177, 116, 79, 0.35);
}

.product-detail-aside {
  padding: 2rem 2.25rem;
}

.pd-back {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-strong);
  margin-bottom: 1.25rem;
}

.product-detail-aside .tag {
  margin-bottom: 0.75rem;
}

.product-detail-title {
  font-size: clamp(1.85rem, 2.5vw, 2.65rem);
  margin-bottom: 0.5rem;
}

.product-detail-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 1rem;
}

.product-detail-short {
  font-size: 1.05rem;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
}

.product-detail-body p {
  margin-bottom: 1rem;
}

.pd-detail-list {
  margin: 1.25rem 0;
  padding-left: 1.25rem;
  color: var(--ink-muted);
}

.pd-detail-list li {
  margin-bottom: 0.45rem;
}

.pd-lead-meta {
  font-size: 0.95rem;
  color: var(--ink-muted);
  margin: 1.25rem 0 1.5rem;
}

.pd-actions {
  margin-top: 0.5rem;
}

@media (max-width: 1024px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .product-detail-gallery {
    position: static;
  }

  .hero-card {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .grid-3,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-2,
  .info-grid,
  .contact-grid,
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  input,
  textarea,
  select {
    font-size: 1rem;
  }

  .form-row.two {
    grid-template-columns: 1fr;
  }

  .section-header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
  }

  .section-header > div {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .section-header .btn,
  .section-header .btn-ghost {
    margin-left: auto;
    margin-right: auto;
  }

  .announcement-marquee__viewport {
    max-width: 100%;
  }

  .announcement-marquee__set {
    padding-right: min(3.5rem, 8vw);
  }

  .brand {
    max-width: calc(100vw - 8.5rem);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-banner {
    min-height: clamp(20rem, 68vh, 44rem);
  }

  .hero-banner-content {
    padding: 6.25rem 0 4.25rem;
  }

  .hero-banner-title {
    max-width: 100%;
    text-wrap: balance;
  }

  .hero-banner-lead {
    max-width: 100%;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 0.65rem 0.5rem;
    width: 100%;
    display: none;
    border: 1px solid rgba(28, 27, 26, 0.08);
    box-shadow: 0 12px 32px rgba(18, 16, 14, 0.08);
    order: 4;
  }

  .nav a {
    padding: 0.85rem 1rem;
    border-radius: 10px;
    letter-spacing: 0.06em;
  }

  .nav a:hover {
    background: var(--surface-2);
    color: var(--ink);
  }

  .nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
    order: 2;
    margin-left: auto;
  }

  .header-actions {
    order: 3;
  }

  .brand {
    order: 1;
  }

  .hero-card {
    padding: 2rem;
  }

  .product-grid,
  .grid-3,
  .process-list,
  .stats {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-modal-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto;
    transition: none !important;
  }

  .hero-carousel-slide.is-active {
    animation: none !important;
    transform: none !important;
  }

  .pd-stage:hover .pd-main-image {
    transform: none !important;
  }
}
