:root {
  --black: #111111;
  --black-soft: #1b1b1b;
  --gold: #c99a3d;
  --gold-dark: #6f4a0b;
  --gold-soft: #f6ecd8;
  --cream: #f8f6f1;
  --white: #ffffff;
  --grey-50: #fafafa;
  --grey-100: #f2f2f2;
  --grey-200: #e9e9e9;
  --grey-500: #737373;
  --grey-700: #444444;
  --green-wa: #0f7338;
  --shadow-sm: 0 8px 24px rgba(17, 17, 17, 0.06);
  --shadow-md: 0 20px 50px rgba(17, 17, 17, 0.10);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1240px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
summary {
  font: inherit;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  line-height: 1.14;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.65rem, 5vw, 5rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  color: var(--grey-700);
}

:focus-visible {
  outline: 3px solid var(--gold-dark);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
}

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

.announcement {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.86);
  background: var(--black);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-align: center;
}

.announcement span {
  margin: 0 12px;
  color: var(--gold);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--grey-200);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 78px;
  gap: 36px;
}

.logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  width: auto;
  height: 41px;
  padding-left: 130px;
  background: url("logo-k24.svg") left center / 118px 41px no-repeat;
  color: var(--black);
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.045em;
  text-indent: 0;
  white-space: nowrap;
}

.logo span {
  color: var(--gold);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  padding: 26px 0;
  font-size: 0.92rem;
  font-weight: 650;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

.mobile-nav {
  display: none;
  margin-left: auto;
}

.mobile-nav summary {
  padding: 9px 14px;
  border: 1px solid var(--grey-200);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav nav {
  position: absolute;
  top: calc(100% + 1px);
  right: 20px;
  left: 20px;
  display: grid;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-md);
}

.mobile-nav nav a {
  padding: 12px 10px;
  border-bottom: 1px solid var(--grey-100);
  font-weight: 650;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

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

.button-gold {
  color: var(--black);
  background: var(--gold);
  box-shadow: 0 10px 24px rgba(201, 154, 61, 0.22);
}

.button-gold:hover {
  background: #d6a94d;
}

.button-outline {
  color: var(--black);
  background: var(--white);
  border-color: #c8c8c8;
}

.button-dark {
  color: var(--white);
  background: var(--black);
}

.button-whatsapp {
  color: var(--white);
  background: var(--green-wa);
  box-shadow: 0 12px 30px rgba(22, 138, 69, 0.20);
}

.whatsapp-button::before,
.button-whatsapp::before {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-right: 9px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  content: "W";
  font-size: 0.72rem;
  font-weight: 900;
}

.whatsapp-button {
  color: var(--green-wa);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #f0c66f;
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 24%, rgba(201, 154, 61, 0.14), transparent 28%),
    var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(480px, 0.97fr);
  align-items: center;
  min-height: 680px;
  gap: 60px;
}

.hero-copy {
  padding: 84px 0;
}

.hero h1 {
  max-width: 770px;
  margin-bottom: 26px;
}

.hero h1 span {
  color: var(--gold-dark);
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 32px;
  font-size: 1.12rem;
}

.hero-smallprint {
  margin: 12px 0 0;
  color: var(--grey-500);
  font-size: 0.72rem;
}

.service-section {
  background: var(--grey-50);
}

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

.service-grid article {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 18px;
}

.service-grid article > span {
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.service-grid h3 {
  margin: 12px 0 10px;
  font-size: 1.25rem;
}

.service-grid p {
  margin: 0 0 18px;
  color: var(--grey-600);
  font-size: 0.88rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--grey-200);
}

.faq-list details {
  border-bottom: 1px solid var(--grey-200);
}

.faq-list summary {
  position: relative;
  padding: 20px 42px 20px 0;
  color: var(--black);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 4px;
  color: var(--gold-dark);
  font-size: 1.35rem;
}

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

.faq-list p {
  margin: -4px 0 20px;
  color: var(--grey-600);
  line-height: 1.75;
}

.subheading {
  margin: 26px 0 12px;
  font-size: 1.1rem;
}

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

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
  font-size: 0.91rem;
  font-weight: 750;
}

.trust-list span {
  display: inline-grid;
  place-items: center;
  width: 23px;
  height: 23px;
  margin-right: 6px;
  color: var(--gold-dark);
  background: var(--gold-soft);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  align-self: end;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  border-radius: 150px 24px 0 0;
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(248, 246, 241, 0.14), transparent 30%);
  content: "";
  pointer-events: none;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  object-position: center;
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 175px;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.floating-card strong {
  color: var(--gold-dark);
  font-size: 1.2rem;
}

