:root {
  --color-black: #0f0f0f;
  --color-white: #ffffff;
  --color-accent: #ff6a00;
  --color-soft: #f5f5f5;
  --color-text: #404040;
  --color-border: rgba(15, 15, 15, 0.08);
  --color-card: rgba(255, 255, 255, 0.84);
  --shadow-lg: 0 24px 60px rgba(15, 15, 15, 0.12);
  --shadow-md: 0 14px 35px rgba(15, 15, 15, 0.1);
  --shadow-soft: 0 16px 32px rgba(15, 15, 15, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1120px, calc(100% - 2rem));
  --section-space: clamp(3.5rem, 7vw, 5.5rem);
  --card-padding: clamp(1.15rem, 2vw, 1.5rem);
  --card-padding-lg: clamp(1.4rem, 3vw, 2rem);
  --ease-smooth: 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--color-black);
  background:
    radial-gradient(circle at top left, rgba(255, 106, 0, 0.08), transparent 28%),
    linear-gradient(180deg, #fffdfb 0%, var(--color-soft) 100%);
}

main {
  overflow: clip;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: var(--section-space) 0;
}

.section-soft {
  background: rgba(255, 255, 255, 0.7);
  border-block: 1px solid rgba(15, 15, 15, 0.04);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

p {
  margin: 0;
  color: var(--color-text);
  line-height: 1.7;
}

.section-text {
  margin-top: 1.1rem;
  max-width: 56ch;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(245, 245, 245, 0.8);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 15, 15, 0.06);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand span {
  color: var(--color-accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  color: rgba(15, 15, 15, 0.72);
  font-weight: 600;
  transition: color var(--ease-smooth), transform var(--ease-smooth);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--color-black);
  transform: translateY(-1px);
}

.nav-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--color-black);
  color: var(--color-white);
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  width: 48px;
  height: 48px;
  padding: 0.7rem;
  border: 0;
  border-radius: 14px;
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-black);
}

.hero {
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.5rem, 6vw, 4rem);
  overflow: hidden;
}

.hero-grid,
.about-grid,
.contact-layout,
.product-layout,
.page-hero-inner,
.cta-banner,
.section-heading,
.footer-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.hero-grid {
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 38rem;
  margin-top: 1.5rem;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  transition: transform var(--ease-smooth), box-shadow var(--ease-smooth), border-color var(--ease-smooth), background var(--ease-smooth), color var(--ease-smooth);
}

.button:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--shadow-md);
}

.button-primary {
  background: var(--color-black);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.button-secondary {
  background: var(--color-white);
  border-color: rgba(15, 15, 15, 0.12);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}

.hero-stats article,
.about-card article,
.contact-card,
.contact-form,
.product-details,
.product-image-wrap,
.empty-state {
  background: var(--color-card);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg);
}

.hero-stats article {
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-md);
}

.hero-stats strong {
  display: block;
  font-size: 1.15rem;
  font-family: "Poppins", sans-serif;
}

.hero-stats span {
  color: var(--color-text);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  min-height: 580px;
}

.hero-accent {
  position: absolute;
  top: -42px;
  right: -20px;
  width: min(260px, 44vw);
  opacity: 0.82;
  animation: drift 8s ease-in-out infinite;
}

.hero-card {
  position: absolute;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-card-main {
  inset: 1.75rem 2rem 0 1.5rem;
  animation: float-card 7s ease-in-out infinite;
}

.hero-card-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-info {
  right: 1.25rem;
  bottom: 1.25rem;
  width: min(320px, calc(100% - 3rem));
  padding: 1.8rem 1.65rem;
  border-radius: 28px;
  background: rgba(15, 15, 15, 0.92);
  color: var(--color-white);
  animation: float-card-secondary 6.5s ease-in-out infinite;
}

.hero-card-info h2 {
  margin-top: 0.85rem;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-card-info p {
  margin-top: 0.95rem;
  max-width: 22ch;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
}

.pill {
  display: inline-flex;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.14);
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 700;
}

.section-heading,
.cta-banner,
.footer-grid,
.about-grid,
.contact-layout,
.product-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.section-heading {
  align-items: end;
  margin-bottom: 2.4rem;
}

.section-heading .text-link {
  justify-self: end;
  font-weight: 700;
  color: var(--color-black);
}

.text-link i {
  margin-left: 0.45rem;
  transition: transform 180ms ease;
}

.text-link:hover i {
  transform: translateX(4px);
}

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

.product-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--ease-smooth), box-shadow var(--ease-smooth);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card-image {
  aspect-ratio: 4 / 4.2;
  overflow: hidden;
}

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

.product-card:hover .product-card-image img {
  transform: scale(1.06);
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.8rem;
  padding: var(--card-padding-lg);
}

.product-category {
  display: inline-flex;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 106, 0, 0.1);
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: capitalize;
}

.product-card h3 {
  margin-top: 0;
}

.product-card p {
  margin-top: 0;
  font-size: 0.95rem;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 0.8rem;
}

.price {
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-black);
}

.small-button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: var(--color-black);
  color: var(--color-white);
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  transition: transform var(--ease-smooth), box-shadow var(--ease-smooth), background var(--ease-smooth);
}

