:root {
  --page-bg: #eef3f2;
  --page-surface: #ffffff;
  --hero-wall: #70909a;
  --hero-bar: rgba(61, 81, 87, 0.58);
  --footer-bg: #3f5157;
  --footer-deep: #2d3f46;
  --text: #1f2a2e;
  --muted: #66777d;
  --line: rgba(32, 50, 56, 0.12);
  --white-line: rgba(255, 255, 255, 0.72);
  --shadow: 0 30px 80px rgba(28, 49, 56, 0.08);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #dfe8e8 0%, var(--page-bg) 100%);
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
}

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

button,
input {
  font: inherit;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cookie-slot:empty {
  display: none;
}

.store-page {
  width: min(1780px, calc(100% - 56px));
  margin: 0 auto;
  padding: 14px 0 28px;
}

.store-header {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
  width: min(1780px, calc(100% - 56px));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 92px;
  padding: 0 34px;
  background: var(--hero-bar);
  backdrop-filter: blur(10px);
}

.store-brand {
  justify-self: start;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.store-nav {
  display: flex;
  align-items: center;
  gap: 48px;
  justify-self: center;
}

.store-nav a,
.store-mobile-nav a {
  color: #fff;
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.store-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 16px;
}

.store-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #fff;
}

.store-search svg {
  width: 21px;
  height: 21px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  background: transparent;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.store-mobile-nav {
  display: none;
}

.hero-section {
  padding-top: 0;
}

.hero-panel {
  min-height: 1010px;
  border-radius: 0 0 34px 34px;
  background:
    linear-gradient(180deg, rgba(31, 49, 56, 0.24) 0%, rgba(31, 49, 56, 0.12) 14%, rgba(31, 49, 56, 0) 28%),
    url("../img/formfokus-hero-chairs.png") center bottom / cover no-repeat;
  box-shadow: var(--shadow);
}

.hero-copy {
  max-width: 1080px;
  margin: 0 auto;
  padding: 270px 24px 0;
  text-align: center;
  color: #fff;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(4rem, 7vw, 8.1rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.95;
}

.hero-copy p {
  margin: 28px 0 0;
  font-size: clamp(1.1rem, 1.6vw, 1.6rem);
  font-weight: 500;
}

.hero-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 34px;
  border-radius: 4px;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-button {
  margin-top: 34px;
  border: 2px solid var(--white-line);
  color: #fff;
}

.collections-section,
.editorial-section,
.products-section,
.newsletter-section {
  padding: 72px 0 0;
}

.section-intro--center {
  text-align: center;
}

.section-intro h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 16px;
  font-size: clamp(1.8rem, 2.1vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.section-intro h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 56px;
  height: 2px;
  transform: translateX(-50%);
  background: rgba(112, 144, 154, 0.56);
}

.collections-grid,
.products-grid,
.footer-links {
  display: grid;
}

.collections-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}

.collection-card,
.product-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--page-surface);
  box-shadow: 0 18px 44px rgba(36, 56, 64, 0.08);
}

.collection-card img {
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
}

.collection-card__body {
  padding: 22px 22px 24px;
}

.collection-card__body h3,
.product-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.collection-card__body p,
.product-card p,
.editorial-copy p,
.footer-brand p,
.footer-links p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.collection-card__body a {
  display: inline-block;
  margin-top: 18px;
  color: #567584;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.editorial-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 42px;
}

.section-label {
  display: inline-block;
  margin-bottom: 18px;
  color: #6a848c;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.editorial-copy h2,
.newsletter-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1.04;
}

.editorial-copy > p {
  max-width: 560px;
  font-size: 1.02rem;
}

.editorial-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0 28px;
}

.editorial-values article {
  padding: 18px 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(102, 119, 125, 0.14);
}

.editorial-values strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.98rem;
  font-weight: 800;
}

.editorial-values span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.secondary-button {
  border: 1px solid rgba(86, 117, 132, 0.46);
  color: #567584;
}

