@font-face {
  font-family: "Heebo";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("fonts/heebo-hebrew.woff2") format("woff2");
  unicode-range: U+0590-05FF, U+200C-200D, U+25CC, U+FB1D-FB4F;
}

@font-face {
  font-family: "Heebo";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("fonts/heebo-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Noto Serif Hebrew";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/noto-serif-hebrew.woff2") format("woff2");
  unicode-range: U+0590-05FF, U+200C-200D, U+25CC, U+FB1D-FB4F;
}

@font-face {
  font-family: "Noto Serif Hebrew";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("fonts/noto-serif-latin.woff2") format("woff2");
}

:root {
  --ink: #080807;
  --charcoal: #12110f;
  --charcoal-light: #1a1815;
  --gold: #c9a35d;
  --gold-bright: #d5b574;
  --ivory: #f4efe6;
  --muted: #b9b1a3;
  --line: rgba(201, 163, 93, 0.36);
  --header-height: 82px;
  --container: 1240px;
  --serif: "Noto Serif Hebrew", Georgia, serif;
  --sans: "Heebo", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ivory);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

figure,
h1,
h2,
h3,
p,
dl,
dd {
  margin: 0;
}

ol {
  margin: 0;
  padding: 0;
}

[id] {
  scroll-margin-top: 12px;
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

::selection {
  color: var(--ink);
  background: var(--gold);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  right: 12px;
  padding: 10px 18px;
  color: var(--ink);
  background: var(--ivory);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: 132px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(201, 163, 93, 0.22);
  background: rgba(8, 8, 7, 0.95);
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 8, 7, 0.985);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.header-shell {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
  align-items: center;
  width: min(calc(100% - 64px), 1400px);
  height: 100%;
  margin-inline: auto;
}

.brand {
  justify-self: start;
  width: 178px;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 42px);
}

.main-nav a,
.footer-nav a {
  position: relative;
  color: rgba(244, 239, 230, 0.82);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.015em;
  transition: color 180ms ease;
}

.main-nav a::after,
.footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  width: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transition: width 180ms ease;
}

.main-nav a:hover,
.footer-nav a:hover {
  color: var(--ivory);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.footer-nav a:hover::after,
.footer-nav a:focus-visible::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 18px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border: 1px solid transparent;
  border-radius: 1px;
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  color: var(--ink);
  border-color: var(--gold);
  background: var(--gold);
}

.button-gold:hover {
  border-color: var(--gold-bright);
  background: var(--gold-bright);
}

.button-outline {
  color: var(--ivory);
  border-color: rgba(201, 163, 93, 0.78);
  background: transparent;
}

.button-outline:hover {
  color: var(--ink);
  background: var(--gold);
}

.header-cta {
  min-height: 40px;
  padding: 10px 20px;
  font-size: 0.82rem;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 8px;
  border: 0;
  color: var(--ivory);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: 44% 56%;
  min-height: calc(100svh - var(--header-height));
  direction: rtl;
  overflow: hidden;
  background: var(--ink);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  padding: clamp(70px, 8vw, 132px) clamp(36px, 6vw, 100px);
  direction: rtl;
}

.hero-copy-inner {
  width: min(100%, 520px);
}

.hero h1,
.section-heading h2,
.about h2,
.process h2,
.contact h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.16;
}

.hero h1 {
  max-width: 520px;
  font-size: clamp(3.05rem, 5vw, 5.8rem);
}

.hero-copy p {
  max-width: 460px;
  margin-top: 32px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  font-weight: 300;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}

.hero-media {
  position: relative;
  min-height: 620px;
  direction: ltr;
  overflow: hidden;
  background: #0d0c0b;
}

.hero-media::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(to right, transparent 0 70%, rgba(8, 8, 7, 0.08) 83%, var(--ink) 100%);
}

.hero-slides,
.hero-slide,
.hero-slide picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide {
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 900ms ease, visibility 900ms ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 53%;
  transform: scale(1.035);
  transition: transform 6.2s cubic-bezier(0.2, 0.65, 0.2, 1);
}

.hero-slide.is-active img {
  transform: scale(1);
}

.hero-slide figcaption {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 30px;
  padding: 6px 10px;
  border-right: 1px solid var(--gold);
  color: rgba(244, 239, 230, 0.88);
  background: rgba(8, 8, 7, 0.38);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  backdrop-filter: blur(5px);
}

.hero-carousel-controls {
  position: absolute;
  z-index: 4;
  right: 30px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-carousel-controls[hidden] {
  display: none;
}

.hero-carousel-controls button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(244, 239, 230, 0.54);
  border-radius: 50%;
  color: var(--ivory);
  background: rgba(8, 8, 7, 0.44);
  font-size: 0.92rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(5px);
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.hero-carousel-controls button:hover,
.hero-carousel-controls button:focus-visible {
  color: var(--ink);
  border-color: var(--gold);
  background: var(--gold);
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-inline: 3px;
}

.carousel-dots button {
  width: 7px;
  height: 7px;
  border: 0;
  background: rgba(244, 239, 230, 0.56);
}

.carousel-dots button[aria-current="true"] {
  background: var(--gold);
  transform: scale(1.4);
}

.hero-carousel-controls .carousel-pause {
  margin-left: 4px;
  font-size: 0.74rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: end;
  gap: 64px;
  margin-bottom: 64px;
}

.section-heading h2,
.about h2,
.process h2,
.contact h2 {
  font-size: clamp(2.4rem, 4.4vw, 4.6rem);
}

.section-heading p,
.process-heading p {
  color: var(--muted);
  font-weight: 300;
  line-height: 1.85;
}

.gold-rule {
  display: block;
  width: 82px;
  height: 1px;
  margin-top: 26px;
  background: var(--gold);
}

.projects {
  background: var(--ink);
}

.projects-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 42px 30px;
  align-items: start;
}

