/* =============================================
   KizunaCraft — Main Stylesheet
   ============================================= */

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

/* --- CSS Variables --- */
:root {
  --bg:          #faf7f2;
  --bg-alt:      #f0ebe2;
  --bg-dark:     #1c1a2e;
  --accent:      #c5453c;
  --accent-dark: #8c2e27;
  --accent-muted:#f2dbd9;
  --text:        #1a1015;
  --text-muted:  #7a6e6e;
  --border:      #ddd6cc;
  --white:       #ffffff;

  --font-heading: 'Noto Serif JP', 'Hiragino Mincho ProN', '游明朝', serif;
  --font-body:    'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'メイリオ', sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 4px rgba(28,26,46,0.08);
  --shadow-md: 0 4px 20px rgba(28,26,46,0.10);
  --shadow-lg: 0 8px 40px rgba(28,26,46,0.12);

  --max-w: 1160px;
  --section-py: 80px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* --- Container --- */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 24px;
}

/* --- Typography helpers --- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--bg-dark);
  margin-bottom: 16px;
}

.section-lead {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}

/* --- Divider --- */
.divider {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 28px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border: 1.5px solid transparent;
  line-height: 1;
  white-space: nowrap;
}

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

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

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

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

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* --- Photo Placeholder --- */
.photo-placeholder {
  background: var(--bg-alt);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.photo-placeholder svg {
  opacity: 0.35;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

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

.site-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-brand img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--bg-dark);
  line-height: 1.1;
}

.brand-tagline {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 2px;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-contact a {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-contact a:hover { color: var(--accent); }

.header-contact svg { flex-shrink: 0; }

/* =============================================
   HERO  (Section 1)
   ============================================= */
.hero {
  background: var(--bg-dark);
  color: var(--white);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 60px,
    rgba(255,255,255,0.015) 60px,
    rgba(255,255,255,0.015) 61px
  );
  pointer-events: none;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .hero-inner {
    flex-direction: row;
    gap: 64px;
    align-items: center;
  }
}

.hero-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 22px;
  color: var(--white);
}

.hero-desc {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.68);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-photo {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  width: 100%;
  overflow: hidden;
}

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

@media (min-width: 768px) {
  .hero-photo {
    width: 50%;
    flex-shrink: 0;
  }
}

/* =============================================
   INTRO / ABOUT-BRIEF  (Section 2)
   ============================================= */
.intro {
  padding: var(--section-py) 0;
  background: var(--bg);
}

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

.intro-photo {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro-photo .photo-placeholder { height: 100%; }

.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.stat-box {
  padding: 22px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* =============================================
   CATEGORIES  (Section 3)
   ============================================= */
.categories {
  padding: var(--section-py) 0;
  background: var(--bg-alt);
}

.categories-header {
  text-align: center;
  margin-bottom: 52px;
}

.categories-header .section-lead { margin-inline: auto; }

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

.products-header .section-lead { margin-inline: auto; }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.category-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.category-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-muted);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-icon svg { color: var(--accent); }

.category-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--bg-dark);
}

.category-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   PRODUCTS  (Section 4)
   ============================================= */
.products {
  padding: var(--section-py) 0;
  background: var(--bg);
}

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

.products-header .section-label,
.products-header .section-title { text-align: center; }

.products-header .section-lead { margin-inline: auto; }

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

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

.product-image {
  aspect-ratio: 3/2;
  overflow: hidden;
}

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

.product-img {
  aspect-ratio: 3/2;
}

.product-img .photo-placeholder {
  height: 100%;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--border);
}

.product-body {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-tag {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--bg-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.product-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
}

.product-price span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-content {
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--bg-dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.product-actions .btn {
  width: 100%;
  justify-content: center;
  font-size: 12px;
}

/* =============================================
   WHY US — FEATURES  (Section 5)
   ============================================= */
.features {
  padding: var(--section-py) 0;
  background: var(--bg-dark);
  color: var(--white);
}

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

.features-header .section-title { color: var(--white); }
.features-header .section-label { color: rgba(197,69,60,0.9); }
.features-header .section-lead  { color: rgba(255,255,255,0.6); margin-inline: auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.feature-item {
  padding: 44px 36px;
  background: rgba(255,255,255,0.04);
  border-right: 1px solid rgba(255,255,255,0.08);
}

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

.feature-num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: rgba(197,69,60,0.25);
  line-height: 1;
  margin-bottom: 20px;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.4;
}

.feature-box {
  padding: 44px 36px;
  background: rgba(255,255,255,0.04);
  border-right: 1px solid rgba(255,255,255,0.08);
}

.feature-box:last-child { border-right: none; }

.feature-box .feature-icon {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
}

.feature-box .feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* =============================================
   WORKSHOPS  (Section 6)
   ============================================= */
.workshops {
  padding: var(--section-py) 0;
  background: var(--bg-alt);
}

.workshops-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.workshop-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.workshop-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.workshop-date-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--accent);
  color: var(--white);
  padding: 8px;
  border-radius: var(--radius-sm);
  text-align: center;
  flex-shrink: 0;
}

