/* ============================================================
   LIM INCORPORATED – style.css
   Modern & Clean | Inter Font | Navy + Green Palette
   ============================================================ */

/* ── Custom Properties ───────────────────────────────────── */
:root {
  --color-primary: #1C2B3A;
  --color-accent: #2ECC71;
  --color-accent-dark: #27AE60;
  --color-bg: #F8FAF9;
  --color-bg-alt: #FFFFFF;
  --color-text: #333333;
  --color-text-light: #5F6B7A;
  --color-text-muted: #9AA3AE;
  --color-border: #E2E8E4;
  --color-white: #FFFFFF;

  --font-family: 'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 2px 8px rgba(28, 43, 58, 0.07);
  --shadow-md: 0 8px 24px rgba(28, 43, 58, 0.11);
  --shadow-lg: 0 16px 48px rgba(28, 43, 58, 0.15);

  --transition: 0.25s ease;

  --container-max: 1200px;
  --container-px: 1.5rem;
  --navbar-height: 72px;

  --section-py: 5rem;
}

/* ── Reset & Base ────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg-alt);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── Layout Utilities ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

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

.section--alt {
  background: var(--color-bg);
}

/* ── Typography ──────────────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.875rem;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(46, 204, 113, 0.3);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-white);
}

.btn--full {
  width: 100%;
}

/* ── Navbar ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-height);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.navbar--solid {
  background: var(--color-primary) !important;
  box-shadow: var(--shadow-md) !important;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__logo {
  display: flex;
  align-items: center;
}

.navbar__logo-img {
  height: 46px;
  width: 46px;
  display: block;
  object-fit: contain;
}

.footer__logo-img {
  height: 42px;
  width: 42px;
  display: block;
  object-fit: contain;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--color-white);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  transform: scaleX(1);
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  z-index: 1010;
}

.navbar__hamburger span {
  display: block;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--color-primary);
  background-image: url(../assets/images/hero-banner.jpg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(28, 43, 58, 0.93) 0%,
      rgba(28, 43, 58, 0.72) 55%,
      rgba(40, 120, 80, 0.18) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-top: var(--navbar-height);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.375rem;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--color-accent);
  flex-shrink: 0;
}

.hero__title {
  font-size: clamp(2.5rem, 6.5vw, 4.375rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--color-white);
  margin-bottom: 1.375rem;
  letter-spacing: -0.01em;
}

.hero__sub {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2.5rem;
  max-width: 530px;
  line-height: 1.7;
}

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

.hero__scroll-hint {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero__scroll-hint span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  position: relative;
}

.hero__scroll-hint span::after {
  content: '';
  display: block;
  width: 4px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 2px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollHint 2.2s ease-in-out infinite;
}

@keyframes scrollHint {

  0%,
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 0.2;
    transform: translateX(-50%) translateY(11px);
  }
}

/* ── About ───────────────────────────────────────────────── */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: center;
}

.about__image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #1C2B3A 0%, #2d6a4f 60%, #2ECC71 100%);
  box-shadow: var(--shadow-lg);
}

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

.about__content p {
  color: var(--color-text-light);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
  line-height: 1.75;
}

.about__values {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
}

.about__values li {
  display: flex;
  gap: 1.125rem;
  align-items: flex-start;
}

.value-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.about__values strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.2rem;
}

.about__values p {
  margin: 0;
  font-size: 0.875rem;
}

/* ── Products ────────────────────────────────────────────── */
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.product-card__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.25rem;
}

.product-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.product-card p {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.65;
}

/* ── Promotions ──────────────────────────────────────────── */
.promos__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.promo-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.promo-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: linear-gradient(135deg, #1C2B3A 0%, #2d6a4f 100%);
}

.promo-card--featured .promo-card__img {
  aspect-ratio: 4 / 3;
}

.promo-card__body {
  padding: 1.5rem;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(231, 76, 60, 0.1);
  color: #C0392B;
  margin-bottom: 0.75rem;
}

