@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&family=Inter:wght@400;500&display=swap');

:root {
  --color-amber: #C8832A;
  --color-amber-dark: #b37322;
  --color-garnet: #8B2635;
  --color-cream: #FAF7F0;
  --color-cream-warm: #F4EFEB;
  --color-charcoal: #2C2419;
  --color-gold: #D4A853;
  --color-teal: #1A5C5C;
  --color-purple: #4A2C6E;

  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-cream);
  color: var(--color-charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-amber);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-amber-dark);
}

p {
  margin-bottom: 1rem;
}

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

header {
  padding: 1.5rem 0;
  background-color: var(--color-cream);
  border-bottom: 1px solid rgba(44, 36, 25, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-charcoal);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.header-nav {
  display: none;
}
@media (min-width: 768px) {
  .header-nav {
    display: flex;
    gap: 2rem;
  }
  .header-nav a {
    color: var(--color-charcoal);
    font-size: 0.95rem;
    font-weight: 500;
  }
  .header-nav a:hover {
    color: var(--color-amber);
  }
}

.btn {
  display: inline-block;
  background-color: var(--color-amber);
  color: var(--color-cream);
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background-color: var(--color-amber-dark);
  color: var(--color-cream);
  transform: translateY(-2px);
}

.btn-large {
  font-size: 1.125rem;
  padding: 1.25rem 2.5rem;
}

section {
  padding: 5rem 0;
}

.section-warm {
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-cream-warm) 100%);
}

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

.section-dark h2, .section-dark h3 {
  color: var(--color-gold);
}

.section-dark a {
  color: var(--color-gold);
}
.section-dark a:hover {
  color: var(--color-cream);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero {
  padding: 4rem 0 6rem;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: rgba(44, 36, 25, 0.8);
}

.hero-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(44, 36, 25, 0.15);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.split-section .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .split-section .container {
    grid-template-columns: 1fr 1fr;
  }
  .split-section.reverse .container .split-text {
    order: -1;
  }
}

.split-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(44, 36, 25, 0.1);
  display: block;
}

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

.split-text h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
  color: var(--color-amber);
}
.split-text p {
  font-size: 1.125rem;
  color: rgba(44, 36, 25, 0.8);
}
.split-text ul {
  list-style-type: none;
  margin-bottom: 1.5rem;
}
.split-text li {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}
.split-text li::before {
  content: '✦';
  color: var(--color-amber);
  position: absolute;
  left: 0;
  top: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.step-card {
  background-color: white;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(44, 36, 25, 0.05);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.step-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: rgba(200, 131, 42, 0.1);
  position: absolute;
  top: -10px;
  right: 10px;
  font-weight: 600;
}
.step-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.step-card p {
  color: rgba(44, 36, 25, 0.7);
  position: relative;
  z-index: 1;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(44, 36, 25, 0.1);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.5rem 0;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--color-amber);
  transition: transform 0.3s ease;
}
.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}
.faq-answer p {
  color: rgba(44, 36, 25, 0.8);
  margin-bottom: 0;
}

.lead-form-section {
  background-color: var(--color-charcoal);
  color: var(--color-cream);
  padding: 6rem 0;
  text-align: center;
}
.lead-form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: rgba(250, 247, 240, 0.05);
  padding: 3rem;
  border-radius: 8px;
  border: 1px solid rgba(212, 168, 83, 0.2);
}
.lead-form-container h2 {
  color: var(--color-gold);
  margin-bottom: 1rem;
}
.lead-form-container p {
  margin-bottom: 2rem;
  color: rgba(250, 247, 240, 0.8);
}
.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-cream);
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  width: 100%;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(212, 168, 83, 0.3);
  border-radius: 4px;
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.form-group input:focus {
  outline: none;
  border-color: var(--color-gold);
  background-color: rgba(255, 255, 255, 0.15);
}
.form-group input::placeholder {
  color: rgba(250, 247, 240, 0.4);
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 2rem;
  text-align: left;
}
.form-checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
  accent-color: var(--color-amber);
}
.form-checkbox label {
  font-size: 0.875rem;
  color: rgba(250, 247, 240, 0.7);
  line-height: 1.4;
}
.form-checkbox a {
  color: var(--color-gold);
  text-decoration: underline;
}
.submit-btn {
  width: 100%;
  font-size: 1.125rem;
  padding: 1.25rem;
}

footer {
  background-color: var(--color-charcoal);
  color: rgba(250, 247, 240, 0.6);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(250, 247, 240, 0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.footer-col h4 {
  color: var(--color-gold);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}
.footer-col p {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-links a {
  color: rgba(250, 247, 240, 0.6);
  font-size: 0.875rem;
}
.footer-links a:hover {
  color: var(--color-gold);
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 247, 240, 0.1);
  font-size: 0.875rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-charcoal);
  color: var(--color-cream);
  padding: 1.5rem;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.2);
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .cookie-banner .container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.cookie-banner p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(250, 247, 240, 0.8);
}
.cookie-banner a {
  color: var(--color-gold);
  text-decoration: underline;
}
.cookie-banner button {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  white-space: nowrap;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.legal-page {
  padding: 4rem 0 6rem;
}
.legal-page h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  text-align: center;
}
.legal-page h2 {
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.legal-page h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(44, 36, 25, 0.05);
}
.legal-content p, .legal-content li {
  color: rgba(44, 36, 25, 0.8);
  margin-bottom: 1rem;
}
.legal-content ul, .legal-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.success-content {
  max-width: 600px;
  padding: 3rem;
  margin: 0 auto;
  text-align: center;
}
.success-content h1 {
  font-size: 4rem;
  color: var(--color-amber);
  margin-bottom: 1.5rem;
}
.success-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: rgba(44, 36, 25, 0.8);
}
