:root {
  --orange: #e85d04;
  --orange-light: #f48c06;
  --navy: #1a1f36;
  --navy-soft: #2d3250;
  --cream: #faf8f5;
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --shadow: 0 4px 24px rgba(26, 31, 54, 0.08);
  --shadow-lg: 0 12px 40px rgba(26, 31, 54, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --font: "DM Sans", system-ui, sans-serif;
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.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;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
}

.logo-icon {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 800;
}

.logo span {
  color: var(--orange);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-list a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--transition);
}

.nav-list a:hover {
  color: var(--orange);
}

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  transition: background var(--transition) !important;
}

.nav-cta:hover {
  background: var(--orange) !important;
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hero */
.hero {
  padding: 4.5rem 0 5rem;
  background: linear-gradient(160deg, var(--white) 0%, var(--cream) 55%, #fff3e6 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 1rem;
}

.hero-copy h1 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--navy);
}

.lead {
  font-size: 1.125rem;
  color: var(--gray-700);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-light);
  border-color: var(--orange-light);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-item strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.trust-item span {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--white);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.flag-stripes {
  display: flex;
  flex-direction: column;
  width: 18px;
  height: 12px;
  border-radius: 2px;
  overflow: hidden;
}

.flag-stripes span:nth-child(1) { background: #ae1c28; height: 33.33%; }
.flag-stripes span:nth-child(2) { background: #fff; height: 33.33%; }
.flag-stripes span:nth-child(3) { background: #21468b; height: 33.33%; }

/* Sections */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--gray-500);
  font-size: 1.05rem;
}

/* Categories */
.categories {
  background: var(--white);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.category-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.category-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.category-card-body {
  padding: 1.25rem;
}

.category-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.category-card-body p {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* Products */
.products {
  background: var(--cream);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.product-card:hover {
  transform: translateY(-3px);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-info {
  padding: 1.15rem;
}

.product-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange);
  margin-bottom: 0.4rem;
}

.product-info h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.75rem;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
}

.badge {
  font-size: 0.75rem;
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-grid img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.feature-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.feature-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: rgba(232, 93, 4, 0.12);
  color: var(--orange);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.feature-list strong {
  display: block;
  margin-bottom: 0.15rem;
}

.feature-list span {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* Testimonials */
.testimonials {
  background: var(--navy);
  color: var(--white);
}

.testimonials .section-header h2 {
  color: var(--white);
}

.testimonials .section-header p {
  color: rgba(255, 255, 255, 0.65);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--navy-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.stars {
  color: var(--orange-light);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.review-card blockquote {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

.reviewer {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

.reviewer strong {
  display: block;
  color: var(--white);
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  text-align: center;
  padding: 3.5rem 0;
}

.cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.cta-band p {
  opacity: 0.92;
  margin-bottom: 1.5rem;
  max-width: 520px;
  margin-inline: auto;
}

.cta-band .btn {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}

.cta-band .btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Footer / Contact */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.location-list {
  display: grid;
  gap: 1.25rem;
}

.location-item strong {
  display: block;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.location-item p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.location-item a {
  color: var(--orange-light);
  font-size: 0.875rem;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.contact-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.75);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--orange);
}

.contact-form select option {
  background: var(--navy);
  color: var(--white);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.form-success {
  display: none;
  padding: 0.85rem;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  border-radius: 8px;
  color: #86efac;
  font-size: 0.9rem;
}

.form-success.visible {
  display: block;
}

.map-section {
  padding: 2.5rem 0;
}

.map-section h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Responsive */
@media (max-width: 1024px) {
  .category-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-list {
    position: fixed;
    inset: 0 0 auto 0;
    top: 65px;
    flex-direction: column;
    background: var(--white);
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--gray-200);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .nav-list.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero-grid,
  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-visual {
    order: -1;
  }

  .hero-badge {
    left: 0.5rem;
    bottom: -0.5rem;
  }

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

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