

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

:root {
  --ink:       #1A1A1A;
  --crimson:   #C0392B;
  --parchment: #F5F0E8;
  --stone:     #8C8C8C;
  --gold:      #B8960C;
  --white:     #FFFFFF;

  --font-heading: 'Noto Serif JP', 'Georgia', serif;
  --font-body:    'Noto Sans JP', 'Helvetica Neue', Arial, sans-serif;

  --max-width: 1200px;
  --section-pad: 96px 24px;
  --radius: 2px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--parchment);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--crimson); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600;700&family=Noto+Sans+JP:wght@300;400;500&display=swap');

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  text-wrap: balance;
}
.section-title--light { color: var(--parchment); }
.section-title--crimson { color: var(--crimson); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  text-decoration: none;
}
.btn--primary { background: var(--crimson); color: var(--white); }
.btn--primary:hover { background: #9B2A1E; text-decoration: none; }
.btn--outline { background: transparent; color: var(--parchment); border: 1.5px solid var(--parchment); }
.btn--outline:hover { background: var(--parchment); color: var(--ink); text-decoration: none; }
.btn--outline-dark { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn--outline-dark:hover { background: var(--ink); color: var(--parchment); text-decoration: none; }

.divider {
  width: 48px;
  height: 2px;
  background: var(--crimson);
  margin: 20px 0 28px;
}
.divider--center { margin: 20px auto 28px; }

.site-header {
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #2e2e2e;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.header-brand:hover { text-decoration: none; }
.header-logo { width: 42px; height: 42px; flex-shrink: 0; }
.header-brand-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.header-brand-name span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}
.header-nav { display: flex; align-items: center; gap: 36px; }
.header-nav a {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #CCCCCC;
  text-decoration: none;
}
.header-nav a:hover { color: var(--crimson); text-decoration: none; }
.header-cta { font-size: 12px; padding: 10px 22px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
}

.hero {
  background: var(--ink);
  color: var(--white);
  padding: 120px 24px 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 80px,
      rgba(255,255,255,0.018) 80px,
      rgba(255,255,255,0.018) 81px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(255,255,255,0.018) 80px,
      rgba(255,255,255,0.018) 81px
    );
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero-title em {
  font-style: normal;
  color: var(--crimson);
}
.hero-subtitle {
  font-size: 16px;
  line-height: 1.8;
  color: #CCCCCC;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  background: #2a2a2a;
  border: 1px solid #333;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 1.5px solid var(--crimson);
  pointer-events: none;
}
.hero-stat {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--crimson);
  color: var(--white);
  padding: 16px 20px;
  font-family: var(--font-heading);
}
.hero-stat-num {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
.hero-stat-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.intro-strip {
  background: var(--crimson);
  padding: 56px 24px;
}
.intro-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 40px;
  align-items: center;
}
.intro-strip-divider { background: rgba(255,255,255,0.3); height: 60px; }
.intro-item { text-align: center; }
.intro-item-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 12px;
  color: var(--white);
}
.intro-item-icon svg { width: 100%; height: 100%; }
.intro-item-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.intro-item-text {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

.philosophy { padding: var(--section-pad); }
.philosophy-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.philosophy-content { }
.philosophy-list { margin-top: 32px; }
.philosophy-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid #E0D9CE;
}
.philosophy-item:first-child { border-top: 1px solid #E0D9CE; }
.philosophy-num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--crimson);
  min-width: 40px;
  line-height: 1;
}
.philosophy-item-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.philosophy-item-text { font-size: 14px; color: var(--stone); line-height: 1.7; }
.philosophy-visual { position: relative; }
.philosophy-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  background: #ddd;
}
.philosophy-quote {
  margin-top: 24px;
  padding: 20px 24px;
  border-left: 3px solid var(--crimson);
  background: rgba(192,57,43,0.05);
}
.philosophy-quote-text {
  font-family: var(--font-heading);
  font-size: 15px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.7;
}
.philosophy-quote-source {
  margin-top: 8px;
  font-size: 12px;
  color: var(--stone);
  letter-spacing: 0.08em;
}

