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

:root {
  --bg-cream: #F5F0E8;
  --bg-warm: #EDE6DA;
  --bg-dark: #1E1A17;
  --text-primary: #2A2420;
  --text-muted: #6B635C;
  --text-light: #F5F0E8;
  --accent-terra: #B86B4A;
  --accent-terra-dark: #9A5638;
  --accent-sage: #6B7F64;
  --accent-sage-light: #8FA388;
  --border-soft: rgba(42, 36, 32, 0.12);
  --shadow-editorial: 0 24px 64px rgba(30, 26, 23, 0.12);
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --max-width: 1280px;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-cream);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent-terra);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

.container {
  width: min(100% - 2.5rem, var(--max-width));
  margin-inline: auto;
}

.container-narrow {
  width: min(100% - 2.5rem, 780px);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(245, 240, 232, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}

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

.brand-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

.brand-logo span {
  color: var(--accent-terra);
  font-style: italic;
}

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

.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
  padding: 0.25rem 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-terra);
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a:hover {
  color: var(--accent-terra);
}

.nav-cta {
  background: var(--text-primary);
  color: var(--text-light) !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: var(--radius-sm);
  font-size: 0.85rem !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--accent-terra);
  color: var(--text-light) !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  margin: 6px 0;
  transition: 0.3s;
}

/* Hero - Asymmetrical Editorial */
.hero-editorial {
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: var(--space-2xl);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-lg);
  align-items: end;
}

.hero-content {
  padding-bottom: var(--space-lg);
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-sage);
  margin-bottom: var(--space-md);
}

.hero-title {
  margin-bottom: var(--space-md);
}

.hero-title em {
  font-style: italic;
  color: var(--accent-terra);
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: var(--space-lg);
}

.hero-visual {
  position: relative;
}

.hero-image-main {
  border-radius: var(--radius-lg) 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-editorial);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

.hero-image-accent {
  position: absolute;
  bottom: -2rem;
  left: -3rem;
  width: 45%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-editorial);
  border: 4px solid var(--bg-cream);
}

.hero-stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-soft);
}

.hero-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--accent-terra);
}

.hero-stat span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--accent-terra);
  color: var(--text-light);
}

.btn-primary:hover {
  background: var(--accent-terra-dark);
  color: var(--text-light);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: var(--text-primary);
  color: var(--text-light);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* Section styles */
.section {
  padding: var(--space-2xl) 0;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

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

.section-header {
  margin-bottom: var(--space-xl);
}

.section-header.centered {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-sage);
  margin-bottom: var(--space-sm);
}

.section-dark .section-eyebrow {
  color: var(--accent-sage-light);
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
}

.section-dark .section-intro {
  color: rgba(245, 240, 232, 0.7);
}

/* Editorial split */
.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.editorial-split.reverse {
  direction: rtl;
}

.editorial-split.reverse > * {
  direction: ltr;
}

.editorial-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.editorial-image img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
}

.editorial-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  transform: translate(12px, 12px);
  z-index: -1;
}

/* Card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.card {
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--border-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-editorial);
}

.section-dark .card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.card-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--accent-terra);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.card h3 {
  margin-bottom: var(--space-sm);
}

.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.section-dark .card p {
  color: rgba(245, 240, 232, 0.65);
}

/* Feature list */
.feature-list {
  list-style: none;
  margin: var(--space-md) 0;
}

.feature-list li {
  padding: var(--space-sm) 0;
  padding-left: 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--border-soft);
}

.feature-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent-terra);
  font-weight: 700;
}

/* Testimonial */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.testimonial-card {
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.team-member h3 {
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.85rem;
  color: var(--accent-terra);
  font-weight: 500;
  margin-bottom: var(--space-sm);
}

.team-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: start;
}

.pricing-card {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent-terra);
  box-shadow: var(--shadow-editorial);
  transform: scale(1.03);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-terra);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
}

.pricing-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
}

.pricing-price {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--accent-terra);
  margin-bottom: var(--space-md);
}

.pricing-price small {
  font-size: 1rem;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-soft);
}

/* CTA band */
.cta-band {
  background: var(--accent-terra);
  color: white;
  padding: var(--space-xl) 0;
  text-align: center;
}

.cta-band h2 {
  color: white;
  margin-bottom: var(--space-sm);
}

.cta-band p {
  opacity: 0.9;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: var(--space-md);
}

.cta-band .btn {
  background: white;
  color: var(--accent-terra);
}

.cta-band .btn:hover {
  background: var(--bg-cream);
}

/* Trust section */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
}

.trust-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--accent-terra);
  margin-bottom: 0.25rem;
}

.trust-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
}

.contact-info-block {
  padding: var(--space-lg);
  background: var(--bg-warm);
  border-radius: var(--radius-md);
}

.contact-info-block h3 {
  margin-bottom: var(--space-md);
}

.contact-detail {
  margin-bottom: var(--space-md);
}

.contact-detail strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 1rem;
  background: white;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-terra);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.form-checkbox input {
  margin-top: 0.25rem;
}

.map-container {
  margin-top: var(--space-xl);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-soft);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* Page hero */
.page-hero {
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: var(--space-xl);
  background: var(--bg-warm);
}

.page-hero h1 {
  margin-bottom: var(--space-sm);
}

.page-hero .breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.page-hero .breadcrumb a {
  color: var(--text-muted);
}

/* Legal content */
.legal-content {
  padding: var(--space-xl) 0 var(--space-2xl);
}

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

.legal-content h3 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
  font-size: 1.2rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal-content ul,
.legal-content ol {
  margin: var(--space-sm) 0 var(--space-md) 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

/* Thank you */
.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl) 0;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-sage);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto var(--space-md);
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand .brand-logo {
  color: var(--text-light);
  margin-bottom: var(--space-md);
  display: inline-block;
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-sage-light);
  margin-bottom: var(--space-md);
}

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

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: rgba(245, 240, 232, 0.75);
  font-size: 0.9rem;
}

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

.footer-bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.5);
}

.footer-legal {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(245, 240, 232, 0.5);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  color: var(--text-light);
  padding: var(--space-md);
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.2);
}

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

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cookie-inner p {
  margin: 0;
  font-size: 0.9rem;
  flex: 1;
  min-width: 280px;
}

.cookie-actions {
  display: flex;
  gap: var(--space-sm);
}

.cookie-actions .btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

/* Services list */
.service-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  margin-bottom: var(--space-md);
  align-items: center;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid,
  .editorial-split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-accent {
    display: none;
  }

  .card-grid,
  .testimonial-grid,
  .team-grid,
  .pricing-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .service-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--bg-cream);
    flex-direction: column;
    padding: var(--space-lg);
    gap: var(--space-md);
    border-bottom: 1px solid var(--border-soft);
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.3s ease;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
  }

  .menu-toggle {
    display: block;
  }

  .card-grid,
  .testimonial-grid,
  .team-grid,
  .pricing-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

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

  .hero-stats {
    flex-direction: column;
    gap: var(--space-md);
  }
}
