/* =====================================================
   ORLENAVAR — Styles
   Palette: warm cream · terracotta · sage · dark brown
   ===================================================== */

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

:root {
  --cream:        #FAF8F5;
  --cream-alt:    #F2EDE5;
  --cream-border: #DDD5CA;
  --brown-dark:   #2C2118;
  --brown-text:   #3E2D20;
  --brown-mid:    #6B4F3A;
  --brown-light:  #9A7D68;
  --accent:       #B87055;
  --accent-hover: #A55E42;
  --accent-light: #EDD8CC;
  --sage:         #7A9E7A;
  --white:        #FFFFFF;
  --shadow-soft:  0 2px 16px rgba(44, 33, 24, 0.08);
  --shadow-card:  0 1px 6px rgba(44, 33, 24, 0.07);
  --font-serif:   Georgia, 'Times New Roman', serif;
  --font-sans:    'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width:    1120px;
  --radius:       8px;
  --radius-lg:    14px;
  --transition:   0.2s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--brown-text);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: background-color var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  line-height: 1.4;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background-color: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
}

.btn-outline {
  background-color: transparent;
  color: var(--brown-text);
  border-color: var(--cream-border);
}

.btn-outline:hover {
  background-color: var(--cream-alt);
  color: var(--brown-text);
}

.btn-lg {
  font-size: 1rem;
  padding: 0.9rem 2.25rem;
}

.btn-header {
  background-color: transparent;
  color: var(--accent);
  border-color: var(--accent);
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn-header:hover {
  background-color: var(--accent);
  color: var(--white);
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(250, 248, 245, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--cream-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: normal;
  color: var(--brown-dark);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.logo:hover {
  color: var(--accent);
  text-decoration: none;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-nav a {
  color: var(--brown-mid);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
}

.header-nav a:hover {
  color: var(--brown-dark);
  text-decoration: none;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--brown-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 0;
}

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

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  font-weight: normal;
  color: var(--brown-dark);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.0625rem;
  color: var(--brown-mid);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(44, 33, 24, 0.72) 0%,
    rgba(44, 33, 24, 0.38) 55%,
    rgba(44, 33, 24, 0.18) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 5rem;
  padding-bottom: 5rem;
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: normal;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.75vw, 1.1875rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--cream-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 0.875rem;
}

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: normal;
  color: var(--brown-dark);
  margin-bottom: 0.625rem;
  line-height: 1.35;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--brown-mid);
  line-height: 1.65;
}

/* ===== TWO COLUMN ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.two-col-text .section-title {
  margin-bottom: 1.5rem;
}

.two-col-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ===== CHECK LIST ===== */
.check-list {
  list-style: none;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.check-list li {
  display: flex;
  gap: 0.875rem;
  font-size: 0.9375rem;
  color: var(--brown-text);
  line-height: 1.6;
  align-items: flex-start;
}

.check-list li::before {
  content: '✦';
  color: var(--accent);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.3rem;
}

/* ===== STEPS ===== */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3rem;
  border-left: 2px solid var(--accent-light);
  padding-left: 0;
}

.step {
  display: flex;
  gap: 2rem;
  padding: 0 0 2.5rem 2.5rem;
  position: relative;
}

.step:last-child {
  padding-bottom: 0;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--accent);
  font-weight: normal;
  line-height: 1;
  flex-shrink: 0;
  position: absolute;
  left: -0.05rem;
  transform: translateX(-50%);
  background: var(--cream-alt);
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  font-family: var(--font-sans);
  letter-spacing: 0.04em;
  border: 2px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
}

.step-body {
  padding-left: 1.5rem;
}

.step-body h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: normal;
  color: var(--brown-dark);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.step-body p {
  font-size: 0.9375rem;
  color: var(--brown-mid);
  line-height: 1.65;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
  background: var(--white);
}

.gallery-item:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.gallery-item figcaption {
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  color: var(--brown-light);
  line-height: 1.5;
}

/* ===== FAQ ===== */
.faq-wrap {
  max-width: 760px;
}

.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--cream-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--cream-border);
}

.faq-item summary {
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
  transition: color var(--transition);
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.375rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  color: var(--accent);
}

.faq-answer {
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--brown-mid);
  line-height: 1.7;
}

/* ===== FORM SECTION ===== */
.section-form {
  background-color: var(--brown-dark);
  padding: 5rem 0;
}