.wdate-day {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.wdate-month {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2px;
  opacity: 0.85;
}

.workshop-info-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--bg-dark);
  margin-bottom: 4px;
}

.workshop-info-meta {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.workshop-info-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.workshop-photo {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
}

.workshop-photo .photo-placeholder { height: 100%; }

.workshops-header {
  text-align: center;
  margin-bottom: 52px;
}

.workshops-header .section-lead {
  margin-inline: auto;
}

.workshops-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.workshops-showcase img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.workshops-info h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--bg-dark);
  margin-bottom: 12px;
}

.workshops-info p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
}

@media (max-width: 900px) {
  .workshops-showcase {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* =============================================
   GALLERY  (Section 7)
   ============================================= */
.gallery {
  padding: var(--section-py) 0;
  background: var(--bg);
}

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

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

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
}

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

.gallery-grid .gallery-item:last-child:nth-child(3n + 1) {
  grid-column: 1 / -1;
  max-width: 33%;
  justify-self: center;
}

.gallery-item .photo-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
}

.gallery-item figcaption {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
}

/* =============================================
   TESTIMONIALS  (Section 8)
   ============================================= */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--bg-alt);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 52px;
}

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

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
}

.testimonial-quote {
  font-size: 28px;
  color: var(--accent);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--bg-dark);
}

.testimonial-role {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.testimonial-meta {
  font-size: 13px;
  font-weight: 600;
  color: var(--bg-dark);
  margin-top: 16px;
}

/* =============================================
   BANNER CTA  (Section 9)
   ============================================= */
.banner-cta {
  padding: 80px 0;
  background: var(--accent);
  color: var(--white);
  text-align: center;
}

.banner-cta .section-title {
  color: var(--white);
  margin-bottom: 14px;
}

.banner-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  margin-bottom: 32px;
}

.cta-banner {
  padding: 80px 0;
  background: var(--accent);
  color: var(--white);
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin-inline: auto;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}

.cta-desc {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-light {
  background: var(--white);
  color: var(--accent);
  border-color: var(--white);
}

.btn-primary-light:hover {
  background: rgba(255,255,255,0.9);
}

.btn-outline-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-dark:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* =============================================
   CONTACTS  (Section 10)
   ============================================= */
.contact {
  padding: var(--section-py) 0;
  background: var(--bg);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

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

.contact-item-icon svg { color: var(--accent); }

.contact-item-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--bg-dark);
  line-height: 1.5;
}

.contact-item-value a:hover { color: var(--accent); }

.contact-map {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
}

.contact-map .photo-placeholder {
  height: 100%;
  font-size: 13px;
}

.contact-header {
  text-align: center;
  margin-bottom: 52px;
}

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

.contact-grid .contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 32px 24px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.contact-grid .contact-item h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--bg-dark);
}

.contact-grid .contact-item a {
  color: var(--accent);
  font-weight: 500;
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--accent-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { color: var(--accent); }

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

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.6);
  padding: 56px 0 32px;
}

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

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

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

.footer-column {
  display: flex;
  flex-direction: column;
}

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

@media (min-width: 1024px) {
  .footer-brand {
    grid-column: span 1;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 16px;
}

.footer-logo:hover {
  color: var(--accent);
}

.footer-logo img {
  width: 36px;
  height: 36px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: capitalize;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.75;
  margin-top: 14px;
  color: rgba(255,255,255,0.45);
}

.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  :root { --section-py: 60px; }

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

  .hero-photo { order: -1; }

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

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

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

@media (max-width: 640px) {
  :root { --section-py: 48px; }

  .header-contact { display: none; }

  .hero-inner { gap: 28px; }

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

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

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}