.project {
  min-width: 0;
  grid-column: span 6;
}

.project-oranit {
  grid-column: 1 / span 7;
}

.project-brial {
  grid-column: 8 / span 5;
  grid-row: 1 / span 2;
}

.project-nuna {
  grid-column: 1 / span 4;
}

.project-ran {
  grid-column: 5 / span 3;
}

.media-button,
.detail {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 1px;
  color: var(--ivory);
  background: var(--charcoal);
  cursor: zoom-in;
}

.media-button picture {
  display: block;
  width: 100%;
  height: 100%;
}

.media-button img,
.detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1), filter 500ms ease;
}

.project .media-button {
  aspect-ratio: 4 / 3;
}

.project-oranit .media-button {
  aspect-ratio: 16 / 10;
}

.project-brial .media-button {
  aspect-ratio: 2 / 3;
}

.project-nuna .media-button,
.project-ran .media-button {
  aspect-ratio: 4 / 3;
}

.media-button::after,
.detail::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(to top, rgba(8, 8, 7, 0.48), transparent 45%);
  opacity: 0.38;
  transition: opacity 350ms ease;
}

.media-button:hover img,
.media-button:focus-visible img,
.detail:hover img,
.detail:focus-visible img {
  transform: scale(1.035);
}

.media-button:hover::after,
.detail:hover::after {
  opacity: 0.74;
}

.media-zoom {
  position: absolute;
  z-index: 2;
  bottom: 18px;
  left: 18px;
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border: 1px solid rgba(244, 239, 230, 0.6);
  border-radius: 50%;
  color: var(--ivory);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 250ms ease, transform 250ms ease;
}

.media-button:hover .media-zoom,
.media-button:focus-visible .media-zoom {
  opacity: 1;
  transform: translateY(0);
}

.project-caption {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  margin-top: 18px;
}

.project-caption h3 {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 500;
}

.project-caption p {
  max-width: 520px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.7;
}

.project-caption .project-meta {
  margin-top: 10px;
  color: rgba(201, 163, 93, 0.82);
  font-size: 0.79rem;
  letter-spacing: 0.01em;
  line-height: 1.55;
}

.about {
  padding-bottom: 0;
  background: var(--charcoal);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(60px, 8vw, 128px);
}

.about-copy > p {
  max-width: 580px;
  margin-top: 34px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.95;
}

.values-list {
  margin-top: 44px;
  border-top: 1px solid var(--line);
}

.values-list div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 22px;
  padding-block: 17px;
  border-bottom: 1px solid var(--line);
}

.values-list dt {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.values-list dd {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
}

.about-media {
  position: relative;
  align-self: stretch;
  min-height: 640px;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  padding: 15px 22px;
  color: var(--ivory);
  background: rgba(8, 8, 7, 0.88);
  font-size: 0.82rem;
}

.about-media figcaption span {
  color: var(--muted);
}

.partner-band {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px clamp(30px, 6vw, 92px);
  min-height: 116px;
  margin-top: 104px;
  padding: 30px;
  border-top: 1px solid var(--line);
  color: rgba(244, 239, 230, 0.48);
  background: #0d0c0b;
  font-family: var(--serif);
  font-size: 1.08rem;
  letter-spacing: 0.04em;
}

.partner-item {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(244, 239, 230, 0.56);
  white-space: nowrap;
}

.partner-item img {
  width: auto;
  max-width: 132px;
  max-height: 46px;
  object-fit: contain;
  opacity: 0.82;
  filter: grayscale(1) brightness(0.96) contrast(1.08);
}

.partner-item span {
  display: inline-block;
}

.process {
  border-bottom: 1px solid rgba(201, 163, 93, 0.2);
  background: var(--ink);
}

.process-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  align-items: end;
  gap: 64px;
  margin-bottom: 72px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  min-height: 270px;
  padding: 34px 28px 26px;
  border-left: 1px solid var(--line);
}

.process-list li:last-child {
  border-left: 0;
}

.process-list span {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4.8rem);
  font-weight: 400;
  line-height: 1;
}

.process-list h3 {
  margin-top: 40px;
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 500;
}

.process-list p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.75;
}

.details {
  background: var(--charcoal);
}

.details-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 320px 240px 360px;
  gap: 18px;
}

.detail-cutlery {
  grid-column: 1 / span 3;
  grid-row: 1 / span 2;
}

.detail-vanity {
  grid-column: 4 / span 4;
  grid-row: 1;
}

.detail-closet {
  grid-column: 8 / span 5;
  grid-row: 1;
}

.detail-table {
  grid-column: 4 / span 6;
  grid-row: 2 / span 2;
}

.detail-oranit {
  grid-column: 10 / span 3;
  grid-row: 2 / span 2;
}

