:root {
  font-family: Inter, sans-serif;
  font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */
  --color-ink: #151515;
  --color-muted: #3d3d3d;
  --color-bg: #ffffff;
  --color-brand: #8b2f3b;
  --color-brand-dark: #7a2532;
  --color-soft-1: #f9ecef;
  --color-soft-2: #f9eef0;
  --color-line: #ececec;
  --color-img-placeholder: #f2f2f2;
  --color-hero-text: #f5f5f5;

  --content-max: 1180px;
  --content-narrow: 720px;
  --content-medium: 980px;

  --section-padding: 120px 32px;
  --section-padding-mobile: 96px 20px;
  --section-padding-compact: 32px 32px;
  --section-padding-compact-mobile: 56px 16px;

  --radius-lg: 18px;
  --radius-xl: 20px;
  --radius-md: 10px;
  --radius-sm: 6px;
}
@supports (font-variation-settings: normal) {
  :root { font-family: InterVariable, sans-serif; }
}

html {
  scroll-padding-top: 90px;
}

/* Header */

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

body {
  margin: 0;
  color: var(--color-ink);
  font-family: inherit;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .js-enabled .reveal {
    transition: none;
    transform: none;
    opacity: 1;
  }

  .js-enabled .hero-content.is-visible .hero-text,
  .js-enabled .hero-content.is-visible .hero-btn,
  .js-enabled .boost-your-business-content.reveal.is-visible {
    animation: none;
  }
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(21, 21, 21, 0.08);
}