.history {
  background: var(--ink);
  color: var(--white);
  padding: var(--section-pad);
}
.history-inner { max-width: var(--max-width); margin: 0 auto; }
.history-header { text-align: center; margin-bottom: 64px; }
.history-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.history-card {
  background: #222;
  padding: 36px 28px;
  position: relative;
}
.history-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--crimson);
}
.history-era {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 12px;
}
.history-year {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
}
.history-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--parchment);
}
.history-text { font-size: 13px; color: #999; line-height: 1.7; }
.history-img {
  margin-top: 20px;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #333;
}

.virtues { padding: var(--section-pad); }
.virtues-inner { max-width: var(--max-width); margin: 0 auto; }
.virtues-header { text-align: center; margin-bottom: 56px; }
.virtues-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.virtue-card {
  padding: 36px 28px;
  border: 1px solid #E0D9CE;
  background: var(--white);
  position: relative;
}
.virtue-icon {
  width: 40px;
  height: 40px;
  color: var(--crimson);
  margin-bottom: 20px;
}
.virtue-icon svg { width: 100%; height: 100%; }
.virtue-kanji {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: rgba(192,57,43,0.08);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
  pointer-events: none;
}
.virtue-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.virtue-subtitle {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 12px;
}
.virtue-text { font-size: 13px; color: var(--stone); line-height: 1.7; }

.gallery {
  background: #111;
  padding: var(--section-pad);
}
.gallery-inner { max-width: var(--max-width); margin: 0 auto; }
.gallery-header { text-align: center; margin-bottom: 48px; }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 4px;
}
.gallery-item { background: #2a2a2a; overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item--tall { grid-row: span 2; }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 18px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.products { padding: var(--section-pad); }
.products-inner { max-width: var(--max-width); margin: 0 auto; }
.products-header { text-align: center; margin-bottom: 56px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border: 1px solid #E0D9CE;
  display: flex;
  flex-direction: column;
}
.product-img {
  aspect-ratio: 4/3;
  background: #e8e2d8;
  overflow: hidden;
  position: relative;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--crimson);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
}
.product-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.product-sub {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 12px;
}
.product-desc { font-size: 13px; color: var(--stone); line-height: 1.7; margin-bottom: 20px; flex: 1; }
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.product-price {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}
.product-price span { font-size: 12px; color: var(--stone); font-weight: 400; }

.quotes {
  background: var(--ink);
  padding: var(--section-pad);
}
.quotes-inner { max-width: var(--max-width); margin: 0 auto; }
.quotes-header { text-align: center; margin-bottom: 56px; }
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.quote-card {
  background: #1e1e1e;
  padding: 36px 28px;
  border-top: 3px solid var(--crimson);
}
.quote-mark {
  font-family: var(--font-heading);
  font-size: 64px;
  line-height: 0.7;
  color: var(--crimson);
  margin-bottom: 16px;
}
.quote-text {
  font-family: var(--font-heading);
  font-size: 15px;
  font-style: italic;
  color: #CCC;
  line-height: 1.8;
  margin-bottom: 20px;
}
.quote-author {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}

.articles { padding: var(--section-pad); }
.articles-inner { max-width: var(--max-width); margin: 0 auto; }
.articles-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.article-card { display: flex; flex-direction: column; }
.article-img {
  aspect-ratio: 16/9;
  background: #ddd;
  overflow: hidden;
  margin-bottom: 20px;
}
.article-img img { width: 100%; height: 100%; object-fit: cover; }
.article-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 8px;
}
.article-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 10px;
}
.article-excerpt { font-size: 13px; color: var(--stone); line-height: 1.7; margin-bottom: 16px; flex: 1; }
.article-meta { font-size: 11px; color: var(--stone); }

.cta-banner {
  background: var(--crimson);
  padding: 80px 24px;
}
.cta-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-banner-text {}
.cta-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  text-wrap: balance;
  margin-bottom: 12px;
}
.cta-banner-sub { font-size: 15px; color: rgba(255,255,255,0.8); }

