/* ========================================================================== */
/* Start Design Tokens                                                        */
/* ========================================================================== */
:root {
  --color-ink: #09090d;
  --color-ink-soft: #1a191d;
  --color-gold: #b98642;
  --color-gold-dark: #986a31;
  --color-cream: #f2eee5;
  --color-cream-deep: #e8dfd0;
  --color-paper: #fbfaf7;
  --color-white: #ffffff;
  --color-line: rgba(9, 9, 13, 0.14);
  --color-muted: #6c6963;
  --container-width: 1220px;
  --header-height: 88px;
  --radius-small: 10px;
  --radius-medium: 22px;
  --radius-large: 36px;
  --shadow-soft: 0 24px 70px rgba(18, 14, 8, 0.12);
  --transition: 220ms ease;
  --font-arabic: Tahoma, "Segoe UI", Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}
/* End Design Tokens */

/* ========================================================================== */
/* Start Base & Accessibility                                                 */
/* ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-arabic);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-is-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%;
}

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

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

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 999;
  padding: 10px 16px;
  background: var(--color-gold);
  color: var(--color-ink);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform var(--transition);
}

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

:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 4px;
}
/* End Base & Accessibility */

/* ========================================================================== */
/* Start Shared Components                                                    */
/* ========================================================================== */
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 24px;
  cursor: pointer;
  font-weight: 700;
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

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

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

.button--dark:hover {
  background: var(--color-gold);
  color: var(--color-ink);
}

.button--gold {
  background: var(--color-gold);
  color: var(--color-ink);
}

.button--gold:hover {
  background: var(--color-ink);
  color: var(--color-white);
}

.button--text {
  min-height: auto;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  padding: 8px 0;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--color-gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 6px rgba(185, 134, 66, 0.15);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--color-ink);
  padding-bottom: 5px;
  font-weight: 800;
}

.toast {
  position: fixed;
  inset-inline-start: 50%;
  inset-block-end: 24px;
  z-index: 1000;
  width: min(calc(100% - 32px), 520px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 14px 18px;
  background: var(--color-ink);
  color: var(--color-white);
  text-align: center;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 24px);
  transition:
    opacity var(--transition),
    transform var(--transition);
}

[dir="rtl"] .toast {
  transform: translate(50%, 24px);
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

[dir="rtl"] .toast.is-visible {
  transform: translate(50%, 0);
}
/* End Shared Components */

/* ========================================================================== */
/* Start Header                                                               */
/* ========================================================================== */
.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(16px);
  transition:
    box-shadow var(--transition),
    border-color var(--transition);
}

.site-header.is-scrolled {
  border-color: var(--color-line);
  box-shadow: 0 12px 30px rgba(9, 9, 13, 0.06);
}

.topbar {
  background: var(--color-ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.73rem;
}

.topbar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar p {
  margin: 0;
}

.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-gold);
  font-weight: 700;
}