.editorial-media img {
  min-height: 620px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.products-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.product-card {
  padding: 14px 14px 18px;
}

.product-card img {
  aspect-ratio: 1 / 1.06;
  object-fit: cover;
  border-radius: 14px;
}

.product-card h3 {
  margin-top: 16px;
  font-size: 0.98rem;
}

.product-card p {
  margin-top: 4px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.newsletter-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 32px;
  margin-top: 72px;
  padding: 36px 42px;
  border-radius: 0;
  background: linear-gradient(135deg, #8ba2ad 0%, #b1c2cb 100%);
  color: #fff;
}

.newsletter-copy .section-label,
.newsletter-copy h2 {
  color: #fff;
}

.newsletter-copy h2 {
  max-width: 560px;
  margin-bottom: 0;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.newsletter-form input {
  min-height: 58px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
}

.newsletter-form button {
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  background: rgba(95, 126, 138, 0.82);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.store-footer {
  padding: 52px 38px 26px;
  background: var(--footer-deep);
  color: #fff;
}

.footer-brand {
  margin-bottom: 32px;
}

.footer-brand a {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.footer-brand p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-links {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.footer-links h3 {
  margin: 0 0 16px;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.footer-links a,
.footer-links p {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
}

.footer-note {
  margin: 34px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.subpage-shell {
  min-height: 100vh;
  background: #fff;
  color: var(--text);
}

.container {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.subpage-header,
.subpage-two-col,
.portfolio-grid,
.contact-strip {
  display: flex;
}

.subpage-header {
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.brand.line-brand,
.brand-copy {
  display: flex;
}

.brand.line-brand {
  align-items: center;
}

.brand-copy {
  flex-direction: column;
  gap: 4px;
}

.brand-copy strong {
  font-size: 1.3rem;
  font-weight: 700;
}

.brand-copy small,
.subpage-copy p,
.portfolio-card p,
.contact-strip p,
.subpage-hero p,
.back-link {
  color: #666;
}

.back-link {
  font-weight: 600;
}

.subpage-hero,
.subpage-section {
  padding: 54px 0;
}

.section-label,
.section-kicker {
  text-transform: uppercase;
}

.subpage-hero h1,
.subpage-title {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.subpage-hero p,
.subpage-copy p,
.portfolio-card p,
.contact-strip p {
  font-size: 1.02rem;
  line-height: 1.7;
}

.subpage-two-col {
  gap: 56px;
}

.subpage-two-col > * {
  flex: 1 1 0;
}

.portfolio-grid {
  flex-wrap: wrap;
  gap: 22px;
}

.portfolio-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(18, 18, 18, 0.06);
}

.portfolio-card img {
  height: 300px;
  object-fit: cover;
}

.portfolio-card div {
  padding: 18px 18px 22px;
}

.portfolio-card h3 {
  margin: 0 0 8px;
  font-size: 1.3rem;
}

.contact-strip {
  gap: 18px;
  flex-wrap: wrap;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid rgba(15, 15, 15, 0.18);
  border-radius: 999px;
  background: #fff;
  font-weight: 600;
}

@media (max-width: 1240px) {
  .store-header {
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    padding-inline: 24px;
  }

  .store-nav {
    gap: 28px;
  }

  .hero-panel {
    min-height: 860px;
  }

  .hero-copy {
    padding-top: 230px;
  }

  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .store-page,
  .store-header {
    width: min(100%, calc(100% - 24px));
  }

  .store-header {
    top: 12px;
    min-height: 74px;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .store-nav,
  .store-search {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .store-mobile-nav.is-open {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px 20px 22px;
    border-radius: 18px;
    background: rgba(61, 81, 87, 0.94);
  }

  .hero-panel {
    min-height: 720px;
    background-position: center bottom;
  }

  .hero-copy {
    padding-top: 214px;
  }

  .collections-grid,
  .editorial-section,
  .newsletter-section,
  .footer-links {
    grid-template-columns: 1fr;
  }

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

  .editorial-media img {
    min-height: 420px;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .subpage-two-col {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .store-page,
  .store-header {
    width: min(100%, calc(100% - 14px));
  }

  .store-page {
    padding-top: 7px;
  }

  .store-header {
    top: 7px;
    min-height: 66px;
    padding-inline: 16px;
  }

  .store-brand {
    font-size: 0.96rem;
  }

  .hero-panel {
    min-height: 600px;
    border-radius: 0 0 24px 24px;
  }

  .hero-copy {
    padding-top: 184px;
  }

  .hero-copy h1 {
    font-size: 2.5rem;
    line-height: 1;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .collections-section,
  .editorial-section,
  .products-section,
  .newsletter-section {
    padding-top: 52px;
  }

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

  .newsletter-section,
  .store-footer {
    padding-inline: 18px;
  }

  .footer-brand a {
    font-size: 1.6rem;
  }

  .portfolio-card {
    min-width: 100%;
  }
}
