:root {
  --topbar-offset: 118px;
  --bg-cream: #f3f1ee;
  --bg-soft: #e6e1db;
  --ink: #232629;
  --ink-soft: #5b6168;
  --rose: #b08a4e;
  --lavender: #6b737d;
  --accent: #c29b5a;
  --white: #ffffff;
  --shadow: 0 14px 34px rgba(30, 34, 38, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-padding-top: calc(var(--topbar-offset) + 0.8rem);
}

[id] {
  scroll-margin-top: calc(var(--topbar-offset) + 0.8rem);
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(176, 138, 78, 0.14), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(107, 115, 125, 0.14), transparent 30%),
    linear-gradient(165deg, #f6f4f1 0%, #ece7e1 46%, #e2ddd6 100%);
  line-height: 1.6;
}

main {
  position: relative;
  background:
    linear-gradient(180deg, #f7f5f2 0%, #f1ede7 52%, #ece7e0 100%),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.18) 0,
      rgba(255, 255, 255, 0.18) 8px,
      rgba(232, 226, 216, 0.14) 8px,
      rgba(232, 226, 216, 0.14) 16px
    );
  border-top: 1px solid rgba(120, 103, 84, 0.16);
  border-bottom: 1px solid rgba(120, 103, 84, 0.14);
}

.language-switcher {
  display: flex;
  padding: 0.28rem 0.36rem;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  flex: 0 0 auto;
}

.lang-btn {
  border: 1px solid transparent;
  border-radius: 999px;
  width: 1.9rem;
  height: 1.9rem;
  display: grid;
  place-items: center;
  background: #fffaf3;
  cursor: pointer;
  padding: 0;
}

.lang-btn img {
  width: 1.18rem;
  height: 1.18rem;
  border-radius: 50%;
  object-fit: cover;
}

.lang-btn:hover {
  border-color: rgba(176, 138, 78, 0.48);
}

.lang-btn.active {
  border-color: var(--rose);
  box-shadow: 0 0 0 2px rgba(176, 138, 78, 0.24);
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  height: var(--topbar-offset);
  padding: 0;
}

.site-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--topbar-offset);
  z-index: 40;
  background: rgba(246, 244, 241, 0.9);
  border-bottom: 1px solid rgba(91, 97, 104, 0.16);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(30, 34, 38, 0.08);
}

.mobile-panel {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}

.brand-logo {
  width: auto;
  height: 112px;
  display: block;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 1.1rem;
  margin: 0;
  padding: 0;
  margin-left: auto;
  align-items: center;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(95, 74, 61, 0.24);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  min-height: 38px;
}

.nav ul a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  text-transform: uppercase;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.18rem;
  position: relative;
  transition: color 180ms ease;
}

.nav ul a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.08rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--rose));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav ul a:hover,
.nav ul a:focus-visible {
  color: var(--ink);
}

.nav ul a:hover::after,
.nav ul a:focus-visible::after,
.nav ul a.is-active::after {
  transform: scaleX(1);
}

.nav ul a.is-active {
  color: var(--ink);
}

.hero {
  padding-top: calc(var(--topbar-offset) + 0.95rem);
  padding-bottom: 3rem;
}

.hero-content {
  padding: 5rem 0 4rem;
  text-align: left;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.78rem;
  margin-bottom: 0.75rem;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Playfair Display", serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  max-width: 780px;
  margin-bottom: 1rem;
}

.hero-content p {
  max-width: 680px;
  color: var(--ink-soft);
}

.hero-rare {
  display: block;
  margin-top: 0.55rem;
  color: var(--ink);
  font-weight: 800;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero-visual {
  margin: 0;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(95, 74, 61, 0.2);
  box-shadow: 0 22px 44px rgba(30, 34, 38, 0.16);
  background:
    linear-gradient(145deg, rgba(248, 243, 234, 0.4), rgba(236, 228, 215, 0.28)),
    url("assets/gallery/rose-28.jpeg") center / cover no-repeat;
  min-height: clamp(290px, 38vw, 500px);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  h1,
  .hero-content p,
  .hero-copy {
    max-width: 100%;
  }

  .hero-visual {
    max-width: 100%;
    min-height: 260px;
  }
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--rose), #8d6e3e);
  color: var(--white);
  border: none;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.8rem 1.5rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow);
  min-height: 44px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(30, 34, 38, 0.2);
}