.floating-card span {
  color: var(--grey-700);
  font-size: 0.74rem;
}

.floating-card-top {
  top: 22%;
  right: -20px;
}

.floating-card-bottom {
  bottom: 32px;
  left: -40px;
}

.benefits {
  position: relative;
  z-index: 2;
  padding: 26px 0;
  background: var(--white);
  border-block: 1px solid var(--grey-200);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.benefit-grid article {
  padding: 18px 16px;
  text-align: center;
  border-right: 1px solid var(--grey-200);
}

.benefit-grid article:last-child {
  border-right: 0;
}

.benefit-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 10px;
  color: var(--gold-dark);
  background: var(--gold-soft);
  border: 1px solid #ebd3a4;
  border-radius: 12px;
  font-size: 0.74rem;
  font-weight: 900;
}

.benefit-grid h2 {
  margin-bottom: 6px;
  font-size: 0.96rem;
  letter-spacing: -0.02em;
}

.benefit-grid p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
}

.section {
  padding: 100px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 44px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p:last-child,
.section-lead {
  font-size: 1.04rem;
}

.products-section {
  background: var(--grey-50);
}

.collection-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 66px 0 24px;
}

.collection-heading > div {
  display: flex;
  align-items: center;
  gap: 15px;
}

.collection-heading > div > span {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  color: var(--gold-dark);
  background: var(--gold-soft);
  border-radius: 12px;
  font-weight: 900;
}

.collection-heading h3,
.collection-heading p {
  margin: 0;
}

.collection-heading h3 {
  font-size: 1.35rem;
}

.collection-heading p,
.collection-heading > a {
  font-size: 0.85rem;
}

.collection-heading > a {
  color: var(--gold-dark);
  font-weight: 800;
}

.standalone-heading {
  margin-top: 88px;
}

.product-grid {
  display: grid;
  gap: 22px;
}

.product-grid-four {
  grid-template-columns: repeat(4, 1fr);
}

.product-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.02);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.product-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 4.2;
  background: var(--cream);
  border-bottom: 1px solid var(--grey-200);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform 300ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.025);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--grey-200);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.product-content {
  padding: 22px;
}

