@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --clr-bg: #FCFAF8;
  --clr-surface: #F5EFEB;
  --clr-text: #3A322C;
  --clr-text-light: #70655D;
  --clr-primary: #C38D64;
  --clr-primary-hover: #A8764F;
  --clr-border: #E8DFD8;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --spacing-section: 6rem;
  --spacing-section-mobile: 4rem;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
  color: var(--clr-text);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(252, 250, 248, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--clr-border);
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--clr-primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  background-color: var(--clr-primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover {
  background-color: var(--clr-primary-hover);
  color: #fff;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--clr-border);
  color: var(--clr-text);
}

.btn-outline:hover {
  border-color: var(--clr-primary);
  background-color: var(--clr-surface);
  color: var(--clr-primary);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--clr-text);
  position: absolute;
  left: 0;
  transition: var(--transition);
}

.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 9px; }
.mobile-menu-btn span:nth-child(3) { top: 18px; }

.mobile-menu-btn.active span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(252, 250, 248, 0.95) 0%, rgba(252, 250, 248, 0.7) 50%, rgba(252, 250, 248, 0.3) 100%);
  z-index: -1;
}

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--clr-text);
}

.hero p {
  font-size: 1.2rem;
  color: var(--clr-text-light);
  margin-bottom: 2.5rem;
}

section {
  padding: var(--spacing-section) 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--clr-text-light);
  max-width: 600px;
  margin: 0 auto 4rem;
  font-size: 1.1rem;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-section.reverse .split-content {
  order: -1;
}

.split-image img {
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.split-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.split-content p {
  font-size: 1.1rem;
  color: var(--clr-text-light);
  margin-bottom: 1.5rem;
}

.feature-list {
  margin-top: 2rem;
}

.feature-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--clr-primary);
}

.format-section {
  background-color: var(--clr-surface);
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.format-card {
  background: var(--clr-bg);
  padding: 3rem 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.format-card-icon {
  font-size: 2.5rem;
  color: var(--clr-primary);
  margin-bottom: 1.5rem;
}

.format-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.format-card p {
  color: var(--clr-text-light);
}

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

.gallery-image {
  border-radius: 8px;
  overflow: hidden;
}

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

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

.lead-section {
  background-color: var(--clr-surface);
  text-align: center;
}

.lead-form-wrapper {
  max-width: 500px;
  margin: 0 auto;
  background: var(--clr-bg);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.lead-form-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.lead-form-wrapper p {
  color: var(--clr-text-light);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-input {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--clr-border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--clr-bg);
}

.form-input:focus {
  outline: none;
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(195, 141, 100, 0.1);
}

.form-submit {
  width: 100%;
  margin-top: 1rem;
}

.form-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--clr-text-light);
  line-height: 1.4;
}

.form-disclaimer a {
  text-decoration: underline;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--clr-text);
  cursor: pointer;
  text-align: left;
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background-color: var(--clr-primary);
  transition: transform 0.3s ease;
}

.faq-icon::before {
  top: 11px;
  left: 4px;
  width: 16px;
  height: 2px;
}

.faq-icon::after {
  top: 4px;
  left: 11px;
  width: 2px;
  height: 16px;
}

.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding-bottom: 1.5rem;
  color: var(--clr-text-light);
}

.footer {
  background-color: #2D2723;
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1rem;
  display: block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #2D2723;
  color: #fff;
  padding: 1rem 0;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-buttons .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.cookie-buttons .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.legal-page {
  padding-top: 120px;
  padding-bottom: 5rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--clr-bg);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
}

.legal-content p, .legal-content ul {
  margin-bottom: 1.5rem;
  color: var(--clr-text-light);
}

.legal-content ul {
  padding-left: 1.5rem;
  list-style-type: disc;
}

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 2rem;
}

.success-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.success-content {
  background: rgba(252, 250, 248, 0.95);
  backdrop-filter: blur(10px);
  padding: 4rem 3rem;
  border-radius: 8px;
  max-width: 600px;
}

.success-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.success-content p {
  color: var(--clr-text-light);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

@media (max-width: 1200px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: var(--spacing-section-mobile) 0;
  }

  .nav-links, .header .btn {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--clr-bg);
    padding: 1.5rem;
    border-bottom: 1px solid var(--clr-border);
    gap: 1rem;
  }

  .mobile-menu-btn {
    display: block;
  }

  .split-section, .split-section.reverse .split-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .split-content {
    order: 0 !important;
  }

  .format-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero-overlay {
    background: linear-gradient(to bottom, rgba(252, 250, 248, 0.8) 0%, rgba(252, 250, 248, 0.95) 100%);
  }

  .hero-content {
    text-align: center;
    padding-top: 4rem;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .legal-content {
    padding: 2rem 1.5rem;
  }
}
