/* Base styles */
:root {
  --bg: #070507;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.1);
  --text: #f7f2f0;
  --muted: rgba(247, 242, 240, 0.72);
  --accent: #d6b57f;
  --accent-2: #f3ddb2;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --max: 1140px;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Libre Baskerville", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: radial-gradient(circle at top, rgba(214, 181, 127, 0.2), transparent 60%),
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08), transparent 52%),
    var(--bg);
  min-height: 100vh;
  line-height: 1.6;
}

.container {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 1.25rem;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.03em;
}

p {
  margin: 0;
}

button,
input,
textarea {
  font-family: inherit;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(7, 5, 7, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
    max-height: 52px;
    max-width: 240px;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

.nav-list {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-toggle {
  display: none;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.2rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 60;
}

[dir="rtl"] .nav-toggle {
  right: auto;
  left: 1rem;
}

.nav-list a {
  font-weight: 600;
  padding: 0.65rem 0.25rem;
  border-radius: 999px;
  transition: background 160ms ease, transform 160ms ease;
}

.nav-list a:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.lang-switch {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.lang-btn {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  font-weight: 600;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.lang-btn[aria-pressed="true"] {
  background: rgba(214, 181, 127, 0.22);
  border-color: rgba(214, 181, 127, 0.7);
}

.lang-btn:hover {
  transform: translateY(-1px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 6rem 0 5rem;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 229, 200, 0.9), rgba(205, 105, 255, 0.65)),
    url('assets/images/hero.jpeg') center/cover no-repeat;
  background-blend-mode: overlay;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.2), transparent 55%),
    linear-gradient(180deg, rgba(7, 5, 7, 0.65), rgba(7, 5, 7, 0.9) 55%, rgba(7, 5, 7, 0.85));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 1rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4rem);
  margin-bottom: 1rem;
  line-height: 1.05;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  margin-bottom: 2.2rem;
  color: rgba(247, 242, 240, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.9rem 1.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn-primary {
  background: linear-gradient(120deg, rgba(214, 181, 127, 0.75), rgba(255, 255, 255, 0.18));
  backdrop-filter: blur(12px);
  color: var(--bg);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.3);
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
}

.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 3rem;
}

.why-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: start;
}

.why-features {
  display: grid;
  gap: 1.5rem;
}

.why-item h3 {
  margin-bottom: 0.6rem;
}

.why-gallery {
  display: none;
}

.why-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 200ms ease;
}

.why-gallery img:hover {
  transform: translateY(-4px) scale(1.02);
}

@media (min-width: 920px) {
  .why-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-header p {
  color: rgba(247, 242, 240, 0.75);
  font-size: 1.05rem;
}

.features-grid,
.product-grid,
.steps-grid {
  display: grid;
  gap: 1.8rem;
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  transition: transform 200ms ease;
}

.feature:hover {
  transform: translateY(-4px);
}

.feature h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.product-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease;
}

.photo-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.photo-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 200ms ease;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
}

.photo-card:hover {
  transform: translateY(-4px);
}

.photo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}

.product-content h3 {
  font-size: 1.3rem;
}

.steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}

.step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 160ms ease;
}

.step:hover {
  transform: translateY(-4px);
}

.step-number {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: rgba(214, 181, 127, 0.25);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}

.step h3 {
  margin-bottom: 0.75rem;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial-card {
  padding: 2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-quote {
  font-style: italic;
  color: rgba(247, 242, 240, 0.85);
}

.testimonial-author {
  margin-top: auto;
  color: rgba(214, 181, 127, 0.95);
  font-weight: 700;
}

.contact-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1.1rem;
  padding: 2.2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  text-align: left;
  font-size: 0.95rem;
  color: rgba(247, 242, 240, 0.85);
}

.contact-form input,
.contact-form textarea {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.4);
  color: var(--text);
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(214, 181, 127, 0.7);
  box-shadow: 0 0 0 4px rgba(214, 181, 127, 0.18);
}

.form-note {
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: rgba(247, 242, 240, 0.72);
}

.contact-info {
  display: grid;
  gap: 1.5rem;
}
.contact-methods {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 880px) {
  .contact-methods {
    grid-template-columns: repeat(12, 1fr);
  }

  .contact-methods .info-block:nth-child(1),
  .contact-methods .info-block:nth-child(2) {
    grid-column: span 6;
  }

  .contact-methods .info-block:nth-child(3) {
    grid-column: span 12;
  }
}
.info-block {
  padding: 1.2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.info-block h3 {
  margin-bottom: 0.65rem;
}

.info-block a {
  color: rgba(214, 181, 127, 0.9);
  word-break: break-word;
}

/* Footer */
.site-footer {
  padding: 2.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  color: rgba(247, 242, 240, 0.7);
}

.footer-links a:hover {
  color: rgba(214, 181, 127, 0.9);
}

@media (min-width: 880px) {
  .footer-inner {
    flex-direction: row;
  }
}

/* RTL support */
[dir="rtl"] {
  direction: rtl;
}

[dir="rtl"] .nav-list {
  direction: rtl;
}

[dir="rtl"] .lang-switch {
  flex-direction: row-reverse;
}

[dir="rtl"] .hero {
  text-align: center;
}

[dir="rtl"] .logo-name {
  display: inline;
}

[dir="rtl"] .logo-sub {
  display: inline;
}

@media (max-width: 760px) {
  .nav-toggle {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 70;
  }

  .nav-list {
    display: none;
  }

  .lang-switch {
    display: none;
  }

  body.nav-open .nav-list {
    display: flex;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1.5rem 2rem;
    background: rgba(7, 5, 7, 0.96);
    z-index: 45;
    overflow-y: auto;
    box-sizing: border-box;
  }

  body.nav-open .nav-list a {
    display: block;
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
  }

  .header-inner {
    justify-content: space-between;
  }

  .nav-open .lang-switch {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 60;
}

.lightbox.active {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
}

.lightbox-content {
  position: relative;
  max-width: 920px;
  width: 100%;
  max-height: 90vh;
  padding: 2rem;
  border-radius: var(--radius);
  background: rgba(7, 5, 7, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 10;
  pointer-events: auto;
}

.lightbox-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  overflow: hidden;
}

.lightbox-slide {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  overflow: hidden;
}

.lightbox-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-controls {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.lightbox-nav {
  flex: 1;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  transition: transform 120ms ease;
}

.lightbox-nav:hover {
  transform: translateY(-1px);
}