.product-type {
  margin-bottom: 7px;
  color: var(--gold-dark);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-content h4 {
  min-height: 2.55em;
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.product-content h4 a:hover {
  color: var(--gold-dark);
}

.product-content > p:not(.product-type) {
  min-height: 3.1em;
  margin-bottom: 14px;
  font-size: 0.82rem;
  line-height: 1.5;
}

.swatches {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  min-height: 26px;
  gap: 7px;
  margin-bottom: 16px;
}

.swatches i {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--white), 0 0 0 3px var(--grey-200);
}

.swatches .black { background: #111; }
.swatches .blue { background: #174fbb; }
.swatches .green { background: #174c35; }
.swatches .bordeaux { background: #671d30; }
.swatches .grey { background: #b8b8b8; }
.swatches .navy { background: #172743; }
.swatches .red { background: #d32636; }
.swatches .yellow { background: #ecbd24; }
.swatches .white { background: #fff; }

.text-link {
  display: inline-flex;
  gap: 8px;
  color: var(--black);
  font-size: 0.86rem;
  font-weight: 850;
}

.text-link span {
  color: var(--gold-dark);
  transition: transform 150ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.steps-section {
  background: var(--white);
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps::before {
  position: absolute;
  top: 30px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: #dfc78f;
  content: "";
}

.steps li {
  position: relative;
  z-index: 1;
  text-align: center;
}

.steps li > span {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  color: var(--gold-dark);
  background: var(--white);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
}

.steps h3 {
  margin-bottom: 7px;
  font-size: 1rem;
}

.steps p {
  margin: 0;
  font-size: 0.78rem;
}

.process-section {
  background: var(--cream);
  border-block: 1px solid var(--grey-200);
}

.process-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 70px;
}

.process-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 28px;
  background: var(--black);
  border: 1px solid #262626;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.process-copy {
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.process-list {
  display: grid;
  gap: 4px;
  padding: 0;
  margin: 28px 0;
  list-style: none;
}

.process-list li {
  display: flex;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--grey-200);
}

.process-list li > span {
  display: grid;
  place-items: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  color: var(--gold-dark);
  background: var(--gold-soft);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
}

.process-list strong {
  display: block;
  font-size: 0.92rem;
}

.process-list p {
  margin: 2px 0 0;
  font-size: 0.78rem;
}

.notice {
  display: grid;
  padding: 17px;
  background: var(--gold-soft);
  border-left: 3px solid var(--gold);
  border-radius: 5px 12px 12px 5px;
}

.notice strong {
  font-size: 0.88rem;
}

.notice span {
  color: var(--grey-700);
  font-size: 0.76rem;
}

.print-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  background: var(--black);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.print-photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.work-section {
  background: var(--grey-50);
  border-block: 1px solid var(--grey-200);
}

.work-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 480px);
  align-items: end;
  gap: 40px;
}

.work-heading > p {
  margin: 0 0 8px;
  color: var(--grey-700);
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}

.work-gallery-item {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: var(--black);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.work-gallery-wide {
  grid-column: span 2;
}

.work-gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  transition: transform 300ms ease;
}

.work-gallery-item:hover img {
  transform: scale(1.025);
}

.work-gallery-item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 2px;
  padding: 42px 22px 20px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
}

.work-gallery-item figcaption strong {
  font-size: 0.95rem;
}

.work-gallery-item figcaption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

.work-gallery-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
}

.work-gallery-cta p {
  margin: 0;
  font-weight: 750;
}

.print-copy {
  padding: 72px;
  color: var(--white);
}

.print-copy h2,
.print-copy p,
.print-copy li {
  color: var(--white);
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0 34px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 27px;
}

.check-list li::before {
  position: absolute;
  top: 0.1em;
  left: 0;
  color: var(--gold);
  content: "✓";
  font-weight: 900;
}

.sample-section {
  padding: 0 0 100px;
}

.sample-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 54px 60px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 50%, rgba(201, 154, 61, 0.18), transparent 35%),
    var(--black);
  border: 1px solid #292929;
  border-radius: var(--radius-lg);
}

.sample-card h2,
.sample-card p {
  color: var(--white);
}

.sample-card h2 {
  margin-bottom: 10px;
}

.sample-card p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.audience-section {
  background: var(--grey-50);
  border-top: 1px solid var(--grey-200);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.audience-grid article {
  padding: 26px 18px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  text-align: center;
}

.audience-grid span {
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.audience-grid h3 {
  margin: 12px 0 0;
  font-size: 0.91rem;
}

.contact-section {
  padding: 92px 0;
  background: var(--grey-50);
}

.contact-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 56px;
  padding: 62px;
  background: var(--gold);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(201, 154, 61, 0.18);
}

.contact-card h2,
.contact-card p {
  color: var(--black);
}

.contact-card h2 {
  margin-bottom: 12px;
}

.contact-card p {
  margin: 0;
}

.contact-actions {
  display: grid;
  align-items: start;
  gap: 12px;
}

.contact-actions > a:not(.button),
.contact-actions > span {
  color: #2d220e;
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 68px;
  padding: 74px 0 60px;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-grid p {
  max-width: 310px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
}

.footer-grid h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.88rem;
  letter-spacing: 0;
}

.footer-grid > div:not(:first-child) {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-grid a,
.footer-grid span {
  font-size: 0.82rem;
}

.footer-grid a:hover,
.footer-bottom a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 23px 0 28px;
  border-top: 1px solid #2e2e2e;
  font-size: 0.74rem;
}

.footer-bottom > div {
  display: flex;
  gap: 24px;
}

/* Product page */

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 28px;
  color: var(--grey-500);
  font-size: 0.78rem;
}

.breadcrumbs a:hover {
  color: var(--gold-dark);
}

.product-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.94fr);
  align-items: start;
  gap: 66px;
  padding-top: 34px;
  padding-bottom: 94px;
}

.gallery {
  min-width: 0;
}

.gallery-track {
  display: grid;
  grid-auto-columns: 100%;
  grid-auto-flow: column;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  background: var(--cream);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--gold) var(--grey-200);
  scrollbar-width: thin;
}

.gallery-slide {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 610px;
  margin: 0;
  scroll-snap-align: start;
  scroll-margin-inline-start: 0;
}

.gallery-slide img {
  width: 100%;
  height: 590px;
  object-fit: contain;
}

.gallery-zoom-trigger {
  display: block;
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: zoom-in;
}

.gallery-zoom-trigger:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -4px;
}

.lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  width: min(92vw, 900px);
  max-width: none;
  height: min(94vh, 1100px);
  max-height: none;
  padding: 18px;
  background: var(--white);
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

.image-lightbox::backdrop {
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: blur(5px);
}

.image-lightbox img {
  display: block;
  width: 100%;
  height: calc(100% - 42px);
  object-fit: contain;
  cursor: zoom-out;
}

.image-lightbox p {
  margin: 10px 54px 0 0;
  color: var(--grey-700);
  font-size: 0.8rem;
  font-weight: 800;
}

.image-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--black);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--grey-200);
  border-radius: 50%;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.image-lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0 0 5px;
  color: var(--black);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--grey-200);
  border-radius: 50%;
  font-size: 2.25rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transform: translateY(-50%);
}

.image-lightbox-prev {
  left: 22px;
}

.image-lightbox-next {
  right: 22px;
}

.image-lightbox-nav:hover,
.image-lightbox-close:hover {
  color: var(--gold-dark);
  border-color: var(--gold);
}

.gallery-slide figcaption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--grey-200);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.gallery-thumbs a {
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream);
  border: 1px solid var(--grey-200);
  border-radius: 12px;
}

.gallery-thumbs-three {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-thumbs button {
  overflow: hidden;
  aspect-ratio: 0.72;
  padding: 0;
  background: var(--cream);
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  cursor: pointer;
}

.gallery-thumbs button:hover,
.gallery-thumbs button.is-active {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold-soft);
}

.gallery-thumbs a:hover {
  border-color: var(--gold);
}

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

.gallery-help {
  margin: 10px 0 0;
  color: var(--grey-500);
  font-size: 0.75rem;
}

.product-summary {
  position: sticky;
  top: 112px;
  padding-top: 20px;
}

.product-summary h1 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4vw, 3.9rem);
}

.product-lead {
  margin-bottom: 20px;
  font-size: 1.06rem;
}

.product-price-panel {
  margin-bottom: 24px;
  padding: 18px 20px;
  background: var(--cream);
  border: 1px solid var(--gold);
  border-radius: 14px;
}

.product-price-label {
  margin: 0 0 3px;
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-price {
  margin: 0;
  color: var(--black);
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.1;
}

.product-price-note {
  margin: 7px 0 0;
  color: var(--grey-600);
  font-size: 0.76rem;
  line-height: 1.5;
}

.info-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.info-highlights > div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: 12px;
}

.info-highlights span {
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  color: var(--gold-dark);
  background: var(--gold-soft);
  border-radius: 10px;
  font-size: 0.68rem;
  font-weight: 900;
}

.info-highlights p {
  display: grid;
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.45;
}

.info-highlights strong {
  color: var(--black);
  font-size: 0.8rem;
}

.static-note {
  margin-bottom: 22px;
  padding: 18px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 4px 12px 12px 4px;
}

.static-note strong {
  font-size: 0.87rem;
}

.static-note p {
  margin: 4px 0 0;
  font-size: 0.78rem;
}

.product-whatsapp {
  width: 100%;
}

.product-color-picker {
  padding-top: 28px;
  margin: 28px 0 24px;
  border-top: 1px solid var(--grey-200);
}

.product-color-picker h2 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.product-color-picker > p:not(.eyebrow) {
  margin-bottom: 18px;
  font-size: 0.82rem;
}

.product-color-picker .detail-color-list {
  gap: 8px;
}

.product-color-picker .detail-color-list li {
  flex: 1 1 145px;
  min-width: 145px;
}

.product-color-picker .detail-color-list button {
  padding: 11px 13px;
  font-size: 0.78rem;
}

.variants-section {
  background: var(--grey-50);
  border-block: 1px solid var(--grey-200);
}

.detail-color-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.detail-color-list li {
  min-width: 175px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.detail-color-list button {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 14px 18px;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: inherit;
  font: inherit;
  cursor: pointer;
}

.detail-color-list li:has(button.is-active) {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold-soft);
}

.detail-color-list li span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.14);
}

.detail-color-list .light-swatch {
  box-shadow: inset 0 0 0 1px var(--grey-300);
}

.variant-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.variant-grid article {
  grid-column: span 2;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
}

.variant-grid article:nth-child(4) {
  grid-column: 2 / span 2;
}

