:root {
  --black: #111111;
  --charcoal: #1b1918;
  --ink: #2b2826;
  --muted: #706a65;
  --line: rgba(17, 17, 17, 0.1);
  --cream: #f8f2ea;
  --warm: #fffaf4;
  --white: #ffffff;
  --red: #e62121;
  --red-dark: #9f1115;
  --amber: #d99d47;
  --shadow: 0 20px 60px rgba(24, 18, 16, 0.12);
  --shadow-strong: 0 28px 72px rgba(90, 25, 20, 0.2);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(230, 33, 33, 0.09), transparent 28rem),
    linear-gradient(180deg, var(--warm) 0%, #ffffff 42%, #f8f4ee 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
}

.section-pad {
  padding: 96px 0;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 30;
  pointer-events: none;
}

.nav-shell {
  width: min(100% - 40px, var(--max-width));
  min-height: 68px;
  margin: 0 auto;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.84);
  box-shadow: 0 18px 48px rgba(26, 20, 18, 0.12);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  pointer-events: auto;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #fff6ef 0 9%, transparent 10%),
    radial-gradient(circle, #ff5b4f 0 28%, var(--red) 29% 55%, var(--red-dark) 56% 100%);
  box-shadow: 0 0 20px rgba(230, 33, 33, 0.5);
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  border-radius: 999px;
  color: #3c3835;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 10px 14px;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(230, 33, 33, 0.1);
  color: var(--red-dark);
}

.nav-links .store-link {
  background: var(--black);
  color: var(--white);
  padding-inline: 18px;
}

.nav-links .store-link:hover,
.nav-links .store-link:focus-visible {
  background: var(--red);
  color: var(--white);
  transform: translateY(-1px);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: var(--black);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 88vh;
  padding-top: 132px;
  padding-bottom: 64px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 28%, rgba(230, 33, 33, 0.16), transparent 26rem),
    linear-gradient(135deg, #fffaf4 0%, #f6eee4 48%, #1a1513 48%, #111111 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(230, 33, 33, 0.28) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(90deg, transparent 0%, black 52%, transparent 100%);
  opacity: 0.18;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -130px;
  top: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 33, 33, 0.42), rgba(230, 33, 33, 0) 68%);
  filter: blur(8px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.86fr);
  align-items: center;
  gap: 68px;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  color: var(--black);
  font-size: clamp(3.3rem, 6.1vw, 5.7rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 0.92;
}

.hero-subtitle {
  max-width: 610px;
  margin-bottom: 34px;
  color: #5a544f;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  min-height: 48px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(135deg, #ff493d 0%, var(--red) 48%, #8f1014 100%);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(230, 33, 33, 0.27);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 42px rgba(230, 33, 33, 0.38);
}

.btn-secondary {
  border: 1px solid rgba(17, 17, 17, 0.18);
  background: rgba(255, 255, 255, 0.58);
  color: var(--black);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(230, 33, 33, 0.38);
  background: var(--white);
}

.hero-visual {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-frame {
  width: min(100%, 510px);
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.35),
    0 0 80px rgba(230, 33, 33, 0.24);
  overflow: hidden;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(20, 18, 17, 0.72);
  color: var(--white);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 15px;
  font-size: 0.86rem;
  font-weight: 750;
}

.note-top {
  top: 78px;
  right: 0;
}

.note-bottom {
  bottom: 82px;
  left: -10px;
}

.note-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 18px rgba(230, 33, 33, 0.9);
}

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 54px;
  align-items: start;
}

.about-panel {
  min-height: 340px;
  border-radius: var(--radius);
  padding: 38px;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.72), rgba(17, 17, 17, 0.92)),
    radial-gradient(circle at 18% 18%, rgba(230, 33, 33, 0.54), transparent 20rem);
  color: var(--white);
  box-shadow: var(--shadow-strong);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.about-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.45;
}

.about-panel > * {
  position: relative;
  z-index: 1;
}

.about-panel .eyebrow {
  color: #ffb2aa;
}

.about-panel h2,
.section-heading h2,
.cta-card h2 {
  margin-bottom: 0;
  color: var(--black);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.about-panel h2 {
  color: var(--white);
}

.about-copy {
  color: #4f4945;
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.about-copy p {
  margin-bottom: 20px;
}

.section-heading {
  max-width: 770px;
  margin-bottom: 42px;
}

.highlights {
  background: linear-gradient(180deg, #fffaf4 0%, #f7f0e8 100%);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.highlight-card {
  min-height: 236px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 46px rgba(40, 26, 22, 0.08);
  padding: 24px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.highlight-card:hover {
  border-color: rgba(230, 33, 33, 0.24);
  box-shadow: 0 22px 58px rgba(86, 29, 24, 0.13);
  transform: translateY(-4px);
}

.highlight-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.9) 0 9%, transparent 10%),
    linear-gradient(135deg, var(--red), #881014);
  box-shadow: 0 12px 30px rgba(230, 33, 33, 0.24);
  display: grid;
  place-items: center;
}

.highlight-icon svg {
  width: 25px;
  height: 25px;
  stroke: var(--white);
  stroke-width: 1.8;
  fill: none;
}

.highlight-card h3,
.product-card h3 {
  margin-bottom: 10px;
  color: var(--black);
  font-size: 1.12rem;
  line-height: 1.25;
}

.highlight-card p,
.product-card p,
.cta-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.products {
  background: var(--white);
}

.products-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.6fr);
  align-items: end;
  gap: 34px;
}

