/* ============================================================
   VARNIKA — Luxury Handcrafted Indian Fashion
   Design System
   Forest Green  #315B45
   Deep Green    #254A37
   Ivory         #F8F4EC
   Cream         #FBF8F1
   Espresso      #33271F
   Taupe         #766A5F
   Champagne Gold #D9AD5A
   Antique Gold  #C69A45
   Border        #E2DCD1
   Blush         #D9B4AA
   Lavender Mist #D8D0D9
   Display font  Cormorant Garamond
   UI font       Manrope
   ============================================================ */

:root {
  --forest: #315B45;
  --forest-dark: #254A37;
  --sage: #8AA67D;
  --gold: #D9AD5A;
  --gold-dark: #C69A45;
  --ivory: #F8F4EC;
  --cream: #FBF8F1;
  --beige: #E2DCD1;
  --border: #E2DCD1;
  --sand: #E3D2BC;
  --blush: #D9B4AA;
  --lavender: #D8D0D9;
  --brown: #33271F;
  --brown-light: #766A5F;
  --text: #33271F;
  --white: #FFFFFF;

  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', sans-serif;
  --font-btn: 'Manrope', sans-serif;

  --shadow: 0 12px 30px rgba(51, 39, 31, 0.07);
  --radius: 4px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* ============ TYPOGRAPHY HELPERS ============ */
.overline {
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.12;
  color: var(--forest-dark);
  margin-bottom: 1rem;
}

/* ============ TOP ANNOUNCEMENT BAR ============ */
.topbar {
  background: var(--forest);
  color: var(--ivory);
  text-align: center;
  padding: 0.62rem 1.5rem;
}

.topbar-message {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ivory);
}

.topbar-message::before,
.topbar-message::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 26px;
  height: 1px;
  background: var(--gold);
  margin: 0 0.9rem;
  opacity: 0.9;
}

/* ============ HEADER / BRAND ROW ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--ivory);
  border-bottom: 1px solid var(--border);
}

.brand-row {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 2rem 1.1rem;
}

.logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.logo {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-indent: 0.34em;
  color: var(--forest);
}

.logo-tagline {
  margin-top: 0.35rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.brand-actions {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.brand-actions--right { justify-content: flex-end; }

.icon-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--brown);
  transition: color 0.25s;
}

.icon-link:hover { color: var(--gold-dark); }

.icon-count {
  position: absolute;
  top: -7px;
  right: -10px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--brown);
  font-size: 0.62rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-inquire {
  font-size: 0.72rem;
  padding: 0.62rem 1.35rem;
}

/* ============ NAVIGATION ============ */
.nav {
  border-top: 1px solid var(--border);
}

.nav-links {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 0.72rem 1rem;
}

.nav-links > li { position: relative; }

.nav-links a {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.4rem 0;
  transition: color 0.25s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--forest); }

.nav-admin {
  border: 1px solid var(--gold) !important;
  padding: 0.32rem 0.95rem !important;
  color: var(--gold-dark) !important;
  border-radius: 2px;
}
.nav-admin:hover { background: var(--gold); color: var(--brown) !important; }

.has-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  min-width: 220px;
  border: 1px solid var(--beige);
  border-radius: 2px;
  box-shadow: var(--shadow);
  padding: 0.6rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.22s ease;
  z-index: 60;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown li a {
  display: block;
  padding: 0.5rem 1.3rem;
  font-size: 0.76rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.dropdown li a:hover { background: var(--ivory); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--forest);
  cursor: pointer;
  padding: 0;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  overflow: hidden;
  background-color: var(--forest-dark);
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(51, 39, 31, 0.78) 0%, rgba(51, 39, 31, 0.52) 42%, rgba(51, 39, 31, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--ivory);
  max-width: 680px;
  padding: 2.5rem 1rem;
  margin-left: clamp(1.5rem, 8vw, 9rem);
  animation: fadeUp 1s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-overline {
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  font-weight: 600;
  line-height: 1.02;
  margin-bottom: 1.2rem;
}

.hero-sub {
  max-width: 520px;
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.85;
  opacity: 0.95;
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--ivory);
  font-size: 1.5rem;
  opacity: 0.8;
  animation: bounce 1.8s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ============ BUTTONS ============ */
.btn {
  font-family: var(--font-btn);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.95rem 2rem;
  border-radius: 2px;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--brown);
}

