:root {
  --ink: #17120f;
  --ink-soft: #493f38;
  --paper: #f4efe7;
  --paper-2: #ebe2d6;
  --cream: #fffaf2;
  --wood: #a66b3f;
  --wood-dark: #6d4227;
  --sage: #66705d;
  --line: rgba(23, 18, 15, 0.15);
  --shadow: 0 28px 80px rgba(44, 29, 18, 0.18);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}
body.dialog-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
::selection {
  background: var(--wood);
  color: white;
}
.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}
.site-header {
  height: 88px;
  padding: 0 clamp(22px, 5vw, 82px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  color: var(--cream);
}
.site-header.scrolled {
  position: fixed;
  height: 72px;
  background: rgba(24, 19, 15, 0.9);
  backdrop-filter: blur(15px);
  animation: drop 0.35s ease;
}
@keyframes drop {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.12em;
}
.brand span {
  display: grid;
  line-height: 1;
}
.brand strong {
  font-size: 12px;
}
.brand small {
  font-size: 10px;
  opacity: 0.72;
  margin-top: 6px;
  letter-spacing: 0.24em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
}
.nav-links > a:not(.nav-cta) {
  opacity: 0.76;
  transition: 0.25s;
}
.nav-links > a:hover {
  opacity: 1;
}
.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 12px 18px;
  border-radius: 999px;
  transition: 0.25s;
}
.nav-cta:hover {
  background: white;
  color: var(--ink);
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: #fff;
  margin: 7px auto;
}
.hero {
  min-height: 820px;
  height: 100vh;
  max-height: 980px;
  background: radial-gradient(
      circle at 75% 40%,
      rgba(188, 132, 86, 0.22),
      transparent 26%
    ),
    linear-gradient(120deg, #1d1713, #0f0c0a);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  padding: 120px clamp(22px, 7vw, 120px) 60px;
  position: relative;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, black, transparent 75%);
}
.hero-copy {
  max-width: 720px;
  position: relative;
  z-index: 2;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 700;
  margin: 0 0 22px;
  color: var(--wood);
}
.hero .eyebrow {
  color: #dca87a;
}
.hero h1,
.section h2 {
  font-family: "Playfair Display", serif;
}
.hero h1 {
  font-size: clamp(64px, 7vw, 112px);
  line-height: 0.93;
  letter-spacing: -0.055em;
  margin: 0;
}
.hero h1 em {
  font-weight: 600;
  color: #c9986e;
}
.hero-lead {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.65;
  max-width: 610px;
  color: rgba(255, 250, 242, 0.66);
  margin: 30px 0 34px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.button {
  border: 0;
  border-radius: 999px;
  padding: 15px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.25s, background 0.25s, color 0.25s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: var(--wood);
  color: white;
}
.button-primary:hover {
  background: #bc7c4b;
}
.button-ghost {
  border: 1px solid rgb(112, 112, 112);
  background: transparent;
  color: black;
}
.button-ghost:hover {
  background: white;
  color: var(--ink);
}
.button-light {
  background: var(--cream);
  color: var(--ink);
}
.hero-trust {
  display: flex;
  gap: 46px;
  margin-top: 58px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  max-width: 590px;
}
.hero-trust div {
  display: grid;
  gap: 5px;
}
.hero-trust strong {
  font-size: 20px;
}
.hero-trust span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.hero-visual {
  position: relative;
  height: 650px;
}
.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.orbit-one {
  width: 620px;
  height: 620px;
}
.orbit-two {
  width: 430px;
  height: 430px;
}
.hero-product {
  position: absolute;
  filter: drop-shadow(0 40px 50px rgba(0, 0, 0, 0.45));
  will-change: transform;
}
.hero-product-main {
  width: min(40vw, 530px);
  top: 13%;
  left: 5%;
  transform: rotate(-8deg);
}
.hero-product-small {
  width: min(22vw, 275px);
  right: 0;
  bottom: 7%;
  transform: rotate(9deg);
}
.floating-tag {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}
.floating-tag span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.11);
  display: grid;
  place-items: center;
}
.tag-one {
  left: 0;
  bottom: 24%;
}
.tag-two {
  right: 1%;
  top: 18%;
}
.hero-scroll {
  position: absolute;
  bottom: 0;
  left: 48%;
  font-size: 9px;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.38);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-scroll i {
  display: block;
  width: 1px;
  height: 54px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
}
.marquee {
  background: #c2946c;
  color: #241710;
  overflow: hidden;
  padding: 15px 0;
}
.marquee-track {
  width: max-content;
  display: flex;
  gap: 28px;
  align-items: center;
  animation: marquee 28s linear infinite;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.marquee-track b {
  font-size: 9px;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.section {
  padding: 120px clamp(22px, 7vw, 120px);
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 440px);
  align-items: end;
  gap: 60px;
  margin-bottom: 48px;
}
.section h2 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0;
}
.section-heading > p,
.story-copy > p,
.material-copy > p,
.contact-copy > p {
  color: var(--ink-soft);
  line-height: 1.75;
  margin: 0;
}
.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}
.filter-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13px;
  cursor: pointer;
  transition: 0.2s;
}
.filter:hover,
.filter.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.search-box {
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}
.search-box input {
  border: 0;
  background: transparent;
  outline: 0;
  width: 160px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(23, 18, 15, 0.08);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s, box-shadow 0.35s, background 0.35s;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.7);
}
.product-image {
  aspect-ratio: 1/0.84;
  background: linear-gradient(135deg, #e7ddcf, #f7f1e8);
  padding: 25px;
  overflow: hidden;
  position: relative;
}
.product-image:after {
  content: "VIEW";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: white;
  font-size: 9px;
  letter-spacing: 0.16em;
  opacity: 0;
  transform: scale(0.7);
  transition: 0.25s;
}
.product-card:hover .product-image:after {
  opacity: 1;
  transform: scale(1);
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.45s;
}
.product-card:hover img {
  transform: scale(1.06) rotate(-1deg);
}
.product-info {
  padding: 18px;
}
.product-meta {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--wood);
  margin-bottom: 8px;
}
.product-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin: 0 0 10px;
}
.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-soft);
}
.product-bottom span:last-child {
  font-size: 17px;
}
.empty-state {
  text-align: center;
  padding: 50px;
  border: 1px dashed var(--line);
  color: var(--ink-soft);
}
.story {
  background: #1a1511;
  color: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
}
.story-media {
  position: relative;
}
.story-image {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-badge {
  position: absolute;
  right: -36px;
  bottom: 45px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #c9986e;
  color: #21140c;
  display: grid;
  place-content: center;
  text-align: center;
  transform: rotate(8deg);
}
.story-badge strong {
  font-family: "Playfair Display", serif;
  font-size: 31px;
}
.story-badge span {
  font-size: 11px;
}
.story-copy > p {
  color: rgba(255, 255, 255, 0.6);
  margin: 25px 0 36px;
}
.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.process-list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}
.process-list li > span {
  font-size: 11px;
  color: #c9986e;
  letter-spacing: 0.12em;
}
.process-list strong {
  font-size: 17px;
}
.process-list p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.6;
}
.material-section {
  background: #d8c8b5;
}
.material-copy {
  max-width: 730px;
  margin-bottom: 50px;
}
.material-copy > p {
  margin-top: 22px;
  max-width: 640px;
}
.material-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(23, 18, 15, 0.18);
  border-bottom: 1px solid rgba(23, 18, 15, 0.18);
}
.material-card {
  min-height: 300px;
  padding: 30px;
  border-right: 1px solid rgba(23, 18, 15, 0.18);
  display: flex;
  flex-direction: column;
}
.material-card:last-child {
  border: 0;
}
.material-number {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--wood-dark);
}
.material-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 31px;
  margin: auto 0 18px;
}
.material-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}
.buyer-section {
  background: var(--paper);
}
.buyer-panel {
  background: var(--sage);
  color: white;
  padding: clamp(38px, 6vw, 80px);
  min-height: 390px;
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  gap: 50px;
  align-items: end;
  position: relative;
  overflow: hidden;
}
.buyer-panel:after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  right: -180px;
  top: -200px;
}
.buyer-panel .eyebrow {
  color: #d8c3a9;
}
.buyer-panel h2 {
  font-size: clamp(42px, 4.2vw, 68px);
}
.buyer-panel p {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
  max-width: 600px;
}
.buyer-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.buyer-services span {
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
}
.contact-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(55px, 8vw, 120px);
  align-items: start;
}
.contact-copy {
  position: sticky;
  top: 120px;
}
.contact-copy > p {
  margin: 26px 0 38px;
}
.contact-details {
  display: grid;
  gap: 20px;
}
.contact-details a,
.contact-details div {
  display: grid;
  gap: 6px;
  font-weight: 600;
}
.contact-details span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--wood);
}
.contact-form {
  background: #ede4d8;
  padding: clamp(26px, 4vw, 48px);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(23, 18, 15, 0.25);
  background: transparent;
  padding: 12px 2px;
  outline: 0;
  color: var(--ink);
}
.contact-form textarea {
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--wood);
}
.contact-form .button {
  margin-top: 8px;
}
.form-note {
  font-size: 10px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 16px 0 0;
}
.form-note code {
  font-size: 10px;
}
.footer {
  background: #15110e;
  color: white;
  padding: 52px clamp(22px, 7vw, 120px) 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 35px;
  align-items: center;
}
.footer-brand {
  display: flex;
  gap: 13px;
  align-items: center;
}
.footer-brand div {
  display: grid;
  gap: 4px;
  font-size: 12px;
  letter-spacing: 0.12em;
}
.footer-brand span {
  font-size: 10px;
  opacity: 0.55;
  letter-spacing: 0.2em;
}
.footer > p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}
.footer-links {
  display: flex;
  gap: 20px;
  font-size: 12px;
}
.footer small {
  grid-column: 1/-1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.36);
}
.product-dialog,
.inquiry-dialog {
  border: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
  max-width: min(960px, 92vw);
  width: 100%;
  overflow: visible;
  opacity: 0;
  transform: translateY(30px) scale(0.965);
  transform-origin: center;
  transition: opacity 0.3s ease, transform 0.46s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.46s ease;
  will-change: opacity, transform;
}
.product-dialog.is-visible,
.inquiry-dialog.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  box-shadow: 0 44px 140px rgba(0, 0, 0, 0.52);
}
.product-dialog.is-closing,
.inquiry-dialog.is-closing {
  opacity: 0;
  transform: translateY(18px) scale(0.982);
  pointer-events: none;
  transition-duration: 0.28s;
}
.product-dialog::backdrop,
.inquiry-dialog::backdrop {
  background: rgba(10, 8, 7, 0);
  backdrop-filter: blur(0);
  transition: background-color 0.35s ease, backdrop-filter 0.42s ease;
}
.product-dialog.is-visible::backdrop,
.inquiry-dialog.is-visible::backdrop {
  background: rgba(10, 8, 7, 0.75);
  backdrop-filter: blur(6px);
}
.product-dialog.is-closing::backdrop,
.inquiry-dialog.is-closing::backdrop {
  background: rgba(10, 8, 7, 0);
  backdrop-filter: blur(0);
}
.product-dialog[open] {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.dialog-image {
  background: #e9dfd3;
  padding: 45px;
  display: grid;
  place-items: center;
  min-height: 520px;
  overflow: hidden;
}
.dialog-image > img {
  max-height: 430px;
  opacity: 0;
  transform: translateY(16px) scale(0.94);
  transition: opacity 0.24s ease, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-dialog.is-visible .dialog-image > img {
  animation: dialogProductImageIn 0.62s 0.06s cubic-bezier(0.22, 1, 0.36, 1)
    both;
}
.dialog-image > img.is-changing {
  opacity: 0 !important;
  transform: scale(0.965) !important;
}
.dialog-content {
  padding: 60px 50px;
}
.product-dialog .dialog-content > * {
  opacity: 0;
  transform: translateY(14px);
}
.product-dialog.is-visible .dialog-content > * {
  animation: dialogContentIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.product-dialog.is-closing .dialog-content > *,
.inquiry-dialog.is-closing .inquiry-inner > * {
  opacity: 1;
  transform: none;
}
.product-dialog.is-closing .dialog-image > img {
  opacity: 1;
  transform: none;
}
.product-dialog.is-visible .dialog-content > *:nth-child(1) {
  animation-delay: 0.08s;
}
.product-dialog.is-visible .dialog-content > *:nth-child(2) {
  animation-delay: 0.12s;
}
.product-dialog.is-visible .dialog-content > *:nth-child(3) {
  animation-delay: 0.16s;
}
.product-dialog.is-visible .dialog-content > *:nth-child(4) {
  animation-delay: 0.2s;
}
.product-dialog.is-visible .dialog-content > *:nth-child(5) {
  animation-delay: 0.24s;
}
.product-dialog.is-visible .dialog-content > *:nth-child(6) {
  animation-delay: 0.28s;
}
.inquiry-dialog .inquiry-inner > * {
  opacity: 0;
  transform: translateY(12px);
}
.inquiry-dialog.is-visible .inquiry-inner > * {
  animation: dialogContentIn 0.48s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.inquiry-dialog.is-visible .inquiry-inner > *:nth-child(1) {
  animation-delay: 0.06s;
}
.inquiry-dialog.is-visible .inquiry-inner > *:nth-child(2) {
  animation-delay: 0.1s;
}
.inquiry-dialog.is-visible .inquiry-inner > *:nth-child(3) {
  animation-delay: 0.14s;
}
.inquiry-dialog.is-visible .inquiry-inner > *:nth-child(4) {
  animation-delay: 0.18s;
}
@keyframes dialogProductImageIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes dialogContentIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.dialog-content h3,
.inquiry-inner h3 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin: 0 0 18px;
}
.dialog-content > p:not(.eyebrow),
.inquiry-inner > p {
  color: var(--ink-soft);
  line-height: 1.65;
}
.dialog-close {
  position: absolute;
  right: 14px;
  top: 12px;
  border: 0;
  background: rgba(255, 255, 255, 0.7);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 23px;
  z-index: 2;
  cursor: pointer;
}
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 28px 0;
}
.spec-grid div {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.spec-grid dt {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--wood);
}
.spec-grid dd {
  margin: 6px 0 0;
  font-size: 13px;
}
.inquiry-dialog {
  max-width: 560px;
}
.inquiry-inner {
  padding: 60px;
}
.inquiry-inner .button {
  margin-top: 20px;
}
.text-link {
  display: block;
  margin-top: 18px;
  text-decoration: underline;
  font-size: 13px;
}
.product-card {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease, border-color 0.35s ease;
}
.product-card:active {
  transform: scale(0.985);
}
.product-card:focus-visible {
  outline: 2px solid var(--wood);
  outline-offset: 4px;
}
.dialog-close {
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.dialog-close:hover {
  transform: rotate(90deg);
  background: #fff;
}
.gallery-thumb {
  transition: transform 0.24s ease, border-color 0.24s ease, opacity 0.24s ease;
}
.gallery-thumb:hover {
  transform: translateY(-2px);
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    padding-left: 55px;
    padding-right: 40px;
  }
  .hero-product-main {
    width: 46vw;
  }
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .buyer-panel {
    grid-template-columns: 1fr 1fr;
  }
  .buyer-panel .button {
    grid-column: 2;
  }
  .contact-section {
    grid-template-columns: 1fr 1.2fr;
  }
}
@media (max-width: 820px) {
  .site-header {
    height: 76px;
    padding: 0 22px;
  }
  .menu-toggle {
    display: block;
    z-index: 2;
  }
  .nav-links {
    position: fixed;
    inset: 0;
    background: #17120f;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    font-size: 22px;
    transform: translateX(100%);
    transition: 0.4s;
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .hero {
    height: auto;
    min-height: 980px;
    max-height: none;
    grid-template-columns: 1fr;
    padding: 130px 22px 60px;
  }
  .hero h1 {
    font-size: clamp(58px, 16vw, 90px);
  }
  .hero-visual {
    height: 470px;
    margin-top: 25px;
  }
  .hero-product-main {
    width: min(83vw, 470px);
    left: 0;
  }
  .hero-product-small {
    width: 210px;
  }
  .orbit-one {
    width: 450px;
    height: 450px;
  }
  .orbit-two {
    width: 310px;
    height: 310px;
  }
  .tag-one {
    bottom: 12%;
  }
  .tag-two {
    top: 8%;
  }
  .hero-scroll {
    display: none;
  }
  .section {
    padding: 90px 22px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .story {
    grid-template-columns: 1fr;
  }
  .story-badge {
    right: 15px;
  }
  .material-cards {
    grid-template-columns: 1fr;
  }
  .material-card {
    border-right: 0;
    border-bottom: 1px solid rgba(23, 18, 15, 0.18);
    min-height: 220px;
  }
  .buyer-panel {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .buyer-panel .button {
    grid-column: auto;
    justify-self: start;
  }
  .contact-section {
    grid-template-columns: 1fr;
  }
  .contact-copy {
    position: static;
  }
  .footer {
    grid-template-columns: 1fr;
  }
  .product-dialog[open] {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow: auto;
  }
  .dialog-image {
    min-height: 320px;
  }
  .dialog-content {
    padding: 38px 25px;
  }
}
@media (max-width: 520px) {
  .hero-trust {
    gap: 18px;
    justify-content: space-between;
  }
  .hero-trust strong {
    font-size: 17px;
  }
  .hero-trust span {
    font-size: 10px;
  }
  .floating-tag {
    font-size: 9px;
  }
  .hero-product-small {
    width: 150px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .dialog-image {
    padding: 25px;
  }
  .dialog-content h3,
  .inquiry-inner h3 {
    font-size: 34px;
  }
  .inquiry-inner {
    padding: 45px 25px;
  }
  .spec-grid {
    grid-template-columns: 1fr;
  }
  .footer-links {
    flex-wrap: wrap;
  }
}

/* Full catalog additions */
.filter small {
  opacity: 0.55;
  margin-left: 4px;
}
.catalog-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.sort-box {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.sort-box select {
  border: 0;
  background: transparent;
  outline: 0;
  color: var(--ink);
  max-width: 150px;
}
.catalog-summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: -12px 0 22px;
  color: var(--ink-soft);
  font-size: 12px;
}
.product-subtitle {
  margin: -4px 0 11px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.4;
}
.product-bottom {
  gap: 12px;
  align-items: flex-end;
}
.product-bottom span {
  line-height: 1.35;
  max-width: 55%;
}
.product-bottom strong {
  font-size: 12px;
  color: var(--wood-dark);
  text-align: right;
}
.image-count {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(6px);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.load-more-wrap .button {
  border-color: var(--line);
}
.dialog-image {
  position: relative;
  align-content: center;
}
.dialog-gallery {
  display: flex;
  gap: 8px;
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  overflow-x: auto;
  padding-bottom: 2px;
}
.gallery-thumb {
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  padding: 4px;
  border: 1px solid rgba(23, 18, 15, 0.16);
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}
.gallery-thumb.active {
  border: 2px solid var(--wood-dark);
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.dialog-price-wrap {
  margin: 18px 0 28px;
  padding: 20px;
  background: rgba(154, 115, 87, 0.08);
  border: 1px solid rgba(154, 115, 87, 0.18);
}
.dialog-price-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
}
.dialog-price-head span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--wood);
}
.dialog-price-head strong {
  font-family: "Playfair Display", serif;
  font-size: 24px;
}
.dialog-price-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 18px;
  border-top: 1px solid var(--line);
}
.dialog-price-tiers div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.dialog-price-tiers p {
  font-size: 12px;
  color: var(--ink-soft);
}
.dialog-price-wrap > small {
  display: block;
  margin-top: 12px;
  color: var(--ink-soft);
  line-height: 1.45;
}
.contact-details b {
  font-size: inherit;
}
@media (max-width: 820px) {
  .catalog-actions {
    width: 100%;
    justify-content: space-between;
  }
  .catalog-summary {
    margin-top: 4px;
  }
  .dialog-gallery {
    position: static;
    margin-top: 15px;
  }
  .dialog-image {
    display: block;
  }
  .dialog-image > img {
    display: block;
    margin: auto;
  }
  .dialog-price-tiers {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .catalog-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }
  .search-box input {
    width: 100%;
  }
  .sort-box {
    justify-content: space-between;
  }
  .catalog-summary {
    flex-direction: column;
    gap: 5px;
  }
  .product-bottom span {
    max-width: 48%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-dialog,
  .inquiry-dialog,
  .product-dialog::backdrop,
  .inquiry-dialog::backdrop,
  .dialog-image > img,
  .product-card,
  .dialog-close,
  .gallery-thumb {
    transition: none !important;
    animation: none !important;
  }
  .product-dialog.is-visible,
  .inquiry-dialog.is-visible {
    opacity: 1;
    transform: none;
  }
  .product-dialog.is-visible .dialog-image > img,
  .product-dialog.is-visible .dialog-content > *,
  .inquiry-dialog.is-visible .inquiry-inner > * {
    opacity: 1;
    transform: none;
  }
}

/* Dedicated product page */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--paper);
  pointer-events: none;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.38s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.18s ease;
}
.page-leaving .page-transition {
  opacity: 1;
  transform: scaleY(1);
  transform-origin: bottom;
}
.product-page {
  background: #eee5da;
}
.product-page .page-transition {
  background: #17120f;
}
.product-site-header {
  position: fixed;
  background: rgba(23, 18, 15, 0.94);
  backdrop-filter: blur(16px);
  height: 78px;
}
.product-main {
  padding-top: 78px;
}
.product-detail-section {
  padding: 42px clamp(22px, 6vw, 96px) 90px;
  min-height: calc(100vh - 78px);
}
.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 12px;
  margin: 8px 0 34px;
}
.product-breadcrumb a {
  font-weight: 700;
  color: var(--ink);
  transition: opacity 0.2s, transform 0.2s;
}
.product-breadcrumb a:hover {
  opacity: 0.62;
  transform: translateX(-3px);
}
.product-breadcrumb span:last-child {
  opacity: 0.62;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.8fr);
  gap: clamp(42px, 6vw, 100px);
  align-items: start;
}
.product-gallery-panel {
  min-width: 0;
}
.product-main-media {
  position: relative;
  min-height: 660px;
  background: linear-gradient(140deg, #ded0be, #f8f2e9 74%);
  display: grid;
  place-items: center;
  padding: clamp(40px, 6vw, 84px);
  overflow: hidden;
}
.product-main-media:before {
  content: "";
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid rgba(23, 18, 15, 0.08);
  border-radius: 50%;
}
.product-main-media:after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(23, 18, 15, 0.08);
  pointer-events: none;
}
.product-main-media > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: 530px;
  object-fit: contain;
  filter: drop-shadow(0 35px 35px rgba(72, 46, 28, 0.18));
  transition: opacity 0.22s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-main-media > img.is-changing {
  opacity: 0;
  transform: scale(0.96);
}
.product-image-index {
  position: absolute;
  z-index: 2;
  top: 42px;
  left: 42px;
  font-family: "Playfair Display", serif;
  font-size: 40px;
  color: rgba(23, 18, 15, 0.2);
}
.product-media-label {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 9px;
  color: var(--ink-soft);
}
.product-thumbnails {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  margin-top: 15px;
  padding: 3px 0 8px;
}
.product-thumbnail {
  flex: 0 0 92px;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(23, 18, 15, 0.13);
  background: #f8f2e9;
  padding: 8px;
  cursor: pointer;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.product-thumbnail:hover {
  transform: translateY(-3px);
}
.product-thumbnail.active {
  border-color: var(--wood-dark);
  box-shadow: inset 0 0 0 1px var(--wood-dark);
}
.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-detail-info {
  position: sticky;
  top: 112px;
  padding-top: 20px;
}
.product-detail-info h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(52px, 5vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin: 0 0 26px;
}
.product-detail-description {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 26px;
}
.product-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.product-highlights span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 9px;
  color: var(--ink-soft);
}
.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 0 28px;
  border-bottom: 1px solid var(--line);
}
.product-specs div {
  padding: 16px 14px 16px 0;
  border-top: 1px solid var(--line);
}
.product-specs div:nth-child(even) {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}
.product-specs dt {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--wood);
}
.product-specs dd {
  margin: 7px 0 0;
  font-size: 13px;
  line-height: 1.5;
}
.product-price-panel {
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(23, 18, 15, 0.12);
  padding: 24px;
  margin-bottom: 22px;
}
.product-price-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 16px;
}
.product-price-heading span {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 10px;
  color: var(--wood);
}
.product-price-heading strong {
  font-family: "Playfair Display", serif;
  font-size: 28px;
}
.product-price-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
  border-top: 1px solid var(--line);
}
.product-price-tiers div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.product-price-tiers p {
  color: var(--ink-soft);
  font-size: 12px;
}
.product-price-panel > small {
  display: block;
  margin-top: 13px;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.5;
}
.product-cta-group {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: 10px;
}
.product-inquiry-button {
  width: 100%;
  min-height: 54px;
}
.product-email-button {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  min-height: 54px;
}
.product-email-button:hover {
  background: var(--ink);
  color: white;
}
.product-order-note {
  font-size: 11px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 16px 0 0;
}
.product-service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #17120f;
  color: white;
  padding: 0 clamp(22px, 6vw, 96px);
}
.product-service-strip article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 38px clamp(20px, 3vw, 48px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.product-service-strip article:first-child {
  padding-left: 0;
}
.product-service-strip article:last-child {
  border-right: 0;
  padding-right: 0;
}
.product-service-strip article > span {
  color: #c9986e;
  font-size: 11px;
  letter-spacing: 0.12em;
}
.product-service-strip strong {
  font-family: "Playfair Display", serif;
  font-size: 22px;
}
.product-service-strip p {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.65;
  margin: 8px 0 0;
}
.related-products-section {
  background: var(--paper);
}
.related-products-section .section-heading {
  align-items: center;
}
.related-view-all {
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.related-card {
  display: block;
}
.product-not-found {
  min-height: 70vh;
  padding: 180px 22px 100px;
  text-align: center;
}
.product-not-found h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(50px, 7vw, 88px);
  max-width: 800px;
  margin: 0 auto 24px;
}
.product-not-found > p:not(.eyebrow) {
  color: var(--ink-soft);
  margin: 0 auto 30px;
}
.product-footer {
  background: #17120f;
  color: white;
}
.product-enter {
  opacity: 0;
  transform: translateY(24px);
}
.product-ready .product-enter {
  animation: productPageEnter 0.76s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.product-ready .product-enter[data-enter="1"] {
  animation-delay: 0.08s;
}
.product-ready .product-enter[data-enter="2"] {
  animation-delay: 0.16s;
}
@keyframes productPageEnter {
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 1100px) {
  .product-detail-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    gap: 44px;
  }
  .product-main-media {
    min-height: 570px;
  }
  .product-detail-info h1 {
    font-size: 58px;
  }
  .product-cta-group {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 820px) {
  .product-site-header {
    height: 76px;
  }
  .product-main {
    padding-top: 76px;
  }
  .product-detail-section {
    padding: 30px 22px 72px;
  }
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
  .product-main-media {
    min-height: 510px;
  }
  .product-detail-info {
    position: static;
    padding-top: 0;
  }
  .product-detail-info h1 {
    font-size: clamp(46px, 12vw, 68px);
  }
  .product-service-strip {
    grid-template-columns: 1fr;
    padding: 20px 22px;
  }
  .product-service-strip article,
  .product-service-strip article:first-child,
  .product-service-strip article:last-child {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .product-service-strip article:last-child {
    border-bottom: 0;
  }
  .related-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .product-breadcrumb {
    margin-bottom: 22px;
  }
  .product-main-media {
    min-height: 390px;
    padding: 42px 24px;
  }
  .product-main-media:after {
    inset: 12px;
  }
  .product-image-index {
    left: 22px;
    top: 22px;
    font-size: 30px;
  }
  .product-media-label {
    right: 20px;
    bottom: 19px;
  }
  .product-thumbnail {
    flex-basis: 76px;
    width: 76px;
    height: 76px;
  }
  .product-specs {
    grid-template-columns: 1fr;
  }
  .product-specs div:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }
  .product-price-tiers {
    grid-template-columns: 1fr;
  }
  .related-product-grid {
    grid-template-columns: 1fr;
  }
  .product-cta-group {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-transition,
  .product-enter,
  .product-main-media > img {
    transition: none !important;
    animation: none !important;
  }
  .product-enter {
    opacity: 1;
    transform: none;
  }
}

/* Product cards are links in the dedicated-page catalogue version. */
.product-card {
  display: block;
}

/* Craftsmanship photo carousel */
.story {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}
.story-media {
  min-width: 0;
}
.craft-carousel {
  position: relative;
  width: 100%;
  outline: none;
}
.craft-carousel-viewport {
  position: relative;
  height: clamp(460px, 48vw, 680px);
  min-height: 0;
  overflow: hidden;
  background: #0e0b09;
  isolation: isolate;
  cursor: grab;
  touch-action: pan-y;
}
.craft-carousel-viewport:active {
  cursor: grabbing;
}
.craft-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  will-change: transform;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.craft-carousel-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #211913;
}
.craft-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.035);
  filter: saturate(0.92) contrast(1.02);
  transition: transform 5.8s cubic-bezier(0.2, 0.65, 0.25, 1), filter 0.6s ease;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.craft-carousel-slide.is-active img {
  transform: scale(1);
  filter: saturate(1) contrast(1.02);
}
.craft-carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 9, 7, 0.22), transparent 36%),
    linear-gradient(0deg, rgba(12, 8, 6, 0.82), transparent 48%);
  pointer-events: none;
}
.craft-carousel-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.craft-carousel-caption {
  position: absolute;
  z-index: 3;
  left: clamp(24px, 4vw, 48px);
  right: 150px;
  bottom: 92px;
  display: grid;
  gap: 8px;
  pointer-events: none;
}
.craft-carousel-caption span {
  color: #d8a77d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.craft-carousel-caption strong {
  max-width: 520px;
  color: #fffaf2;
  font-family: "Playfair Display", serif;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
.craft-carousel-counter {
  position: absolute;
  z-index: 3;
  top: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  letter-spacing: 0.14em;
}
.craft-carousel-counter i {
  display: block;
  width: 34px;
  height: 1px;
  background: rgba(255, 255, 255, 0.42);
}
.craft-carousel-controls {
  position: absolute;
  z-index: 4;
  left: clamp(24px, 4vw, 48px);
  bottom: 28px;
  display: flex;
  gap: 8px;
}
.craft-carousel-button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(14, 10, 8, 0.35);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, background 0.25s ease,
    border-color 0.25s ease;
}
.craft-carousel-button:hover {
  transform: translateY(-2px);
  background: #fffaf2;
  border-color: #fffaf2;
  color: #17120f;
}
.craft-carousel-button:focus-visible,
.craft-carousel-dot:focus-visible,
.craft-carousel:focus-visible {
  outline: 2px solid #d8a77d;
  outline-offset: 3px;
}
.craft-carousel-progress {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.craft-carousel-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: #d39b6c;
  transform: scaleX(0);
  transform-origin: left;
}
.craft-carousel-progress span.is-running {
  animation: craftCarouselProgress var(--craft-interval, 4800ms) linear forwards;
}
@keyframes craftCarouselProgress {
  to {
    transform: scaleX(1);
  }
}
.craft-carousel-dots {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 18px 4px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.craft-carousel-dots::-webkit-scrollbar {
  display: none;
}
.craft-carousel-dot {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease, transform 0.25s ease;
}
.craft-carousel-dot:hover {
  transform: scale(1.25);
  background: rgba(255, 255, 255, 0.55);
}
.craft-carousel-dot.active {
  width: 34px;
  background: #c9986e;
}
.craft-carousel-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.story-badge {
  z-index: 5;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1100px) {
  .story {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
    gap: 55px;
  }
  .craft-carousel-caption {
    right: 100px;
  }
}
@media (max-width: 820px) {
  .story {
    grid-template-columns: 1fr;
  }
  .craft-carousel-viewport {
    height: clamp(470px, 76vw, 620px);
  }
  .craft-carousel-caption {
    right: 110px;
  }
}
@media (max-width: 520px) {
  .craft-carousel-viewport {
    height: 430px;
  }
  .craft-carousel-caption {
    left: 22px;
    right: 24px;
    bottom: 86px;
  }
  .craft-carousel-caption strong {
    font-size: 29px;
  }
  .craft-carousel-controls {
    left: 20px;
    bottom: 24px;
  }
  .craft-carousel-button {
    width: 42px;
    height: 42px;
  }
  .craft-carousel-counter {
    top: 20px;
    right: 20px;
  }
  .story-badge {
    width: 116px;
    height: 116px;
    right: 12px;
    bottom: -42px;
  }
  .story-badge strong {
    font-size: 26px;
  }
  .craft-carousel-dots {
    padding-top: 54px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .craft-carousel-track,
  .craft-carousel-slide img,
  .craft-carousel-button,
  .craft-carousel-dot {
    transition: none !important;
    animation: none !important;
  }
  .craft-carousel-progress {
    display: none;
  }
}

.craft-carousel-caption span,
.craft-carousel-caption strong {
  transition: opacity 0.24s ease, transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}
.craft-carousel-caption.is-changing span,
.craft-carousel-caption.is-changing strong {
  opacity: 0;
  transform: translateY(9px);
}
