/* ============================================================
   A K Industries — Global Stylesheet
   Fully responsive: Mobile 320px → Tablet → Desktop → 4K
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── COLOR TOKENS ── */
:root {
  --bg:          #f5f6fa;
  --surface:     #ffffff;
  --card:        #ffffff;
  --card2:       #f0f2f8;
  --border:      #e0e4ef;

  --gold:        #b07d1a;
  --gold-light:  #c8952a;
  --gold-bg:     #fff8e8;
  --gold-border: #f0d080;

  --text:        #1a1e2e;
  --muted:       #6b7280;

  --blue:        #2563eb;
  --blue-bg:     #eff6ff;
  --blue-border: #bfdbfe;

  --green:       #16a34a;
  --green-bg:    #f0fdf4;

  --shadow-sm:   0 1px 4px rgba(0,0,0,0.05);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08);
  --shadow-gold: 0 2px 8px rgba(176,125,26,0.2);

  --radius-sm:   0.4rem;
  --radius-md:   0.7rem;
  --radius-lg:   1rem;

  /* Fluid spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 5rem;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-width: 320px;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--text); line-height: 1.2; }

.section-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
  display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 4vw, 2.3rem);
  font-weight: 700; color: var(--text); margin-bottom: 1rem;
}
.divider {
  height: 2px; width: 55px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 1.75rem;
}

/* ── LAYOUT ── */
.section {
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2rem);
  max-width: 1200px;
  margin: 0 auto;
}
.section--no-top { padding-top: 0; }

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  box-shadow: var(--shadow-sm);
}
.navbar__logo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: 700; color: var(--gold);
  text-decoration: none; white-space: nowrap;
}
.navbar__links {
  display: flex; gap: 0.15rem; list-style: none;
  align-items: center;
}
.navbar__links a {
  text-decoration: none; color: var(--muted);
  font-size: clamp(0.75rem, 1.5vw, 0.83rem);
  font-weight: 500;
  padding: 0.4rem clamp(0.4rem, 1vw, 0.75rem);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.navbar__links a:hover,
.navbar__links a.active { color: var(--gold); background: var(--gold-bg); }
.navbar__cta {
  background: var(--gold) !important;
  color: #fff !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
}
.navbar__cta:hover { background: var(--gold-light) !important; }

/* Hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 0.4rem; border-radius: var(--radius-sm);
}
.navbar__toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.navbar__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.open span:nth-child(2) { opacity: 0; }
.navbar__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu drawer */
.navbar__drawer {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 1rem;
  z-index: 99;
  flex-direction: column; gap: 0.25rem;
}
.navbar__drawer a {
  display: block; text-decoration: none;
  color: var(--text); font-size: 0.95rem; font-weight: 500;
  padding: 0.75rem 1rem; border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.navbar__drawer a:hover,
.navbar__drawer a.active { background: var(--gold-bg); color: var(--gold); }
.navbar__drawer a.drawer__cta {
  background: var(--gold); color: #fff;
  text-align: center; margin-top: 0.5rem; font-weight: 600;
}
.navbar__drawer.open { display: flex; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; gap: 0.4rem;
  font-size: clamp(0.8rem, 2vw, 0.875rem);
  font-weight: 600;
  padding: 0.7rem clamp(1rem, 3vw, 1.75rem);
  border-radius: var(--radius-sm);
  transition: all 0.2s; cursor: pointer; border: none;
  white-space: nowrap;
}
.btn--primary { background: var(--gold); color: #fff; box-shadow: var(--shadow-gold); }
.btn--primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn--outline { border: 1.5px solid var(--border); color: var(--text); background: var(--surface); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--blue { background: var(--blue); color: #fff; }
.btn--blue:hover { background: #1d4ed8; }
.btn--green { background: #25d366; color: #fff; }
.btn--green:hover { background: #1ea952; }
.btn--full { width: 100%; }

/* ── BADGES ── */
.badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  border-radius: var(--radius-sm);
  padding: 0.35rem 0.8rem; font-size: clamp(0.7rem, 1.5vw, 0.77rem); font-weight: 600;
}
.badge--gold  { background: var(--gold-bg);  border: 1px solid var(--gold-border); color: var(--gold); }
.badge--blue  { background: var(--blue-bg);  border: 1px solid var(--blue-border); color: var(--blue); }
.badge--green { background: var(--green-bg); border: 1px solid #bbf7d0;            color: var(--green); }

/* ── HERO (Homepage) ── */
.hero {
  background: linear-gradient(135deg, #fffbf0 0%, #fff8e8 40%, #f0f4ff 100%);
  border-bottom: 1px solid var(--border);
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1rem, 4vw, 2rem) clamp(2.5rem, 6vw, 4rem);
  text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: clamp(160px, 30vw, 320px); height: clamp(160px, 30vw, 320px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,149,42,0.12), transparent 70%);
  pointer-events: none;
}
.hero__badge {
  display: inline-block;
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  color: var(--gold); font-size: clamp(0.6rem, 1.5vw, 0.7rem); font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 2rem; margin-bottom: 1.2rem;
}
.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 5.5vw, 3.5rem);
  font-weight: 700; line-height: 1.18; color: var(--text);
  max-width: 720px; margin: 0 auto 1rem;
}
.hero__title span { color: var(--gold); }
.hero__sub {
  font-size: clamp(0.88rem, 2vw, 1rem); color: var(--muted);
  max-width: 540px; margin: 0 auto 1rem; font-weight: 400;
}
.hero__rating {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  border-radius: 2rem; padding: 0.35rem 0.9rem;
  font-size: clamp(0.75rem, 1.8vw, 0.82rem);
  color: var(--gold); margin-bottom: 1.75rem; font-weight: 500;
  flex-wrap: wrap; justify-content: center;
}
.hero__stars { color: #f59e0b; }
.hero__btns {
  display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #fffbf0, #fff8e8);
  border-bottom: 1px solid var(--border);
  padding: clamp(2.5rem, 6vw, 3.5rem) clamp(1rem, 4vw, 2rem) clamp(2rem, 5vw, 3rem);
  text-align: center;
}
.page-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 5vw, 2.8rem);
  font-weight: 700; color: var(--text); margin-bottom: 0.5rem;
}
.page-hero__title span { color: var(--gold); }
.page-hero__sub {
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  color: var(--muted); max-width: 500px; margin: 0 auto;
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1rem, 4vw, 2rem);
  box-shadow: var(--shadow-sm);
}
.stats-strip__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.5rem, 2vw, 1rem); text-align: center;
}
.stat-item__num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--gold); font-weight: 700;
}
.stat-item__lbl {
  font-size: clamp(0.68rem, 1.5vw, 0.78rem);
  color: var(--muted); margin-top: 0.2rem;
}