.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-forest {
  background: var(--forest);
  color: var(--ivory);
}

.btn-forest:hover {
  background: var(--forest-dark);
  color: var(--ivory);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--ivory);
  color: var(--ivory);
}

.btn-outline:hover {
  background: var(--ivory);
  color: var(--forest);
  transform: translateY(-2px);
}

/* ============ STRIP (NEW ARRIVALS) ============ */
.strip { padding: 5rem 0 4rem; }

.strip-inner { text-align: center; }

.strip-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--forest-dark);
  margin-bottom: 2.5rem;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  text-align: left;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(51, 39, 31, 0.09);
}

.card-img {
  height: 340px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.card:hover .card-img { transform: scale(1.04); }

.card h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--forest-dark);
  padding: 1rem 1.2rem 0.1rem;
}

.card-meta {
  font-size: 0.8rem;
  color: var(--brown-light);
  padding: 0 1.2rem;
}

.card-link {
  display: inline-block;
  padding: 0.6rem 1.2rem 1.1rem;
  font-family: var(--font-btn);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  transition: color 0.25s;
}

.card-link:hover { color: var(--forest); }

/* ============ CATEGORIES ============ */
.categories {
  padding: 4rem 0 5rem;
  background: var(--cream);
  text-align: center;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  text-align: left;
  margin-top: 2rem;
}

.cat-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.cat-block:hover { transform: translateY(-5px); }

.cat-head {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--beige);
}

.cat-desc { color: var(--brown-light); font-size: 0.92rem; margin-bottom: 0.8rem; }

.cat-list li a {
  display: inline-block;
  padding: 0.35rem 0;
  color: var(--brown-light);
  font-size: 0.95rem;
  transition: color 0.2s, transform 0.2s;
}

.cat-list li a:hover {
  color: var(--gold-dark);
  transform: translateX(4px);
}

/* ============ CUSTOM DESIGN ============ */
.custom { padding: 5rem 0; background: var(--white); }

.custom-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.custom-visual {
  background:
    radial-gradient(circle at 30% 30%, rgba(198, 154, 69, 0.18), transparent 55%),
    linear-gradient(150deg, var(--forest), var(--forest-dark));
  border-radius: var(--radius);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.custom-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(217, 173, 88, 0.6);
  border-radius: 2px;
}

.custom-frame {
  color: var(--ivory);
  text-align: center;
  z-index: 1;
  padding: 1rem;
}

.frame-label {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  letter-spacing: 0.1em;
}

.frame-line {
  font-size: 0.95rem;
  padding: 0.35rem 0;
  opacity: 0.95;
}

.custom-content p { margin-bottom: 1.2rem; color: var(--brown-light); }

.custom-list {
  margin: 0.4rem 0 2rem;
  columns: 2;
  column-gap: 2rem;
}

.custom-list li {
  font-size: 0.95rem;
  padding: 0.3rem 0;
  color: var(--forest);
  break-inside: avoid;
}

/* ============ WHY CHOOSE ============ */
.why { padding: 5rem 0; text-align: center; background: var(--ivory); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin-top: 2rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.4rem 1.6rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.why-card:hover { transform: translateY(-6px); }

.why-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--forest-dark);
  margin-bottom: 0.6rem;
}

.why-card p { font-size: 0.92rem; color: var(--brown-light); }

/* ============ COLLECTIONS ============ */
.collections { padding: 5rem 0; background: var(--cream); text-align: center; }

