/* =========================================================
   Ossita — kids furniture, crafted for childhood
   Redesign 2026. Palette, Georgia serif, and the dotted "O"
   monogram are preserved; everything else is rebuilt.
   ========================================================= */

:root {
  color-scheme: light;

  /* Brand palette (kept) */
  --ink: #242820;
  --muted: #6b695f;
  --paper: #f7f3ec;
  --milk: #fffdf8;
  --sand: #e8e1d6;
  --sage: #a7b59c;
  --sage-deep: #6d7d61;
  --clay: #d4835e;
  --clay-deep: #b9663f;
  --oak: #c9b89a;
  --charcoal: #2e2e2a;
  --line: #e0d6c8;
  --line-strong: #d0c4b2;
  --site-header-height: 74px;
  --hero-copy-padding-block: 96px;

  /* Surfaces & effects */
  --tint-sage: #eef0e9;
  --tint-clay: #f6e7de;
  --tint-sand: #f2ebe0;
  --shadow-sm: 0 6px 20px rgba(46, 46, 42, 0.06);
  --shadow-md: 0 18px 44px rgba(46, 46, 42, 0.1);
  --shadow-lg: 0 34px 80px rgba(46, 46, 42, 0.16);

  /* Type */
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Shape & rhythm */
  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --arch: 140px;
  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--paper);
  background-image:
    radial-gradient(1100px 620px at 82% -8%, rgba(167, 181, 156, 0.24), transparent 60%),
    radial-gradient(900px 560px at -6% 6%, rgba(212, 131, 94, 0.12), transparent 55%);
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
figure,
blockquote {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.01em;
}

:focus-visible {
  outline: 2.5px solid var(--sage-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

[hidden] {
  display: none !important;
}

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

@media (min-width: 1081px) {
  main > section:not(.hero):not(.page-hero):not(.product-hero) > .container {
    max-width: none;
  }
}

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

/* ---------- Custom icon system ---------- */
.icon {
  width: 1em;
  height: 1em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.14em;
}

/* ---------- Monogram (kept: the dotted O) ---------- */
.monogram-mark {
  position: relative;
  display: inline-block;
  width: fit-content;
  font-family: var(--serif);
  line-height: 0.82;
}

.monogram-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.17em;
  width: 0.1em;
  height: 0.1em;
  border-radius: 50%;
  background: currentColor;
  transform: translateX(-50%);
}

/* ---------- Shared bits ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--sage-deep);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow .icon {
  font-size: 1.1rem;
  stroke-width: 1.6;
}

.kicker {
  margin: 0;
  color: var(--clay-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lede {
  color: var(--muted);
  font-size: 1.08rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 13px 22px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.96rem;
  font-weight: 650;
  letter-spacing: 0.005em;
  cursor: pointer;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.btn .icon {
  font-size: 1.15rem;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--charcoal);
  color: var(--milk);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: #191b17;
  box-shadow: var(--shadow-md);
}

.btn--primary .icon {
  transition: transform 0.2s ease;
}

.btn--primary:hover .icon {
  transform: translateX(3px);
}

.btn--ghost {
  background: rgba(255, 253, 248, 0.6);
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn--ghost:hover {
  background: var(--milk);
  border-color: var(--oak);
}

.btn--light {
  background: var(--sand);
  color: var(--charcoal);
}

.btn--light:hover {
  background: var(--milk);
}

.btn--sage {
  background: var(--sage-deep);
  color: var(--milk);
}

.btn--sage:hover {
  background: #5c6b51;
}

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: relative;
  z-index: 20;
  background: rgba(247, 243, 236, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong) 20%, var(--line-strong) 80%, transparent);
}

.site-header .navbar {
  padding-block: 0;
}

.site-header__inner {
  position: relative;
  min-height: var(--site-header-height);
  padding-block: 12px;
  padding-inline: clamp(18px, 4vw, 56px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
}

.brand--center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  margin: 0;
  padding: 0;
  transform: translate(-50%, -50%);
}

.brand-mark {
  font-size: 2.15rem;
  color: var(--charcoal);
}

.site-nav {
  display: flex;
  min-width: 0;
  width: 100%;
}

.site-nav__group {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2px 8px;
  min-width: 0;
}

.site-nav__group .nav-item {
  flex: 0 0 auto;
}

.site-nav__group .nav-link {
  white-space: nowrap;
}

.site-header .nav-link {
  color: var(--muted);
  font-weight: 550;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus-visible,
.site-header .nav-link.active {
  color: var(--ink);
}

@media (min-width: 992px) {
  .site-nav {
    justify-content: space-between;
  }

  .site-nav__group {
    gap: clamp(8px, 1.5vw, 22px);
  }

  .site-nav__group--left {
    margin-right: auto;
  }

  .site-nav__group--right {
    margin-left: auto;
  }
}

@media (max-width: 991.98px) {
  .site-header__inner {
    padding-top: 12px;
    padding-bottom: 10px;
  }

  .brand--center {
    top: 12px;
    transform: translateX(-50%);
    pointer-events: auto;
  }

  .brand--center .brand-mark {
    font-size: 2.795rem;
  }

  .site-nav {
    flex-direction: column;
    gap: 2px;
    padding-top: 54px;
  }

  .site-nav__group {
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav__group--left {
    justify-content: center;
  }

  .site-nav__group--right {
    justify-content: center;
  }

  .site-nav__group .nav-item {
    flex: 0 0 auto;
  }
}

@media (max-width: 560px) {
  .site-header .nav-link {
    padding-inline: 0.35rem;
    font-size: 0.88rem;
  }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  isolation: isolate;
  overflow: hidden;
}

.hero__media {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  min-height: 0;
  overflow: hidden;
}

.hero > .container {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: none;
  padding-inline: var(--gutter);
}

.hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(247, 243, 236, 0.16) 0%,
      rgba(247, 243, 236, 0.08) 48%,
      rgba(247, 243, 236, 0) 50%
    );
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 22px;
  max-width: 540px;
  padding-block: var(--hero-copy-padding-block);
}

.hero__inner::before {
  content: none;
}

.hero__title {
  font-size: clamp(4.4rem, 15vw, 9rem);
  line-height: 0.86;
  letter-spacing: -0.02em;
}

.hero__title .monogram-mark {
  line-height: 0.86;
}

.hero__statement {
  max-width: 32ch;
  color: var(--charcoal);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-family: var(--serif);
  font-style: italic;
}

.hero__values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px 8px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--charcoal);
  font-size: 0.85rem;
  font-weight: 600;
}

.chip .icon {
  font-size: 1.15rem;
  color: var(--sage-deep);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* =========================================================
   Section scaffolding
   ========================================================= */
.section {
  padding-block: clamp(64px, 9vw, 122px);
}

.section--tint-sage {
  background: linear-gradient(180deg, var(--tint-sage), var(--paper));
}

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

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

.section__head {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 56px);
}