.variant-grid article img {
  width: 100%;
  aspect-ratio: 1.02;
  background: var(--cream);
  object-fit: cover;
}

.variant-grid h3 {
  margin: 0;
  padding: 18px;
  border-top: 1px solid var(--grey-200);
  font-size: 1rem;
  text-align: center;
}

.product-benefit-strip {
  padding: 24px 0;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
}

.product-benefit-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.product-benefit-strip span {
  position: relative;
  padding-left: 20px;
  font-size: 0.76rem;
  font-weight: 800;
}

.product-benefit-strip span::before {
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  content: "✓";
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.product-information .check-list {
  grid-template-columns: repeat(2, 1fr);
}

.spec-list {
  align-self: center;
  margin: 0;
  padding: 20px 30px;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
}

.spec-list > div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--grey-200);
}

.spec-list > div:last-child {
  border-bottom: 0;
}

.spec-list dt {
  font-size: 0.8rem;
  font-weight: 850;
}

.spec-list dd {
  color: var(--grey-700);
  font-size: 0.8rem;
}

.print-options-section {
  background: var(--cream);
}

.print-options {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.print-options article {
  padding: 24px 14px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  text-align: center;
}

.print-options span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 13px;
  color: var(--gold-dark);
  background: var(--gold-soft);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
}

.print-options h3 {
  margin: 0;
  font-size: 0.84rem;
  letter-spacing: -0.02em;
}

.other-products {
  border-top: 1px solid var(--grey-200);
}

.other-products-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.other-products-list li {
  position: relative;
  padding: 16px 16px 16px 46px;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 750;
}

.other-products-list li::before {
  position: absolute;
  top: 50%;
  left: 16px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: var(--gold-dark);
  background: var(--gold-soft);
  border-radius: 50%;
  content: "•";
  transform: translateY(-50%);
}

.back-products {
  margin: 28px 0 0;
}

.legal-page main {
  background: var(--grey-50);
}

.legal-hero {
  padding: 88px 0 76px;
  color: var(--white);
  background: linear-gradient(135deg, var(--black), #292929);
}

.legal-hero h1 {
  max-width: 850px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.7rem, 7vw, 5.6rem);
}

.legal-hero > .container > p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 20px;
  color: var(--grey-300);
  font-size: 1.04rem;
}

.legal-hero > .container > span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
}

.legal-layout {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  align-items: start;
  gap: 42px;
  padding-top: 70px;
  padding-bottom: 100px;
}