.col-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin-top: 2rem;
}

.col-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, border-color 0.35s ease;
  text-align: left;
}

.col-card:hover { transform: translateY(-6px); }

.col-img {
  height: 400px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.col-card:hover .col-img { transform: scale(1.04); }

.col-body { padding: 1.3rem 1.4rem 1.5rem; }

.col-body h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--forest-dark);
}

.col-body p { color: var(--brown-light); font-size: 0.92rem; margin: 0.3rem 0 0.8rem; }

/* ============ FABRICS ============ */
.fabrics { padding: 5rem 0; text-align: center; background: var(--white); }

.fabric-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.2rem;
  margin-top: 2.4rem;
}

.fabric {
  width: 170px;
  padding: 1.4rem 1rem;
  transition: transform 0.3s ease;
}

.fabric:hover { transform: translateY(-6px); }

.fabric-icon {
  width: 110px;
  height: 110px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--cream);
  position: relative;
  border: 2px solid var(--sage);
}

.fabric-icon::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px dashed var(--sage);
}

.fabric-cotton { background: repeating-linear-gradient(45deg, var(--ivory) 0 8px, var(--sand) 8px 16px); }
.fabric-silk { background: linear-gradient(135deg, var(--gold), var(--ivory), var(--gold)); }
.fabric-linen { background: repeating-linear-gradient(0deg, var(--beige) 0 6px, var(--ivory) 6px 12px); }
.fabric-khadi { background: repeating-linear-gradient(90deg, var(--ivory) 0 7px, var(--sage) 7px 14px); }
.fabric-banarasi { background: repeating-linear-gradient(45deg, var(--forest) 0 10px, var(--gold) 10px 20px); }
.fabric-blush { background: repeating-linear-gradient(135deg, var(--blush) 0 8px, var(--ivory) 8px 16px); }
.fabric-lavender { background: repeating-linear-gradient(135deg, var(--lavender) 0 8px, var(--ivory) 8px 16px); }

.fabric h3 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 600; color: var(--forest-dark); }

/* ============ EXPERIENCE / STEPS ============ */
.experience { padding: 5rem 0; text-align: center; background: var(--forest-dark); }

.experience .overline { color: var(--gold); }

.experience .section-title { color: var(--ivory); }

.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2.6rem;
}

.steps li { list-style: none; }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--brown);
  font-family: var(--font-btn);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}

.steps h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--ivory);
  font-weight: 500;
}

.steps .arrow {
  font-size: 1.6rem;
  color: var(--gold);
}

/* ============ REVIEWS ============ */
.reviews { padding: 5rem 0; text-align: center; background: var(--ivory); }

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

.review {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  font-style: normal;
}

.review p {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--forest-dark);
  margin: 1rem 0;
}

.review footer { color: var(--brown-light); font-size: 0.85rem; }

.stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 0.3em; }

/* ============ SUSTAINABILITY ============ */
.sustainability { padding: 5rem 0; background: var(--cream); }

.sustainability-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.sust-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.5rem;
}

.sust-list li { color: var(--forest); font-size: 1.05rem; }

.sust-panel {
  background: var(--forest);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  color: var(--ivory);
  box-shadow: var(--shadow);
}

.brand-promise-label {
  font-family: var(--font-head);
  font-style: italic;
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  letter-spacing: 0.12em;
}

.brand-promise {
  font-family: var(--font-head);
  font-size: 1.5rem;
  line-height: 1.6;
}

/* ============ FEATURES ============ */
.features { padding: 5rem 0; text-align: center; background: var(--white); }

.features-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 2rem;
  margin-top: 2.2rem;
  text-align: left;
}

.features-list li {
  background: var(--ivory);
  border: 1px solid var(--beige);
  border-radius: 4px;
  padding: 1.1rem 1.2rem;
  font-size: 0.95rem;
  color: var(--forest);
  transition: background 0.3s ease, color 0.3s ease;
}

