

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

:root {
  --color-primary: #2A5F4F;
  --color-primary-dark: #1A3D31;
  --color-accent: #E8B84B;
  --color-bg: #F5F0E8;
  --color-bg-alt: #EDE8DC;
  --color-surface: #FFFFFF;
  --color-text: #1C1C1C;
  --color-text-muted: #5A5A5A;
  --color-border: #D8D2C6;
  --color-green-light: #A8D5C2;

  --font-heading: 'Noto Serif JP', 'Yu Mincho', serif;
  --font-body: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  --radius: 4px;
  --radius-md: 8px;
  --max-width: 1160px;
}

html {
  background-color: var(--color-bg);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.3;
  color: var(--color-text);
}

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.03em;
  text-decoration: none;
}

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

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

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

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

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

.btn-accent:hover {
  background-color: #d4a43c;
}

.site-header {
  background-color: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 1rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.header-logo img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.header-brand {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}

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

.header-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

.header-nav a:hover {
  color: var(--color-primary);
}

.header-contact-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  white-space: nowrap;
}

.header-contact-link:hover {
  color: var(--color-primary-dark);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav.open {
  display: flex;
}

.hero {
  background-color: var(--color-primary);
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-lg);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.hero-content {
  color: var(--color-bg);
}

.hero-content .section-label {
  color: var(--color-accent);
}

.hero-content h1 {
  color: var(--color-bg);
  margin-bottom: 1.25rem;
}

.hero-content p {
  color: rgba(245, 240, 232, 0.8);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: var(--color-primary-dark);
}

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

.features {
  padding: var(--space-lg) 0;
  background-color: var(--color-bg);
  text-align: center;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  max-width: 560px;
  margin: 0 auto;
}

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

.feature-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
}

.about-intro {
  padding: var(--space-lg) 0;
  background-color: var(--color-surface);
  text-align: center;
}

.about-intro-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  max-width: 660px;
  margin: 0 auto;
}

.about-intro .about-image {
  max-width: 100%;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.about-intro .about-text {
  width: 100%;
}

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

.about-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 5/4;
  background-color: var(--color-border);
}

.about-image .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text .section-label {
  margin-bottom: var(--space-xs);
}

.about-text h2 {
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.categories {
  padding: var(--space-lg) 0;
  background-color: var(--color-bg);
  text-align: center;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1/1;
  background-color: var(--color-border);
}

.category-card .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26,61,49,0.85) 0%, transparent 100%);
  padding: 1.5rem 1.25rem 1.25rem;
}

.category-card-overlay h3 {
  color: var(--color-bg);
  font-size: 1.05rem;
}

.category-card-overlay p {
  color: rgba(245,240,232,0.75);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.products {
  padding: var(--space-lg) 0;
  background-color: var(--color-surface);
  text-align: center;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card-image {
  aspect-ratio: 4/3;
  background-color: var(--color-bg);
  overflow: hidden;
}

.product-card-image .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-body .product-category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.product-card-body h3 {
  margin-bottom: 0.5rem;
}

.product-card-body p {
  font-size: 0.875rem;
  flex: 1;
  margin-bottom: 1.25rem;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.stats {
  padding: var(--space-lg) 0;
  background-color: var(--color-primary);
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(245,240,232,0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.75);
  line-height: 1.5;
}

.how-it-works {
  padding: var(--space-lg) 0;
  background-color: var(--color-bg);
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  counter-reset: steps;
}

.step-item {
  text-align: center;
  padding: 1rem;
  counter-increment: steps;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-green-light);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.step-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon svg {
  width: 28px;
  height: 28px;
}

.step-item h3 {
  margin-bottom: 0.5rem;
}

.testimonials {
  padding: var(--space-lg) 0;
  background-color: var(--color-surface);
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-border);
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-author-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

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

.cta-banner {
  padding: var(--space-xl) 0;
  background-color: var(--color-primary);
  text-align: center;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-banner-text h2 {
  color: var(--color-bg);
  margin-bottom: 0.75rem;
}

.cta-banner-text p {
  color: rgba(245,240,232,0.75);
  max-width: 560px;
}

.cta-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.contacts {
  padding: var(--space-lg) 0;
  background-color: var(--color-bg);
}

.contacts-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.contacts-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: var(--color-border);
}

.contacts-map .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contacts-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contacts-info .section-label {
  margin-bottom: 0.25rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background-color: var(--color-primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--color-bg);
}

.contact-item-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.2rem;
}

.contact-item-value {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
}

.contact-item-value a {
  color: var(--color-primary);
  text-decoration: none;
}

.contact-item-value a:hover {
  text-decoration: underline;
}

.site-footer {
  background-color: var(--color-primary-dark);
  padding: var(--space-lg) 0 0;
  color: rgba(245,240,232,0.85);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,240,232,0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  filter: brightness(1.5);
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-bg);
}

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(245,240,232,0.65);
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-bg);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(245,240,232,0.65);
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: #ffffff;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(245,240,232,0.45);
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: rgba(245,240,232,0.75);
}

.placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-alt);
  gap: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  min-height: 220px;
}

.img-placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.4;
}

@media (max-width: 1024px) {
  .features-grid,
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .menu-toggle { display: flex; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }

  .about-intro-inner { grid-template-columns: 1fr; }

  .categories-grid { grid-template-columns: repeat(2, 1fr); }

  .features-grid,
  .products-grid,
  .testimonials-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(245,240,232,0.15); }
  .stat-item:nth-child(even) { border-right: none; }

  .steps-grid { grid-template-columns: repeat(2, 1fr); }

  .cta-banner-inner { flex-direction: column; }

  .contacts-inner { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 1.5rem 2rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
}

.cookie-banner.show {
  opacity: 1;
  visibility: visible;
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  min-width: 250px;
}

.cookie-banner-text p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--color-text-muted);
}

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

.cookie-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-banner-btn {
  padding: 0.6rem 1.25rem;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background-color 0.2s ease;
}

.cookie-banner-btn-accept {
  background-color: var(--color-primary);
  color: var(--color-bg);
}

.cookie-banner-btn-accept:hover {
  background-color: var(--color-primary-dark);
}

.cookie-banner-btn-reject {
  background-color: var(--color-border);
  color: var(--color-text);
}

.cookie-banner-btn-reject:hover {
  background-color: #c4bfb3;
}

.cookie-banner-btn-customize {
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

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

@media (max-width: 768px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-banner-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

.cookie-customize-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.cookie-customize-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-customize-content {
  background-color: var(--color-bg);
  border-radius: var(--radius-md);
  max-width: 500px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.cookie-customize-header {
  padding: 2rem;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-customize-header h2 {
  margin: 0;
  font-size: 1.25rem;
}

.cookie-customize-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-text-muted);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-customize-close:hover {
  color: var(--color-text);
}

.cookie-customize-body {
  padding: 2rem;
}

.cookie-option {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: var(--color-surface);
}

.cookie-option:last-child {
  margin-bottom: 0;
}

.cookie-option-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.cookie-option-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
}

.cookie-option-label {
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
}

.cookie-option-description {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-left: 2.5rem;
}

.cookie-customize-footer {
  padding: 2rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.cookie-customize-footer button {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.02em;
}

#cookieSaveCustomBtn {
  background-color: var(--color-primary);
  color: var(--color-bg);
}

#cookieSaveCustomBtn:hover {
  background-color: var(--color-primary-dark);
}

@media (max-width: 640px) {
  .cookie-customize-modal {
    padding: 1rem;
  }

  .cookie-customize-content {
    width: 100%;
  }
  
  .cookie-customize-header {
    padding: 1.5rem;
  }
  
  .cookie-customize-body {
    padding: 1.5rem;
  }
  
  .cookie-customize-footer {
    padding: 1.5rem;
    flex-direction: column;
  }
}

.site-footer {
  background-color: var(--color-primary);
  color: var(--color-bg);
  padding: 3rem 0 1.5rem;
  margin-top: var(--space-xl);
}

.footer-inner {
  display: block;
  grid-template-columns: none;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  border-bottom: none;
}

.footer-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 180px;
}

.footer-brand img {
  width: 44px;
  height: 44px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.footer-nav-column h4 {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-nav-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-column li {
  margin-bottom: 0.75rem;
}

.footer-nav-column a {
  color: rgba(245, 240, 232, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-nav-column a:hover {
  color: var(--color-bg);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 232, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: #ffffff;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