.nav-logo {
  display: block;
  width: 140px;
  height: auto;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-link,
.nav-button,
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.nav-link {
  color: inherit;
}

.nav-button {
  color: var(--color-ink);
  border: 1px solid var(--color-ink);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: transparent;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.nav-button:hover {
  background: var(--color-brand);
  color: var(--color-bg);
  border-color: transparent;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg);
  border-radius: var(--radius-lg);
  margin: 32px;
  padding: 96px 32px;
  color: var(--color-bg);
  min-height: 80vh;
}

@media (min-width: 1025px) {
  .hero {
    margin-bottom: 16px;
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../media/hero-warehouse.png");
  background-size: cover;
  background-position: center;
  filter: blur(2.5px);
  transform: scale(1.03);
}

.hero-content {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-text h1 {
  margin: 0 0 16px;
  font-size: 56px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero-text p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-hero-text);
  max-width: 520px;
}

.hero-btn {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-btn .btn {
  padding: 14px 26px;
  border-radius: var(--radius-md);
  background: var(--color-brand);
  color: var(--color-bg);
  box-shadow: 0 14px 28px rgba(139, 47, 59, 0.22);
  font-size: 17px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.hero-btn .btn:hover {
  background: var(--color-brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(139, 47, 59, 0.28);
}

.hero-btn .btn:focus-visible {
  outline: 2px solid var(--color-brand-dark);
  outline-offset: 3px;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.js-enabled .hero-content.is-visible .hero-text {
  animation: hero-rise 0.8s ease both;
}

.js-enabled .hero-content.is-visible .hero-btn {
  animation: hero-rise 0.8s ease 0.15s both;
}

@keyframes float-up {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.js-enabled .boost-your-business-content.reveal.is-visible {
  animation: float-up 0.8s ease both;
}

/* About Us */

/* Product Selection */

.product-selection {
  padding: var(--section-padding-compact);
  background: var(--color-bg);
}

.product-selection-header {
  max-width: var(--content-narrow);
  margin: 0 auto 48px;
  text-align: center;
}

.product-selection-header h3 {
  margin: 0 0 12px;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.product-selection-header p {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-muted);
}

.product-selection-content {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.featured-product {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-img-placeholder);
}

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

.product-text h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
}

.product-text p {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: #4a4a4a;
}

.product-selection-btn {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.product-selection-btn .btn {
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-ink);
  background: var(--color-bg);
  color: var(--color-ink);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.product-selection-btn .btn:hover {
  background: #f7f7f7;
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
}

.product-selection-btn .btn:focus-visible {
  outline: 2px solid var(--color-ink);
  outline-offset: 3px;
}

@media (max-width: 1024px) {
  .product-selection-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  nav {
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 20px;
  }

  .nav-logo {
    width: 120px;
  }

  .nav-link,
  .nav-button,
  .btn {
    font-size: 14px;
  }

  .hero {
    margin: 20px;
    padding: 72px 20px;
    min-height: 70vh;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .product-selection {
    padding: var(--section-padding-compact-mobile);
  }

  .product-selection-header h3 {
    font-size: 30px;
  }

  .product-selection-header p {
    font-size: 16px;
  }

  .product-selection-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-text h3 {
    font-size: 18px;
  }
}

.about-us {
  padding: var(--section-padding-compact);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.about-us-content {
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
}

.left-block {
  background: var(--color-soft-1);
  padding: 52px 48px;
  border-radius: var(--radius-xl);
  flex: 0 0 520px;
  position: relative;
  z-index: 2;
  margin-top: 24px;
}

.left-block h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.2;
}

.left-block h3::after {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  background: var(--color-brand);
  border-radius: 999px;
  margin-top: 12px;
}

.left-block p {
  margin: 16px 0 0;
  color: var(--color-muted);
  line-height: 1.6;
}

.right-block {
  flex: 1;
  margin-left: -64px;
  margin-top: -18px;
}

.right-block img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-xl);
}

@media (max-width: 900px) {
  .about-us-content {
    flex-direction: column;
    gap: 28px;
  }

  .left-block {
    flex: 1 1 auto;
    width: 100%;
    transform: none;
  }

  .right-block {
    margin-left: 0;
    transform: none;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .about-us {
    padding: var(--section-padding-compact-mobile);
  }

  .left-block {
    padding: 36px 28px;
  }
}

/* Worldwide Shipping */

.worldwide-shipping {
  padding: var(--section-padding-compact);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.shipping-content {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 56px;
}

.shipping-text {
  flex: 0 0 480px;
}

.shipping-text h3 {
  margin: 0 0 12px;
  font-size: 44px;
  line-height: 1.2;
}

.shipping-text p {
  margin: 16px 0 0;
  font-size: 21px;
  line-height: 1.7;
  color: var(--color-muted);
}

.shipping-img {
  flex: 1.4;
  display: flex;
  justify-content: flex-end;
}

.shipping-img img {
  width: 100%;
  max-width: 980px;
  height: auto;
}

@media (max-width: 900px) {
  .shipping-content {
    flex-direction: column;
    gap: 32px;
  }

  .shipping-text {
    flex: 1 1 auto;
  }
}

@media (max-width: 640px) {
  .worldwide-shipping {
    padding: var(--section-padding-compact-mobile);
  }

  .shipping-text h3 {
    font-size: 32px;
  }

  .shipping-text p {
    font-size: 18px;
  }
}

/* Boost Your Business */

.boost-your-business {
  padding: var(--section-padding);
  background: var(--color-soft-2);
  border-radius: 28px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.06);
  margin: 32px auto;
  max-width: 1280px;
}

.boost-your-business-content {
  max-width: var(--content-medium);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.boost-your-business-header {
  text-align: center;
  max-width: var(--content-narrow);
  margin: 0 auto;
}

.boost-your-business-header h3 {
  margin: 0 0 12px;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.boost-your-business-header p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-muted);
}

.boost-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 48px;
}

.boost-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.boost-feature-icon {
  flex: 0 0 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.boost-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.boost-feature-text h5 {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
}

.boost-feature-text p {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: #4a4a4a;
}

@media (max-width: 900px) {
  .boost-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .boost-your-business {
    padding: var(--section-padding-mobile);
    border-radius: 20px;
    margin: 20px;
  }

  .boost-your-business-header h3 {
    font-size: 30px;
  }
}

/* Contact Us */

.contact-us {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.contact-us-content {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: start;
}

.contact-us-info h3 {
  margin: 0 0 18px;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.contact-icon {
  width: 26px;
  height: 26px;
  margin-top: 2px;
  flex: 0 0 26px;
}

.contact-label {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
}

.contact-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-muted);
}

.contact-map {
  width: 100%;
  min-height: 360px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

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

@media (max-width: 640px) {
  .contact-us {
    padding: var(--section-padding-mobile);
  }

  .contact-us-info h3 {
    font-size: 32px;
  }
}

/* Footer */

footer {
  padding: 28px 32px 36px;
  background: var(--color-brand);
  border-top: 1px solid var(--color-line);
}

.footer-content {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 16px;
}

.footer-item {
  margin: 0;
  font-size: 14px;
  color: var(--color-bg);
}

.footer-item:nth-child(2) {
  text-align: center;
}

.footer-link {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--color-bg);
  font-weight: 600;
}

.footer-icon {
  filter: brightness(0) invert(1);
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.footer-link:hover .footer-icon {
  transform: translateY(-2px);
}

@media (max-width: 780px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-link {
    justify-self: center;
  }
}

@media (min-width: 1025px) {
  .left-block h3 {
    font-size: 32px;
  }

  .left-block p {
    font-size: 18px;
  }

  .product-selection-header h3 {
    font-size: 40px;
  }

  .product-selection-header p {
    font-size: 20px;
  }

  .product-text h3 {
    font-size: 22px;
  }

  .product-text p {
    font-size: 16px;
  }

  .product-image {
    aspect-ratio: 1 / 1;
  }

  .shipping-text {
    flex: 0 0 380px;
  }

  .shipping-text h3 {
    font-size: 52px;
  }

  .shipping-text p {
    font-size: 22px;
  }

  .shipping-img {
    flex: 2;
    justify-content: center;
    align-items: center;
    height: clamp(260px, 32vw, 420px);
  }

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

  .boost-your-business-header h3 {
    font-size: 40px;
  }

  .boost-your-business-header p {
    font-size: 18px;
  }

  .boost-feature-text h5 {
    font-size: 20px;
  }

  .boost-feature-text p {
    font-size: 16px;
  }

  .contact-us-info h3 {
    font-size: 44px;
  }

  .contact-label {
    font-size: 17px;
  }

  .contact-item p {
    font-size: 16px;
  }
}

/* About Us */

/* 404 */

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: var(--section-padding-mobile);
  background: var(--color-bg);
}

.not-found-card {
  text-align: center;
  max-width: 560px;
  padding: 48px 40px;
  border-radius: var(--radius-xl);
  background: var(--color-soft-1);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.not-found-code {
  margin: 0 0 12px;
  font-size: 64px;
  font-weight: 700;
  color: var(--color-brand);
}

.not-found-card h1 {
  margin: 0 0 12px;
  font-size: 28px;
}

.not-found-card p {
  margin: 0 0 24px;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.6;
}
