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

:root {
  --color-primary: #1a1815;
  --color-secondary: #f8f5f0;
  --color-accent: #7a8575;
  --color-text-hero: #1a1815;
  --color-text-body: #3d3935;
  --color-text-caption: #6b6560;
  --color-overlay-dark: rgba(26, 24, 21, 0.6);
  --color-overlay-light: rgba(248, 245, 240, 0.4);
  --shadow-soft: 0 4px 24px rgba(26, 24, 21, 0.08);
  --shadow-medium: 0 8px 32px rgba(26, 24, 21, 0.12);
  --shadow-strong: 0 16px 48px rgba(26, 24, 21, 0.16);
  --shadow-button: 0 4px 16px rgba(26, 24, 21, 0.12);
  --radius-sm: 2px;
  --radius-md: 12px;
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: var(--color-text-body);
  background-color: var(--color-secondary);
  overflow-x: hidden;
}

strong, b, p {
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--color-text-hero);
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s var(--transition-smooth);
}

.site-header {
  background-color: rgba(248, 245, 240, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
}

.brand-logotype {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  text-transform: uppercase;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-body);
  position: relative;
  padding: 8px 0;
  opacity: 0.7;
  transition: opacity 0.2s var(--transition-smooth), color 0.2s var(--transition-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-accent);
  transition: width 0.28s var(--transition-smooth);
}

.nav-link:hover {
  opacity: 1;
  color: var(--color-accent);
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  transition: transform 0.3s var(--transition-smooth), opacity 0.3s var(--transition-smooth);
}

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

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

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

@media (max-width: 1024px) {
  .site-header {
    padding: 20px 24px;
  }

  .main-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-secondary);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    box-shadow: var(--shadow-strong);
    transition: right 0.3s var(--transition-smooth);
  }

  .main-navigation.active {
    right: 0;
  }

  .nav-link {
    font-size: 18px;
  }

  .mobile-menu-toggle {
    display: flex;
    z-index: 1001;
  }
}

.hero-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: var(--color-secondary);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 64px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s var(--transition-smooth) forwards;
  opacity: 0;
  transform: translateY(24px);
}

.hero-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  color: var(--color-text-caption);
  margin-bottom: 48px;
  max-width: 480px;
  animation: fadeInUp 0.8s var(--transition-smooth) 0.2s forwards;
  opacity: 0;
  transform: translateY(24px);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: var(--color-accent);
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-button);
  transition: transform 0.18s var(--transition-smooth), box-shadow 0.18s var(--transition-smooth);
  animation: fadeInUp 0.8s var(--transition-smooth) 0.4s forwards;
  opacity: 0;
  transform: translateY(24px);
}

.hero-cta:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

.hero-image-wrapper {
  position: relative;
  overflow: hidden;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 24, 21, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 140px 24px 60px;
    order: 2;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-image-wrapper {
    height: 50vh;
    order: 1;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  padding: 120px 0;
  position: relative;
}

.section-light {
  background-color: var(--color-secondary);
}

.section-dark {
  background-color: var(--color-primary);
  color: var(--color-secondary);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--color-secondary);
}

.section-dark p,
.section-dark span {
  color: rgba(248, 245, 240, 0.8);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 80px;
}

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

.section-description {
  font-size: 18px;
  color: var(--color-text-caption);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}

.content-block {
  padding: 60px 0;
}

.content-block h2 {
  margin-bottom: 32px;
}

.content-block p {
  margin-bottom: 24px;
}

.image-block {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition-smooth);
}

.image-block:hover img {
  transform: scale(1.05);
}

.pull-quote {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 32px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.product-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background-color: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s var(--transition-smooth), box-shadow 0.18s var(--transition-smooth);
  cursor: pointer;
}

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

.product-card-image {
  aspect-ratio: 4/5;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s var(--transition-smooth);
}

.product-card:hover .product-card-image img {
  filter: brightness(1.02);
}

.product-card-content {
  padding: 20px;
}

.product-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  margin-bottom: 8px;
  color: var(--color-text-hero);
}

.product-card-price {
  font-size: 14px;
  color: var(--color-accent);
  font-weight: 500;
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px);
  opacity: 0;
  transition: background 0.3s var(--transition-smooth), opacity 0.3s var(--transition-smooth), backdrop-filter 0.3s var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card:hover .product-card-overlay {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  opacity: 1;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background-color: var(--color-accent);
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-button);
  transition: transform 0.18s var(--transition-smooth), box-shadow 0.18s var(--transition-smooth);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background-color: transparent;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-sm);
  transition: background-color 0.2s var(--transition-smooth), color 0.2s var(--transition-smooth);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-secondary);
}

.full-bleed-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.full-bleed-overlay {
  position: absolute;
  inset: 0;
  background-color: var(--color-overlay-dark);
}

.full-bleed-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 80px 48px;
}

.full-bleed-content h2 {
  color: var(--color-secondary);
  margin-bottom: 24px;
}

.full-bleed-content p {
  color: rgba(248, 245, 240, 0.8);
  font-size: 18px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.feature-card {
  text-align: center;
  padding: 40px 24px;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--color-accent);
}

.feature-title {
  font-size: 24px;
  margin-bottom: 16px;
}