.promo-badge--green {
  background: rgba(46, 204, 113, 0.12);
  color: var(--color-accent-dark);
}

.promo-badge--dark {
  background: rgba(28, 43, 58, 0.09);
  color: var(--color-primary);
}

.promo-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.promo-card p {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 0.875rem;
  line-height: 1.65;
}

.promo-terms {
  font-size: 0.76rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* ── Gallery ─────────────────────────────────────────────── */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(145deg, #1C2B3A 0%, #2d5a3d 100%);
  cursor: pointer;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem 0.9rem;
  background: linear-gradient(to top, rgba(28, 43, 58, 0.88) 0%, transparent 100%);
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery__item:hover .gallery__caption {
  transform: translateY(0);
}

/* ── Hours & Location ────────────────────────────────────── */
.hours__inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4.5rem;
  align-items: start;
}

.hours__info .section-title {
  margin-bottom: 0.875rem;
}

.hours__info>p {
  color: var(--color-text-light);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.hours__address,
.hours__phone {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--color-text);
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
}

.hours__address svg,
.hours__phone svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.hours__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.75rem;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.hours__table th {
  text-align: left;
  padding: 0.7rem 1.125rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 700;
}

.hours__table td {
  padding: 0.65rem 1.125rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  background: var(--color-bg-alt);
}

.hours__table tr:nth-child(even) td {
  background: var(--color-bg);
}

.hours__table tr:last-child td {
  border-bottom: none;
}

.hours__map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 490px;
  box-shadow: var(--shadow-lg);
  background: var(--color-border);
}

.hours__map iframe {
  display: block;
}

/* ── Contact ─────────────────────────────────────────────── */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 5rem;
  align-items: start;
}

.contact__info .section-title {
  margin-bottom: 0.875rem;
}

.contact__info>p {
  color: var(--color-text-light);
  margin-bottom: 2rem;
  font-size: 0.9375rem;
  line-height: 1.75;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
}

.contact__details li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.9375rem;
  color: var(--color-text);
  line-height: 1.6;
}

.contact__details svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__form-wrap {
  background: var(--color-bg-alt);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--color-border);
}

.form-group {
  margin-bottom: 1.375rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.45rem;
}

.form-group label span {
  color: var(--color-accent);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8125rem 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.14);
}

.form-group input.error,
.form-group textarea.error {
  border-color: #E74C3C;
}

.field-error {
  display: block;
  font-size: 0.78rem;
  color: #C0392B;
  margin-top: 0.35rem;
  min-height: 1.1em;
}

.form-success {
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: var(--color-accent-dark);
  font-weight: 600;
}

.form-success.visible {
  padding: 1rem 1.25rem;
  background: rgba(46, 204, 113, 0.1);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(46, 204, 113, 0.28);
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.72);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 4rem;
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.footer__brand p {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.75;
  max-width: 280px;
}

.footer__links h4,
.footer__contact h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__links li a {
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer__links li a:hover {
  color: var(--color-accent);
}

.footer__contact p {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  line-height: 1.65;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
}

.footer__bottom p {
  font-size: 0.83rem;
}

.footer__bottom ul {
  display: flex;
  gap: 1.5rem;
}

.footer__bottom ul a {
  font-size: 0.83rem;
  transition: color var(--transition);
}

.footer__bottom ul a:hover {
  color: var(--color-accent);
}

/* ── Animations ──────────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* ── Broken image fallback ───────────────────────────────── */
img.img-hide {
  visibility: hidden;
}

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */

.page-hero {
  position: relative;
  padding: 8rem 0 4.5rem;
  background-color: var(--color-primary);
  background-image: url(../assets/images/privacy-banner.jpg);
  background-size: cover;
  background-position: center top;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 43, 58, 0.88);
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.875rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.page-hero__meta {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Policy layout ─── */
.policy-content {
  padding: 5rem 0 6rem;
}

.policy-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 4.5rem;
  align-items: start;
}

/* Table of Contents ─── */
.policy-toc {
  position: sticky;
  top: calc(var(--navbar-height) + 2rem);
}

.policy-toc h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-accent);
}