.section__head--center {
  margin-inline: auto;
  text-align: center;
  justify-items: center;
}

.section__title {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
}

.section__intro {
  color: var(--muted);
  font-size: 1.1rem;
}

/* =========================================================
   Pillars (custom-icon value cards)
   ========================================================= */
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pillar {
  display: grid;
  gap: 14px;
  padding: 30px 26px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--milk);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pillar__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--tint-sage);
  color: var(--sage-deep);
  font-size: 1.75rem;
}

.pillar:nth-child(2) .pillar__icon {
  background: var(--tint-clay);
  color: var(--clay-deep);
}

.pillar:nth-child(3) .pillar__icon {
  background: #efe7d7;
  color: #9a7b45;
}

.pillar h3 {
  font-size: 1.4rem;
}

.pillar p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* =========================================================
   Catalogue / piece cards
   ========================================================= */
.catalogue__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.piece-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--milk);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.piece-card:hover {
  transform: translateY(-5px);
  border-color: var(--oak);
  box-shadow: var(--shadow-md);
}

.piece-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--sand);
}

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

.piece-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: rgba(255, 253, 248, 0.92);
  color: var(--charcoal);
  font-size: 1.35rem;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(4px);
}

.piece-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  padding: 22px 22px 24px;
}

.piece-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.piece-card__code {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.piece-card h3 {
  font-size: 1.4rem;
}

.piece-card__body > p {
  color: var(--muted);
  font-size: 0.95rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 2px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--tint-sand);
  color: var(--charcoal);
  font-size: 0.76rem;
  font-weight: 600;
}

.piece-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 6px;
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 650;
}

.piece-card__link .icon {
  font-size: 1.1rem;
  color: var(--clay);
  transition: transform 0.2s ease;
}

.piece-card:hover .piece-card__link .icon {
  transform: translateX(4px);
}

/* =========================================================
   Craft / materials
   ========================================================= */
