@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --bg-color: #f9f6f0;
  --bg-alt: #f0ebe1;
  --text-color: #2c3e38;
  --text-light: #52665f;
  --primary: #2d6e6e;
  --primary-hover: #1f5050;
  --accent: #c4714a;
  --accent-hover: #a85f3d;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Lato', sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --radius: 4px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

p {
  margin-bottom: var(--space-sm);
}

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

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

header {
  padding: var(--space-sm) 0;
  background-color: rgba(249, 246, 240, 0.95);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(45, 110, 110, 0.1);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
}

.nav-menu {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
}

.btn:hover {
  background-color: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.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(249, 246, 240, 0.9) 0%, rgba(249, 246, 240, 0.4) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 600px;
  padding: var(--space-xl) 0;
}

.hero h1 {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-color);
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
  font-style: italic;
}

section {
  padding: var(--space-xl) 0;
}

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

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
}

.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.for-whom-card {
  background: #fff;
  padding: var(--space-md);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  border-top: 3px solid var(--accent);
}

.for-whom-card h3 {
  font-size: 1.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

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

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(45, 110, 110, 0.9));
  color: #fff;
  padding: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  min-width: 50px;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
}

.process-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.process-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.process-text h2 {
  font-size: 2.5rem;
}

.process-text p {
  font-size: 1.1rem;
  color: var(--text-light);
}

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

.faq-item {
  border-bottom: 1px solid rgba(45, 110, 110, 0.2);
  padding: var(--space-sm) 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-light);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: var(--space-sm);
}

.form-section {
  background-color: var(--primary);
  color: #fff;
  text-align: center;
  padding: var(--space-xl) 0;
}

.form-section .section-title {
  color: #fff;
}

.lead-form {
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  padding: var(--space-lg);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  text-align: left;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--text-color);
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.form-group input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(45, 110, 110, 0.2);
}

.lead-form .btn {
  width: 100%;
  font-size: 1.1rem;
  padding: 1rem;
}

.form-disclaimer {
  margin-top: var(--space-sm);
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
}

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

footer {
  background-color: var(--bg-alt);
  padding: var(--space-lg) 0 var(--space-md);
  margin-top: auto;
  border-top: 1px solid rgba(45, 110, 110, 0.1);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: var(--space-xs);
}

.footer-col ul li a {
  color: var(--text-light);
}

.footer-col p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(45, 110, 110, 0.1);
  color: var(--text-light);
  font-size: 0.9rem;
}

.legal-content {
  max-width: 800px;
  margin: var(--space-xl) auto;
  background: #fff;
  padding: var(--space-lg);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: var(--space-md);
}

.back-link {
  display: inline-block;
  margin-bottom: var(--space-md);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.success-section {
  padding: var(--space-xl) 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.success-card {
  background: #fff;
  border: 1px solid rgba(45, 110, 110, 0.15);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 32px rgba(45, 110, 110, 0.08);
}

.success-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.25rem;
  display: block;
}

.success-card h1 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.success-card p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary);
  color: #fff;
  padding: var(--space-sm) var(--space-md);
  display: none;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-banner .btn {
  padding: 0.5rem 1rem;
  background-color: #fff;
  color: var(--primary);
  font-size: 0.9rem;
}

.cookie-banner .btn:hover {
  background-color: var(--bg-alt);
}

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

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: var(--space-md);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }

  .nav-menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .process-section {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
}
