

@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;700;900&family=Inter:wght@400;500;600&display=swap');

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

html { scroll-behavior: smooth; }

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

img { display: block; max-width: 100%; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }

:root {
  --c-bg: #FAFAFA;
  --c-fg: #111111;
  --c-muted: #666666;
  --c-accent: #C8102E;
  --c-dark-bg: #111111;
  --c-dark-fg: #F5F5F5;
  --c-dark-muted: #AAAAAA;
  --c-card-bg: #FFFFFF;
  --c-bg-alt: #F0EFE9;
  --c-dark-alt: #1A1A1A;
  --c-dark-border: #2C2C2C;
  --c-border: #E0DED8;
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.09);

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 5rem;

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

  --font-display: 'Roboto Slab', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --container-width: 1200px;
  --container-pad: var(--space-4);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--c-dark-bg);
  border-bottom: 3px solid var(--c-accent);
}

.header-inner {
  display: flex;
  align-items: center;
  padding-top: var(--space-3);
  padding-bottom: var(--space-3);
}

.header-brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
}

.header-logo {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: block;
}

.header-brand-name {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--c-dark-fg);
  letter-spacing: 0.02em;
}

.page-hero {
  background-color: var(--c-dark-bg);
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--c-dark-border);
}

.page-hero-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--space-2);
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--c-dark-fg);
  margin-bottom: var(--space-2);
}

.page-hero-sub {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--c-dark-muted);
  line-height: 1.65;
  max-width: 60ch;
}

.page-body {
  padding: var(--space-6) 0;
}

.page-block {
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--c-border);
}

.page-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-block-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 700;
  color: var(--c-fg);
  margin-bottom: var(--space-3);
  line-height: 1.25;
}

.page-block-title-accent {
  color: var(--c-accent);
}

.page-block p {
  font-size: 0.95rem;
  color: var(--c-muted);
  line-height: 1.75;
  margin-bottom: var(--space-2);
  max-width: 72ch;
}

.page-block p:last-child {
  margin-bottom: 0;
}

.page-block ul {
  list-style: disc;
  padding-left: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.page-block ul li {
  font-size: 0.95rem;
  color: var(--c-muted);
  line-height: 1.65;
}

.about-story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
  margin-bottom: var(--space-6);
}

.about-story-block-reverse {
  direction: rtl;
}

.about-story-block-reverse > * {
  direction: ltr;
}

.about-story-content {
  padding: var(--space-2) 0;
}

.about-story-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 900;
  color: var(--c-fg);
  line-height: 1.2;
  margin-bottom: var(--space-3);
}

.about-story-text {
  font-size: 0.95rem;
  color: var(--c-muted);
  line-height: 1.75;
  margin-bottom: var(--space-2);
}

.about-story-media {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.about-photo-placeholder {
  aspect-ratio: 4 / 3;
  background-color: #D4D1C8;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.about-photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 28px,
      #C8C5BC 28px,
      #C8C5BC 29px
    );
  z-index: 5;
  pointer-events: none;
}

.about-photo-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 10;
}

.about-photo-caption {
  font-size: 0.78rem;
  color: var(--c-muted);
  line-height: 1.5;
  font-style: italic;
}

.about-growth-section {
  background-color: #F0EFE9;
  padding: var(--space-6) 0;
  margin: var(--space-5) 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--c-dark-bg);
  color: var(--c-dark-fg);
  padding: var(--space-4);
  border-top: 2px solid var(--c-accent);
  display: none;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
}

.cookie-banner.visible {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.cookie-banner-content {
  flex: 1;
  min-width: 220px;
}

.cookie-banner-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.cookie-banner-text {
  font-size: 0.9rem;
  color: var(--c-dark-muted);
  line-height: 1.5;
  max-width: 60ch;
}

.cookie-banner-actions {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.cookie-banner-btn {
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}

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

.cookie-banner-btn-primary:hover {
  opacity: 0.9;
}

.cookie-banner-btn-secondary {
  background-color: var(--c-dark-border);
  color: var(--c-dark-fg);
}

.cookie-banner-btn-secondary:hover {
  background-color: #3A3A3A;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.about-value-card {
  background-color: var(--c-card-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-card);
}

.about-value-icon {
  width: 40px;
  height: 40px;
  color: var(--c-accent);
  margin-bottom: var(--space-2);
  display: block;
}

.about-value-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-fg);
  margin-bottom: var(--space-1);
}

.about-value-desc {
  font-size: 0.875rem;
  color: var(--c-muted);
  line-height: 1.6;
}

.section-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--space-2);
}

.section-header {
  margin-bottom: var(--space-5);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.9rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--c-fg);
}

.section-desc {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--c-muted);
  line-height: 1.65;
  max-width: 58ch;
  margin-top: var(--space-2);
}

.site-footer {
  background-color: var(--c-dark-bg);
  color: var(--c-dark-fg);
  padding: var(--space-5) 0 var(--space-4);
  border-top: 3px solid var(--c-accent);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--c-dark-border);
}

.footer-info-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}

.footer-logo {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: block;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-dark-fg);
}

.footer-tagline {
  font-size: 0.84rem;
  color: var(--c-dark-muted);
  line-height: 1.55;
  max-width: 34ch;
}

.footer-nav-col-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--space-2);
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.footer-nav-link {
  font-size: 0.875rem;
  color: var(--c-dark-muted);
  text-decoration: none;
}

.footer-bottom {
  margin-top: var(--space-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--c-dark-muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 1024px) {
  :root {
    --container-pad: var(--space-3);
  }

  .about-story-block {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .about-story-block-reverse {
    direction: ltr;
  }

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

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

  .cookie-banner.visible {
    justify-content: center;
    text-align: center;
  }

  .cookie-banner-content {
    order: 2;
    min-width: 100%;
  }

  .cookie-banner-actions {
    order: 3;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  :root {
    --space-5: 2.5rem;
    --space-6: 3.5rem;
    --container-pad: var(--space-3);
  }

  .about-story-block {
    grid-template-columns: 1fr;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
  }

  .about-story-title {
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner.visible {
    flex-direction: column;
    gap: var(--space-3);
    padding: var(--space-3);
  }

  .cookie-banner-content {
    width: 100%;
    text-align: center;
  }

  .cookie-banner-text {
    max-width: none;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: center;
  }

  .cookie-banner-btn {
    flex: 1;
    min-width: 120px;
  }
}
