:root {
  --est-bg: #ffffff;
  --est-surface: #ffffff;
  --est-surface-alt: #f7f7f7;
  --est-border: #e6e6e6;
  --est-text: #242424;
  --est-muted: #767676;
  --est-primary: #171326;
  --est-accent: #f05a28;
  --est-accent-soft: #fff1eb;
  --est-link: #e04d22;
  --est-shadow: 0 0 6px rgba(0, 0, 0, 0.12);
  --est-radius: 8px;
  --est-container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--est-bg);
  color: var(--est-text);
  font-family: "Lato", "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
button, input, select { font: inherit; }

.site-container {
  width: min(calc(100% - 32px), var(--est-container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  min-height: 64px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 157px;
  color: #15121f;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.site-brand__mark {
  display: inline-grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border-radius: 50% 50% 50% 12px;
  background: linear-gradient(145deg, #ffb322 0%, #ff7a1a 48%, #f04f2a 100%);
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  text-transform: lowercase;
  transform: rotate(-8deg);
}

.site-brand__text { transform: translateY(1px); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 auto;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: #333;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.site-nav__link:hover,
.site-actions__link:hover,
.section-heading__link:hover { color: var(--est-accent); }

.site-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-actions__link {
  display: inline-grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  color: #2e2e2e;
  font-size: 0;
}

.site-actions__link::before {
  font-size: 18px;
  line-height: 1;
}

.site-actions__link--cart::before { content: "\1f6d2"; }
.site-actions__link--account::before { content: "\1f464"; }

.site-main { padding-bottom: 0; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.button:hover { transform: translateY(-1px); }
.button--primary { background: var(--est-primary); color: #fff; }
.button--primary:hover { background: #2a2140; color: #fff; }
.button--secondary { background: #fff; border: 1px solid #d9d9d9; color: #242424; }
.button--secondary:hover { border-color: #c9c9c9; color: var(--est-accent); }

.home-section { padding: 40px 0; }

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-heading--compact { margin-bottom: 18px; }

.section-heading__eyebrow {
  margin: 0 0 7px;
  color: var(--est-accent);
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.section-heading h2 {
  margin: 0;
  color: #242424;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

.section-heading__link {
  color: #242424;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.site-content { padding: 42px 0 72px; }
.content-entry,
.archive-card {
  background: var(--est-surface);
  border: 1px solid var(--est-border);
  border-radius: var(--est-radius);
  box-shadow: var(--est-shadow);
}
.content-entry { padding: 28px; }
.archive-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.archive-card h2 { padding: 16px 18px 22px; margin: 0; font-size: 1.1rem; }

.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 2.1fr 1.35fr 1.35fr 1.35fr;
  gap: 30px;
  padding: 40px 0;
}

.site-brand--footer {
  min-width: 0;
  font-size: 24px;
}

.site-footer__text,
.site-footer__meta {
  max-width: 276px;
  margin: 8px 0 0;
  color: var(--muted, #767676);
}

.site-footer__bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.11);
  padding: 20px 0;
  color: #767676;
  font-size: 11px;
}

.site-footer__bottom p { margin: 0; }
.site-footer__col h3,
.footer-widget__title {
  margin: 0 0 20px;
  color: #333;
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
}
.site-footer__col ul {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  color: #767676;
  list-style: none;
}

@media (max-width: 980px) {
  .site-header__inner { gap: 18px; }
  .site-nav { display: none; }
  .site-actions { margin-left: auto; }
  .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .site-container { width: min(calc(100% - 24px), var(--est-container)); }
  .site-header__inner { min-height: 58px; }
  .site-brand { min-width: 0; font-size: 20px; }
  .site-brand__mark { width: 34px; height: 34px; font-size: 20px; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .site-footer__grid { grid-template-columns: 1fr; }
}