.products-heading p:last-child {
  margin-bottom: 4px;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  border-color: rgba(230, 33, 33, 0.26);
  box-shadow: var(--shadow-strong);
  transform: translateY(-6px);
}

.product-image {
  aspect-ratio: 4 / 3;
  background: #ffffff;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 320ms ease;
}

.product-card:hover .product-image img,
.product-card:focus-visible .product-image img {
  transform: scale(1.02);
}

.product-body {
  padding: 24px;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
}

.product-body p {
  flex: 1;
}

.product-cta {
  color: var(--red-dark);
  display: inline-flex;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 850;
}

.product-cta::after {
  content: "";
  width: 18px;
  height: 18px;
  margin-left: 8px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 17 17 7M9 7h8v8' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 17 17 7M9 7h8v8' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.store-cta {
  background:
    radial-gradient(circle at 18% 20%, rgba(230, 33, 33, 0.34), transparent 22rem),
    linear-gradient(135deg, #181412 0%, #111111 58%, #2a1010 100%);
}

.cta-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    radial-gradient(circle at 74% 20%, rgba(230, 33, 33, 0.18), transparent 22rem);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  padding: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
}

.cta-card .eyebrow {
  color: #ffb2aa;
}

.cta-card h2,
.cta-card p {
  color: var(--white);
}

.cta-card p {
  max-width: 650px;
  margin-top: 16px;
  opacity: 0.76;
}

.site-footer {
  background: #0e0d0c;
  color: rgba(255, 255, 255, 0.72);
  padding: 58px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 34px;
}

.footer-logo {
  color: var(--white);
  margin-bottom: 14px;
}

.footer-brand p,
.footer-bottom {
  margin-bottom: 0;
}

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

.footer-column h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-column a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.94rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #ffb2aa;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 42px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.92rem;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-contact-item span {
  color: rgba(255, 255, 255, 0.52);
  font-weight: 700;
}

.page-main {
  padding-top: 126px;
  background:
    radial-gradient(circle at 12% 16%, rgba(230, 33, 33, 0.1), transparent 28rem),
    linear-gradient(180deg, var(--warm) 0%, #ffffff 46%, #f8f4ee 100%);
  min-height: 68vh;
}

.page-hero {
  padding: 74px 0 34px;
}

.page-hero .eyebrow {
  margin-bottom: 12px;
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.page-content {
  padding: 0 0 96px;
}

.page-card {
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 54px);
}

.page-card h2 {
  margin: 34px 0 12px;
  color: var(--black);
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.15;
}

.page-card h2:first-child {
  margin-top: 0;
}

.page-card p,
.page-card li {
  color: #4f4945;
  font-size: 1.02rem;
}

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

.page-card a:not(.btn) {
  color: var(--red-dark);
  font-weight: 800;
}

.page-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.support-actions {
  margin: 28px 0 6px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 980px) {
  .section-pad {
    padding: 78px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 130px;
    background:
      radial-gradient(circle at 50% 42%, rgba(230, 33, 33, 0.18), transparent 24rem),
      linear-gradient(180deg, #fffaf4 0%, #f6eee4 50%, #181412 50%, #111111 100%);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-visual {
    min-height: auto;
    padding-bottom: 10px;
  }

  .hero-image-frame {
    width: min(100%, 560px);
    aspect-ratio: 16 / 11;
  }

  .note-top {
    top: 24px;
    right: 12px;
  }

  .note-bottom {
    bottom: 32px;
    left: 12px;
  }

  .about-grid,
  .products-heading,
  .cta-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-panel {
    min-height: 270px;
  }

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

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .container,
  .nav-shell {
    width: min(100% - 28px, var(--max-width));
  }

  .site-header {
    top: 10px;
  }

  .nav-shell {
    min-height: 62px;
    padding: 9px 10px 9px 14px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    border: 1px solid rgba(17, 17, 17, 0.09);
    border-radius: var(--radius);
    background: rgba(255, 250, 244, 0.96);
    box-shadow: 0 22px 54px rgba(26, 20, 18, 0.16);
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    border-radius: var(--radius);
    padding: 13px 14px;
  }

  .hero {
    padding-top: 116px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions,
  .cta-card .btn {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .floating-note {
    position: static;
    margin-top: 12px;
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    display: block;
  }

  .hero-image-frame {
    aspect-ratio: 4 / 3;
  }

  .about-panel,
  .cta-card {
    padding: 28px;
  }

  .highlight-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .highlight-card {
    min-height: auto;
  }

  .site-footer {
    padding-bottom: 32px;
  }

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

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

  .page-main {
    padding-top: 104px;
  }

  .page-hero {
    padding-top: 54px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