.form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.form-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: normal;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.form-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

/* Form */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.01em;
}

.optional {
  font-weight: 400;
  opacity: 0.65;
}

.form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--brown-dark);
  background-color: var(--cream);
  border: 1.5px solid var(--cream-border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}

.form-group input::placeholder {
  color: var(--brown-light);
  opacity: 0.75;
}

.form-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 112, 85, 0.2);
}

.form-group input.input-error {
  border-color: #cc5555;
}

.field-error {
  font-size: 0.8125rem;
  color: #ff9999;
  min-height: 1.1em;
  display: block;
}

.form-consent {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.checkbox-label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
  accent-color: var(--accent);
  cursor: pointer;
}

.checkbox-label span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.checkbox-label span a {
  color: var(--accent-light);
}

.checkbox-label span a:hover {
  color: var(--white);
}

.btn-submit {
  width: 100%;
  padding: 0.9rem;
  font-size: 1rem;
  margin-top: 0.25rem;
  justify-content: center;
}

/* ===== SUCCESS PAGE ===== */
.success-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
}

.success-container {
  max-width: 580px;
  text-align: center;
}

.success-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.success-container h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: normal;
  color: var(--brown-dark);
  margin-bottom: 1.25rem;
}

.success-container p {
  font-size: 1.0625rem;
  color: var(--brown-mid);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.success-note {
  font-size: 0.9rem;
  color: var(--brown-light);
}

.success-container .btn {
  margin-top: 1.75rem;
}

/* ===== LEGAL PAGES ===== */
.legal-section {
  padding: 4rem 0 5rem;
}

.legal-container {
  max-width: 760px;
}

.legal-container h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: normal;
  color: var(--brown-dark);
  margin-bottom: 0.5rem;
}

.legal-date {
  font-size: 0.875rem;
  color: var(--brown-light);
  margin-bottom: 2.5rem;
}

.legal-container h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: normal;
  color: var(--brown-dark);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-container h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-container p {
  font-size: 0.9375rem;
  color: var(--brown-mid);
  line-height: 1.7;
  margin-bottom: 0.875rem;
}

.legal-container ul {
  list-style: none;
  margin-bottom: 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-container ul li {
  font-size: 0.9375rem;
  color: var(--brown-mid);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.65;
}

.legal-container ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--brown-light);
}

.legal-back {
  margin-top: 3rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: var(--brown-dark);
  color: rgba(255, 255, 255, 0.65);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 3rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .footer-logo {
  color: rgba(255, 255, 255, 0.9);
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.65;
}

.footer-links, .footer-company {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links h4, .footer-company h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.375rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.footer-company p {
  font-size: 0.875rem;
  line-height: 1.65;
}

.footer-bottom {
  padding: 1.25rem 0;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 640px;
  background: var(--brown-dark);
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(44, 33, 24, 0.35);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-text p {
  font-size: 0.875rem;
  line-height: 1.55;
}

.cookie-text a {
  color: var(--accent-light);
}

.cookie-actions {
  display: flex;
  gap: 0.625rem;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background-color: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition);
  font-family: var(--font-sans);
}

.btn-cookie-accept:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn-cookie-decline {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.55);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
  font-family: var(--font-sans);
}

.btn-cookie-decline:hover {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .two-col-image {
    order: -1;
  }

  .form-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 3.5rem 0;
  }

  .hero {
    min-height: 90vh;
  }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(44, 33, 24, 0.65) 0%,
      rgba(44, 33, 24, 0.58) 60%,
      rgba(44, 33, 24, 0.45) 100%
    );
  }

  .header-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--cream-border);
    box-shadow: 0 4px 12px rgba(44, 33, 24, 0.08);
    align-items: stretch;
  }

  .header-nav.open {
    display: flex;
  }

  .header-nav a {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--cream-border);
    color: var(--brown-dark);
  }

  .header-nav .btn-header {
    margin: 1rem 1.5rem;
    text-align: center;
    border-radius: var(--radius);
  }

  .burger {
    display: flex;
  }

  .site-header {
    position: relative;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .gallery-item img {
    aspect-ratio: 4 / 3;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
  }

  .cookie-actions {
    width: 100%;
  }

  .btn-cookie-accept,
  .btn-cookie-decline {
    flex: 1;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .step {
    padding-left: 2rem;
  }
}