.small-button:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.about-card {
  display: grid;
  gap: 1.15rem;
}

.about-card article {
  padding: var(--card-padding-lg);
  border-radius: var(--radius-lg);
}

.about-card i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 106, 0, 0.1);
  color: var(--color-accent);
}

.about-card h3 {
  margin-top: 1rem;
}

.about-card p {
  margin-top: 0.6rem;
}

.cta-banner {
  align-items: center;
  padding: clamp(1.7rem, 4vw, 2.4rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.96), rgba(46, 46, 46, 0.92));
  box-shadow: var(--shadow-lg);
}

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

.page-hero {
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.2rem;
}

.page-hero-compact {
  padding-bottom: 0;
}

.page-hero-inner {
  grid-template-columns: 1fr;
  max-width: 760px;
}

.page-hero-inner p:last-child {
  margin-top: 1rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.4rem;
}

.filter-btn {
  padding: 0.85rem 1.1rem;
  border: 1px solid rgba(15, 15, 15, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  transition: background var(--ease-smooth), color var(--ease-smooth), transform var(--ease-smooth), box-shadow var(--ease-smooth);
}

.filter-btn:hover,
.filter-btn.is-active {
  background: var(--color-black);
  color: var(--color-white);
  transform: translateY(-1px) scale(1.03);
  box-shadow: var(--shadow-md);
}

.product-image-wrap {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.product-details {
  padding: clamp(1.6rem, 4vw, 2.2rem);
  border-radius: var(--radius-xl);
}

.product-description {
  margin-top: 1rem;
}

.product-highlights {
  display: grid;
  gap: 0.9rem;
  margin: 1.6rem 0 2.2rem;
}

.product-highlights article {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--color-border);
}

.product-highlights i {
  color: var(--color-accent);
}

.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-card,
.contact-form {
  padding: clamp(1.6rem, 4vw, 2.2rem);
  border-radius: var(--radius-xl);
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--color-border);
  font-weight: 600;
  transition: transform var(--ease-smooth), box-shadow var(--ease-smooth), border-color var(--ease-smooth);
}

.contact-list a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(255, 106, 0, 0.18);
}

.contact-list i,
.social-links a:hover {
  color: var(--color-accent);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  transition: transform var(--ease-smooth), color var(--ease-smooth), background var(--ease-smooth), box-shadow var(--ease-smooth);
}

.social-links a:hover {
  transform: translateY(-2px) scale(1.05);
  background: rgba(255, 106, 0, 0.14);
  box-shadow: var(--shadow-soft);
}

.social-links-contact {
  margin-top: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  font-weight: 600;
  color: var(--color-black);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1rem;
  border: 1px solid rgba(15, 15, 15, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  resize: vertical;
  transition: border-color var(--ease-smooth), box-shadow var(--ease-smooth), transform var(--ease-smooth);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 106, 0, 0.45);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.12);
  transform: translateY(-1px);
}

.contact-form > label {
  margin-top: 1.1rem;
}

.contact-form .button {
  margin-top: 1.2rem;
}

.form-status {
  min-height: 1.5rem;
  margin-top: 0.8rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.site-footer {
  margin-top: 2rem;
  padding: 2.8rem 0 1rem;
  background: var(--color-black);
  color: rgba(255, 255, 255, 0.8);
}

.brand-footer,
.site-footer .footer-links a,
.site-footer .footer-bottom p {
  color: rgba(255, 255, 255, 0.88);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.footer-grid {
  align-items: center;
}

.footer-bottom {
  padding-top: 1.4rem;
  margin-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.empty-state {
  padding: 2.2rem;
  border-radius: var(--radius-xl);
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.hero-copy > * {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-text-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-copy > *:nth-child(1),
.page-hero-inner > *:nth-child(1) {
  animation-delay: 0.08s;
}

.hero-copy > *:nth-child(2),
.page-hero-inner > *:nth-child(2) {
  animation-delay: 0.16s;
}

.hero-copy > *:nth-child(3),
.page-hero-inner > *:nth-child(3) {
  animation-delay: 0.24s;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 0.32s;
}

.hero-copy > *:nth-child(5) {
  animation-delay: 0.4s;
}

.page-hero-inner > * {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-text-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes hero-text-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(14px);
  }
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes float-card-secondary {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .contact-layout,
  .product-layout,
  .cta-banner,
  .footer-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 560px;
  }

  .section-heading .text-link {
    justify-self: start;
  }

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

@media (max-width: 720px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-lg);
  }

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

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

  .nav-icon {
    display: none;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-stats,
  .product-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-card-main {
    inset: 1.5rem 0 0 0;
  }

  .hero-card-info {
    right: 0.8rem;
    bottom: 0.8rem;
    width: min(260px, calc(100% - 1.6rem));
    padding: 1.3rem 1.15rem;
  }

  .hero-card-info h2 {
    font-size: 2rem;
  }
  .product-details,
  .contact-card,
  .contact-form {
    padding: 1.4rem;
  }

  .product-image-wrap img {
    min-height: 320px;
  }

  .site-footer .footer-grid {
    text-align: center;
    justify-items: center;
  }

  .site-footer .social-links {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .hero-copy > *,
  .page-hero-inner > * {
    opacity: 1 !important;
    transform: none !important;
  }
}