/* ── CARDS ── */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--gold-light); }

/* ── FACT CARD ── */
.fact-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: clamp(0.85rem, 2vw, 1.1rem);
  box-shadow: var(--shadow-sm);
}
.fact-card__label {
  font-size: 0.67rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.3rem; font-weight: 600;
}
.fact-card__value { font-size: clamp(0.82rem, 1.8vw, 0.88rem); color: var(--text); font-weight: 500; }
.fact-card__value ul { padding-left: 1rem; }
.fact-card__value li { color: var(--muted); font-size: 0.83rem; line-height: 1.7; }

/* ── PRODUCT CARD ── */
.product-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.product-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--gold-light); }
.product-card__img {
  width: 100%; height: clamp(120px, 20vw, 148px); overflow: hidden;
  background: #f8f9fb; display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.product-card__img img { width: 100%; height: 100%; object-fit: cover; }
.product-card__body { padding: clamp(0.75rem, 2vw, 0.9rem); flex: 1; display: flex; flex-direction: column; }
.product-card__cat {
  font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.3rem; font-weight: 600;
}
.product-card__name { font-size: clamp(0.8rem, 1.8vw, 0.86rem); font-weight: 600; color: var(--text); line-height: 1.4; margin-bottom: auto; }
.product-card__price { font-size: clamp(0.9rem, 2vw, 1rem); font-weight: 700; color: var(--gold); margin-top: 0.65rem; }
.product-card__price span { font-size: 0.7rem; font-weight: 400; color: var(--muted); }

/* ── PRODUCT GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(180px, 100%), 1fr));
  gap: clamp(0.65rem, 2vw, 1rem); margin-bottom: 1.5rem;
}
.cat-heading {
  margin: 2rem 0 0.75rem; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 0.5rem;
}
.cat-heading::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ── SERVICE CARD ── */
.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-left: 3px solid var(--gold); border-radius: var(--radius-md);
  padding: clamp(1rem, 3vw, 1.4rem); box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.service-card__icon { font-size: clamp(1.3rem, 3vw, 1.6rem); margin-bottom: 0.6rem; }
.service-card__title { font-size: clamp(0.85rem, 2vw, 0.92rem); font-weight: 600; color: var(--text); margin-bottom: 0.4rem; font-family: 'Inter', sans-serif; }
.service-card__desc { font-size: clamp(0.75rem, 1.6vw, 0.8rem); color: var(--muted); line-height: 1.65; }

/* ── WHY CARD ── */
.why-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: clamp(1.1rem, 3vw, 1.5rem);
  text-align: center; box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.why-card__icon { font-size: clamp(1.5rem, 4vw, 2rem); margin-bottom: 0.75rem; }
.why-card__title { font-size: clamp(0.85rem, 2vw, 0.9rem); font-weight: 600; color: var(--text); margin-bottom: 0.4rem; font-family: 'Inter', sans-serif; }
.why-card__desc { font-size: clamp(0.75rem, 1.6vw, 0.79rem); color: var(--muted); line-height: 1.65; }

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(0.65rem, 2vw, 1.1rem); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(0.65rem, 2vw, 1.1rem); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(0.65rem, 2vw, 1.1rem); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr)); gap: clamp(0.65rem, 2vw, 1.1rem); }
.grid-about { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.grid-contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 3vw, 2rem); }