.contacts { padding: var(--section-pad); background: var(--parchment); }
.contacts-inner { max-width: var(--max-width); margin: 0 auto; }
.contacts-header { margin-bottom: 56px; }
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info-list { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 20px; align-items: flex-start; }
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 4px;
}
.contact-value {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.contact-value a { color: var(--ink); }
.contact-value a:hover { color: var(--crimson); text-decoration: none; }

.contact-map {
  width: 100%;
  aspect-ratio: 4/3;
  background: #ddd;
  overflow: hidden;
}
.contact-map iframe { width: 100%; height: 100%; border: none; }
.contact-form-note {
  margin-top: 32px;
  padding: 24px;
  background: var(--white);
  border-left: 3px solid var(--crimson);
  font-size: 14px;
  color: var(--stone);
  line-height: 1.7;
}

.site-footer {
  background: #111111;
  color: #999;
  padding: 64px 24px 32px;
}
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #2a2a2a;
}
.footer-brand { }
.footer-brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-brand-wrap:hover { text-decoration: none; }
.footer-logo { width: 36px; height: 36px; }
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}
.footer-tagline {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-nav-list { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-list a {
  font-size: 13px;
  color: #888;
  text-decoration: none;
  line-height: 1.5;
}
.footer-nav-list a:hover { color: var(--crimson); text-decoration: none; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: #555; }
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a { font-size: 12px; color: #555; text-decoration: none; }
.footer-legal a:hover { color: var(--crimson); text-decoration: none; }

.placeholder-img {
  width: 100%;
  height: 100%;
  background: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .history-grid { grid-template-columns: repeat(2, 1fr); }
  .virtues-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--tall { grid-row: span 1; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px 20px; }

  .header-nav { display: none; flex-direction: column; gap: 0; }
  .header-nav.open {
    display: flex;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--ink);
    padding: 16px 24px;
    border-top: 1px solid #2e2e2e;
    gap: 0;
  }
  .header-nav.open a { padding: 12px 0; border-bottom: 1px solid #1e1e1e; display: block; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .header-inner { position: relative; }

  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-img-wrap::after { display: none; }
  .hero-stat { position: static; margin-top: 12px; }

  .intro-strip-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .intro-strip-divider { display: none; }

  .philosophy-inner { grid-template-columns: 1fr; gap: 40px; }
  .history-grid { grid-template-columns: 1fr; }
  .virtues-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .products-grid { grid-template-columns: 1fr; }
  .quotes-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .articles-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cta-banner-inner { flex-direction: column; }
  .contacts-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .hero-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 24px 60px;
  }

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

  .hero-title {
    font-size: clamp(28px, 4vw, 48px);
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 16px 40px;
  }

  .hero-title {
    font-size: clamp(24px, 3.5vw, 36px);
  }

  .hero-subtitle {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }
}

.intro-strip-inner {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.intro-item {
  max-width: 280px;
}

.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.philosophy-content {
  text-align: center;
}

.philosophy-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.philosophy-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.philosophy-num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--crimson);
  min-width: 60px;
  line-height: 1.2;
}

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

.history-card {
  text-align: center;
  max-width: 240px;
}

.virtues-inner {
  text-align: center;
}

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

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

.gallery-inner {
  text-align: center;
}

.gallery-header {
  text-align: center;
  margin-bottom: 56px;
}

.products-inner {
  text-align: center;
}

.products-header {
  text-align: center;
  margin-bottom: 64px;
}

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

.quotes-inner {
  text-align: center;
}

.quotes-header {
  text-align: center;
  margin-bottom: 56px;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

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

.articles-inner {
  text-align: center;
}

.articles-header {
  text-align: center;
  margin-bottom: 56px;
}

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

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

.cta-banner-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-banner-title {
  max-width: 600px;
  margin: 0 auto;
}

.cta-banner-sub {
  max-width: 600px;
  margin: 0 auto;
}
