/* ============================================================
   IRONWRENCHSTATION — Main Stylesheet (styles.css)
   Theme: Japanese Seasonal Lifestyle
   ============================================================ */

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

/* ---- CSS Custom Properties ---- */
:root {
  --primary:      #1E3D6B;   /* Japan indigo (ai-iro) */
  --accent:       #C73E2A;   /* Vermillion (torii red) */
  --green:        #4D7A54;   /* Matcha / moss green */
  --gold:         #C49A3C;   /* Autumn gold */
  --bg:           #F6F1E8;   /* Washi paper cream */
  --bg-alt:       #EDE7DA;   /* Slightly darker cream */
  --bg-dark:      #141C2E;   /* Dark footer/hero bg */
  --text:         #1E1E1E;
  --text-muted:   #686560;
  --text-light:   #9A948C;
  --border:       #D8D1C4;
  --white:        #FFFFFF;

  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Lato', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --max-width:    1200px;
  --section-pad:  80px;
  --radius:       4px;
}

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

html {
  font-size: 16px;
}

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

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

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

ul, ol {
  list-style: none;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 600;
  color: var(--primary);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

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

/* ---- Layout Utilities ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: var(--section-pad) 0;
}

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

.section--dark {
  background-color: var(--bg-dark);
  color: var(--white);
}

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

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

.section__title {
  margin-bottom: 14px;
}

/* Decorative rule under section titles */
.section__title::after {
  content: '';
  display: block;
  width: 44px;
  height: 2px;
  background-color: var(--accent);
  margin: 14px auto 0;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.section--dark .section__subtitle {
  color: #B8B0A0;
}

/* ---- Image Placeholder ---- */
.img-placeholder {
  background-color: #D5CEC3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
}

.img-placeholder svg {
  opacity: 0.45;
  flex-shrink: 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 11px 26px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: var(--radius);
  white-space: nowrap;
}

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

.btn--primary:hover {
  background-color: #A32818;
  border-color: #A32818;
}

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

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

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

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

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

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

/* ========================================
   HEADER
   ======================================== */
.site-header {
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.site-header__logo-img {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.site-header__brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-header__name {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.site-header__tagline {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ========================================
   SECTION 1 — HERO
   ======================================== */
.hero {
  padding: 0;
  background: linear-gradient(135deg, #1E3D6B 0%, #2A5A8B 100%);
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.hero__content-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 28px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__content {
  color: var(--white);
}

.hero__eyebrow {
  display: block;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-family: var(--font-heading);
}

.hero__text {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
}

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

.hero__actions .btn--outline-white {
  border-color: var(--white);
  color: var(--white);
}

.hero__actions .btn--outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.hero__media {
  position: relative;
  height: 400px;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .hero__content-wrapper {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .hero {
    min-height: auto;
  }

  .hero__media {
    height: 250px;
    margin-top: 1rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }
}

/* ========================================
   SECTION 2 — INTRO / THREE PILLARS
   ======================================== */
.intro__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}

.intro__card {
  text-align: center;
}

.intro__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
}

.intro__card h3 {
  margin-bottom: 12px;
}

.intro__card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ========================================
   SECTION 3 — FOUR SEASONS GRID
   ======================================== */
.seasons__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  background-color: var(--border);
}

.season-card {
  position: relative;
  overflow: hidden;
}

.season-card__img {
  height: 340px;
  width: 100%;
  display: block;
  object-fit: cover;
}

.season-card--spring  .season-card__img { background-color: #B4CCA8; }
.season-card--summer  .season-card__img { background-color: #BCCA98; }
.season-card--autumn  .season-card__img { background-color: #C8A87A; }
.season-card--winter  .season-card__img { background-color: #9AB0C8; }

.season-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.68) 0%, transparent 60%);
}

.season-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 28px 26px;
  color: var(--white);
}

.season-card__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 6px;
}

.season-card__title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 8px;
}

.season-card__title::after {
  display: none;
}

.season-card__text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

/* ========================================
   SECTION 4 — SEASONAL TRADITIONS
   ======================================== */
.traditions__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tradition-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  padding: 28px 22px;
  border-radius: var(--radius);
}

.tradition-card__season {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.tradition-card--spring .tradition-card__season { color: var(--green); }
.tradition-card--summer .tradition-card__season { color: #3A7A42; }
.tradition-card--autumn .tradition-card__season { color: var(--accent); }
.tradition-card--winter .tradition-card__season { color: var(--primary); }

.tradition-card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.tradition-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ========================================
   SECTION 5 — PRODUCTS
   ======================================== */
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

.product-card__img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  display: block;
  background-color: #D5CEBC;
}

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

.product-card__category {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.product-card__name {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-card__name::after {
  display: none;
}

.product-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: auto;
}

.product-card__price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
}

/* ========================================
   SECTION 6 — NATURE PHILOSOPHY
   ======================================== */
.philosophy {
  background-color: var(--primary);
  color: var(--white);
}

.philosophy__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.philosophy__text-block h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.philosophy__text-block h2::after {
  background-color: var(--gold);
  margin: 14px 0 0;
}

.philosophy__text-block p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 16px;
  font-size: 0.975rem;
}

.philosophy__text-block p:last-of-type {
  margin-bottom: 0;
}

.philosophy__quote {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1.55;
  padding: 20px 0 20px 24px;
  border-left: 3px solid var(--gold);
  margin-top: 28px;
}

.philosophy__img-wrap {
  height: 440px;
  border-radius: var(--radius);
  overflow: hidden;
}

.philosophy__img-wrap .img-placeholder {
  height: 100%;
  background-color: #0A1E3A;
}

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

/* ========================================
   SECTION 7 — SEASONAL CALENDAR
   ======================================== */
.calendar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.calendar__season {
  background-color: var(--white);
  padding: 30px 24px;
  border-right: 1px solid var(--border);
}

.calendar__season:last-child {
  border-right: none;
}

.calendar__season-months {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.calendar__season-name {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.calendar__season-name::after {
  display: none;
}

.calendar__season--spring .calendar__season-months,
.calendar__season--spring .calendar__season-name { color: var(--green); }

.calendar__season--summer .calendar__season-months,
.calendar__season--summer .calendar__season-name { color: #3A7A42; }

.calendar__season--autumn .calendar__season-months,
.calendar__season--autumn .calendar__season-name { color: var(--accent); }

.calendar__season--winter .calendar__season-months,
.calendar__season--winter .calendar__season-name { color: var(--primary); }

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

.calendar__activities li {
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.calendar__activities li:last-child {
  border-bottom: none;
}

.calendar__activities li::before {
  content: '— ';
  color: var(--text-light);
}

/* ========================================
   SECTION 8 — VOICES / TESTIMONIALS
   ======================================== */
.voices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.voice-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  padding: 28px 24px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.voice-card__quote {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 22px;
}

.voice-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.voice-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.voice-card__avatar .img-placeholder {
  background-color: #C8BEB0;
  height: 100%;
}

.voice-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.voice-card__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}

.voice-card__role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ========================================
   SECTION 9 — CONTACTS
   ======================================== */
.contacts {
  background-color: var(--bg-alt);
}

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

.contacts__info h2 {
  text-align: left;
  margin-bottom: 14px;
}

.contacts__info h2::after {
  margin: 14px 0 0;
}

.contacts__intro {
  color: var(--text-muted);
  font-size: 0.975rem;
  margin-bottom: 38px;
}

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

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

.contact-item__icon svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.contact-item__label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-item__value {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
}

.contact-item__value a {
  color: var(--primary);
}

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

.contacts__map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.contacts__map-wrap .img-placeholder {
  height: 400px;
  background-color: #C0CAB8;
}

.contacts__map-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

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

.site-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

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

.footer-brand__logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-brand__name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 600;
}

.footer-brand__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.footer-nav__title,
.footer-contact__title {
  font-family: var(--font-body);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-nav__links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-nav__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.58);
}

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

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

.footer-contact__item {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.55;
}

.footer-contact__item a {
  color: rgba(255, 255, 255, 0.58);
}

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

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

.site-footer__copyright {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__legal {
  display: flex;
  gap: 22px;
}

.site-footer__legal a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.42);
}

.site-footer__legal a:hover {
  color: var(--white);
}

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

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

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

  .calendar__season {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .calendar__season:nth-child(2n) {
    border-right: none;
  }

  .calendar__season:nth-last-child(-n+2) {
    border-bottom: none;
  }

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

  .philosophy__img-wrap {
    height: 300px;
    order: -1;
  }

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

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

/* ========================================
   CENTER ALIGNMENT FOR HOME PAGE BLOCKS
   ======================================== */

/* Center intro cards */
.intro {
  text-align: center;
}

.intro__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 2rem;
}

.intro__card {
  text-align: center;
  padding: 0 12px;
}

.intro__card h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}

.intro__card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.intro__icon {
  margin: 0 auto 1.5rem;
}

/* Section headers centered */
.section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section__title {
  margin-bottom: 1rem;
  color: var(--primary);
}

.section__subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Traditions grid centered */
.traditions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.tradition-card {
  text-align: center;
  padding: 1.5rem;
  background-color: var(--bg-alt);
  border-radius: var(--radius);
}

.tradition-card h4 {
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.tradition-card p:not(.tradition-card__season) {
  color: var(--text-muted);
  margin: 0;
}

/* Voices grid centered */
.voices__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.voice-card {
  text-align: center;
  padding: 2rem;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.voice-card__quote {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.voice-card__author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.voice-card__name {
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

.voice-card__role {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Philosophy section centered */
.philosophy {
  text-align: center;
}

.philosophy__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.philosophy__text-block h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

.philosophy__text-block p {
  text-align: left;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1rem;
}

.philosophy__quote {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--accent);
  margin: 2rem 0;
  padding: 1.5rem;
  border-left: 3px solid var(--accent);
  text-align: left;
  line-height: 1.8;
}

/* Calendar grid centered */
.calendar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.calendar__season {
  padding: 1.5rem;
  text-align: center;
}

.calendar__season-name {
  color: var(--primary);
  margin: 0.75rem 0 1rem;
}

.calendar__activities {
  list-style: none;
  text-align: left;
  padding: 0;
}

.calendar__activities li {
  padding: 0.4rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ========================================
   RESPONSIVE — 768px
   ======================================== */
@media (max-width: 768px) {
  :root {
    --section-pad: 56px;
  }

  .hero__content {
    padding: 72px 24px;
  }

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

  .seasons__grid {
    grid-template-columns: 1fr;
  }

  .traditions__grid {
    grid-template-columns: 1fr;
  }

  .products__grid {
    grid-template-columns: 1fr;
  }

  .voices__grid {
    grid-template-columns: 1fr;
  }

  .calendar__grid {
    grid-template-columns: 1fr;
  }

  .calendar__season {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .calendar__season:last-child {
    border-bottom: none;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

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

  .product-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ========================================
   COOKIE BANNER (GDPR Compliant)
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  color: var(--white);
  padding: 20px 28px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner__content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-banner__text-section {
  flex: 1;
  min-width: 250px;
}

.cookie-banner__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}

.cookie-banner__text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cookie-banner .btn {
  padding: 8px 16px;
  font-size: 0.75rem;
}

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

.cookie-banner .btn--primary:hover {
  background-color: #A32818;
  border-color: #A32818;
}

.cookie-banner .btn--outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  background-color: transparent;
}

.cookie-banner .btn--outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.cookie-banner .btn--secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  background-color: transparent;
}

.cookie-banner .btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}

/* Cookie Customization Panel */
.cookie-customize-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.cookie-customize-panel[hidden] {
  display: none;
}

.cookie-customize-panel__content {
  background: var(--white);
  border-radius: 8px;
  padding: 32px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

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

.cookie-customize-header h3 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--primary);
}

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

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

.cookie-options {
  margin-bottom: 28px;
}

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

.cookie-option__title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 8px 0;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
}

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

.cookie-option__title label {
  cursor: pointer;
  margin: 0;
}

.cookie-option__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  padding-left: 30px;
}

.cookie-customize-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.cookie-policy-link {
  color: var(--primary);
  text-decoration: underline;
  font-size: 0.9rem;
}

.cookie-policy-link:hover {
  color: var(--accent);
}

.cookie-customize-actions > div {
  display: flex;
  gap: 12px;
}

.cookie-customize-actions .btn {
  padding: 10px 20px;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .cookie-banner__content {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cookie-banner__actions {
    justify-content: flex-start;
  }

  .cookie-customize-panel__content {
    padding: 20px;
  }

  .cookie-customize-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-customize-actions > div {
    flex-direction: column;
  }

  .cookie-customize-actions .btn {
    width: 100%;
  }
}