/* ── CONTACT ── */
.contact-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
}
.contact-row { display: flex; gap: 0.85rem; align-items: flex-start; margin-bottom: 1.1rem; }
.contact-icon {
  width: 38px; height: 38px; min-width: 38px;
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; font-size: 0.95rem;
}
.contact-label { font-size: 0.67rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.15rem; font-weight: 500; }
.contact-value { font-size: clamp(0.82rem, 1.8vw, 0.9rem); color: var(--text); font-weight: 500; word-break: break-word; }
.contact-value a { color: var(--gold); text-decoration: none; }
.contact-value a:hover { text-decoration: underline; }

/* ── MAP BOX ── */
.map-box {
  background: var(--card2); border: 1px solid var(--border);
  border-radius: var(--radius-md);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 3vw, 2rem);
  text-align: center; gap: 0.85rem; box-shadow: var(--shadow-sm);
}
.map-box__icon { font-size: clamp(2rem, 5vw, 3rem); }
.map-box__title { font-size: clamp(0.88rem, 2vw, 0.95rem); font-weight: 600; color: var(--text); font-family: 'Inter', sans-serif; }
.map-box__addr { font-size: clamp(0.78rem, 1.8vw, 0.82rem); color: var(--muted); line-height: 1.6; }
.map-box__btns { display: flex; flex-direction: column; gap: 0.5rem; width: 100%; }

/* ── EXTERNAL LINK PILLS ── */
.ext-link {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.6rem 1rem;
  font-size: clamp(0.78rem, 1.8vw, 0.82rem); font-weight: 500;
  color: var(--text); text-decoration: none;
  box-shadow: var(--shadow-sm); transition: all 0.2s;
}
.ext-link:hover { border-color: var(--gold); color: var(--gold); box-shadow: var(--shadow-md); }

