/* Conacul Mogoșoaia - Landing Page V1 */

:root {
  --bg: #f6f1ea;
  --bg-alt: #efe7dd;
  --surface: #ffffff;
  --text: #1c1a18;
  --muted: #6b6258;
  --line: rgba(28, 26, 24, 0.12);
  --primary: #8b2d24;
  --primary-dark: #6e221b;
  --secondary: rgba(255, 255, 255, 0.12);
  --secondary-border: rgba(255, 255, 255, 0.32);
  --shadow: 0 20px 50px rgba(26, 19, 15, 0.10);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1200px;
  --container-narrow: 860px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(100%, var(--container-narrow));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(246, 241, 234, 0.88);
  border-bottom: 1px solid rgba(28, 26, 24, 0.08);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(139, 45, 36, 0.10);
  color: var(--primary);
  font-size: 1rem;
}

.header-actions,
.hero-actions,
.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
}

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

.btn:focus-visible {
  outline: 3px solid rgba(139, 45, 36, 0.24);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px rgba(139, 45, 36, 0.24);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: transparent;
  color: inherit;
  border-color: rgba(28, 26, 24, 0.20);
}

.hero .btn-secondary,
.section-final-cta .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--secondary-border);
  color: #fff;
}

.btn-large {
  min-height: 56px;
  padding: 0 28px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: clip;
  background: #000;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(17, 15, 13, 0.24) 0%, rgba(17, 15, 13, 0.34) 38%, rgba(17, 15, 13, 0.76) 100%),
    linear-gradient(90deg, rgba(17, 15, 13, 0.60) 0%, rgba(17, 15, 13, 0.12) 55%, rgba(17, 15, 13, 0.10) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 160px;
  padding-bottom: 84px;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: #d6c3b1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
}

.hero h1,
.section h2,
.section-final-cta h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  max-width: 12ch;
}

.hero-lead,
.section-intro {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.90);
}

.hero-lead {
  max-width: 58ch;
  margin: 22px 0 0;
}

.hero-points {
  margin: 28px 0 36px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 500;
}

.hero-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d6c3b1;
  flex: 0 0 auto;
}

.section {
  padding: 92px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section h2,
.section-final-cta h2 {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  margin-bottom: 16px;
}

.section-intro {
  color: var(--muted);
  margin: 0 0 34px;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.8fr);
  gap: 42px;
  align-items: start;
}

.feature-grid,
.facts-grid,
.contact-grid {
  display: grid;
  gap: 22px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.feature-card,
.fact-card,
.contact-card,
.final-cta-box,
.video-wrapper,
.gallery-item,
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-card,
.fact-card,
.contact-card {
  padding: 28px;
}

.feature-card h3,
.contact-card h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.05;
}

.feature-card p,
.contact-card p,
.fact-card strong,
.faq-list p,
.bullet-list li,
.site-footer p {
  color: var(--muted);
}

.bullet-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.bullet-list li {
  position: relative;
  padding-left: 20px;
  font-weight: 500;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
}

.video-wrapper {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-top: 28px;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.section-gallery .container > h2,
.section-gallery .container > .section-kicker {
  text-align: left;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.gallery-item {
  overflow: hidden;
  min-height: 260px;
}

.gallery-item-large {
  grid-row: span 2;
  min-height: 540px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.facts-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.fact-label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.fact-card strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text);
}

.fact-price {
  background: linear-gradient(180deg, rgba(139, 45, 36, 0.04), rgba(139, 45, 36, 0.08));
  border-color: rgba(139, 45, 36, 0.16);
}

.bullet-list-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 34px;
}

.section-contact {
  background: linear-gradient(180deg, rgba(139, 45, 36, 0.03), rgba(139, 45, 36, 0.06));
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-data {
  margin: 0;
  font-weight: 700;
  color: var(--text) !important;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.faq-list details {
  padding: 0;
  overflow: clip;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 700;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin: 0;
  padding: 0 24px 22px;
}

.section-final-cta {
  background:
    linear-gradient(180deg, rgba(17, 15, 13, 0.84), rgba(17, 15, 13, 0.92)),
    radial-gradient(circle at top, rgba(139, 45, 36, 0.40), transparent 55%);
  color: #fff;
}

.final-cta-box {
  padding: 40px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.final-cta-box h2 {
  margin-bottom: 28px;
}

.site-footer {
  background: #1c1a18;
  color: #fff;
  padding: 36px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

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

.footer-contact a {
  color: #fff;
  font-weight: 600;
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.70);
}

@media (max-width: 1100px) {
  .feature-grid,
  .facts-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item-large {
    grid-row: span 1;
    min-height: 360px;
    grid-column: 1 / -1;
  }

  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand {
    font-size: 1.5rem;
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-content {
    padding-top: 130px;
    padding-bottom: 54px;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .hero-actions,
  .section-cta,
  .footer-inner,
  .footer-contact {
    flex-direction: column;
    align-items: stretch;
  }

  .feature-grid,
  .facts-grid,
  .contact-grid,
  .gallery-grid,
  .bullet-list-columns {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item-large {
    min-height: 240px;
  }

  .section {
    padding: 72px 0;
  }

  .feature-card,
  .fact-card,
  .contact-card,
  .final-cta-box {
    padding: 22px;
  }

  .faq-list summary {
    padding: 18px 20px;
  }

  .faq-list summary::after {
    right: 20px;
  }

  .faq-list details p {
    padding: 0 20px 18px;
  }
}