* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #070707;
  --dark: #111111;
  --gold: #c9a45c;
  --gold-light: #f0d99b;
  --cream: #f7f1e3;
  --white: #ffffff;
  --gray: #b8b8b8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

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

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(7, 7, 7, 0.75);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201, 164, 92, 0.2);
}

.navbar {
  width: min(1180px, 92%);
  margin: auto;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-box {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  background: radial-gradient(circle, #2a2112, #080808);
  color: var(--gold-light);
  font-weight: bold;
  position: relative;
  overflow: hidden;
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.logo-box span {
  z-index: 2;
}

.brand strong {
  display: block;
  font-size: 18px;
}

.brand small {
  color: var(--gold);
  font-size: 12px;
}

.lang-btn {
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-light);
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.3s;
}

.lang-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.hero {
  min-height: 100vh;
  padding: 140px 8% 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 55px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(201, 164, 92, 0.3), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(240, 217, 155, 0.15), transparent 25%),
    linear-gradient(135deg, #070707, #15100a 55%, #050505);
  z-index: -2;
}

.hero-bg::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(201, 164, 92, 0.14);
  border-radius: 50%;
  right: -220px;
  top: 120px;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 18px;
  font-size: 15px;
}

.hero h1 {
  font-size: clamp(42px, 8vw, 86px);
  line-height: 1.05;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--white), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text {
  color: #ddd;
  font-size: 20px;
  line-height: 1.9;
  max-width: 720px;
}

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

.btn {
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: bold;
  transition: 0.3s;
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
}

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

.hero-card {
  min-height: 520px;
  border: 1px solid rgba(201, 164, 92, 0.28);
  border-radius: 40px;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 90px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  position: relative;
}

.perfume-shape {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cap {
  width: 72px;
  height: 42px;
  background: linear-gradient(135deg, #8b6a2e, #f0d99b);
  border-radius: 12px 12px 4px 4px;
}

.bottle {
  width: 210px;
  height: 285px;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.22), rgba(201,164,92,0.18)),
    radial-gradient(circle at 40% 20%, rgba(255,255,255,0.3), transparent 24%);
  border: 1px solid rgba(240,217,155,0.55);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 50px rgba(255,255,255,0.08), 0 30px 70px rgba(0,0,0,0.5);
}

.bottle span {
  width: 105px;
  height: 105px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 34px;
  font-weight: bold;
}

.hero-card h3 {
  color: var(--gold-light);
  font-size: 28px;
}

.hero-card p {
  color: var(--gray);
  text-align: center;
  max-width: 320px;
  line-height: 1.8;
}

.section {
  padding: 110px 8%;
  text-align: center;
}

.section-title span,
.location span {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 2px;
}

.section-title h2,
.location h2,
.contact h2 {
  font-size: clamp(32px, 5vw, 58px);
  margin: 14px 0 25px;
}

.about p {
  max-width: 900px;
  margin: auto;
  color: #d5d5d5;
  font-size: 20px;
  line-height: 2;
}

.features {
  width: min(1180px, 92%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 30px 0 100px;
}

.feature-card {
  padding: 40px 30px;
  border-radius: 28px;
  background: linear-gradient(145deg, #151515, #0b0b0b);
  border: 1px solid rgba(201, 164, 92, 0.18);
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.feature-card span {
  color: var(--gold);
  font-size: 18px;
}

.feature-card h3 {
  margin: 20px 0 14px;
  font-size: 25px;
}

.feature-card p {
  color: var(--gray);
  line-height: 1.8;
}

.gallery-section {
  padding: 100px 8%;
  background: #0d0d0d;
}

.gallery {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.image-card {
  height: 320px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(201,164,92,0.28), rgba(255,255,255,0.04)),
    #151515;
  border: 1px solid rgba(201, 164, 92, 0.22);
  position: relative;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card img[src] {
  opacity: 1;
}

.image-card span {
  position: absolute;
  bottom: 18px;
  right: 20px;
  background: rgba(0,0,0,0.55);
  color: var(--gold-light);
  padding: 8px 14px;
  border-radius: 999px;
}

.location {
  padding: 120px 8%;
  background:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
    radial-gradient(circle at center, rgba(201,164,92,0.25), transparent 40%);
  text-align: center;
}

.location p {
  color: #d7d7d7;
  font-size: 20px;
  max-width: 700px;
  margin: auto;
  line-height: 1.9;
}

.contact {
  padding: 110px 8%;
}

.contact-box {
  width: min(950px, 100%);
  margin: auto;
  text-align: center;
  padding: 60px 35px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(201,164,92,0.22), rgba(255,255,255,0.04));
  border: 1px solid rgba(201, 164, 92, 0.3);
}

.contact-box p {
  color: #ddd;
  line-height: 1.8;
  font-size: 18px;
}

.contact-links {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-links a {
  border: 1px solid rgba(201,164,92,0.4);
  color: var(--gold-light);
  padding: 14px 20px;
  border-radius: 999px;
  transition: 0.3s;
}

.contact-links a:hover {
  background: var(--gold);
  color: var(--black);
}

footer {
  padding: 30px;
  text-align: center;
  color: var(--gray);
  border-top: 1px solid rgba(201, 164, 92, 0.15);
}

[dir="ltr"] body {
  direction: ltr;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 125px;
  }

  .hero-card {
    min-height: 440px;
  }

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

  .navbar {
    height: 74px;
  }
}

@media (max-width: 520px) {
  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 11px;
  }

  .logo-box {
    width: 46px;
    height: 46px;
  }

  .hero {
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero-text,
  .about p,
  .location p {
    font-size: 17px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    text-align: center;
  }

  .contact-links {
    flex-direction: column;
  }
}* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #070707;
  --dark: #111111;
  --gold: #c9a45c;
  --gold-light: #f0d99b;
  --cream: #f7f1e3;
  --white: #ffffff;
  --gray: #b8b8b8;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

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

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(7, 7, 7, 0.75);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201, 164, 92, 0.2);
}

.navbar {
  width: min(1180px, 92%);
  margin: auto;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-box {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  background: radial-gradient(circle, #2a2112, #080808);
  color: var(--gold-light);
  font-weight: bold;
  position: relative;
  overflow: hidden;
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.logo-box span {
  z-index: 2;
}

.brand strong {
  display: block;
  font-size: 18px;
}

.brand small {
  color: var(--gold);
  font-size: 12px;
}

.lang-btn {
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-light);
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.3s;
}

.lang-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.hero {
  min-height: 100vh;
  padding: 140px 8% 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 55px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(201, 164, 92, 0.3), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(240, 217, 155, 0.15), transparent 25%),
    linear-gradient(135deg, #070707, #15100a 55%, #050505);
  z-index: -2;
}

.hero-bg::after {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(201, 164, 92, 0.14);
  border-radius: 50%;
  right: -220px;
  top: 120px;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 18px;
  font-size: 15px;
}

.hero h1 {
  font-size: clamp(42px, 8vw, 86px);
  line-height: 1.05;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--white), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text {
  color: #ddd;
  font-size: 20px;
  line-height: 1.9;
  max-width: 720px;
}

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

.btn {
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: bold;
  transition: 0.3s;
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
}

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

.hero-card {
  min-height: 520px;
  border: 1px solid rgba(201, 164, 92, 0.28);
  border-radius: 40px;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 90px rgba(0,0,0,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  position: relative;
}

.perfume-shape {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cap {
  width: 72px;
  height: 42px;
  background: linear-gradient(135deg, #8b6a2e, #f0d99b);
  border-radius: 12px 12px 4px 4px;
}

.bottle {
  width: 210px;
  height: 285px;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.22), rgba(201,164,92,0.18)),
    radial-gradient(circle at 40% 20%, rgba(255,255,255,0.3), transparent 24%);
  border: 1px solid rgba(240,217,155,0.55);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 50px rgba(255,255,255,0.08), 0 30px 70px rgba(0,0,0,0.5);
}

.bottle span {
  width: 105px;
  height: 105px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 34px;
  font-weight: bold;
}

.hero-card h3 {
  color: var(--gold-light);
  font-size: 28px;
}

.hero-card p {
  color: var(--gray);
  text-align: center;
  max-width: 320px;
  line-height: 1.8;
}

.section {
  padding: 110px 8%;
  text-align: center;
}

.section-title span,
.location span {
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 2px;
}

.section-title h2,
.location h2,
.contact h2 {
  font-size: clamp(32px, 5vw, 58px);
  margin: 14px 0 25px;
}

.about p {
  max-width: 900px;
  margin: auto;
  color: #d5d5d5;
  font-size: 20px;
  line-height: 2;
}

.features {
  width: min(1180px, 92%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 30px 0 100px;
}

.feature-card {
  padding: 40px 30px;
  border-radius: 28px;
  background: linear-gradient(145deg, #151515, #0b0b0b);
  border: 1px solid rgba(201, 164, 92, 0.18);
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.feature-card span {
  color: var(--gold);
  font-size: 18px;
}

.feature-card h3 {
  margin: 20px 0 14px;
  font-size: 25px;
}

.feature-card p {
  color: var(--gray);
  line-height: 1.8;
}

.gallery-section {
  padding: 100px 8%;
  background: #0d0d0d;
}

.gallery {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.image-card {
  height: 320px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(201,164,92,0.28), rgba(255,255,255,0.04)),
    #151515;
  border: 1px solid rgba(201, 164, 92, 0.22);
  position: relative;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card img[src] {
  opacity: 1;
}

.image-card span {
  position: absolute;
  bottom: 18px;
  right: 20px;
  background: rgba(0,0,0,0.55);
  color: var(--gold-light);
  padding: 8px 14px;
  border-radius: 999px;
}

.location {
  padding: 120px 8%;
  background:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
    radial-gradient(circle at center, rgba(201,164,92,0.25), transparent 40%);
  text-align: center;
}

.location p {
  color: #d7d7d7;
  font-size: 20px;
  max-width: 700px;
  margin: auto;
  line-height: 1.9;
}

.contact {
  padding: 110px 8%;
}

.contact-box {
  width: min(950px, 100%);
  margin: auto;
  text-align: center;
  padding: 60px 35px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(201,164,92,0.22), rgba(255,255,255,0.04));
  border: 1px solid rgba(201, 164, 92, 0.3);
}

.contact-box p {
  color: #ddd;
  line-height: 1.8;
  font-size: 18px;
}

.contact-links {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-links a {
  border: 1px solid rgba(201,164,92,0.4);
  color: var(--gold-light);
  padding: 14px 20px;
  border-radius: 999px;
  transition: 0.3s;
}

.contact-links a:hover {
  background: var(--gold);
  color: var(--black);
}

footer {
  padding: 30px;
  text-align: center;
  color: var(--gray);
  border-top: 1px solid rgba(201, 164, 92, 0.15);
}

[dir="ltr"] body {
  direction: ltr;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 125px;
  }

  .hero-card {
    min-height: 440px;
  }

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

  .navbar {
    height: 74px;
  }
}

@media (max-width: 520px) {
  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 11px;
  }

  .logo-box {
    width: 46px;
    height: 46px;
  }

  .hero {
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero-text,
  .about p,
  .location p {
    font-size: 17px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    text-align: center;
  }

  .contact-links {
    flex-direction: column;
  }
}