:root {
  --bg: #faf8f5;
  --surface: #f0ebe3;
  --accent: #1b2838;
  --text: #1b2838;
  --muted: #5a6577;
  --border: #d4c9b8;
  --burgundy: #8b0000;
  --gold: #d4af37;
  --radius: 6px;
  --shadow: 0 2px 16px rgba(27,40,56,0.07);
  --shadow-lg: 0 8px 40px rgba(27,40,56,0.12);
  --transition: 0.3s ease;
}

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

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

body {
  font-family: 'Crimson Text', Georgia, serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'EB Garamond', Georgia, serif;
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: block;
  font-family: 'EB Garamond', serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 8px;
}

.section-title {
  margin-bottom: 16px;
}

.section-desc {
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 48px;
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'EB Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  min-height: 48px;
}

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

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

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-secondary:hover {
  background: var(--accent);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--muted);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

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

.logo {
  display: flex;
  align-items: center;
  color: var(--accent);
  flex-shrink: 0;
}

.logo-svg {
  height: 36px;
  width: auto;
}

.header-contact-phone {
  display: none;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'EB Garamond', serif;
  font-size: 0.95rem;
  color: var(--accent);
  white-space: nowrap;
}

.phone-link:hover {
  color: var(--burgundy);
}

.main-nav {
  display: none;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 24px;
}

.nav-list a {
  font-family: 'EB Garamond', serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  padding: 4px 0;
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

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

.nav-list a.active {
  color: var(--burgundy);
}

.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  transition: all var(--transition);
  border-radius: 2px;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 768px) {
  .header-contact-phone {
    display: block;
  }
}

@media (min-width: 1024px) {
  .main-nav {
    display: block;
  }

  .burger {
    display: none;
  }

  .header-contact-phone {
    order: 3;
  }
}

@media (max-width: 1023px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg);
    border-left: 1px solid var(--border);
    padding: 80px 32px 32px;
    transition: right var(--transition);
    z-index: 999;
    overflow-y: auto;
  }

  .main-nav.open {
    display: block;
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 16px;
  }

  .nav-list a {
    font-size: 1.15rem;
    display: block;
    padding: 8px 0;
  }
}

.hero {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(212,175,55,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139,0,0,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.hero-title {
  margin-bottom: 20px;
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .hero {
    padding: 100px 0;
  }

  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.trust-row {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-label {
  text-align: center;
  font-family: 'EB Garamond', serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 24px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.partner-logo {
  width: 110px;
  height: auto;
  color: var(--accent);
  opacity: 0.5;
  transition: opacity var(--transition);
}

.partner-logo:hover {
  opacity: 1;
}

.projection-grid {
  padding: 80px 0;
}

.projection-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.projection-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: all var(--transition);
  position: relative;
}

.projection-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.projection-card-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.projection-card-icon svg {
  width: 100%;
  height: 100%;
}

.projection-card h3 {
  margin-bottom: 16px;
  color: var(--accent);
}

.projection-card p {
  color: var(--muted);
  margin-bottom: 12px;
  font-size: 1rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'EB Garamond', serif;
  font-weight: 600;
  color: var(--burgundy);
  margin-top: 12px;
  transition: gap var(--transition);
}

.card-link:hover {
  gap: 12px;
  color: var(--gold);
}

@media (min-width: 768px) {
  .projection-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .projection-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.geometric-divider {
  padding: 0;
  line-height: 0;
}

.geometric-divider svg {
  width: 100%;
  height: 60px;
}

.benefits-section {
  padding: 80px 0;
  background: var(--surface);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px;
}

.benefit-card {
  text-align: center;
  padding: 32px 24px;
}

.benefit-icon {
  margin-bottom: 16px;
}

.benefit-card h3 {
  margin-bottom: 12px;
}

.benefit-card p {
  color: var(--muted);
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.cta-banner {
  padding: 80px 0;
}

.cta-banner-inner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 64px 48px;
  background: var(--accent);
  color: #fff;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  border-radius: 0;
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.cta-banner-content h2 {
  color: #fff;
  margin-bottom: 16px;
}

.cta-banner-content p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.cta-banner-content .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--accent);
}

.cta-banner-content .btn-primary:hover {
  background: #e6c547;
  border-color: #e6c547;
}

.services-preview {
  padding: 80px 0;
  background: var(--surface);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}

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

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
}

.service-card-body {
  padding: 24px;
}

.service-card-body h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.service-card-body p {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.reviews-preview {
  padding: 80px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.review-text {
  font-style: italic;
  color: var(--text);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.review-author strong {
  display: block;
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
}

.review-author span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.faq-preview {
  padding: 80px 0;
  background: var(--surface);
}

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

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

.faq-item summary {
  font-family: 'EB Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--accent);
  transition: color var(--transition);
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

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

.faq-answer {
  padding: 0 0 20px;
}

.faq-answer p {
  color: var(--muted);
  line-height: 1.7;
}

.final-cta {
  padding: 80px 0;
}

.final-cta-inner {
  text-align: center;
  padding: 64px 32px;
  background: var(--accent);
  border-radius: var(--radius);
  color: #fff;
}

.final-cta-inner h2 {
  color: #fff;
  margin-bottom: 16px;
}

.final-cta-inner p {
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1.1rem;
}

.final-cta-inner .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--accent);
}

.final-cta-inner .btn-primary:hover {
  background: #e6c547;
  border-color: #e6c547;
}

.site-footer {
  background: var(--accent);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  color: #fff;
  height: 32px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}

.site-footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 600;
}

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

.site-footer ul li {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.site-footer ul li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
}

.site-footer a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: color var(--transition);
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 900;
  box-shadow: var(--shadow);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--burgundy);
  transform: translateY(-2px);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: var(--accent);
  color: #fff;
  padding: 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.cookie-banner-inner p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  min-height: 44px;
  min-width: 100px;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 10px 20px;
}

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

.cookie-btn.btn-secondary {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

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

@media (min-width: 768px) {
  .cookie-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-banner-inner p {
    flex: 1;
  }
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 99999;
}

.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100000;
  background: var(--bg);
  border-radius: 12px;
  padding: 32px;
  max-width: 500px;
  width: calc(100% - 48px);
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.cookie-modal h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  padding-right: 40px;
}

.cookie-modal > p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 24px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text);
  transition: all var(--transition);
}