.craft__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

.craft__list {
  display: grid;
  gap: 14px;
}

.craft-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--milk);
  box-shadow: var(--shadow-sm);
}

.craft-item__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--tint-sage);
  color: var(--sage-deep);
  font-size: 1.45rem;
}

.craft-item h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.craft-item p {
  color: var(--muted);
  font-size: 0.96rem;
}

.craft__media {
  position: relative;
  border-radius: var(--arch) var(--arch) var(--radius) var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
}

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

/* Image strip / gallery band */
.gallery-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.92fr 0.92fr;
  gap: 14px;
}

.gallery-strip figure {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: var(--sand);
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.gallery-strip figure:first-child img {
  aspect-ratio: 1.05;
}

/* =========================================================
   Collections
   ========================================================= */
.collections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.collection-card__media {
  aspect-ratio: 3 / 2;
  background: var(--sand);
}

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

.collection-card__body {
  display: grid;
  gap: 9px;
  padding: 24px 24px 28px;
}

.collection-card h3 {
  font-size: 1.5rem;
}

.collection-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* =========================================================
   Split feature (icon panels) — used on rooms/care/help/collections
   ========================================================= */
.panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.panel {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 30px 28px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--milk);
  box-shadow: var(--shadow-sm);
}

.panel__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: var(--tint-sage);
  color: var(--sage-deep);
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.panel .kicker {
  color: var(--sage-deep);
}

.panel h3 {
  font-size: 1.45rem;
}

.panel p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* =========================================================
   Callout (contact band)
   ========================================================= */
.callout {
  color: var(--milk);
}

.callout__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(38px, 5vw, 62px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 140% at 100% 0%, #3a3d34, transparent 60%),
    var(--charcoal);
  box-shadow: var(--shadow-lg);
}

.callout__text {
  display: grid;
  gap: 14px;
  max-width: 640px;
}

.callout .eyebrow {
  color: var(--oak);
}

.callout h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  color: var(--milk);
}

.callout p {
  color: rgba(255, 253, 248, 0.76);
  font-size: 1.05rem;
}

.callout .btn {
  flex: none;
}

/* =========================================================
   Assurances marquee
   ========================================================= */
.assurances {
  background: var(--sage-deep);
  color: var(--milk);
}

.assurances__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 40px;
  padding-block: 24px;
}

.assurance {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.assurance .icon {
  font-size: 1.35rem;
  color: rgba(255, 253, 248, 0.85);
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: #1c1e19;
  color: rgba(255, 253, 248, 0.72);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-block: clamp(48px, 6vw, 72px);
}

.footer-brand {
  display: grid;
  gap: 14px;
  align-content: start;
  max-width: 300px;
}

.footer-brand__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--milk);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.footer-brand__logo .brand-mark {
  font-size: 1.7rem;
  color: var(--milk);
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-col h4 {
  margin-bottom: 16px;
  color: var(--milk);
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col ul {
  display: grid;
  gap: 10px;
}

.footer-col a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.95rem;
  transition: color 0.16s ease;
}

.footer-col a:hover {
  color: var(--milk);
}

.footer-col a .icon {
  font-size: 1rem;
  color: var(--oak);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 253, 248, 0.12);
  font-size: 0.88rem;
}

.footer-bottom a:hover {
  color: var(--milk);
}

/* =========================================================
   Sub-page hero
   ========================================================= */
.page-hero {
  padding-block: 0;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  max-width: none;
  padding-inline: 0;
}

.page-hero__text {
  display: grid;
  gap: 20px;
  align-content: center;
  justify-self: center;
  width: min(100% - (var(--gutter) * 2), 620px);
  padding-block: var(--hero-copy-padding-block);
}

.page-hero__title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 0.98;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.page-hero__media {
  position: relative;
  min-height: 0;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  box-shadow: none;
  background: var(--sand);
}

.page-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   Product page
   ========================================================= */
.product-page main {
  padding-bottom: 0;
}

.product-hero {
  padding-block: 0;
}

.product-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  max-width: none;
  padding-inline: 0;
}

.product-hero__media {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  min-height: 0;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  box-shadow: none;
  background: var(--sand);
}

.product-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 15px 8px 11px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.92);
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(6px);
}

.product-hero__badge .icon {
  font-size: 1.25rem;
  color: var(--sage-deep);
}