.legal-toc {
  position: sticky;
  top: 110px;
  display: grid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.legal-toc strong {
  padding: 18px;
  border-bottom: 1px solid var(--grey-200);
  font-size: 0.83rem;
}

.legal-toc a {
  padding: 10px 18px;
  color: var(--grey-700);
  font-size: 0.74rem;
}

.legal-toc a:hover {
  color: var(--gold-dark);
  background: var(--gold-soft);
}

.legal-card {
  padding: clamp(28px, 5vw, 68px);
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.legal-card section {
  padding-block: 34px;
  border-bottom: 1px solid var(--grey-200);
  scroll-margin-top: 120px;
}

.legal-card section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-card h2 {
  margin-bottom: 18px;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.legal-card p,
.legal-card li,
.legal-card address,
.legal-table span {
  color: var(--grey-700);
  font-size: 0.9rem;
  line-height: 1.8;
}

.legal-card ul,
.legal-card ol {
  display: grid;
  gap: 8px;
  padding-left: 22px;
  margin-block: 18px;
}

.legal-card address {
  padding: 22px;
  margin-top: 18px;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  font-style: normal;
}

.legal-card mark {
  padding: 2px 5px;
  color: #613b00;
  background: #fff0bd;
  border-radius: 4px;
}

.legal-warning {
  padding: 20px 22px;
  margin-bottom: 16px;
  background: #fff8df;
  border: 1px solid #edd37c;
  border-left: 4px solid var(--gold-dark);
  border-radius: 10px;
}

.legal-warning strong {
  display: block;
  margin-bottom: 5px;
}

.legal-warning p {
  margin: 0;
  color: #684f16;
  font-size: 0.82rem;
  line-height: 1.6;
}

.legal-table {
  overflow: hidden;
  margin-block: 20px;
  border: 1px solid var(--grey-200);
  border-radius: 12px;
}

.legal-table > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--grey-200);
}

.legal-table > div:first-child {
  color: var(--black);
  background: var(--gold-soft);
}

.legal-table > div:last-child {
  border-bottom: 0;
}

.footer-bottom a[aria-current="page"] {
  color: var(--gold);
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 19px;
  }

  .header-button {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.85fr;
    gap: 32px;
  }

  .product-grid-four {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefit-grid article:nth-child(3) {
    border-right: 0;
  }

  .benefit-grid article:nth-child(-n + 3) {
    border-bottom: 1px solid var(--grey-200);
  }

  .audience-grid,
  .print-options {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid {
    gap: 36px;
  }

  .product-intro {
    gap: 38px;
  }

  .gallery-slide {
    min-height: 520px;
  }

  .gallery-slide img {
    height: 500px;
  }
}

@media (max-width: 900px) {
  .service-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    padding: 72px 0 20px;
  }

  .hero-visual {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .hero-image-wrap {
    min-height: 500px;
  }

  .hero-image-wrap img {
    min-height: 500px;
  }

  .product-grid-four {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .steps::before {
    display: none;
  }

  .steps li:last-child {
    grid-column: 1 / -1;
  }

  .process-grid,
  .print-grid,
  .contact-card,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .work-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .work-gallery-wide {
    grid-column: span 1;
  }

  .process-copy {
    padding: 30px;
  }

  .print-photo img {
    min-height: 380px;
  }

  .print-copy {
    padding: 52px;
  }

  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .product-intro {
    grid-template-columns: 1fr;
  }

  .product-summary {
    position: static;
  }

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

  .variant-grid article,
  .variant-grid article:nth-child(4) {
    grid-column: auto;
  }

  .variant-grid article:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 10px);
    justify-self: center;
  }

  .product-benefit-strip .container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .other-products-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-toc strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .service-grid article {
    padding: 24px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .announcement {
    font-size: 0.68rem;
  }

  .announcement span {
    margin: 0 5px;
  }

  .header-inner {
    min-height: 68px;
  }

  .logo {
    height: 36px;
    padding-left: 112px;
    background-size: 104px 36px;
    font-size: 0.92rem;
  }

  .section {
    padding: 72px 0;
  }

  .hero-copy {
    padding-top: 58px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 12vw, 3.55rem);
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

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

  .work-gallery-item,
  .work-gallery-item img {
    min-height: 300px;
  }

  .work-gallery-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 22px;
  }

  .work-gallery-cta .button {
    width: 100%;
  }

  .trust-list {
    display: grid;
    gap: 12px;
  }

  .hero-image-wrap,
  .hero-image-wrap img {
    min-height: 410px;
  }

  .floating-card-top {
    right: 5px;
  }

  .floating-card-bottom {
    bottom: 12px;
    left: 5px;
  }

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

  .benefit-grid article,
  .benefit-grid article:nth-child(3) {
    border-right: 1px solid var(--grey-200);
    border-bottom: 1px solid var(--grey-200);
  }

  .benefit-grid article:nth-child(even) {
    border-right: 0;
  }

  .collection-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-grid-four {
    grid-template-columns: 1fr;
  }

  .product-image {
    aspect-ratio: 1 / 0.98;
  }

  .product-content h4,
  .product-content > p:not(.product-type) {
    min-height: 0;
  }

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

  .steps li:last-child {
    grid-column: auto;
  }

  .process-copy,
  .print-copy,
  .contact-card,
  .sample-card {
    padding: 34px 24px;
  }

  .sample-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .audience-grid,
  .print-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .breadcrumbs {
    padding-top: 18px;
  }

  .product-intro {
    padding-bottom: 70px;
  }

  .gallery-slide {
    min-height: 390px;
  }

  .gallery-slide img {
    height: 370px;
  }

  .info-highlights {
    grid-template-columns: 1fr;
  }

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

  .variant-grid article:last-child {
    grid-column: auto;
    width: 100%;
  }

  .product-benefit-strip .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-information .check-list,
  .other-products-list {
    grid-template-columns: 1fr;
  }

  .legal-hero {
    padding: 64px 0 56px;
  }

  .legal-layout {
    gap: 24px;
    padding-top: 38px;
    padding-bottom: 70px;
  }

  .legal-toc {
    grid-template-columns: 1fr;
  }

  .legal-toc strong {
    grid-column: auto;
  }

  .legal-card {
    padding: 24px;
  }

  .legal-table > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .spec-list {
    padding: 14px 20px;
  }

  .spec-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
