:root {
  --bg: #f8f2ed;
  --bg-soft: #f2e7dd;
  --cream: #fbf7f2;
  --rose-gold: #c89b8a;
  --ink: #171311;
  --ink-soft: #4d3d37;
  --sand: #d6c1b2;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(23, 19, 17, 0.12);
  --serif: "Playfair Display", "Times New Roman", serif;
  --sans: "Manrope", "Helvetica", "Arial", sans-serif;
  --radius: 28px;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: radial-gradient(circle at top, #ffffff 0%, var(--bg) 65%);
  min-height: 100vh;
}

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

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

h1,
h2,
h3 {
  font-family: var(--serif);
  margin: 0 0 16px;
  letter-spacing: 0.2px;
}

p {
  margin: 0 0 16px;
  color: var(--ink-soft);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 8vw;
  background: rgba(251, 247, 242, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23, 19, 17, 0.08);
}

.logo {
  display: flex;
  gap: 14px;
  align-items: center;
}

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e6c8b8, #c79a88);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 600;
  letter-spacing: 1px;
}

.logo-name {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
}

.logo-sub {
  font-size: 12px;
  color: var(--ink-soft);
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 14px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.lang-btn {
  background: none;
  border: none;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink-soft);
  padding: 4px 6px;
}

.lang-btn.active {
  color: var(--ink);
  border-bottom: 2px solid var(--rose-gold);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding: 70px 8vw 90px;
}

.hero-media {
  position: relative;
}

.hero-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  height: 520px;
  width: 100%;
}

.hero-glow {
  position: absolute;
  inset: 30px;
  border-radius: 40px;
  background: radial-gradient(circle, rgba(200, 155, 138, 0.4), transparent 70%);
  filter: blur(12px);
  z-index: -1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--rose-gold);
  font-weight: 600;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--ink);
}

.lead {
  font-size: 18px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0 20px;
}

.btn {
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn.primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 18px 30px rgba(23, 19, 17, 0.18);
}

.btn.ghost {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

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

.hero-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-tags span {
  background: rgba(255, 255, 255, 0.8);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  box-shadow: 0 10px 18px rgba(23, 19, 17, 0.08);
}

.section {
  padding: 80px 8vw;
}

.section-title {
  max-width: 620px;
  margin-bottom: 40px;
}

.collection {
  background: linear-gradient(180deg, var(--bg) 0%, var(--cream) 100%);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(23, 19, 17, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 380px;
}

.product-card img {
  height: 200px;
  object-fit: cover;
}

.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.meta {
  font-size: 12px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.text-link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--rose-gold);
}

.story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
  background: var(--white);
}

.story-media img {
  border-radius: 30px;
  box-shadow: var(--shadow);
  height: 420px;
  object-fit: cover;
}

.story-highlight {
  background: var(--bg-soft);
  padding: 18px 22px;
  border-radius: 18px;
  font-weight: 600;
  color: var(--ink);
}

.values {
  background: linear-gradient(120deg, #ffffff 0%, #f7efe8 100%);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.value-card {
  background: var(--white);
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(23, 19, 17, 0.06);
}

.testimonials {
  background: var(--cream);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}

.testimonial-card {
  background: var(--white);
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(23, 19, 17, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-meta {
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
}

.contact {
  background: var(--bg);
}

.contact-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  background: var(--white);
  padding: 40px;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--rose-gold);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-row label {
  display: block;
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(23, 19, 17, 0.12);
  font-family: var(--sans);
  font-size: 14px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 40px 8vw;
  background: #141110;
  color: var(--cream);
}

.footer a {
  color: var(--cream);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-lang {
  display: grid;
  gap: 8px;
  justify-items: start;
}

body.lang-ar {
  direction: rtl;
  font-family: "Cairo", var(--sans);
  text-align: right;
}

body.lang-ar .nav,
body.lang-ar .hero,
body.lang-ar .story,
body.lang-ar .contact-card {
  direction: rtl;
}

body.lang-ar .nav-links,
body.lang-ar .hero-cta,
body.lang-ar .hero-tags,
body.lang-ar .socials,
body.lang-ar .footer-links {
  flex-direction: row-reverse;
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero,
  .story,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    height: 400px;
  }

  .section {
    padding: 60px 7vw;
  }
}

@media (max-width: 640px) {
  .nav {
    padding: 16px 6vw;
  }

  .hero {
    padding: 50px 6vw 70px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .contact-card {
    padding: 28px;
  }
}
:root {