.product-hero__panel {
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
  align-self: center;
  display: grid;
  gap: 20px;
  align-content: start;
  width: min(100% - (var(--gutter) * 2), 620px);
  margin-block: var(--hero-copy-padding-block);
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--milk);
  box-shadow: var(--shadow-md);
}

.product-hero__panel h1 {
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 0.96;
}

.product-hero__lead {
  color: var(--muted);
  font-size: 1.06rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.spec {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--tint-sand);
}

.spec__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--milk);
  color: var(--sage-deep);
  font-size: 1.25rem;
}

.spec__label {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.spec__value {
  color: var(--charcoal);
  font-size: 0.92rem;
  line-height: 1.35;
}

.product-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Gallery */
.product-gallery {
  padding-block: clamp(20px, 3vw, 40px);
}

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

.product-figure {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--milk);
  box-shadow: var(--shadow-sm);
}

.product-figure img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-figure figcaption {
  padding: 15px 18px 17px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Detail grid */
.detail-section {
  padding-block: clamp(30px, 4vw, 56px);
}

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

.detail {
  display: grid;
  gap: 11px;
  align-content: start;
  padding: 28px 26px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--milk);
  box-shadow: var(--shadow-sm);
}

.detail__icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: var(--tint-sage);
  color: var(--sage-deep);
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.detail h3 {
  font-size: 1.35rem;
}

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

.note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 18px;
  padding: 26px 28px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.6);
}

.note__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: var(--tint-clay);
  color: var(--clay-deep);
  font-size: 1.35rem;
}

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

.note .kicker {
  margin-bottom: 5px;
}

/* Related */
.related {
  padding-block: clamp(40px, 6vw, 72px);
}

.related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: clamp(24px, 4vw, 40px);
}

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

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.related-card__media {
  aspect-ratio: 4 / 3;
  background: var(--sand);
}

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

.related-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  padding: 20px 22px 22px;
}

.related-card h3 {
  font-size: 1.25rem;
}

.related-card p {
  color: var(--muted);
  font-size: 0.93rem;
}

.related-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 6px;
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 650;
}

.related-card__link .icon {
  font-size: 1.05rem;
  color: var(--clay);
  transition: transform 0.2s ease;
}

.related-card:hover .related-card__link .icon {
  transform: translateX(4px);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  .pillars__grid,
  .catalogue__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 900px) {
  .header-actions .btn span:not(.visually-hidden) {
    display: none;
  }

  .header-actions .btn {
    padding: 10px;
    aspect-ratio: 1;
  }

  .hero,
  .craft__grid,
  .page-hero__grid,
  .product-hero__grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero__inner,
  .page-hero,
  .page-hero__grid,
  .product-hero,
  .product-hero__grid {
    min-height: auto;
  }

  .hero > .container {
    grid-column: 1;
    padding-inline: var(--gutter);
  }

  .hero__inner {
    max-width: 620px;
    padding-block: clamp(64px, 13vw, 104px);
  }

  .hero__media,
  .page-hero__media,
  .product-hero__media {
    display: none;
  }

  .hero::after {
    content: none;
  }

  .page-hero__text,
  .product-hero__panel {
    width: min(100% - (var(--gutter) * 2), 620px);
    margin-inline: auto;
  }

  .page-hero__text {
    padding-block: clamp(64px, 13vw, 104px);
  }

  .product-hero__panel {
    grid-column: 1;
    margin-block: clamp(40px, 10vw, 72px);
  }

  .craft__media,
  .page-hero__media {
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-lg);
    max-height: 460px;
  }

  .panel-grid,
  .collections__grid,
  .product-gallery__grid,
  .detail-grid,
  .related__grid,
  .gallery-strip {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-strip figure:first-child {
    grid-column: 1 / -1;
  }

  .gallery-strip figure:first-child img {
    aspect-ratio: 2;
  }
}

@media (max-width: 820px) {
  .callout__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .callout .btn {
    width: 100%;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .pillars__grid,
  .catalogue__grid,
  .panel-grid,
  .collections__grid,
  .product-gallery__grid,
  .detail-grid,
  .related__grid {
    grid-template-columns: 1fr;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .gallery-strip figure:first-child img {
    aspect-ratio: 1.3;
  }

  .spec-grid {
    grid-template-columns: 1fr;
  }

  .hero__cta,
  .hero__cta .btn,
  .page-hero__actions,
  .page-hero__actions .btn,
  .product-hero__cta,
  .product-hero__cta .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .note {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: clamp(3.4rem, 20vw, 5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