.policy-toc ol {
  list-style: none;
  counter-reset: toc-counter;
}

.policy-toc ol li {
  counter-increment: toc-counter;
  margin-bottom: 0.5rem;
}

.policy-toc ol li::before {
  content: counter(toc-counter) ". ";
  color: var(--color-accent);
  font-size: 0.78rem;
  font-weight: 700;
}

.policy-toc a {
  font-size: 0.83rem;
  color: var(--color-text-light);
  transition: color var(--transition);
  line-height: 1.5;
}

.policy-toc a:hover {
  color: var(--color-primary);
}

/* Policy body ─── */
.policy-body {
  max-width: 780px;
}

.policy-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-border);
}

.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-section h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
  scroll-margin-top: calc(var(--navbar-height) + 1.5rem);
}

.policy-section p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  line-height: 1.78;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section ul,
.policy-section ol {
  margin: 0.75rem 0 1.125rem 1.625rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.policy-section li {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  line-height: 1.68;
  list-style: disc;
}

.policy-section ol li {
  list-style: decimal;
}

.policy-section strong {
  color: var(--color-text);
  font-weight: 600;
}

.policy-section a {
  color: var(--color-accent-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.policy-section a:hover {
  color: var(--color-accent);
}

.policy-highlight {
  background: rgba(46, 204, 113, 0.08);
  border-left: 4px solid var(--color-accent);
  padding: 1.125rem 1.375rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.25rem 0;
}

.policy-highlight p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text);
  font-weight: 500;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* 1024px ─── */
@media (max-width: 1024px) {
  :root {
    --section-py: 4.5rem;
  }

  .about__inner {
    gap: 3rem;
  }

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

  .promo-card--featured {
    grid-column: span 2;
  }

  .hours__inner {
    gap: 2.5rem;
  }

  .contact__inner {
    gap: 3rem;
  }

  .policy-layout {
    grid-template-columns: 210px 1fr;
    gap: 3rem;
  }
}

/* 768px ─── */
@media (max-width: 768px) {
  :root {
    --navbar-height: 64px;
    --section-py: 3.5rem;
  }

  /* Mobile nav */
  .navbar__hamburger {
    display: flex;
  }

  .navbar__links {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    background: var(--color-primary);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    box-shadow: var(--shadow-md);
    z-index: 999;
  }

  .navbar__links.open {
    max-height: 520px;
  }

  .navbar__links li {
    width: 100%;
  }

  .navbar__links a {
    display: block;
    padding: 0.9rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.9375rem;
  }

  .navbar__links a::after {
    display: none;
  }

  /* Hero */
  .hero__title {
    font-size: clamp(2.125rem, 9vw, 3rem);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* About */
  .about__inner {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .about__image-wrap {
    order: -1;
  }

  /* Products */
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Promos */
  .promos__grid {
    grid-template-columns: 1fr;
  }

  .promo-card--featured {
    grid-column: span 1;
  }

  /* Gallery */
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery__item--wide {
    grid-column: span 2;
  }

  /* Hours */
  .hours__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hours__map {
    height: 320px;
  }

  /* Contact */
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact__form-wrap {
    padding: 1.875rem;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    padding-top: 3rem;
  }

  .footer__bottom-inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  /* Policy */
  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-toc {
    position: static;
    background: var(--color-bg);
    padding: 1.5rem 1.75rem;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--color-border);
  }
}

/* 520px ─── */
@media (max-width: 520px) {
  .products__grid {
    grid-template-columns: 1fr;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery__item--wide {
    grid-column: span 1;
  }

  .contact__form-wrap {
    padding: 1.5rem;
  }
}