:root {
  --cream: #fffaf3;
  --cream-deep: #f8eee2;
  --white: #ffffff;
  --ink: #4b2a1d;
  --muted: #796156;
  --gold: #c58c37;
  --gold-light: #ead1a7;
  --pink: #ef9ba5;
  --pink-dark: #c96f7b;
  --border: #eaded2;
  --shadow: 0 18px 50px rgba(75, 42, 29, 0.1);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

img[hidden] {
  display: none;
}

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

button {
  color: inherit;
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 96px;
  padding: 7px clamp(24px, 6vw, 96px);
  background: rgba(255, 250, 243, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3vw, 46px);
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 0.95rem;
  font-weight: 600;
}

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

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

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

.header-phone,
.language-button {
  padding: 10px 16px;
  background: transparent;
  border: 1px solid var(--gold-light);
  border-radius: 6px;
  font-weight: 600;
}

.language-button {
  cursor: pointer;
}

.header-phone:hover,
.language-button:hover {
  background: var(--cream-deep);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 200ms ease, opacity 200ms ease;
}

.hero-section {
  position: relative;
  min-height: min(700px, calc(100vh - 96px));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream-deep);
}

.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(48, 26, 17, 0.57);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 90%);
  margin-left: clamp(24px, 10vw, 170px);
  padding: 75px 0;
  color: var(--white);
}

.hero-content .eyebrow {
  color: #f1c87e;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.hero-content h1 {
  max-width: 700px;
  margin: 0;
  font: 700 clamp(3rem, 6vw, 5.3rem) / 1.05 var(--serif);
}

.hero-text {
  max-width: 610px;
  margin: 27px 0 0;
  font-size: 1.08rem;
}

.hero-buttons,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

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

.button-primary:hover {
  background: #f5adb5;
}

.button-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
}

.button-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button-outline {
  border-color: var(--pink-dark);
}

.hero-section.no-hero-image {
  background: var(--cream-deep);
}

.hero-section.no-hero-image .hero-overlay {
  background: transparent;
}

.hero-section.no-hero-image .hero-content {
  color: var(--ink);
}

.hero-section.no-hero-image .hero-content .eyebrow {
  color: var(--gold);
}

.hero-section.no-hero-image .button-light {
  color: var(--ink);
  border-color: var(--pink-dark);
}

.section {
  padding: 96px clamp(24px, 8vw, 140px);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading h2,
.section-content h2,
.contact-content h2 {
  margin: 0;
  font: 700 clamp(2.35rem, 4vw, 4rem) / 1.1 var(--serif);
}

.section-heading > p:last-child {
  color: var(--muted);
}

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

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 1400px;
  margin: auto;
}

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

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

.product-image,
.section-image,
.gallery-grid > div {
  position: relative;
  overflow: hidden;
  background: var(--cream-deep);
}

.product-image {
  aspect-ratio: 4 / 3;
}

.product-image img,
.section-image img,
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-card:hover img,
.gallery-grid > div:hover img {
  transform: scale(1.04);
}

[data-placeholder].image-missing::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  color: var(--gold);
  content: attr(data-placeholder);
  font-family: var(--serif);
  font-size: 1.2rem;
  text-align: center;
}

.product-card-content {
  padding: 25px;
}

.product-card-content h3 {
  margin: 0 0 8px;
  font: 700 1.35rem var(--serif);
}

.product-card-content p {
  margin: 0;
  color: var(--muted);
}

.values-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 30px clamp(24px, 8vw, 140px);
  background: var(--cream-deep);
  border-block: 1px solid var(--border);
}

.value {
  display: flex;
  min-height: 80px;
  flex-direction: column;
  justify-content: center;
  padding: 10px 28px;
  border-right: 1px solid var(--border);
}

.value:last-child {
  border-right: 0;
}

.value strong {
  font-family: var(--serif);
  font-size: 1.12rem;
}

.value span {
  color: var(--muted);
  font-size: 0.88rem;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
  background: var(--white);
}

.section-image {
  min-height: 520px;
  border-radius: 8px;
}

.section-content {
  max-width: 580px;
}

.section-content h2 {
  margin-bottom: 26px;
}

.section-content p {
  color: var(--muted);
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  font-weight: 700;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
  gap: 20px;
  max-width: 1400px;
  margin: auto;
}

.gallery-grid > div {
  min-height: 430px;
  border-radius: 8px;
}

.contact-section {
  color: var(--white);
  background: var(--pink-dark);
  text-align: center;
}

.contact-content {
  max-width: 900px;
  margin: auto;
}

.contact-section .eyebrow {
  color: var(--cream);
}

.contact-content > p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px auto;
}

.contact-details {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 24px 0;
}

.contact-details a {
  font-size: 1.1rem;
  font-weight: 700;
}

.contact-buttons {
  justify-content: center;
}

.contact-section .button-primary {
  background: var(--white);
}

.contact-section .button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 28px clamp(24px, 6vw, 96px);
  background: var(--cream-deep);
}

.footer-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  font-weight: 600;
}

[dir="rtl"] .hero-content {
  margin-right: clamp(24px, 10vw, 170px);
  margin-left: 0;
}

[dir="rtl"] .value {
  border-right: 0;
  border-left: 1px solid var(--border);
}

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .header-actions {
    justify-self: end;
  }

  .header-phone {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 96px 0 auto;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 28px;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

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

  .value:nth-child(2) {
    border-right: 0;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .section-image {
    min-height: 440px;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 78px;
  }

  .site-header {
    min-height: 78px;
    padding: 8px 18px;
  }

  .logo {
    width: 62px;
    height: 62px;
  }

  .main-nav {
    top: 78px;
  }

  .language-button {
    padding: 8px 11px;
  }

  .menu-button {
    width: 40px;
    height: 40px;
  }

  .hero-section {
    min-height: 640px;
  }

  .hero-content {
    width: auto;
    margin: 0;
    padding: 70px 24px;
  }

  [dir="rtl"] .hero-content {
    margin: 0;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-buttons,
  .contact-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .section {
    padding: 72px 20px;
  }

  .product-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 15px;
    scroll-snap-type: x mandatory;
  }

  .product-card {
    min-width: 82vw;
    scroll-snap-align: start;
  }

  .values-section {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .value,
  .value:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  [dir="rtl"] .value {
    border-left: 0;
  }

  .value:last-child {
    border-bottom: 0;
  }

  .section-image {
    min-height: 340px;
  }

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

  .gallery-grid > div {
    min-height: 330px;
  }

  .contact-details {
    flex-direction: column;
    gap: 8px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .social-links {
    justify-content: center;
  }
}