.header__inner {
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__logo {
  width: 178px;
  height: auto;
  max-height: 74px;
  object-fit: contain;
}

.brand__mark {
  position: relative;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  overflow: hidden;
  border-radius: 14px;
  background: #000;
}

.brand__mark img {
  position: absolute;
  inset-inline-start: -12%;
  inset-block-start: -72%;
  width: 245%;
  max-width: none;
  height: 245%;
  object-fit: cover;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__copy strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
}

[lang="ar"] .brand__copy strong {
  font-family: var(--font-arabic);
}

.brand__copy small {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 0.68rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
}

.primary-nav a {
  position: relative;
  padding-block: 12px;
  color: #504e4a;
  font-size: 0.88rem;
  font-weight: 700;
}

.primary-nav a::after {
  position: absolute;
  inset-inline: 0;
  inset-block-end: 4px;
  height: 2px;
  background: var(--color-gold);
  content: "";
  transform: scaleX(0);
  transition: transform var(--transition);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-toggle,
.cart-button,
.menu-toggle {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.language-toggle {
  min-width: 42px;
  height: 42px;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 900;
}

.cart-button {
  display: inline-flex;
  height: 42px;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  padding-inline: 13px;
  font-size: 0.78rem;
  font-weight: 800;
}

.cart-count {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-ink);
  font-size: 0.66rem;
}

.header-quote {
  min-height: 42px;
  padding: 8px 17px;
  font-size: 0.78rem;
}

.menu-toggle {
  display: none;
}
/* End Header */

/* ========================================================================== */
/* Start Main Content                                                         */
/* ========================================================================== */
/* Start Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--color-cream);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to left,
    rgba(248, 246, 241, 0.98) 0%,
    rgba(248, 246, 241, 0.93) 34%,
    rgba(248, 246, 241, 0.72) 51%,
    rgba(248, 246, 241, 0.15) 73%,
    transparent 100%
  );
  content: "";
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.hero__grid {
  position: relative;
  z-index: 2;
  min-height: 690px;
  display: block;
  padding-block: 72px 76px;
}

.hero__content {
  position: relative;
  width: min(56%, 680px);
  margin-right: 0;
  margin-left: auto;
  padding-block: 22px;
}

.hero h1 {
  max-width: 680px;
  margin: 24px 0 22px;
  font-size: clamp(3.4rem, 6vw, 6.35rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  margin-top: 10px;
  color: var(--color-gold-dark);
  font-family: var(--font-display);
  font-weight: 500;
}

[lang="ar"] .hero h1 em {
  font-family: var(--font-arabic);
  font-style: normal;
}

.hero__lead {
  max-width: 620px;
  margin: 0;
  color: #57534d;
  font-size: 1.04rem;
  line-height: 1.9;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.hero__benefits {
  display: grid;
  max-width: 650px;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
}

.hero__benefits li {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  border-inline-start: 1px solid var(--color-line);
  padding-inline: 18px;
}

.hero__benefits li:first-child {
  border-inline-start: 0;
  padding-inline-start: 0;
}

.hero__benefits span {
  color: var(--color-gold-dark);
  font-family: var(--font-display);
  font-size: 0.72rem;
}

.hero__benefits strong {
  font-size: 0.78rem;
}

.hero__visual {
  position: relative;
  min-height: 535px;
}

.office-scene {
  position: absolute;
  inset: 35px 0 24px;
  overflow: hidden;
  border-radius: var(--radius-large) var(--radius-large) 8px var(--radius-large);
  background: #d5c4a9;
  box-shadow: var(--shadow-soft);
}

.office-scene::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 58%, rgba(255, 255, 255, 0.22) 58% 72%, transparent 72%),
    linear-gradient(#e8ddcb 0 67%, #ba9a72 67% 100%);
  content: "";
}

.office-scene__sun {
  position: absolute;
  inset-inline-end: 8%;
  inset-block-start: 10%;
  width: 155px;
  height: 155px;
  border-radius: 50%;
  background: rgba(248, 239, 217, 0.88);
  box-shadow: 0 0 0 22px rgba(248, 239, 217, 0.18);
}

.office-scene__frame {
  position: absolute;
  inset-block-start: 14%;
  width: 76px;
  height: 105px;
  border: 8px solid var(--color-ink);
  background: var(--color-gold);
}

.office-scene__frame--one {
  inset-inline-start: 9%;
}

.office-scene__frame--two {
  inset-inline-start: 25%;
  width: 58px;
  height: 82px;
  background: var(--color-cream);
}

.office-scene__shelf {
  position: absolute;
  inset-inline-end: 5%;
  inset-block-start: 36%;
  display: flex;
  width: 145px;
  height: 10px;
  align-items: flex-end;
  gap: 9px;
  background: var(--color-ink);
}

.office-scene__shelf span {
  width: 22px;
  height: 42px;
  margin-bottom: 7px;
  background: var(--color-gold-dark);
}

.office-scene__shelf span:nth-child(2) {
  height: 56px;
  background: var(--color-ink);
}

.office-scene__plant {
  position: absolute;
  inset-inline-start: 6%;
  inset-block-end: 15%;
  width: 58px;
  height: 105px;
  border-bottom: 46px solid var(--color-ink-soft);
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
}

.office-scene__plant i {
  position: absolute;
  inset-inline-start: 23px;
  inset-block-start: 0;
  width: 23px;
  height: 64px;
  border-radius: 100% 0 100% 0;
  background: #536044;
  transform: rotate(-28deg);
  transform-origin: bottom center;
}

.office-scene__plant i:nth-child(2) {
  transform: rotate(24deg) scale(0.86);
}

.office-scene__plant i:nth-child(3) {
  transform: translateY(-12px) rotate(1deg) scale(0.8);
}

.office-scene__desk {
  position: absolute;
  inset-inline-start: 20%;
  inset-block-end: 16%;
  width: 61%;
  height: 170px;
}

.desk__top {
  position: absolute;
  inset-inline: 0;
  inset-block-start: 52px;
  height: 22px;
  border-radius: 5px;
  background: var(--color-ink);
  box-shadow: 0 8px 0 rgba(255, 255, 255, 0.16);
}

.desk__leg {
  position: absolute;
  inset-block-start: 72px;
  width: 15px;
  height: 98px;
  background: var(--color-ink);
}

.desk__leg--one {
  inset-inline-start: 8%;
}

.desk__leg--two {
  inset-inline-end: 8%;
}

.desk__screen {
  position: absolute;
  inset-inline-start: 32%;
  inset-block-start: -8px;
  width: 126px;
  height: 70px;
  border: 8px solid var(--color-ink);
  border-radius: 4px;
  background: #858e82;
}

.desk__screen::after {
  position: absolute;
  inset-inline-start: 50%;
  inset-block-end: -26px;
  width: 8px;
  height: 22px;
  background: var(--color-ink);
  content: "";
}

.desk__lamp {
  position: absolute;
  inset-inline-end: 9%;
  inset-block-start: -12px;
  width: 8px;
  height: 67px;
  background: var(--color-gold-dark);
  transform: rotate(10deg);
  transform-origin: bottom;
}

.desk__lamp::before {
  position: absolute;
  inset-inline-start: -15px;
  inset-block-start: -7px;
  width: 38px;
  height: 23px;
  border-radius: 50% 50% 8px 8px;
  background: var(--color-gold-dark);
  content: "";
}

.office-scene__chair {
  position: absolute;
  inset-inline-start: 41%;
  inset-block-end: 7%;
  width: 112px;
  height: 180px;
}

.chair__back {
  position: absolute;
  inset-inline-start: 18px;
  inset-block-start: 0;
  width: 80px;
  height: 96px;
  border-radius: 28px 28px 14px 14px;
  background: var(--color-gold-dark);
  box-shadow: inset -8px -8px 0 rgba(0, 0, 0, 0.12);
}

.chair__seat {
  position: absolute;
  inset-inline-start: 8px;
  inset-block-start: 82px;
  width: 98px;
  height: 25px;
  border-radius: 8px;
  background: var(--color-ink);
}

.chair__base {
  position: absolute;
  inset-inline-start: 50%;
  inset-block-start: 103px;
  width: 7px;
  height: 67px;
  background: var(--color-ink);
}

.chair__base::after {
  position: absolute;
  inset-inline-start: -40px;
  inset-block-end: 0;
  width: 87px;
  height: 7px;
  border-radius: 99px;
  background: var(--color-ink);
  content: "";
}

.office-scene__floor {
  position: absolute;
  inset-inline: 4%;
  inset-block-end: 8%;
  height: 2px;
  background: rgba(9, 9, 13, 0.25);
}

.visual-label {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  background: var(--color-ink);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 0.63rem;
  letter-spacing: 0.12em;
}

.visual-label--top {
  inset-inline-start: -16px;
  inset-block-start: 14px;
}

.visual-label strong {
  color: var(--color-gold);
}

.visual-card {
  position: absolute;
  inset-inline-end: -22px;
  inset-block-end: 0;
  z-index: 4;
  display: grid;
  width: 210px;
  grid-template-columns: 1fr auto;
  gap: 2px 16px;
  border-radius: 18px;
  padding: 19px 20px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.visual-card > span {
  align-self: end;
  color: var(--color-muted);
  font-size: 0.72rem;
}

.visual-card strong {
  grid-row: span 2;
  color: var(--color-gold-dark);
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
}

.visual-card small {
  font-size: 0.67rem;
}

/* Start Real Product Stage */
.product-stage {
  position: absolute;
  inset: 35px 0 24px;
  overflow: hidden;
  border: 1px solid rgba(9, 9, 13, 0.08);
  border-radius: var(--radius-large) var(--radius-large) 8px var(--radius-large);
  background:
    radial-gradient(circle at 82% 12%, rgba(185, 134, 66, 0.2), transparent 28%),
    linear-gradient(145deg, #f7f2e8 0 60%, #dfcfb8 60% 100%);
  box-shadow: var(--shadow-soft);
}

.product-stage::before {
  position: absolute;
  inset-inline-start: 7%;
  inset-block-start: 9%;
  width: 55%;
  height: 72%;
  border: 1px solid rgba(9, 9, 13, 0.09);
  content: "";
}

.product-stage::after {
  position: absolute;
  inset-inline-end: -12%;
  inset-block-end: -32%;
  width: 60%;
  aspect-ratio: 1;
  border: 52px solid rgba(185, 134, 66, 0.25);
  border-radius: 50%;
  content: "";
}

.product-stage figure {
  margin: 0;
}

.product-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-stage figcaption {
  position: absolute;
  inset-inline-start: 14px;
  inset-block-end: 12px;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(9, 9, 13, 0.88);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 800;
}

.product-stage__line {
  position: absolute;
  inset-inline-end: 26px;
  inset-block-start: 25px;
  z-index: 2;
  color: rgba(9, 9, 13, 0.48);
  font-family: var(--font-display);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

.product-stage__main {
  position: absolute;
  inset-inline-start: 11%;
  inset-block-end: 12%;
  z-index: 2;
  width: 63%;
  height: 69%;
}

.product-stage__item {
  position: absolute;
  z-index: 3;
  overflow: hidden;
  border: 1px solid rgba(9, 9, 13, 0.09);
  border-radius: 20px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 50px rgba(9, 9, 13, 0.12);
  backdrop-filter: blur(8px);
}

.product-stage__item--chair {
  inset-inline-end: 7%;
  inset-block-start: 14%;
  width: 29%;
  height: 43%;
}

.product-stage__item--safe {
  inset-inline-end: 4%;
  inset-block-end: 9%;
  width: 26%;
  height: 29%;
}

.product-stage__item figcaption {
  inset-inline-start: 8px;
  inset-block-end: 8px;
  padding: 4px 8px;
  font-size: 0.54rem;
}
/* End Real Product Stage */
/* End Hero */

/* Start Product Categories */
.category-section {
  padding-block: 110px;
  background: var(--color-paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 50px;
}

.section-heading h2,
.brand-story h2,
.contact-cta h2 {
  margin: 9px 0 0;
  font-size: clamp(2.2rem, 4vw, 4.7rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.section-heading > p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.9;
}

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

.category-card {
  position: relative;
  display: flex;
  min-height: 236px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-medium);
  padding: 22px;
  background: var(--color-white);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.category-card > div,
.category-card__number,
.category-card__arrow {
  position: relative;
  z-index: 2;
}

.category-card__media {
  position: absolute;
  inset-inline-end: 18px;
  inset-block-start: 18px;
  z-index: 1;
  display: grid;
  width: 58%;
  height: 132px;
  place-items: center;
  overflow: visible;
  background: transparent;
}

.category-card__media img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  transition: transform 420ms ease;
}

.category-card:hover .category-card__media img {
  transform: scale(1.08);
}

.category-card::before {
  position: absolute;
  inset-inline-end: -44px;
  inset-block-start: -44px;
  width: 120px;
  height: 120px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.1;
  transition: transform 420ms ease;
}

.category-card:hover {
  z-index: 2;
  border-color: var(--color-gold);
  box-shadow: 0 25px 55px rgba(9, 9, 13, 0.12);
  transform: translateY(-7px);
}

.category-card:hover::before {
  transform: scale(1.35);
}

.category-card__number {
  color: var(--color-gold-dark);
  font-family: var(--font-display);
  font-size: 0.75rem;
}

.category-card p {
  margin: 0 0 5px;
  color: var(--color-muted);
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.category-card h3 {
  max-width: 190px;
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.45;
}

.category-card__arrow {
  position: absolute;
  inset-inline-end: 20px;
  inset-block-end: 18px;
  color: var(--color-gold-dark);
  font-size: 1.2rem;
}

.category-card--featured {
  grid-column: span 2;
  background: var(--color-cream);
}

.category-card--featured .category-card__media {
  width: 54%;
  height: 178px;
}

.category-card--featured > div {
  max-width: 45%;
}

.category-card--featured h3 {
  font-size: 1.55rem;
}

.category-card--gold {
  background: var(--color-gold);
}

.category-card--gold .category-card__number,
.category-card--gold .category-card__arrow,
.category-card--gold p {
  color: var(--color-ink);
}

.category-card--dark {
  background: var(--color-ink);
  color: var(--color-white);
}

.category-card--dark p {
  color: rgba(255, 255, 255, 0.58);
}
/* End Product Categories */

/* Start Featured Products */
.featured-products {
  padding-block: 110px;
  background: var(--color-cream);
}

.section-heading--compact {
  margin-bottom: 42px;
}

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

.product-card {
  display: grid;
  min-height: 490px;
  grid-template-rows: minmax(275px, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(9, 9, 13, 0.1);
  border-radius: var(--radius-medium);
  background: var(--color-white);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.product-card:hover {
  box-shadow: 0 24px 55px rgba(9, 9, 13, 0.12);
  transform: translateY(-6px);
}

.product-card--wide {
  grid-column: span 2;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
  grid-template-rows: 1fr;
}

.product-card__media {
  position: relative;
  display: grid;
  min-height: 275px;
  place-items: center;
  overflow: hidden;
  padding: 26px;
  background:
    linear-gradient(rgba(185, 134, 66, 0.07) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(90deg, rgba(185, 134, 66, 0.07) 1px, transparent 1px) 0 0 / 44px 44px,
    #f7f2e8;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  max-height: 330px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 420ms ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.035);
}

.product-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
}

.product-card__content p {
  margin: 0 0 9px;
  color: var(--color-gold-dark);
  font-family: var(--font-display);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card__content h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.5;
}

.product-card__content > span {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 0.82rem;
}

.product-card__content a {
  margin-top: auto;
  border-bottom: 1px solid currentColor;
  padding-top: 24px;
  color: var(--color-gold-dark);
  font-size: 0.8rem;
  font-weight: 900;
}

.product-card--sofa .product-card__media {
  background: #ece0ce;
}
/* End Featured Products */

/* Start Solutions Strip */
.solutions-strip {
  background: var(--color-ink);
  color: var(--color-white);
}

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

.solutions-strip article {
  min-height: 260px;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.12);
  padding: 48px 44px;
}

.solutions-strip article:first-child {
  border-inline-start: 0;
}

.solutions-strip article > span {
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 0.78rem;
}

.solutions-strip h3 {
  margin: 34px 0 12px;
  font-size: 1.35rem;
}

.solutions-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  line-height: 1.8;
}
/* End Solutions Strip */

/* Start Brand Story */
.brand-story {
  padding-block: 120px;
  background: var(--color-cream);
}

.brand-story__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.brand-story__badge {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: var(--radius-large);
  padding: 44px;
  background: var(--color-ink);
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.brand-story__badge::after {
  position: absolute;
  inset-inline-end: -120px;
  inset-block-end: -120px;
  width: 330px;
  height: 330px;
  border: 70px solid var(--color-gold);
  border-radius: 50%;
  content: "";
  opacity: 0.88;
}

.brand-story__badge span,
.brand-story__badge small {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-display);
  letter-spacing: 0.18em;
}

.brand-story__badge strong {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 6vw, 5.3rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.82;
}

.brand-story__content h2 {
  max-width: 760px;
}

.brand-story__content > p:not(.section-kicker) {
  max-width: 700px;
  margin: 28px 0;
  color: var(--color-muted);
  font-size: 1.02rem;
  line-height: 1.95;
}
/* End Brand Story */

/* Start Comments Area */
.comments-area[hidden] {
  display: none;
}
/* End Comments Area */

/* Start Contact CTA */
.contact-cta {
  padding-block: 84px;
  background: var(--color-gold);
}

.contact-cta__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr auto;
  align-items: center;
  gap: 55px;
}

.contact-cta .section-kicker {
  color: rgba(9, 9, 13, 0.62);
}

.contact-cta h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.contact-cta p {
  margin: 0;
  line-height: 1.8;
}

.contact-cta .button {
  white-space: nowrap;
}

.contact-cta .button--gold {
  background: var(--color-ink);
  color: var(--color-white);
}

.contact-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.contact-cta__email {
  font-family: var(--font-display);
  font-size: 0.73rem;
  text-align: center;
}
/* End Contact CTA */
/* End Main Content */

/* ========================================================================== */
/* Start Footer                                                               */
/* ========================================================================== */
.site-footer {
  padding-block: 72px 24px;
  background: #050507;
  color: var(--color-white);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  gap: 60px;
}

.brand--footer .brand__copy small,
.footer__brand > p,
.site-footer nav a {
  color: rgba(255, 255, 255, 0.55);
}

.brand--footer {
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.brand--footer .footer__logo {
  display: block;
  width: min(280px, 100%);
  height: auto;
}

.footer__brand > p {
  max-width: 330px;
  margin: 23px 0 0;
  line-height: 1.8;
}

.site-footer h3 {
  margin: 0 0 22px;
  color: var(--color-gold);
  font-size: 0.85rem;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.site-footer nav a {
  font-size: 0.84rem;
  transition: color var(--transition);
}

.site-footer nav a:hover {
  color: var(--color-white);
}

.footer__contact address {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.84rem;
  font-style: normal;
}

.footer__contact a {
  direction: ltr;
}

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

.footer__language button {
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  margin-bottom: 9px;
  padding: 9px 14px;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  text-align: start;
}

.footer__language button.is-active {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 64px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.36);
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.07em;
}

.footer__bottom p {
  margin: 0;
}
/* End Footer */

/* ========================================================================== */
/* Start LTR Adjustments                                                      */
/* ========================================================================== */
[dir="ltr"] body {
  font-family: "Segoe UI", Arial, sans-serif;
}

[dir="ltr"] .hero h1,
[dir="ltr"] .section-heading h2,
[dir="ltr"] .brand-story h2,
[dir="ltr"] .contact-cta h2 {
  letter-spacing: -0.045em;
}

/* Mirror directional icons only; translated CTA text must remain readable. */
[dir="ltr"] .hero__actions .button span[aria-hidden="true"],
[dir="ltr"] .text-link span[aria-hidden="true"] {
  transform: scaleX(-1);
}
/* End LTR Adjustments */

/* ========================================================================== */
/* Start Reduced Motion                                                       */
/* ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
/* End Reduced Motion */