.features-list li:hover {
  background: var(--forest);
  color: var(--ivory);
}

/* ============ FOOTER ============ */
.footer { background: var(--forest-dark); color: var(--ivory); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 4rem 0 3rem;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--ivory);
}

.tagline { font-family: var(--font-head); font-style: italic; color: var(--gold); font-size: 1.1rem; margin: 0.2rem 0 0.8rem; }

.footer-brand p:not(.tagline) { font-size: 0.9rem; opacity: 0.85; max-width: 260px; }

.footer-col h4 {
  font-family: var(--font-btn);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ivory);
  margin-bottom: 1.1rem;
}

.footer-col li { margin: 0.5rem 0; }

.footer-col a { font-size: 0.9rem; opacity: 0.85; transition: opacity 0.2s, color 0.2s; }

.footer-col a:hover { color: var(--gold); opacity: 1; }

.socials {
  display: flex;
  gap: 1.1rem;
  margin-top: 1.3rem;
  flex-wrap: wrap;
}

.socials a {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory);
  border: 1px solid rgba(248, 244, 236, 0.4);
  padding: 0.4rem 0.8rem;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.socials a:hover {
  background: var(--gold);
  color: var(--brown);
  border-color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(248, 244, 236, 0.18);
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  opacity: 0.85;
}

/* ============ SEARCH OVERLAY ============ */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(37, 74, 55, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.search-overlay.open { opacity: 1; visibility: visible; }

.search-close {
  position: absolute;
  top: 2rem;
  right: 3rem;
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 3rem;
  cursor: pointer;
}

.search-box h3 {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  text-align: center;
}

.search-box input {
  width: min(560px, 86vw);
  padding: 1.1rem 1.4rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: none;
  border-radius: 2px;
  outline: none;
  background: var(--ivory);
  color: var(--brown);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .col-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .features-list { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .custom-inner, .sustainability-inner { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .topbar-message::before,
  .topbar-message::after { display: none; }

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

  .brand-row { grid-template-columns: 1fr auto 1fr; padding: 1rem 1.2rem; }
  .logo { font-size: 1.9rem; }
  .logo-tagline { font-size: 0.56rem; }

  .brand-actions { gap: 0.9rem; }
  .brand-actions--right .icon-link:nth-child(3) { display: none; }

  .nav { border-top: none; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
    padding: 0;
  }
  .nav-links.open {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    background: var(--ivory);
    padding: 4rem 1.5rem;
    overflow-y: auto;
  }
  .nav-links.open > li > a:not(.nav-admin) {
    font-family: var(--font-head);
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    color: var(--forest-dark);
    text-transform: none;
  }
  .nav-close-row { display: block; }
  .nav-close {
    position: absolute;
    top: 1.6rem;
    right: 1.6rem;
    background: none;
    border: none;
    color: var(--forest-dark);
    font-size: 2.4rem;
    line-height: 1;
    cursor: pointer;
  }
  .nav-links.open .has-dropdown .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    min-width: 0;
    padding-left: 0;
    text-align: center;
    background: transparent;
  }
  .nav-links.open .dropdown li a { font-size: 1.05rem; }
  .hero-content { margin-left: clamp(1.2rem, 6vw, 3rem); }
}

@media (min-width: 861px) {
  .nav-close-row { display: none; }
}

@media (max-width: 560px) {
  .hero { min-height: 84vh; }
  .hero-title { font-size: clamp(2.6rem, 12vw, 3.4rem); }
  .hero-sub { font-size: 0.95rem; }
  .btn-inquire { display: none; }
  .strip-grid, .col-grid, .why-grid, .cat-grid, .features-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .card-img { height: 300px; }
  .col-img { height: 340px; }
  .custom-list { columns: 1; }
  .steps { flex-direction: column; }
  .steps .arrow { transform: rotate(90deg); }
}