.detail span {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 16px;
  font-family: var(--serif);
  font-size: 1rem;
}

.contact {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 810px;
  direction: ltr;
  background: var(--ink);
}

.contact-media {
  min-height: 620px;
}

.contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.contact-copy {
  display: grid;
  align-items: center;
  padding: clamp(70px, 8vw, 130px) clamp(36px, 6vw, 100px);
  direction: rtl;
}

.contact-inner {
  width: min(100%, 560px);
}

.contact h2 {
  max-width: 540px;
}

.contact-inner > p {
  max-width: 490px;
  margin-top: 26px;
  color: var(--muted);
  font-weight: 300;
}

.direct-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  margin-top: 28px;
}

.direct-contact a {
  color: var(--gold-bright);
  direction: ltr;
  font-size: 0.94rem;
}

.lead-form {
  display: grid;
  gap: 18px;
  margin-top: 40px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.lead-form label {
  display: grid;
  gap: 7px;
}

.lead-form label > span {
  color: var(--muted);
  font-size: 0.82rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(201, 163, 93, 0.52);
  border-radius: 0;
  color: var(--ivory);
  background: transparent;
  outline: 0;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.lead-form input,
.lead-form select {
  min-height: 48px;
  padding: 8px 2px;
}

.lead-form textarea {
  min-height: 82px;
  padding: 8px 2px;
  resize: vertical;
}

.lead-form select {
  color-scheme: dark;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--gold-bright);
  background: rgba(201, 163, 93, 0.035);
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  color: rgba(185, 177, 163, 0.74);
  font-size: 0.78rem;
  text-align: center;
}

.site-footer {
  padding-top: 70px;
  border-top: 1px solid var(--line);
  background: #050504;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 58px;
}

.footer-brand {
  width: 208px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px;
  border-top: 1px solid rgba(201, 163, 93, 0.18);
  color: rgba(185, 177, 163, 0.66);
  font-size: 0.77rem;
}

.gallery-dialog {
  width: min(1100px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(201, 163, 93, 0.6);
  border-radius: 1px;
  color: var(--ivory);
  background: var(--ink);
}

.gallery-dialog::backdrop {
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(4px);
}

.gallery-dialog figure {
  display: grid;
  max-height: calc(100vh - 42px);
  grid-template-rows: minmax(0, 1fr) auto;
}

.gallery-dialog img,
.gallery-dialog video {
  width: 100%;
  max-height: calc(100vh - 104px);
  object-fit: contain;
  background: #020202;
}

.gallery-dialog video {
  min-height: min(60vh, 620px);
}

.gallery-dialog figcaption {
  padding: 13px 18px;
  color: var(--muted);
  font-size: 0.84rem;
  text-align: right;
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: -14px;
  left: -14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--ivory);
  background: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.gallery-nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(201, 163, 93, 0.72);
  border-radius: 50%;
  color: var(--ivory);
  background: rgba(8, 8, 7, 0.78);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.gallery-nav:hover,
.gallery-nav:focus-visible,
.dialog-close:hover,
.dialog-close:focus-visible {
  color: var(--ink);
  border-color: var(--gold);
  background: var(--gold);
}

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

.gallery-prev {
  right: 18px;
}

.gallery-next {
  left: 18px;
}

.gallery-count {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 54px;
  padding: 4px 10px;
  border: 1px solid rgba(201, 163, 93, 0.48);
  color: var(--ivory);
  background: rgba(8, 8, 7, 0.74);
  font-size: 0.8rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  :root {
    --header-height: 76px;
  }

  .header-shell {
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 160px;
  }

  .main-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 20px 32px 34px;
    border-bottom: 1px solid var(--line);
    background: rgba(8, 8, 7, 0.995);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding-block: 13px;
    border-bottom: 1px solid rgba(201, 163, 93, 0.13);
    font-size: 1rem;
  }

  .main-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    grid-template-columns: 46% 54%;
  }

  .hero-copy {
    padding-inline: 42px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 5.4vw, 4.6rem);
  }

  .about-layout {
    gap: 58px;
  }

  .about-media {
    min-height: 560px;
  }

  .details-mosaic {
    grid-template-rows: 280px 220px 320px;
  }

  .contact-copy {
    padding-inline: 50px;
  }
}