.section {
  padding: 4.2rem 0;
}

.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  margin-bottom: 0.35rem;
}

.section-head p {
  color: var(--ink-soft);
  margin-top: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.about-text p,
.about-why p {
  color: var(--ink-soft);
}

.about-why ul {
  margin: 0.8rem 0 1rem;
  padding-left: 1.1rem;
}

.gallery-section {
  background: linear-gradient(180deg, rgba(226, 219, 208, 0.58), rgba(243, 239, 233, 0.72));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.media-group + .media-group {
  margin-top: 1.5rem;
}

.media-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 0.15rem 0 0.8rem;
}

.media-head h3 {
  margin: 0;
  font-size: 1.2rem;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.35rem 0 1rem;
}

.filter-btn {
  border: 1px solid rgba(95, 74, 61, 0.22);
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 0.45rem 0.82rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--rose), #8d6e3e);
  color: #fff;
  border-color: transparent;
}

.gallery-item {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #f4f1eb;
  border: 1px solid rgba(95, 74, 61, 0.16);
  box-shadow: 0 10px 24px rgba(30, 34, 38, 0.12);
}

.gallery-item.is-hidden {
  display: none;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-open {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.04);
}

.media-badge {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(32, 35, 39, 0.74);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.gallery-item:hover {
  border-color: rgba(176, 138, 78, 0.44);
}

.gallery-note {
  margin: 0.9rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.gallery-empty {
  margin: 0.8rem 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 600;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.load-more-btn {
  min-width: 180px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(20, 13, 8, 0.82);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1200px, 96vw);
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.lightbox video {
  max-width: min(1200px, 96vw);
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  background: #000;
}

.lightbox-close {
  position: absolute;
  top: 0.7rem;
  right: 0.9rem;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #3a2920;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

body.lightbox-open {
  overflow: hidden;
}

.product-grid {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.6rem;
}

.card {
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.image-placeholder {
  min-height: 220px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.product-image-wrap {
  min-height: 220px;
  background: #e6dfd5;
}

.product-image {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: block;
  object-fit: cover;
}

.image-placeholder.rose {
  background:
    linear-gradient(160deg, rgba(176, 138, 78, 0.9), rgba(133, 103, 57, 0.8)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.2), transparent 45%);
}

.image-placeholder.lavender {
  background:
    linear-gradient(160deg, rgba(107, 115, 125, 0.94), rgba(79, 87, 97, 0.78)),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.2), transparent 40%);
}

.card-body {
  padding: 1.15rem 1.2rem 1.3rem;
}

.card-body p {
  color: var(--ink-soft);
  margin-bottom: 0;
}

.benefits {
  background: linear-gradient(180deg, rgba(218, 210, 199, 0.6), rgba(240, 235, 228, 0.76));
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.benefit-grid article {
  background: var(--white);
  border-radius: 18px;
  padding: 1.2rem 1.1rem;
  box-shadow: var(--shadow);
}

.benefit-grid ul {
  padding-left: 1.1rem;
  margin-bottom: 0;
}

.contact {
  scroll-margin-top: calc(var(--topbar-offset) + 0.8rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.95fr);
  gap: 1.1rem;
  align-items: start;
}

.contact-details {
  background: var(--white);
  border-radius: 20px;
  padding: 1.3rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(95, 74, 61, 0.14);
}

.contact-details h3 {
  margin-bottom: 1rem;
}

.contact-item {
  border-top: 1px solid #e6ddcf;
  padding: 0.72rem 0;
}

.contact-item:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.contact-label {
  margin: 0 0 0.25rem;
  color: var(--ink-soft);
  font-weight: 700;
}

.contact-item p {
  margin: 0;
}

.contact-item a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.contact-item a:hover {
  color: var(--rose);
}

.contact-cta-card {
  background: linear-gradient(145deg, #f8f5f0 0%, #efe8dd 100%);
  border-radius: 20px;
  padding: 1.35rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(95, 74, 61, 0.16);
}

.contact-cta-card .eyebrow {
  margin-bottom: 0.45rem;
}

.contact-cta-card h3 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
}

.contact-cta-card p {
  margin-top: 0;
  color: var(--ink-soft);
}

.quick-service-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0 0 0.5rem;
  padding: 0.24rem 0.68rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #66512d;
  background: rgba(158, 121, 63, 0.14);
  border: 1px solid rgba(126, 96, 49, 0.28);
}

.contact-quick-actions {
  display: grid;
  gap: 0.7rem;
  margin: 0.95rem 0 1rem;
}

.quick-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.quick-btn:hover {
  transform: translateY(-1px);
}

.quick-btn-phone {
  background: linear-gradient(135deg, #9e793f, #7e6031);
  color: #fff;
  box-shadow: 0 10px 20px rgba(126, 96, 49, 0.24);
}

.quick-btn-whatsapp {
  background: #fff;
  color: #1f7f4e;
  border: 1px solid rgba(31, 127, 78, 0.32);
}

.contact-quick-note {
  border-top: 1px dashed rgba(95, 74, 61, 0.24);
  padding-top: 0.75rem;
}

.contact-quick-note p {
  margin: 0.2rem 0;
}

.contact-response-line {
  margin-top: 0.45rem;
  font-weight: 700;
  color: var(--ink);
}

.contact-meta {
  margin-top: 0.75rem;
  border-top: 1px dashed #d6c4af;
  padding-top: 0.75rem;
}

.contact-meta p {
  margin: 0.25rem 0;
  color: var(--ink-soft);
}

.footer {
  margin-top: 2.2rem;
  padding: 2.2rem 0 1.1rem;
  color: var(--ink-soft);
  background: #e5e0d9;
  border-top: 1px solid rgba(91, 97, 104, 0.12);
}

.footer-shell {
  background: #e5e0d9;
  border: 1px solid rgba(91, 97, 104, 0.12);
  border-radius: 22px;
  padding: 1.25rem 1.2rem 0.7rem;
  box-shadow: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  gap: 1rem;
}

.footer-logo-link {
  display: inline-flex;
  text-decoration: none;
  line-height: 1;
}

.footer-logo {
  width: auto;
  height: 96px;
  display: block;
}

.footer-tagline {
  margin: 0.55rem 0 0;
  max-width: 420px;
  font-size: 0.93rem;
}

.footer-nav h3,
.footer-contact h3 {
  margin: 0 0 0.62rem;
  font-size: 1.02rem;
  color: var(--ink);
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.footer-nav a,
.footer-contact a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--ink);
}

.footer-contact p {
  margin: 0.4rem 0;
  display: grid;
  gap: 0.1rem;
}

.footer-contact strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.footer-bottom {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(91, 97, 104, 0.18);
  text-align: center;
  font-size: 0.88rem;
}

body.rtl {
  text-align: right;
}

body.rtl .nav ul {
  direction: rtl;
  margin-left: 0;
  margin-right: auto;
}

body.rtl .contact-item,
body.rtl .contact-meta,
body.rtl .contact-cta-card {
  text-align: right;
}

body.rtl .about-why ul,
body.rtl .gallery-note {
  text-align: right;
}

body.rtl .hero-copy,
body.rtl .hero-content p {
  text-align: right;
}

body.rtl .footer-nav ul,
body.rtl .footer-contact p {
  text-align: right;
}

body.rtl .gallery-filters {
  justify-content: flex-end;
}

body.rtl .benefit-grid ul {
  padding-left: 0;
  padding-right: 1.1rem;
}

body.rtl .nav {
  flex-direction: row-reverse;
}

@media (max-width: 1024px), (hover: none) and (pointer: coarse) {
  .container {
    width: min(1100px, 94%);
  }

  .hero-content {
    padding: 4.2rem 0 3.3rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 620px;
  }

  .section {
    padding: 3.6rem 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  :root {
    --topbar-offset: 98px;
  }

  .nav {
    position: relative;
    flex-wrap: nowrap;
    gap: 0.55rem;
    height: var(--topbar-offset);
    padding: 0;
  }

  .brand-logo {
    height: 62px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    order: 2;
  }

  .hero-content {
    padding-top: 3rem;
  }

  .brand {
    order: 0;
  }

  .language-switcher {
    order: 3;
    margin-left: 0;
  }

  .nav ul {
    position: absolute;
    top: calc(var(--topbar-offset) - 4px);
    left: 0;
    right: 0;
    z-index: 45;
    margin: 0;
    padding: 0.56rem;
    gap: 0.4rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    background: rgba(246, 244, 241, 0.98);
    border: 1px solid rgba(91, 97, 104, 0.16);
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(30, 34, 38, 0.12);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav.is-open ul {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav ul a {
    white-space: nowrap;
    width: 100%;
    justify-content: center;
    font-size: 0.8rem;
    padding: 0.38rem 0.3rem;
    min-height: 38px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(95, 74, 61, 0.14);
  }

  body.rtl .language-switcher {
    margin-left: 0;
    margin-right: auto;
  }

  .product-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-filters {
    gap: 0.45rem;
  }

  .media-group + .media-group {
    margin-top: 1.1rem;
  }
}

@media (max-width: 768px) {
  :root {
    --topbar-offset: 94px;
  }

  .container {
    width: min(1100px, 95%);
  }

  .nav {
    align-items: center;
    height: var(--topbar-offset);
  }

  .nav ul {
    gap: 0.35rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav li {
    flex: 1 1 auto;
    min-width: 0;
  }

  .nav ul a {
    width: 100%;
    justify-content: center;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(95, 74, 61, 0.14);
    border-radius: 999px;
    padding: 0.36rem 0.2rem;
    text-transform: none;
    letter-spacing: 0.01em;
    font-size: 0.78rem;
    min-height: 37px;
  }

  .nav ul a::after {
    left: 8%;
    right: 8%;
    bottom: -0.16rem;
  }

  .brand-logo {
    height: 58px;
  }

  .language-switcher {
    padding: 0.2rem 0.28rem;
    gap: 0.2rem;
  }

  .lang-btn {
    width: 1.75rem;
    height: 1.75rem;
  }

  .lang-btn img {
    width: 1.05rem;
    height: 1.05rem;
  }

  .hero {
    padding-bottom: 1.6rem;
  }

  .hero-content {
    padding: 2.7rem 0 2.2rem;
  }

  .hero-visual {
    min-height: 240px;
    border-radius: 18px;
  }

  h1 {
    font-size: clamp(1.7rem, 8.5vw, 2.4rem);
    line-height: 1.2;
  }

  .section {
    padding: 2.8rem 0;
  }

  .image-placeholder,
  .product-image-wrap,
  .product-image {
    min-height: 190px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-cta-card {
    padding: 1.1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    min-height: 0;
  }

  .footer {
    padding-top: 1.4rem;
  }

  .footer-shell {
    border-radius: 16px;
    padding: 0.85rem 0.8rem 0.55rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    text-align: center;
  }

  .footer-logo {
    height: 68px;
    margin: 0 auto;
  }

  .footer-tagline {
    font-size: 0.87rem;
    margin-top: 0.4rem;
    max-width: none;
  }

  .footer-nav h3,
  .footer-contact h3 {
    font-size: 0.96rem;
    margin-bottom: 0.45rem;
  }

  .footer-nav ul {
    gap: 0.3rem;
  }

  .footer-contact p {
    margin: 0.3rem 0;
  }

  .footer-bottom {
    margin-top: 0.7rem;
    padding-top: 0.55rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  :root {
    --topbar-offset: 90px;
  }

  body {
    line-height: 1.68;
  }

  .language-switcher {
    padding: 0.28rem 0.35rem;
    gap: 0.24rem;
  }

  .lang-btn {
    width: 2.15rem;
    height: 2.15rem;
  }

  .lang-btn img {
    width: 1.33rem;
    height: 1.33rem;
  }

  .brand {
    max-width: none;
  }

  .nav ul {
    gap: 0.32rem;
  }

  .nav li {
    min-width: 0;
  }

  .nav ul a {
    font-size: 0.76rem;
    padding: 0.34rem 0.16rem;
    min-height: 36px;
  }

  .brand-logo {
    height: 54px;
  }

  .nav-toggle {
    padding: 0.36rem 0.62rem;
    min-height: 34px;
    font-size: 0.78rem;
  }

  .language-switcher {
    padding: 0.2rem 0.24rem;
    gap: 0.16rem;
  }

  .lang-btn {
    width: 1.5rem;
    height: 1.5rem;
  }

  .lang-btn img {
    width: 0.9rem;
    height: 0.9rem;
  }

  .hero-content {
    padding-top: 2.25rem;
  }

  .hero-visual {
    min-height: 210px;
  }

  .footer-logo {
    height: 60px;
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .section-head h2 {
    font-size: clamp(1.3rem, 7.8vw, 1.7rem);
  }

  .card {
    border-radius: 18px;
  }

  .image-placeholder,
  .product-image-wrap,
  .product-image {
    min-height: 165px;
    font-size: 0.9rem;
  }

  .card-body {
    padding: 1rem;
  }

  .benefit-grid article {
    padding: 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item {
    min-height: 0;
  }

  .filter-btn {
    font-size: 0.86rem;
    padding: 0.42rem 0.68rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .footer {
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
    margin-bottom: 0;
  }

  .footer-shell {
    margin-bottom: calc(0.2rem + env(safe-area-inset-bottom));
  }
}

@media (hover: none) and (pointer: coarse) {
  :root {
    --topbar-offset: 132px;
  }

  .site-topbar {
    height: var(--topbar-offset);
  }

  .nav {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand toggle"
      "langs langs";
    align-items: center;
    row-gap: 0.28rem;
    column-gap: 0.5rem;
    height: var(--topbar-offset);
    padding: 0.32rem 0 0.3rem;
  }

  .brand {
    grid-area: brand;
    justify-self: start;
  }

  .brand-logo {
    height: 54px;
  }

  .nav-toggle {
    grid-area: toggle;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    min-height: 34px;
    padding: 0.34rem 0.64rem;
    font-size: 0.78rem;
  }

  .language-switcher {
    grid-area: langs;
    justify-self: center;
    display: flex;
    gap: 0.18rem;
    padding: 0.2rem 0.24rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(95, 74, 61, 0.16);
    border-radius: 999px;
    box-shadow: none;
  }

  .lang-btn {
    width: 1.5rem;
    height: 1.5rem;
  }

  .lang-btn img {
    width: 0.9rem;
    height: 0.9rem;
  }

  .nav ul {
    top: calc(var(--topbar-offset) - 4px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.34rem;
  }

  .nav ul a {
    min-height: 36px;
    font-size: 0.76rem;
    padding: 0.34rem 0.18rem;
  }

  body:not(.rtl),
  body:not(.rtl) .hero-copy,
  body:not(.rtl) .hero-content p,
  body:not(.rtl) .section-head,
  body:not(.rtl) .footer-grid,
  body:not(.rtl) .footer-contact p {
    text-align: left;
  }

  .footer {
    padding: 1.2rem 0 0.9rem;
  }

  .footer-shell {
    border-radius: 14px;
    padding: 0.78rem 0.72rem 0.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .footer-logo {
    height: 56px;
    margin: 0;
  }

  .footer-tagline {
    font-size: 0.84rem;
    margin-top: 0.34rem;
    max-width: none;
  }

  .footer-nav h3,
  .footer-contact h3 {
    font-size: 0.92rem;
    margin-bottom: 0.4rem;
  }

  .footer-bottom {
    margin-top: 0.58rem;
    padding-top: 0.5rem;
    font-size: 0.78rem;
    text-align: center;
  }
}

/* Final mobile-tablet safety overrides */
@media (max-width: 1024px) {
  :root {
    --topbar-offset: 136px;
  }

  .site-topbar {
    height: var(--topbar-offset);
  }

  .nav {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand controls"
      "langs langs";
    align-items: center;
    row-gap: 0.3rem;
    height: var(--topbar-offset);
    padding: 0.32rem 0 0.28rem;
  }

  .brand {
    grid-area: brand;
    justify-self: start;
  }

  .brand-logo {
    height: 58px;
  }

  .nav-toggle {
    grid-area: controls;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    min-height: 36px;
    padding: 0.36rem 0.66rem;
    font-size: 0.8rem;
  }

  .language-switcher {
    grid-area: langs;
    justify-self: start;
    display: inline-flex;
    padding: 0.22rem 0.26rem;
    gap: 0.18rem;
    border: 1px solid rgba(95, 74, 61, 0.16);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: none;
  }

  .lang-btn {
    width: 1.6rem;
    height: 1.6rem;
  }

  .lang-btn img {
    width: 0.94rem;
    height: 0.94rem;
  }

  .nav ul {
    position: absolute;
    top: calc(var(--topbar-offset) - 2px);
    left: 0;
    right: 0;
    z-index: 60;
    margin: 0;
    padding: 0.58rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.36rem;
    background: rgba(246, 244, 241, 0.99);
    border: 1px solid rgba(91, 97, 104, 0.16);
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(30, 34, 38, 0.12);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-5px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav.is-open ul {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav ul a {
    width: 100%;
    min-height: 38px;
    padding: 0.36rem 0.2rem;
    font-size: 0.8rem;
    text-transform: none;
    letter-spacing: 0.01em;
    justify-content: center;
    white-space: nowrap;
    border: 1px solid rgba(95, 74, 61, 0.14);
    background: rgba(255, 255, 255, 0.62);
    border-radius: 999px;
  }

  body:not(.rtl),
  body:not(.rtl) .hero-copy,
  body:not(.rtl) .hero-content p,
  body:not(.rtl) .section-head,
  body:not(.rtl) .footer-grid,
  body:not(.rtl) .footer-contact p,
  body:not(.rtl) .footer-nav ul {
    text-align: left;
  }

  .footer {
    padding: 1.25rem 0 0.9rem;
  }

  .footer-shell {
    border-radius: 14px;
    padding: 0.82rem 0.76rem 0.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .footer-logo {
    height: 58px;
    margin: 0;
  }

  .footer-tagline {
    max-width: none;
    font-size: 0.84rem;
    margin-top: 0.35rem;
  }

  .footer-nav h3,
  .footer-contact h3 {
    font-size: 0.93rem;
    margin-bottom: 0.42rem;
  }

  .footer-bottom {
    margin-top: 0.58rem;
    padding-top: 0.5rem;
    font-size: 0.78rem;
  }
}

@media (max-width: 600px), (hover: none) and (pointer: coarse) {
  :root {
    --topbar-offset: 128px;
  }

  .brand-logo {
    height: 52px;
  }

  .nav-toggle {
    min-height: 34px;
    font-size: 0.76rem;
    padding: 0.32rem 0.58rem;
  }

  .nav ul a {
    min-height: 36px;
    font-size: 0.76rem;
    padding: 0.34rem 0.16rem;
  }

  .lang-btn {
    width: 1.5rem;
    height: 1.5rem;
  }

  .lang-btn img {
    width: 0.88rem;
    height: 0.88rem;
  }

  .footer-logo {
    height: 54px;
  }
}

/* Final drawer-based mobile navigation */
.mobile-drawer,
.mobile-drawer-backdrop {
  display: none;
}

.mobile-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(95, 74, 61, 0.16);
}

.mobile-drawer-close {
  border: 1px solid rgba(95, 74, 61, 0.22);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.mobile-drawer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.36rem;
}

.mobile-drawer-links li {
  opacity: 0;
  transform: translateX(-8px);
  transition: transform 190ms ease, opacity 190ms ease;
}

.mobile-drawer-links a {
  text-decoration: none;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(95, 74, 61, 0.14);
  border-radius: 10px;
  min-height: 40px;
  padding: 0.44rem 0.64rem;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.mobile-drawer-links a.is-active {
  color: var(--ink);
  border-color: rgba(176, 138, 78, 0.62);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 3px 0 0 var(--accent);
}

.mobile-drawer-langs {
  margin-top: 0.78rem;
  display: inline-flex;
}

.mobile-drawer-langs .lang-btn.active {
  border-color: var(--rose);
  box-shadow: 0 0 0 2px rgba(176, 138, 78, 0.24);
}

@media (max-width: 1100px), (hover: none) and (pointer: coarse) {
  :root {
    --topbar-offset: 86px !important;
  }

  .site-topbar {
    height: var(--topbar-offset) !important;
  }

  .nav {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    height: var(--topbar-offset) !important;
    padding: 0 !important;
  }

  .brand-logo {
    height: 54px !important;
  }

  .nav ul,
  .nav .language-switcher,
  .mobile-panel {
    display: none !important;
  }

  .nav-toggle {
    margin-left: auto;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0.32rem 0.7rem;
    font-size: 0.8rem;
    gap: 0.45rem;
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(95, 74, 61, 0.24);
  }

  .nav-toggle::before {
    content: "";
    width: 14px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    box-shadow: 0 -4px 0 currentColor, 0 4px 0 currentColor;
  }

  body.drawer-open .nav-toggle::before {
    width: 12px;
    box-shadow: none;
    transform: rotate(45deg);
  }

  body.drawer-open .nav-toggle::after {
    content: "";
    width: 12px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transform: rotate(-45deg);
    margin-left: -12px;
  }

  .mobile-drawer-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(20, 22, 25, 0.34);
    z-index: 58;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .mobile-drawer {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: min(84vw, 330px);
    height: 100dvh;
    z-index: 59;
    padding: 0.82rem 0.72rem 1rem;
    background: linear-gradient(180deg, #f6f3ee 0%, #ece6dd 100%);
    border-right: 1px solid rgba(95, 74, 61, 0.16);
    box-shadow: 0 14px 30px rgba(20, 22, 25, 0.2);
    transform: translateX(-102%);
    transition: transform 220ms ease;
    overflow-y: auto;
  }

  body.drawer-open .mobile-drawer {
    transform: translateX(0);
  }

  body.drawer-open .mobile-drawer-links li {
    opacity: 1;
    transform: none;
  }

  body.drawer-open .mobile-drawer-links li:nth-child(1) { transition-delay: 40ms; }
  body.drawer-open .mobile-drawer-links li:nth-child(2) { transition-delay: 70ms; }
  body.drawer-open .mobile-drawer-links li:nth-child(3) { transition-delay: 100ms; }
  body.drawer-open .mobile-drawer-links li:nth-child(4) { transition-delay: 130ms; }
  body.drawer-open .mobile-drawer-links li:nth-child(5) { transition-delay: 160ms; }
  body.drawer-open .mobile-drawer-links li:nth-child(6) { transition-delay: 190ms; }

  body.drawer-open .mobile-drawer-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  body.rtl .mobile-drawer {
    left: auto;
    right: 0;
    border-right: 0;
    border-left: 1px solid rgba(95, 74, 61, 0.16);
    transform: translateX(102%);
  }

  body.rtl.drawer-open .mobile-drawer {
    transform: translateX(0);
  }
}

/* JS-forced mobile drawer fallback */
body.force-mobile-nav {
  --topbar-offset: 86px;
}

body.force-mobile-nav .site-topbar {
  height: var(--topbar-offset) !important;
}

body.force-mobile-nav .nav {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  height: var(--topbar-offset) !important;
  padding: 0 !important;
}

body.force-mobile-nav .brand-logo {
  height: 54px !important;
}

body.force-mobile-nav .nav ul,
body.force-mobile-nav .nav .language-switcher,
body.force-mobile-nav .mobile-panel {
  display: none !important;
}

body.force-mobile-nav .nav-toggle {
  margin-left: auto;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.32rem 0.7rem;
  font-size: 0.8rem;
  gap: 0.45rem;
}

body.force-mobile-nav .mobile-drawer,
body.force-mobile-nav .mobile-drawer-backdrop {
  display: block;
}