/* ── LINKS ROW ── */
.links-row { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* ── OWNER CARD ── */
.owner-card {
  background: linear-gradient(135deg, #fffbf0, #fff8e8);
  border: 1px solid var(--gold-border); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: flex; gap: clamp(1.25rem, 3vw, 2.5rem); align-items: flex-start;
  box-shadow: 0 2px 12px rgba(176,125,26,0.08);
}
.owner-avatar {
  width: clamp(64px, 10vw, 90px); height: clamp(64px, 10vw, 90px);
  min-width: clamp(64px, 10vw, 90px); border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #e8b84b);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 2rem); color: #fff; font-weight: 700;
  box-shadow: 0 4px 12px rgba(176,125,26,0.3); flex-shrink: 0;
}
.owner-name { font-family: 'Playfair Display', serif; font-size: clamp(1.2rem, 3.5vw, 1.5rem); color: var(--text); margin-bottom: 0.2rem; }
.owner-role { font-size: clamp(0.7rem, 1.5vw, 0.78rem); text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); font-weight: 600; margin-bottom: 0.75rem; }
.owner-desc { font-size: clamp(0.82rem, 1.8vw, 0.87rem); color: var(--muted); line-height: 1.78; margin-bottom: 0.5rem; }
.owner-chips { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.75rem; }
.owner-chip {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 2rem; padding: 0.28rem 0.75rem;
  font-size: clamp(0.68rem, 1.5vw, 0.75rem); color: var(--muted);
}

/* ── BRANDS ── */
.brands-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.25rem; }
.brand-pill {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.4rem 0.9rem;
  font-size: clamp(0.75rem, 1.8vw, 0.82rem); color: var(--text); font-weight: 600;
  box-shadow: var(--shadow-sm);
}

/* ── INFO NOTE ── */
.info-note {
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  border-radius: var(--radius-md); padding: 0.9rem 1.2rem;
  font-size: clamp(0.78rem, 1.8vw, 0.82rem); color: var(--gold); margin-top: 1.25rem;
  line-height: 1.7;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, #fffbf0, #fff8e8);
  border-top: 1px solid var(--gold-border); border-bottom: 1px solid var(--gold-border);
  padding: clamp(2.5rem, 6vw, 3.5rem) clamp(1rem, 4vw, 2rem);
  text-align: center;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  color: var(--text); margin-bottom: 0.6rem;
}
.cta-banner p { color: var(--muted); font-size: clamp(0.85rem, 2vw, 0.95rem); margin-bottom: 1.75rem; }
.cta-banner__btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ── HOURS BOX ── */
.hours-box {
  background: var(--gold-bg); border: 1px solid var(--gold-border);
  border-radius: var(--radius-md); padding: clamp(1rem, 3vw, 1.4rem);
}
.hours-box__label {
  font-size: 0.78rem; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem;
}
.hours-box p { font-size: clamp(0.82rem, 1.8vw, 0.87rem); color: var(--text); margin-bottom: 0.35rem; }
.hours-box small { font-size: clamp(0.75rem, 1.6vw, 0.8rem); color: var(--muted); }