@media (max-width: 800px) {
  .container,
  .header-shell {
    width: min(calc(100% - 36px), var(--container));
  }

  .section {
    padding-block: 88px;
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column-reverse;
  }

  .hero-media {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .hero-media::after {
    background: linear-gradient(to bottom, transparent 0 70%, rgba(8, 8, 7, 0.8) 100%);
  }

  .hero-slide figcaption {
    top: 16px;
    bottom: auto;
    left: 18px;
  }

  .hero-carousel-controls {
    right: 18px;
    bottom: 16px;
  }

  .hero-copy {
    min-height: 520px;
    padding: 74px 28px 82px;
  }

  .hero-copy-inner {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 11vw, 4.6rem);
  }

  .section-heading,
  .process-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 46px;
  }

  .section-heading p,
  .process-heading p {
    max-width: 560px;
  }

  .projects-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 20px;
  }

  .project,
  .project-oranit,
  .project-brial,
  .project-nuna,
  .project-ran {
    grid-column: auto;
    grid-row: auto;
  }

  .project-brial .media-button {
    aspect-ratio: 4 / 5;
  }

  .about {
    padding-bottom: 0;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-media {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .partner-band {
    margin-top: 72px;
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .process-list li:nth-child(2) {
    border-left: 0;
  }

  .process-list li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .details-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 430px 290px 340px;
  }

  .detail-cutlery {
    grid-column: 1;
    grid-row: 1;
  }

  .detail-vanity {
    grid-column: 2;
    grid-row: 1;
  }

  .detail-closet {
    grid-column: 1 / span 2;
    grid-row: 2;
  }

  .detail-table {
    grid-column: 1;
    grid-row: 3;
  }

  .detail-oranit {
    grid-column: 2;
    grid-row: 3;
  }

  .contact {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contact-media {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .contact-copy {
    padding: 84px 28px 92px;
  }

  .contact-inner {
    width: min(100%, 620px);
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .header-shell {
    width: calc(100% - 28px);
  }

  .brand {
    width: 138px;
  }

  .header-cta {
    display: none;
  }

  .container {
    width: calc(100% - 36px);
  }

  .section {
    padding-block: 76px;
  }

  .hero-copy {
    min-height: 500px;
    padding-inline: 18px;
  }

  .hero-carousel-controls {
    gap: 7px;
  }

  .hero-carousel-controls button {
    width: 32px;
    height: 32px;
  }

  .carousel-dots {
    gap: 6px;
  }

  .carousel-dots button {
    width: 7px;
    height: 7px;
  }

  .hero-copy p {
    margin-top: 24px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section-heading h2,
  .about h2,
  .process h2,
  .contact h2 {
    font-size: clamp(2.2rem, 11vw, 3.25rem);
  }

  .projects-mosaic {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .project-oranit .media-button,
  .project-nuna .media-button,
  .project-ran .media-button {
    aspect-ratio: 4 / 3;
  }

  .project-brial .media-button {
    aspect-ratio: 3 / 4;
  }

  .project-caption p {
    font-size: 0.9rem;
  }

  .about-layout {
    gap: 50px;
  }

  .about-media {
    aspect-ratio: 3 / 4;
  }

  .values-list div {
    grid-template-columns: 72px 1fr;
    gap: 14px;
  }

  .partner-band {
    gap: 14px 30px;
    min-height: 0;
    padding-block: 28px;
    font-size: 0.92rem;
  }

  .partner-item {
    min-height: 42px;
    gap: 7px;
  }

  .partner-item img {
    max-width: 104px;
    max-height: 38px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li {
    min-height: 0;
    padding: 30px 8px 34px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-list li:nth-child(n + 3) {
    border-top: 0;
  }

  .process-list li:last-child {
    border-bottom: 0;
  }

  .process-list h3 {
    margin-top: 22px;
  }

  .details-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 310px 200px 230px;
    gap: 10px;
  }

  .detail span {
    right: 13px;
    bottom: 10px;
    font-size: 0.88rem;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .contact-media {
    aspect-ratio: 1 / 1;
  }

  .contact-copy {
    padding-inline: 18px;
  }

  .direct-contact {
    display: grid;
  }

  .footer-main,
  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-brand {
    width: 180px;
  }

  .footer-nav {
    gap: 18px 28px;
  }

  .dialog-close {
    top: 8px;
    left: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-slide img,
  .hero-slide.is-active img {
    transform: none;
  }
}

[data-content-multiline] {
  white-space: pre-line;
}

.main-nav a[aria-current="page"],
.footer-nav a[aria-current="page"] {
  color: var(--gold-bright);
}

.main-nav a[aria-current="page"]::after,
.footer-nav a[aria-current="page"]::after {
  width: 100%;
}

.inner-page {
  background: var(--ink);
}

.custom-page-hero {
  display: grid;
  grid-template-columns: 54% 46%;
  min-height: calc(100svh - var(--header-height));
  direction: ltr;
  background: var(--ink);
}

.custom-page-hero-media {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.custom-page-hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(to right, transparent 0 64%, rgba(8, 8, 7, 0.28) 82%, var(--ink) 100%);
}

.custom-page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.custom-page-hero-copy {
  display: grid;
  align-items: center;
  padding: clamp(70px, 8vw, 128px) clamp(36px, 6vw, 96px);
  direction: rtl;
}

.custom-page-hero-copy > div {
  width: min(100%, 580px);
}

.custom-page-hero h1,
.custom-page-empty h1 {
  margin-top: 20px;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 5.8vw, 6.4rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.14;
}

.custom-page-hero-copy > div > p:not(.page-kicker),
.custom-page-empty p:not(.page-kicker) {
  max-width: 560px;
  margin-top: 28px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 300;
  line-height: 1.9;
}

.custom-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.custom-page-body-section {
  border-top: 1px solid rgba(201, 163, 93, 0.2);
  background: var(--charcoal);
}

.custom-page-body {
  max-width: 900px;
}

.custom-page-body p {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
  font-weight: 300;
  line-height: 2;
  white-space: pre-line;
}

.custom-page-body p + p {
  margin-top: 28px;
}

.custom-page-empty {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  align-items: center;
  padding-block: clamp(92px, 12vw, 150px);
  background: var(--ink);
}

.custom-page-empty .button {
  margin-top: 36px;
}

.about-page-hero {
  display: grid;
  grid-template-columns: 54% 46%;
  min-height: calc(100svh - var(--header-height));
  direction: ltr;
  background: var(--ink);
}

.about-page-hero-media {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.about-page-hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(to right, transparent 0 68%, rgba(8, 8, 7, 0.14) 84%, var(--ink) 100%);
}

.about-page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 47%;
}

.about-page-hero-copy {
  display: grid;
  align-items: center;
  padding: clamp(70px, 8vw, 128px) clamp(36px, 6vw, 96px);
  direction: rtl;
}

.about-page-hero-copy > div {
  width: min(100%, 560px);
}

.page-kicker {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.about-page-hero h1,
.story-copy h2,
.about-values-heading h2,
.location-inner h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.14;
}

.about-page-hero h1 {
  margin-top: 20px;
  font-size: clamp(3.6rem, 6vw, 6.8rem);
}

.about-page-hero-copy > div > p:not(.page-kicker) {
  max-width: 520px;
  margin-top: 30px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 300;
  line-height: 1.9;
}

.about-page-story {
  background: var(--charcoal);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(60px, 8vw, 120px);
}

.story-copy h2,
.about-values-heading h2,
.location-inner h2 {
  margin-top: 16px;
  font-size: clamp(2.5rem, 4.6vw, 4.8rem);
}

.story-copy > p:last-child {
  max-width: 590px;
  margin-top: 32px;
  color: var(--muted);
  font-weight: 300;
  line-height: 2;
}

.story-media {
  position: relative;
  min-height: 640px;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  padding: 14px 20px;
  color: var(--ivory);
  background: rgba(8, 8, 7, 0.88);
  font-size: 0.8rem;
}

.story-media figcaption span {
  color: var(--muted);
}

.about-values {
  border-bottom: 1px solid rgba(201, 163, 93, 0.2);
  background: var(--ink);
}

.about-values-heading {
  max-width: 780px;
  margin-bottom: 68px;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.about-values-grid article {
  min-height: 310px;
  padding: 36px 34px;
  border-left: 1px solid var(--line);
}

.about-values-grid article:last-child {
  border-left: 0;
}

.about-values-grid span {
  display: block;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 3.8rem;
  line-height: 1;
}

.about-values-grid h3 {
  margin-top: 54px;
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 500;
}

.about-values-grid p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.85;
}

.location-section {
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 720px;
  background: var(--charcoal);
}

.location-copy {
  display: grid;
  align-items: center;
  padding: clamp(68px, 8vw, 120px) clamp(36px, 6vw, 92px);
}

.location-inner {
  width: min(100%, 540px);
}

.location-inner > p:not(.page-kicker) {
  margin-top: 28px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.9;
}

.location-inner address {
  margin-top: 34px;
  padding-block: 17px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: normal;
}

.directions-button {
  margin-top: 34px;
}

.map-frame {
  min-height: 620px;
  overflow: hidden;
  background: #dedbd4;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  border: 0;
  filter: grayscale(0.55) contrast(1.02);
  transition: filter 300ms ease;
}

.map-frame:hover iframe,
.map-frame:focus-within iframe {
  filter: grayscale(0.1) contrast(1);
}

@media (max-width: 1100px) {
  .about-page-hero {
    grid-template-columns: 52% 48%;
  }

  .about-page-hero-copy {
    padding-inline: 44px;
  }

  .location-copy {
    padding-inline: 48px;
  }
}

@media (max-width: 800px) {
  .custom-page-hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
  }

  .custom-page-hero-media {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .custom-page-hero-media::after {
    background: linear-gradient(to bottom, transparent 0 70%, rgba(8, 8, 7, 0.82) 100%);
  }

  .custom-page-hero-copy {
    padding: 76px 28px 86px;
  }

  .custom-page-hero-copy > div {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .about-page-hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
  }

  .about-page-hero-media {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .about-page-hero-media::after {
    background: linear-gradient(to bottom, transparent 0 70%, rgba(8, 8, 7, 0.8) 100%);
  }

  .about-page-hero-copy {
    padding: 76px 28px 86px;
  }

  .about-page-hero-copy > div {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-media {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-values-grid article {
    min-height: 0;
    padding: 34px 8px 40px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-values-grid article:last-child {
    border-bottom: 0;
  }

  .about-values-grid h3 {
    margin-top: 26px;
  }

  .location-section {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .location-copy {
    padding: 84px 28px 92px;
  }

  .location-inner {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .custom-page-hero h1,
  .about-page-hero h1 {
    font-size: clamp(3.25rem, 17vw, 5rem);
  }

  .custom-page-hero-copy,
  .about-page-hero-copy,
  .location-copy {
    padding-inline: 18px;
  }

  .custom-page-hero-media,
  .story-media {
    aspect-ratio: 3 / 4;
  }

  .custom-page-actions {
    display: grid;
  }

  .custom-page-actions .button {
    width: 100%;
  }

  .about-values-heading {
    margin-bottom: 48px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 420px;
  }
}

/* Accessibility tools and statement page */

.floating-actions {
  position: fixed;
  z-index: 1300;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  direction: ltr;
}

.floating-action {
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  color: #fff;
  background: #171613;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.38);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.floating-action:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.floating-action svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  fill: currentColor;
}

.whatsapp-action {
  background: #176f49;
  border-color: rgba(255, 255, 255, 0.28);
}

.whatsapp-action:hover {
  border-color: #fff;
  background: #128154;
}

.phone-action {
  background: #1c2633;
  border-color: rgba(201, 163, 93, 0.42);
}

.phone-action:hover {
  border-color: var(--gold);
  background: #25364b;
}

.accessibility-action {
  color: var(--ink);
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.accessibility-action:hover,
.accessibility-action[aria-expanded="true"] {
  color: #000;
  background: #efd79d;
  border-color: #efd79d;
}

.accessibility-panel {
  position: fixed;
  z-index: 1290;
  right: 22px;
  bottom: 90px;
  width: min(390px, calc(100vw - 32px));
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding: 24px;
  color: var(--ivory);
  background: #12110f;
  border: 1px solid var(--gold);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.58);
}

.accessibility-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.accessibility-panel h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.25;
}

.accessibility-close {
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--ivory);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
}

.accessibility-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-block: 20px 16px;
}

.accessibility-controls button {
  min-height: 48px;
  padding: 10px 12px;
  color: var(--ivory);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  line-height: 1.35;
  cursor: pointer;
}

.accessibility-controls button:hover,
.accessibility-controls button.is-active,
.accessibility-controls button[aria-pressed="true"] {
  color: var(--ink);
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.accessibility-controls button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.accessibility-controls .accessibility-reset {
  grid-column: 1 / -1;
}

.accessibility-status {
  min-height: 1.5em;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.8rem;
}

.accessibility-statement-link {
  color: var(--gold-bright);
  border-bottom: 1px solid currentColor;
  font-size: 0.9rem;
}

.accessibility-main {
  padding-top: var(--header-height);
}

.accessibility-hero {
  padding: clamp(110px, 14vw, 190px) 0 clamp(90px, 11vw, 145px);
  background:
    linear-gradient(110deg, rgba(8, 8, 7, 0.9), rgba(8, 8, 7, 0.5)),
    url("images/optimized/detail-nuna-vanity-1200w.webp") center / cover;
  border-bottom: 1px solid var(--line);
}

.accessibility-hero .container {
  max-width: 980px;
  margin-inline: auto;
}

.accessibility-hero h1 {
  max-width: 850px;
  margin: 14px 0 28px;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 8vw, 7.4rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.accessibility-lead {
  max-width: 760px;
  margin: 0;
  color: #e1d9cb;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.8;
}

.accessibility-statement {
  padding: clamp(88px, 11vw, 145px) 0;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}

.accessibility-statement-alt {
  background: var(--charcoal);
}

.statement-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 9vw, 140px);
}

.statement-heading h2,
.accessibility-contact h2 {
  margin: 14px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.12;
}

.statement-content {
  max-width: 760px;
  color: #d8d0c3;
  font-size: 1.04rem;
}

.statement-content > :first-child {
  margin-top: 0;
}

.statement-content > :last-child {
  margin-bottom: 0;
}

.statement-list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: accessibility-item;
}

.statement-list li {
  position: relative;
  min-height: 48px;
  padding: 17px 54px 17px 0;
  border-top: 1px solid rgba(201, 163, 93, 0.25);
  counter-increment: accessibility-item;
}

.statement-list li:last-child {
  border-bottom: 1px solid rgba(201, 163, 93, 0.25);
}

.statement-list li::before {
  content: "0" counter(accessibility-item);
  position: absolute;
  top: 18px;
  right: 0;
  color: var(--gold-bright);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.accessibility-contact {
  padding: clamp(90px, 12vw, 160px) 0 56px;
  background: var(--charcoal-light);
}

.accessibility-contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: end;
}

.accessibility-contact-inner p:not(.eyebrow) {
  max-width: 690px;
  margin: 28px 0 0;
  color: var(--muted);
}

.accessibility-contact address {
  display: grid;
  gap: 12px;
  padding-right: 34px;
  border-right: 1px solid var(--gold);
  color: #e8e1d5;
  font-style: normal;
}

.accessibility-contact address a {
  width: fit-content;
  color: var(--gold-bright);
  font-size: 1.08rem;
}

.statement-updated {
  width: min(var(--container), calc(100% - 40px));
  margin: 110px auto 0;
  padding-top: 24px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

html.a11y-font-large {
  font-size: 112.5%;
}

html.a11y-font-large body {
  font-size: 19px;
}

html.a11y-font-xlarge {
  font-size: 125%;
}

html.a11y-font-xlarge body {
  font-size: 21px;
}

html.a11y-high-contrast {
  --ink: #000;
  --charcoal: #050505;
  --charcoal-light: #0a0a0a;
  --gold: #ffdf70;
  --gold-bright: #ffe88f;
  --ivory: #fff;
  --muted: #f2f2f2;
  --line: rgba(255, 232, 143, 0.78);
}

html.a11y-high-contrast .site-header,
html.a11y-high-contrast .accessibility-panel {
  background: #000;
}

html.a11y-high-contrast .button-outline,
html.a11y-high-contrast .accessibility-controls button {
  border-color: #fff;
}

html.a11y-grayscale {
  --gold: #c9c9c9;
  --gold-bright: #ededed;
  --line: rgba(255, 255, 255, 0.38);
}

html.a11y-grayscale img,
html.a11y-grayscale iframe,
html.a11y-grayscale .hero-slide,
html.a11y-grayscale .accessibility-hero {
  filter: grayscale(1) !important;
}

html.a11y-underline-links a:not(.button):not(.floating-action) {
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 0.22em;
}

html.a11y-readable-font {
  --serif: "Heebo", Arial, sans-serif;
}

@media (max-width: 800px) {
  .floating-actions {
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }

  .floating-action {
    min-height: 50px;
    padding-inline: 14px;
    font-size: 0.78rem;
  }

  .floating-action svg {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .accessibility-panel {
    right: 12px;
    bottom: 76px;
    width: calc(100vw - 24px);
    max-height: calc(100vh - 94px);
    padding: 20px;
  }

  .accessibility-hero .container,
  .statement-layout,
  .accessibility-contact-inner {
    width: min(100% - 36px, var(--container));
  }

  .statement-layout,
  .accessibility-contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .accessibility-contact address {
    padding: 28px 0 0;
    border-top: 1px solid var(--gold);
    border-right: 0;
  }

  .statement-updated {
    margin-top: 72px;
  }
}

@media (max-width: 460px) {
  .floating-action {
    width: 50px;
    padding: 0;
  }

  .floating-action span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .accessibility-controls {
    grid-template-columns: 1fr;
  }

  .accessibility-controls .accessibility-reset {
    grid-column: auto;
  }

  .accessibility-hero h1 {
    font-size: clamp(3.15rem, 18vw, 5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-action {
    transition: none;
  }
}

/* Small products catalog */

.products-promo {
  padding-block: clamp(86px, 10vw, 132px);
  border-top: 1px solid rgba(201, 163, 93, 0.18);
  border-bottom: 1px solid rgba(201, 163, 93, 0.18);
  background:
    radial-gradient(circle at 14% 22%, rgba(201, 163, 93, 0.12), transparent 32%),
    var(--charcoal);
}

.products-promo-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(56px, 8vw, 118px);
}

.products-promo-copy h2,
.product-hero h1,
.product-intro-copy h2,
.product-card h3,
.custom-product h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.14;
}

.products-promo-copy h2,
.product-intro-copy h2,
.custom-product h2 {
  margin-top: 16px;
  font-size: clamp(2.4rem, 4.6vw, 4.8rem);
}

.products-promo-copy > p:not(.page-kicker) {
  max-width: 590px;
  margin-top: 30px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.9;
}

.products-promo-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(201, 163, 93, 0.24);
}

.products-promo-media img,
.product-hero-media img,
.product-media img,
.custom-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-promo-media figcaption,
.product-media span {
  position: absolute;
  z-index: 2;
}

.products-promo-media figcaption {
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  padding: 14px 20px;
  color: var(--ivory);
  background: rgba(8, 8, 7, 0.88);
  font-size: 0.8rem;
}

.products-promo-media figcaption span {
  color: var(--muted);
}

.products-promo-media figcaption [data-content-key="home_products_promo_caption"] {
  color: var(--ivory);
}

.product-hero {
  display: grid;
  grid-template-columns: 54% 46%;
  min-height: calc(100svh - var(--header-height));
  direction: ltr;
  background: var(--ink);
}

.product-hero-media {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.product-hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(to right, transparent 0 64%, rgba(8, 8, 7, 0.18) 82%, var(--ink) 100%);
}

.product-hero-media img {
  object-position: 50% 46%;
}

.product-hero-copy {
  display: grid;
  align-items: center;
  padding: clamp(70px, 8vw, 128px) clamp(36px, 6vw, 96px);
  direction: rtl;
}

.product-hero-copy > div {
  width: min(100%, 560px);
}

.product-hero h1 {
  margin-top: 20px;
  font-size: clamp(3.5rem, 6vw, 6.8rem);
}

.product-hero-copy > div > p:not(.page-kicker) {
  max-width: 520px;
  margin-top: 30px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 300;
  line-height: 1.9;
}

.product-intro {
  background: var(--charcoal);
  border-top: 1px solid rgba(201, 163, 93, 0.16);
  border-bottom: 1px solid rgba(201, 163, 93, 0.16);
}

.product-intro-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(56px, 8vw, 112px);
  align-items: start;
}

.product-intro-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.product-intro-list article {
  display: grid;
  grid-template-columns: 72px minmax(130px, 0.5fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid rgba(201, 163, 93, 0.22);
}

.product-intro-list span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.1rem;
  line-height: 1;
}

.product-intro-list h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
}

.product-intro-list p {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
}

.products-catalog {
  background:
    linear-gradient(180deg, rgba(18, 17, 15, 0.68), rgba(8, 8, 7, 0) 24%),
    var(--ink);
}

.product-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -22px 0 50px;
}

.product-filter button {
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid rgba(201, 163, 93, 0.38);
  color: rgba(244, 239, 230, 0.82);
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.product-filter button:hover,
.product-filter button.is-active,
.product-filter button[aria-pressed="true"] {
  color: var(--ink);
  border-color: var(--gold);
  background: var(--gold);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 4vw, 58px) clamp(28px, 4vw, 52px);
}

.product-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.86fr) minmax(0, 1.14fr);
  min-height: 520px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(201, 163, 93, 0.22);
  background: rgba(255, 255, 255, 0.018);
}

.product-card[hidden] {
  display: none;
}

.product-media {
  position: relative;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: var(--ivory);
  background: #0b0a09;
  cursor: zoom-in;
}

.product-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.34));
  opacity: 0;
  transition: opacity 220ms ease;
}

.product-media img {
  transform: scale(1.01);
  transition: transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1), filter 220ms ease;
}

.product-media:hover img,
.product-media:focus-visible img {
  transform: scale(1.055);
  filter: saturate(1.08) contrast(1.03);
}

.product-media:hover::after,
.product-media:focus-visible::after {
  opacity: 1;
}

.product-media span {
  left: 18px;
  bottom: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: rgba(8, 8, 7, 0.72);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1;
}

.product-gallery-badge {
  position: absolute;
  z-index: 2;
  right: 18px;
  top: 18px;
  padding: 7px 11px;
  border: 1px solid rgba(201, 163, 93, 0.54);
  border-radius: 999px;
  color: var(--ivory);
  background: rgba(8, 8, 7, 0.76);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.product-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: clamp(28px, 3vw, 42px);
}

.product-category {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.product-card h3 {
  margin-top: 14px;
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
}

.product-card p[data-product-description] {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.85;
}

.product-specs {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid rgba(201, 163, 93, 0.22);
}

.product-specs div {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(201, 163, 93, 0.16);
}

.product-specs dt {
  color: rgba(201, 163, 93, 0.85);
  font-size: 0.78rem;
}

.product-specs dd {
  color: rgba(244, 239, 230, 0.82);
  font-size: 0.88rem;
}

.product-whatsapp {
  width: 100%;
  margin-top: auto;
}

.product-empty {
  margin-top: 44px;
  padding: 24px;
  border: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.custom-product {
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 760px;
  background: var(--charcoal);
}

.custom-product-media {
  min-height: 620px;
  overflow: hidden;
}

.custom-product-media img {
  object-position: 50% 55%;
}

.custom-product-copy {
  display: grid;
  align-items: center;
  padding: clamp(72px, 8vw, 128px) clamp(36px, 6vw, 92px);
}

.custom-product-inner {
  width: min(100%, 620px);
}

.custom-product-inner > p:not(.page-kicker):not(.form-note) {
  max-width: 560px;
  margin-top: 28px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.9;
}

.product-request-form {
  margin-top: 38px;
}

@media (max-width: 1180px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 460px;
  }
}

@media (max-width: 1100px) {
  .product-hero {
    grid-template-columns: 52% 48%;
  }

  .product-hero-copy,
  .custom-product-copy {
    padding-inline: 44px;
  }
}

@media (max-width: 800px) {
  .products-promo-layout,
  .product-intro-layout,
  .custom-product {
    grid-template-columns: 1fr;
  }

  .products-promo-media {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .product-hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
  }

  .product-hero-media {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .product-hero-media::after {
    background: linear-gradient(to bottom, transparent 0 70%, rgba(8, 8, 7, 0.82) 100%);
  }

  .product-hero-copy,
  .custom-product-copy {
    padding: 76px 28px 86px;
  }

  .product-hero-copy > div,
  .custom-product-inner {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .product-intro-list article {
    grid-template-columns: 64px 1fr;
  }

  .product-intro-list p {
    grid-column: 2;
  }

  .product-filter {
    margin-top: -12px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 10px;
    scrollbar-width: thin;
  }

  .product-filter button {
    flex: 0 0 auto;
  }

  .product-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .product-media {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .custom-product-media {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 640px) {
  .products-promo-copy h2,
  .product-intro-copy h2,
  .custom-product h2 {
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }

  .product-hero h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .product-hero-copy,
  .custom-product-copy {
    padding-inline: 18px;
  }

  .product-card h3 {
    font-size: 1.78rem;
  }

  .product-copy {
    padding: 26px 20px 28px;
  }

  .product-specs div {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
  }
}


/* AI refinements: product trust and FAQ */
.product-trust {
  padding-block: clamp(42px, 6vw, 76px);
  border-block: 1px solid rgba(201, 163, 93, 0.18);
  background: #0d0c0b;
}

.product-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(201, 163, 93, 0.22);
  border: 1px solid rgba(201, 163, 93, 0.22);
}

.product-trust-grid article {
  min-height: 210px;
  padding: 30px 28px;
  background: var(--charcoal);
}

.product-trust-grid span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1;
}

.product-trust-grid h2 {
  margin-top: 22px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.product-trust-grid p,
.product-faq-list p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.8;
}

.product-faq {
  background: var(--charcoal);
}

.product-faq-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(48px, 8vw, 110px);
}

.product-faq-heading h2 {
  margin-top: 16px;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.4vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.14;
}

.product-faq-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.product-faq-list article {
  padding: 24px 0;
  border-bottom: 1px solid rgba(201, 163, 93, 0.22);
}

.product-faq-list h3 {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 500;
}


@media (max-width: 800px) {
  .product-trust-grid,
  .product-faq-layout {
    grid-template-columns: 1fr;
  }

  .product-trust-grid article {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .product-trust-grid article {
    padding: 26px 22px;
  }
}
