/* ===== CSS VARIABLES ===== */
:root {
  --primary-color: #B22B5B;
  --secondary-color: #F2D4C9;
  --accent-color: #9C1C66;
  --light-color: #fdf0ec;
  --dark-color: #1a0a10;
  --gradient-primary: linear-gradient(135deg, #9C1C66 0%, #B22B5B 100%);
  --hover-color: #7a1240;
  --background-color: #ffffff;
  --text-color: #2e1018;
  --border-color: rgba(178,43,91,0.22);
  --divider-color: rgba(178,43,91,0.12);
  --shadow-color: rgba(178,43,91,0.18);
  --highlight-color: #F0A55A;
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Inter', sans-serif;
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --radius-btn: 0px;
  --shadow-card: 0 20px 60px rgba(178,43,91,0.18);
  --shadow-hover: 0 32px 80px rgba(178,43,91,0.30);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--alt-font);
  background-color: var(--background-color);
  color: var(--text-color);
  font-size: clamp(14px, 4vw, 17px);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-color); text-decoration: none; }
a:hover { color: var(--hover-color); }
h1, h2, h3, h4 { font-family: var(--main-font); line-height: 1.15; }
h1 { font-size: clamp(36px, 7vw, 80px); }
h2 { font-size: clamp(26px, 5vw, 48px); margin-bottom: 16px; }
h3 { font-size: clamp(17px, 2.8vw, 22px); }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* ===== HEADER ===== */
header {
  background: var(--dark-color);
  border-bottom: 3px solid var(--primary-color);
  padding: 14px 16px;
  position: static;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo a { display: flex; align-items: center; }
.logo img { height: 40px; width: auto; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  justify-content: center;
  align-items: center;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; }

.navigation {
  display: none;
  position: absolute;
  top: 71px;
  left: 0;
  right: 0;
  background: var(--dark-color);
  border-top: 1px solid var(--primary-color);
  z-index: 100;
  padding: 16px;
}
.navigation.open { display: block; }
.navigation ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.navigation ul li a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  color: rgba(255,255,255,0.80);
  font-family: var(--alt-font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  min-height: 44px;
  transition: color 0.2s, background 0.2s;
}
.navigation ul li a:hover { color: #fff; background: rgba(178,43,91,0.25); }

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .navigation {
    display: block !important;
    position: static;
    background: none;
    border: none;
    padding: 0;
  }
  .navigation ul { flex-direction: row; gap: 0; }
  .navigation ul li a { padding: 8px 14px; }
}

/* ===== HERO — fullscreen-center ===== */
.hero {
  min-height: 85vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('./img/bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,10,16,0.82) 0%, rgba(156,28,102,0.70) 100%);
  z-index: 1;
}
/* editorial grid pattern */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 60px);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 48px 16px;
  max-width: 820px;
}
.hero-content h1 {
  color: #fff;
  margin-bottom: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 24px;
  font-family: var(--alt-font);
}
.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: clamp(15px, 2.8vw, 20px);
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: var(--primary-color);
  color: #fff;
  font-family: var(--alt-font);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: 44px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow-card);
}
.btn-primary:hover { background: var(--hover-color); color: #fff; box-shadow: var(--shadow-hover); }

/* ===== INTRO ===== */
.intro {
  padding: 48px 16px;
  background: var(--dark-color);
  border-bottom: 3px solid var(--primary-color);
}
.intro-inner {
  max-width: 860px;
  margin: 0 auto;
}
.intro-inner h2 { color: #fff; margin-bottom: 16px; }
.intro-inner p { color: rgba(255,255,255,0.75); font-size: clamp(15px, 2.5vw, 17px); }
@media (min-width: 768px) { .intro { padding: 80px 24px; } }

/* ===== RANDOM BLOCK — editorial stat strip ===== */
.editorial-strip {
  background: var(--primary-color);
  padding: 0;
  overflow: hidden;
}
.editorial-strip-inner {
  display: flex;
  flex-direction: column;
}
.strip-item {
  padding: 36px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.strip-item:last-child { border-bottom: none; }
.strip-num {
  font-family: var(--main-font);
  font-size: clamp(48px, 10vw, 96px);
  font-weight: 700;
  color: rgba(255,255,255,0.20);
  line-height: 1;
}
.strip-label {
  font-family: var(--alt-font);
  font-size: clamp(14px, 2vw, 16px);
  color: rgba(255,255,255,0.90);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.strip-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.70);
  max-width: 320px;
}
@media (min-width: 768px) {
  .editorial-strip-inner { flex-direction: row; }
  .strip-item { flex: 1; border-bottom: none; border-right: 1px solid rgba(255,255,255,0.15); padding: 48px 36px; }
  .strip-item:last-child { border-right: none; }
}

/* ===== FEATURES — 3col ===== */
.features {
  padding: 48px 16px;
  background: #fff;
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--border-color);
}
.feature-card {
  padding: 32px 28px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  transition: background 0.2s;
}
.feature-card:hover { background: var(--light-color); }
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--primary-color);
  opacity: 0;
  transition: opacity 0.2s;
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  font-size: 40px;
  display: block;
  text-align: center;
  width: 100%;
  margin-bottom: 16px;
}
.feature-card h3 { margin-bottom: 10px; color: var(--dark-color); }
.feature-card p { font-size: 15px; color: #5a3040; }

@media (min-width: 768px) {
  .features { padding: 80px 24px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card { border-right: 1px solid var(--border-color); }
  .feature-card:nth-child(2n) { border-right: none; }
}
@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-card:nth-child(2n) { border-right: 1px solid var(--border-color); }
  .feature-card:nth-child(3n) { border-right: none; }
}
.section-title { text-align: center; color: var(--dark-color); }
.section-line {
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary-color);
  margin: 12px auto 0;
}
.section-sub { text-align: center; color: #7a4050; font-size: 16px; margin-top: 12px; }

/* ===== IMG FULLWIDTH ===== */
.img-fullwidth-section {
  padding: 48px 0 0;
  background: var(--dark-color);
}
.img-fullwidth-section img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.img-fullwidth-text {
  padding: 40px 16px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.img-fullwidth-text h2 { color: #fff; margin-bottom: 20px; }
.img-fullwidth-text p { color: rgba(255,255,255,0.75); margin-bottom: 14px; font-size: 16px; }
@media (min-width: 768px) {
  .img-fullwidth-section { padding-top: 80px; }
  .img-fullwidth-section img { height: 420px; }
  .img-fullwidth-text { padding: 48px 24px 80px; }
}

/* ===== EXPERT QUOTE ===== */
.expert-quote {
  padding: 48px 16px;
  background: var(--light-color);
}
.quote-wrap {
  max-width: 860px;
  margin: 0 auto;
  background: var(--dark-color);
  padding: 40px 32px;
  position: relative;
  box-shadow: var(--shadow-card);
}
.quote-mark {
  font-family: var(--main-font);
  font-size: 120px;
  color: var(--primary-color);
  line-height: 0.6;
  display: block;
  margin-bottom: 24px;
  opacity: 0.6;
}
.quote-text {
  font-family: var(--main-font);
  font-size: clamp(18px, 3vw, 26px);
  color: #fff;
  line-height: 1.5;
  margin-bottom: 24px;
  font-style: italic;
}
.quote-author {
  font-family: var(--alt-font);
  font-size: 14px;
  color: var(--secondary-color);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.quote-accent {
  position: absolute;
  top: 0; right: 0;
  width: 6px;
  height: 100%;
  background: var(--primary-color);
}
@media (min-width: 768px) { .expert-quote { padding: 80px 24px; } .quote-wrap { padding: 56px 56px; } }

/* ===== TESTIMONIALS — quotes ===== */
.testimonials {
  padding: 48px 16px;
  background: #fff;
}
.testimonials-list { margin-top: 48px; display: flex; flex-direction: column; gap: 0; }
.t-quote-item {
  padding: 32px 24px 32px 36px;
  border-left: 5px solid var(--primary-color);
  border-bottom: 1px solid var(--divider-color);
  position: relative;
}
.t-quote-item:last-child { border-bottom: none; }
.t-big-quote {
  font-size: 72px;
  line-height: 0.8;
  color: var(--primary-color);
  font-family: var(--main-font);
  display: block;
  margin-bottom: 8px;
  opacity: 0.5;
}
.t-text { font-size: 16px; color: var(--text-color); font-style: italic; margin-bottom: 16px; line-height: 1.7; }
.t-stars { color: #c8922a; font-size: 16px; margin-bottom: 8px; }
.t-name { font-weight: 700; font-size: 14px; color: var(--primary-color); text-transform: uppercase; letter-spacing: 0.08em; }

@media (min-width: 768px) {
  .testimonials { padding: 80px 24px; }
}

/* ===== CONTACT ===== */
.contact {
  padding: 48px 16px;
  background: var(--dark-color);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .contact-inner { grid-template-columns: 1fr 1fr; max-width: 80%; margin: 0 auto; }
}
.contact-info h2 { color: #fff; margin-bottom: 20px; }
.contact-info p { color: rgba(255,255,255,0.75); margin-bottom: 12px; font-size: 15px; }
.contact-info a { color: var(--secondary-color); }
.contact-form-wrap h3 { color: #fff; margin-bottom: 20px; font-size: clamp(16px, 2.5vw, 22px); }
.form-field {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.20);
  background: rgba(255,255,255,0.07);
  color: #fff;
  font-family: var(--alt-font);
  font-size: 15px;
  margin-bottom: 14px;
  min-height: 44px;
  transition: border-color 0.2s;
}
.form-field::placeholder { color: rgba(255,255,255,0.45); }
.form-field:focus { outline: none; border-color: var(--primary-color); }
textarea.form-field { min-height: 100px; resize: vertical; }
.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  font-family: var(--alt-font);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: 44px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn-submit:hover { background: var(--hover-color); box-shadow: var(--shadow-hover); }
@media (min-width: 768px) { .contact { padding: 80px 24px; } }

/* ===== FAQ ===== */
.faq { padding: 48px 16px; background: var(--light-color); }
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  padding: 28px 24px;
  border-bottom: 1px solid var(--divider-color);
}
.faq-item:last-child { border-bottom: none; }
.faq-item h3 { color: var(--primary-color); margin-bottom: 10px; font-size: clamp(15px, 2.5vw, 18px); }
.faq-item p { font-size: 15px; color: var(--text-color); }
@media (min-width: 768px) { .faq { padding: 80px 24px; } }

/* ===== FOOTER ===== */
footer {
  background: var(--dark-color);
  border-top: 3px solid var(--primary-color);
  color: rgba(255,255,255,0.80);
  padding: 40px 16px 24px;
  position: static;
}
footer img[alt="logo"] { filter: brightness(0) invert(1); }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-logo .logo img { height: 36px; }
.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-nav ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s;
}
.footer-nav ul li a:hover { color: #fff; }
.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 24px;
  padding-top: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.40);
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; align-items: center; }
  .footer-nav ul { flex-direction: row; flex-wrap: wrap; gap: 4px 20px; justify-content: flex-end; }
}