/* ── FOOTER ── */
.footer {
  background: #1a1e2e; color: #9ca3af;
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1rem, 4vw, 2rem);
  text-align: center; font-size: clamp(0.75rem, 1.6vw, 0.8rem); line-height: 1.9;
}
.footer strong { color: #f0d080; }
.footer a { color: #f0d080; text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer__nav {
  display: flex; justify-content: center; gap: clamp(0.75rem, 2vw, 1.5rem);
  flex-wrap: wrap; margin-bottom: 1.25rem;
}
.footer__nav a { color: #9ca3af; font-size: clamp(0.75rem, 1.6vw, 0.82rem); }
.footer__nav a:hover { color: #f0d080; }

/* ══════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   320px  → tiny phones (iPhone SE)
   480px  → small phones
   640px  → large phones / small tablets
   768px  → tablets portrait
   1024px → tablets landscape / small laptops
   1280px → laptops
   1536px → large desktops / 4K
══════════════════════════════════════════════ */

/* ── ≥ 1536px: Large desktops / 4K ── */
@media (min-width: 1536px) {
  .section { max-width: 1400px; }
  .stats-strip__inner { max-width: 1400px; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
}

/* ── ≤ 1024px: Tablets landscape / small laptops ── */
@media (max-width: 1024px) {
  .grid-about { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ── ≤ 768px: Tablets portrait ── */
@media (max-width: 768px) {
  /* Nav: hide links, show hamburger */
  .navbar__links { display: none; }
  .navbar__toggle { display: flex; }

  /* Stats: 2 columns */
  .stats-strip__inner { grid-template-columns: repeat(2, 1fr); }

  /* Grids collapse */
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-about { grid-template-columns: 1fr; }
  .grid-contact { grid-template-columns: 1fr; }

  /* Owner card stacks */
  .owner-card { flex-direction: column; align-items: center; text-align: center; }
  .owner-chips { justify-content: center; }

  /* Hero buttons stack */
  .hero__btns { flex-direction: column; align-items: center; }
  .hero__btns .btn { width: 100%; max-width: 320px; }

  /* CTA banner buttons */
  .cta-banner__btns { flex-direction: column; align-items: center; }
  .cta-banner__btns .btn { width: 100%; max-width: 320px; }

  /* Links row wraps tightly */
  .links-row { gap: 0.5rem; }

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

/* ── ≤ 480px: Small phones ── */
@media (max-width: 480px) {
  .navbar { height: 56px; }
  .navbar__drawer { top: 56px; }

  .hero__badge { font-size: 0.6rem; padding: 0.28rem 0.7rem; }

  .stats-strip__inner { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .stat-item__num { font-size: 1.3rem; }
  .stat-item__lbl { font-size: 0.65rem; }

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

  /* Products: 1 column on very small phones */
  .products-grid { grid-template-columns: 1fr; }

  .brands-row { gap: 0.5rem; }
  .brand-pill { font-size: 0.75rem; padding: 0.35rem 0.7rem; }

  .owner-card { padding: 1.25rem; }
  .owner-avatar { width: 60px; height: 60px; min-width: 60px; font-size: 1.3rem; }

  .btn { font-size: 0.82rem; padding: 0.65rem 1rem; }

  .section { padding: 2rem 1rem; }

  .hero__rating { font-size: 0.72rem; }

  .ext-link { font-size: 0.75rem; padding: 0.5rem 0.8rem; }

  .contact-icon { width: 34px; height: 34px; min-width: 34px; font-size: 0.85rem; }
}

/* ── ≤ 360px: Very tiny phones (Galaxy Fold etc) ── */
@media (max-width: 360px) {
  .hero__title { font-size: 1.5rem; }
  .section-title { font-size: 1.3rem; }
  .page-hero__title { font-size: 1.4rem; }

  .stats-strip__inner { grid-template-columns: repeat(2, 1fr); }

  .navbar__logo { font-size: 0.95rem; }

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

  .owner-chips { flex-direction: column; gap: 0.35rem; }
  .owner-chip { text-align: center; }
}

/* ── Touch devices: remove hover transforms ── */
@media (hover: none) {
  .product-card:hover,
  .service-card:hover,
  .why-card:hover,
  .card:hover { transform: none; }
}

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

/* ── Print ── */
@media print {
  .navbar, .hero__btns, .cta-banner, .footer__nav { display: none; }
  .hero { padding: 1rem; }
  body { background: white; color: black; }
  .section { padding: 1rem; }
}

/* ── LOGO IN NAVBAR ── */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar__logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 4px;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .navbar__logo-img { width: 28px; height: 28px; }
}