.cookie-modal-close:hover {
  background: var(--surface);
  border-color: var(--accent);
}

.cookie-option {
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.cookie-option label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.cookie-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.cookie-option strong {
  font-family: 'EB Garamond', serif;
  font-size: 1.05rem;
}

.cookie-option span {
  display: block;
  width: 100%;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 4px;
  padding-left: 26px;
}

.cookie-modal .btn-primary {
  width: 100%;
  margin-top: 8px;
}

.page-hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}

.page-hero-title {
  margin-bottom: 16px;
}

.page-hero-desc {
  max-width: 700px;
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.8;
}

.content-section {
  padding: 80px 0;
}

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

.content-with-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.content-with-image.reverse .content-image {
  order: -1;
}

.content-text h2 {
  margin-bottom: 20px;
}

.content-text p {
  margin-bottom: 16px;
  color: var(--muted);
  line-height: 1.8;
}

.content-image img {
  box-shadow: var(--shadow);
}

.content-full-image {
  width: 100%;
  margin-top: 32px;
  box-shadow: var(--shadow);
}

@media (min-width: 768px) {
  .content-with-image {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .content-with-image.reverse .content-image {
    order: 0;
  }

  .content-with-image.reverse {
    direction: rtl;
  }

  .content-with-image.reverse > * {
    direction: ltr;
  }
}

.subsection {
  max-width: 800px;
}

.subsection h2 {
  margin-bottom: 20px;
}

.subsection p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.data-viz-section {
  padding: 60px 0;
  background: var(--surface);
}

.data-viz-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.data-viz-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.data-viz-label {
  display: block;
  font-family: 'EB Garamond', serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 12px;
}

.data-viz-bar {
  width: 100%;
  height: 12px;
  background: var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 8px;
}

.data-viz-fill {
  width: var(--bar-width);
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--burgundy) 100%);
  border-radius: 6px;
  transition: width 1.2s ease;
}

.data-viz-value {
  font-family: 'EB Garamond', serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

@media (min-width: 768px) {
  .data-viz-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pullquote-section {
  padding: 60px 0;
}

.pullquote {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
  border-left: 4px solid var(--gold);
  border-right: 4px solid var(--gold);
}

.pullquote p {
  font-family: 'EB Garamond', serif;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--accent);
  margin-bottom: 16px;
}

.pullquote cite {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--muted);
}

.cross-links {
  padding: 80px 0;
  background: var(--surface);
}

.cross-links-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 32px;
}

.cross-link-card {
  display: block;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
  color: var(--text);
}

.cross-link-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  color: var(--text);
}

.cross-link-card h3 {
  margin-bottom: 8px;
  color: var(--accent);
}

.cross-link-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .cross-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-images {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-images img {
  box-shadow: var(--shadow);
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.about-story {
  padding: 80px 0;
}

.about-values {
  padding: 80px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px;
}

.value-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.value-card svg {
  margin-bottom: 16px;
}

.value-card h3 {
  margin-bottom: 12px;
}

.value-card p {
  color: var(--muted);
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-advantages {
  padding: 80px 0;
  background: var(--surface);
}

.advantages-grid {
  margin-top: 40px;
}

.advantage-item {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.advantage-number {
  font-family: 'EB Garamond', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
}

.advantage-content h3 {
  margin-bottom: 8px;
}

.advantage-content p {
  color: var(--muted);
}

.about-team-section {
  padding: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px;
}

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

.team-card img {
  width: 100%;
  max-width: 240px;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 0 auto 16px;
  box-shadow: var(--shadow);
}

.team-card h3 {
  margin-bottom: 4px;
  font-size: 1.15rem;
}

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

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-images-section {
  padding: 40px 0 80px;
}

.about-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.about-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

@media (min-width: 768px) {
  .about-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

.legal-page {
  padding: 80px 0;
}

.legal-page h1 {
  margin-bottom: 8px;
}

.legal-date {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 1.3rem;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--accent);
}

.legal-page p {
  margin-bottom: 16px;
  color: var(--muted);
  line-height: 1.8;
}

.legal-page a {
  color: var(--burgundy);
  text-decoration: underline;
}

.legal-page .btn {
  margin-top: 8px;
  margin-bottom: 16px;
}

.anim-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .anim-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
}