.feature-description {
  color: var(--color-text-caption);
  line-height: 1.7;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 1024px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background-color: #fff;
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.review-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--color-text-body);
}

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

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

.review-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--color-text-hero);
}

.review-rating {
  color: var(--color-accent);
  font-size: 14px;
  margin-top: 4px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

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

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

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

.team-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  box-shadow: var(--shadow-soft);
}

.team-name {
  font-size: 22px;
  margin-bottom: 8px;
}

.team-role {
  font-size: 14px;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

@media (max-width: 1024px) {
  .contact-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.contact-info h2 {
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-secondary);
  border-radius: var(--radius-sm);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-details {
  flex: 1;
}

.contact-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-caption);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 16px;
  color: var(--color-text-body);
}

.contact-form {
  background-color: #fff;
  padding: 48px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-medium);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--color-text-body);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #e0ddd8;
  border-radius: var(--radius-sm);
  font-size: 16px;
  background-color: var(--color-secondary);
  color: var(--color-text-body);
  transition: border-color 0.2s var(--transition-smooth), box-shadow 0.2s var(--transition-smooth);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(122, 133, 117, 0.1);
}

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

.form-submit {
  width: 100%;
  padding: 18px 32px;
  background-color: var(--color-accent);
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-button);
  transition: transform 0.18s var(--transition-smooth), box-shadow 0.18s var(--transition-smooth);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.site-footer {
  background-color: var(--color-primary);
  color: var(--color-secondary);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

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

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  margin-bottom: 16px;
}

.footer-description {
  color: rgba(248, 245, 240, 0.6);
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
}

.footer-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  color: var(--color-secondary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(248, 245, 240, 0.6);
  font-size: 14px;
  transition: color 0.2s var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--color-secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(248, 245, 240, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(248, 245, 240, 0.4);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

.cookie-consent-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 400px;
  background-color: var(--color-primary);
  color: var(--color-secondary);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong);
  z-index: 9999;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-consent-banner h4 {
  color: var(--color-secondary);
  font-size: 18px;
  margin-bottom: 12px;
}

.cookie-consent-banner p {
  color: rgba(248, 245, 240, 0.7);
  margin-bottom: 16px;
}

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

.cookie-btn {
  flex: 1;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s var(--transition-smooth);
}

.cookie-btn-accept {
  background-color: var(--color-accent);
  color: var(--color-secondary);
  border: none;
}

.cookie-btn-accept:hover {
  background-color: #8a9585;
}

.cookie-btn-decline {
  background-color: transparent;
  color: rgba(248, 245, 240, 0.6);
  border: 1px solid rgba(248, 245, 240, 0.3);
}

.cookie-btn-decline:hover {
  border-color: rgba(248, 245, 240, 0.6);
  color: var(--color-secondary);
}

@media (max-width: 480px) {
  .cookie-consent-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }

  .cookie-buttons {
    flex-direction: column;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

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

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

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--transition-smooth);
}

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

.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.faq-item {
  border-bottom: 1px solid #e0ddd8;
}

.faq-question {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--color-text-hero);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s var(--transition-smooth);
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-icon {
  font-size: 24px;
  color: var(--color-accent);
  transition: transform 0.3s var(--transition-smooth);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--transition-smooth), padding 0.3s var(--transition-smooth);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 24px;
}

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

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.blog-card {
  background-color: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s var(--transition-smooth), box-shadow 0.18s var(--transition-smooth);
}

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

.blog-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--transition-smooth);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 24px;
}

.blog-date {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-caption);
  margin-bottom: 12px;
}

.blog-title {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--color-text-hero);
}

.blog-excerpt {
  font-size: 14px;
  color: var(--color-text-caption);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-link {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s var(--transition-smooth);
}

.blog-link:hover {
  gap: 12px;
}

.thank-you-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.thank-you-content {
  max-width: 600px;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  background-color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--color-secondary);
}

.thank-you-title {
  margin-bottom: 24px;
}

.thank-you-message {
  font-size: 18px;
  color: var(--color-text-caption);
  margin-bottom: 48px;
}

.legal-page {
  padding: 160px 0 80px;
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-title {
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e0ddd8;
}

.legal-section {
  margin-bottom: 48px;
}

.legal-section h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.legal-section p {
  color: var(--color-text-caption);
  line-height: 1.8;
}

.legal-section ul {
  margin-left: 24px;
  color: var(--color-text-caption);
  line-height: 1.8;
}

.legal-section li {
  margin-bottom: 8px;
}

.page-hero {
  padding: 160px 0 80px;
  background-color: var(--color-secondary);
}

.page-hero-content {
  max-width: 720px;
}

.page-hero h1 {
  margin-bottom: 24px;
}

.page-hero p {
  font-size: 18px;
  color: var(--color-text-caption);
}

.service-card {
  background-color: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s var(--transition-smooth), box-shadow 0.18s var(--transition-smooth);
}

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

.service-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--transition-smooth);
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 32px;
}

.service-title {
  font-size: 26px;
  margin-bottom: 12px;
}

.service-description {
  color: var(--color-text-caption);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-price {
  font-size: 18px;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 20px;
}

.service-link {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s var(--transition-smooth);
}

.service-link:hover {
  gap: 12px;
}

.map-container {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--transition-smooth), transform 0.6s var(--transition-smooth);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
