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

body {
  font-family: 'Montserrat', 'Segoe UI', Arial, Helvetica, sans-serif;
  color: #f8f2e8;
  background: #0e0b09;
  line-height: 1.72;
  font-weight: 400;
}

::selection {
  background: rgba(217,180,95,0.32);
  color: #fff8ea;
}

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

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

.hero {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(217,180,95,0.22), transparent 32%),
    #0e0b09;
  padding: 28px 7%;
  display: flex;
  flex-direction: column;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Cormorant Garamond', 'Palatino Linotype', Georgia, serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 24px;
  color: #d9b45f;
  text-transform: uppercase;
}

.nav-btn {
  border: 1px solid #d9b45f;
  padding: 10px 18px;
  border-radius: 999px;
  color: #d9b45f;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 46px;
  align-items: center;
  flex: 1;
  padding: 70px 0;
}

.hero-content {
  max-width: 760px;
}

.hero-image img,
.side-image img,
.image-banner img {
  border-radius: 30px;
  border: 1px solid rgba(217,180,95,0.35);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

.eyebrow {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #d9b45f;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 600;
  margin-bottom: 16px;
}

h1, h2, h3, blockquote {
  font-family: 'Cormorant Garamond', 'Palatino Linotype', 'Book Antiqua', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: 0.025em;
}

h1 {
  font-size: clamp(52px, 7.4vw, 104px);
  line-height: 0.92;
  font-style: italic;
  margin-bottom: 24px;
  color: #fff6e6;
  text-shadow: 0 16px 42px rgba(0,0,0,0.42);
}

h2 {
  font-size: clamp(38px, 4.4vw, 66px);
  line-height: 0.98;
  margin-bottom: 24px;
  color: #fff3df;
}

h3 {
  color: #e2c16f;
  margin-bottom: 12px;
  font-size: 34px;
  line-height: 1.02;
}

.subtitle {
  max-width: 650px;
  font-family: 'Cormorant Garamond', 'Palatino Linotype', Georgia, serif;
  font-size: 27px;
  font-style: italic;
  color: #eee2d0;
  margin-bottom: 36px;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.primary {
  background: #d9b45f;
  color: #0e0b09;
}

.secondary {
  border: 1px solid #d9b45f;
  color: #d9b45f;
}

.section {
  padding: 90px 7%;
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 44px;
  background: #15110e;
}

.cards, .offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card, .offer-card, .contact-box {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(217,180,95,0.25);
  border-radius: 24px;
  padding: 28px;
  backdrop-filter: blur(8px);
}

.card, .offer-card {
  font-size: 17px;
  letter-spacing: 0.005em;
}

.story {
  background: #0e0b09;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.story p {
  color: #eadfce;
  margin-bottom: 18px;
  font-size: 18px;
}

.offer {
  background: #15110e;
}

.image-banner {
  background: #0e0b09;
  padding-top: 60px;
  padding-bottom: 60px;
}

.promise {
  background: linear-gradient(135deg, #1d1711, #0e0b09);
}

.promise ul {
  max-width: 800px;
  list-style: none;
  margin-top: 20px;
}

.promise li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(217,180,95,0.22);
  font-size: 18px;
}

.testimonials {
  text-align: center;
  background: #0e0b09;
}

blockquote {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.08;
  color: #f7e7bd;
  font-style: italic;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 40px;
  align-items: center;
  background: #15110e;
}

.full {
  width: 100%;
  text-align: center;
}

.small {
  font-size: 14px;
  color: #cfc3ae;
  margin-top: 14px;
}

footer {
  padding: 28px 7%;
  text-align: center;
  color: #b7aa96;
  background: #0b0807;
}

@media (max-width: 900px) {
  .hero-layout, .intro, .contact, .story-grid {
    grid-template-columns: 1fr;
  }

  .cards, .offer-grid {
    grid-template-columns: 1fr;
  }

  .navbar {
    gap: 16px;
  }

  .nav-btn {
    display: none;
  }

  .section {
    padding: 70px 6%;
  }
}


/* Detalii tipografice mai elegante, vizibile și fără fonturi externe */
.hero-content h1::first-letter,
.story h2::first-letter,
.offer h2::first-letter,
.promise h2::first-letter,
.contact h2::first-letter {
  color: #e7c777;
}

.card::first-letter,
.offer-card p::first-letter,
.promise li::first-letter {
  color: #e7c777;
  font-family: 'Cormorant Garamond', 'Palatino Linotype', Georgia, serif;
  font-size: 1.28em;
}

.card, .offer-card, .contact-box {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 22px 55px rgba(0,0,0,0.18);
}
