/* ==============================
   SAREEN BEAUTY – STYLESHEET
   Color theme: Sage green, gold, ivory (from logo)
   ============================== */

:root {
  --sage: #6b7f5e;
  --sage-dark: #4a5c3f;
  --sage-light: #8fa882;
  --gold: #c9a84c;
  --gold-light: #e8cc7a;
  --gold-dark: #9e7a2a;
  --ivory: #f5f2ec;
  --ivory-dark: #e8e3d8;
  --white: #ffffff;
  --text-dark: #2a2a2a;
  --text-mid: #555;
  --text-light: #888;
  --rose: #c0395a;
  --teal: #2a8fa8;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.15);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Josefin Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
}

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

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.section-pad { padding: 5rem 0; }
.alt-bg { background: var(--ivory); }

/* ---- TYPOGRAPHY ---- */
.section-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--sage-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-intro {
  max-width: 640px;
  margin: 0 auto 3rem;
  color: var(--text-mid);
}

/* ---- NAVBAR ---- */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem;
  padding: 0.9rem 1.5rem;
}

.nav-logo { flex: 0 0 auto; }
.logo-text {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--sage-dark);
  letter-spacing: 0.1em;
  line-height: 1;
}
.logo-sub {
  display: block;
  font-size: 0.55rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-dark);
}

.nav-links {
  display: flex; gap: 2rem; margin: 0 auto;
}
.nav-link {
  font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-mid); font-weight: 600;
  position: relative; padding-bottom: 2px;
  transition: color 0.2s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.3s;
}
.nav-link:hover { color: var(--sage-dark); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-social { display: flex; gap: 0.75rem; }
.nav-social a {
  width: 32px; height: 32px; border: 1.5px solid var(--sage-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; color: var(--sage);
}
.nav-social a:hover { background: var(--sage); color: white; border-color: var(--sage); }
.nav-social svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { width: 24px; height: 2px; background: var(--sage-dark); border-radius: 2px; transition: all 0.3s; }

/* ---- SLIDER ---- */
.slider-container {
  position: relative; width: 100%; overflow: hidden;
  margin-top: 64px; /* navbar height */
}

.slider {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide {
  min-width: 100%;
  height: clamp(400px, 70vh, 700px);
  position: relative;
  display: flex; align-items: center;
  background-size: cover; background-position: center;
}

.slide-1 { background: linear-gradient(135deg, #7a1d40 0%, #c0395a 40%, #8b0030 100%); }
.slide-2 { background: linear-gradient(135deg, #3a5a3f 0%, #6b7f5e 40%, #2a4a2f 100%); }
.slide-3 { background: linear-gradient(135deg, #1a4a5a 0%, #2a8fa8 40%, #0a3040 100%); }

.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}

/* Decorative soap-like circles in background */
.slide-1::before, .slide-2::before, .slide-3::before {
  content: '';
  position: absolute; right: 5%; top: 50%;
  transform: translateY(-50%);
  width: clamp(200px, 35vw, 400px);
  height: clamp(200px, 35vw, 400px);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.15;
  background: white;
  animation: morphBlob 8s ease-in-out infinite;
}
@keyframes morphBlob {
  0%,100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
  50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
}

.slide-content {
  position: relative; z-index: 2;
  max-width: 600px; padding: 0 4rem;
  color: white;
  animation: slideIn 0.8s ease both;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

.slide-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  opacity: 0.8; margin-bottom: 0.75rem; color: var(--gold-light);
}
.slide-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1.05;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.slide-title em { font-style: italic; color: var(--gold-light); }
.slide-sub {
  font-size: 0.9rem; letter-spacing: 0.15em; text-transform: uppercase;
  opacity: 0.9; margin-bottom: 1.25rem; color: rgba(255,255,255,0.85);
}
.slide-desc {
  font-size: 0.95rem; line-height: 1.7; opacity: 0.85;
  margin-bottom: 2rem; max-width: 420px;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white; font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700; padding: 0.9rem 2.2rem;
  border-radius: 50px; border: none; cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.5);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.btn-large { padding: 1.1rem 3rem; font-size: 0.85rem; }

/* ---- SLIDER CONTROLS ---- */
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.2); border: 1.5px solid rgba(255,255,255,0.4);
  color: white; width: 48px; height: 48px; border-radius: 50%;
  font-size: 1.2rem; cursor: pointer; backdrop-filter: blur(8px);
  transition: all 0.3s; z-index: 10; display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { background: rgba(255,255,255,0.35); transform: translateY(-50%) scale(1.1); }
.prev { left: 1.5rem; }
.next { right: 1.5rem; }

.slider-dots {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem; z-index: 10;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer;
  transition: all 0.3s;
}
.dot.active { background: var(--gold); transform: scale(1.4); }

/* ---- CEO SECTION ---- */
.ceo-section {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 100%);
  padding: 5rem 0;
}
.ceo-inner {
  display: grid; grid-template-columns: 280px 1fr; gap: 4rem; align-items: start;
}
.ceo-photo { text-align: center; }
.ceo-frame {
  width: 180px; height: 180px; margin: 0 auto 1rem;
  border-radius: 50%;
  border: 4px solid var(--gold);
  background: linear-gradient(135deg, var(--sage-light), var(--sage-dark));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.ceo-frame img { width: 100%; height: 100%; object-fit: cover; }
.ceo-initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 700; color: white;
  position: absolute;
}
.ceo-frame.no-img .ceo-initials { display: block; }
.ceo-badge {
  display: inline-block; background: var(--gold);
  color: white; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 50px; font-weight: 700;
}
.ceo-message { color: white; }
.ceo-message .section-eyebrow { color: var(--gold-light); }
.ceo-message .section-title { color: white; margin-bottom: 0.5rem; }
.ceo-quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 5rem; color: var(--gold); line-height: 0.5; margin-bottom: 1rem; }
.ceo-text { opacity: 0.9; margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.8; }
.ceo-signature { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05rem; color: var(--gold-light); margin-top: 1.5rem; }

/* ---- PRODUCTS STRIP ---- */
.products-strip { padding: 5rem 0; }
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem;
  margin-top: 2.5rem;
}
.product-card {
  background: white; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-img {
  height: 180px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.product-icon { font-size: 3rem; z-index: 1; }
.product-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600; color: var(--sage-dark);
  padding: 1rem 1.25rem 0.25rem;
}
.product-card p { padding: 0 1.25rem 1.25rem; color: var(--text-mid); font-size: 0.85rem; }

/* ---- ABOUT ---- */
.about-grid {
  display: grid; grid-template-columns: 1fr 400px; gap: 4rem; align-items: start; margin-top: 2rem;
}
.about-text h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--sage-dark); margin-bottom: 1rem; }
.about-text p { color: var(--text-mid); margin-bottom: 1rem; line-height: 1.8; }
.about-list { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.5rem; }
.about-list li { color: var(--text-mid); font-size: 0.9rem; padding-left: 0.5rem; }

.about-visual { position: sticky; top: 100px; }
.about-logo-block {
  background: linear-gradient(135deg, var(--sage-dark), var(--sage));
  border-radius: var(--radius); padding: 2.5rem;
  text-align: center; margin-bottom: 1.5rem;
}
.logo-circle {
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(255,255,255,0.15); margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center; font-size: 2.5rem;
  border: 2px solid rgba(255,255,255,0.3);
}
.about-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; color: white; opacity: 0.9; }

.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat {
  background: white; border-radius: var(--radius); padding: 1.25rem;
  text-align: center; box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}
.stat-num { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: var(--sage-dark); }
.stat-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-top: 0.25rem; display: block; }

/* ---- GALLERY ---- */
.gallery-tabs { display: flex; gap: 0; justify-content: center; margin-bottom: 2.5rem; }
.gtab {
  padding: 0.75rem 2rem; border: 1.5px solid var(--sage);
  background: none; cursor: pointer; font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--sage); transition: all 0.3s; font-weight: 600;
}
.gtab:first-child { border-radius: 50px 0 0 50px; }
.gtab:last-child { border-radius: 0 50px 50px 0; }
.gtab.active { background: var(--sage-dark); color: white; border-color: var(--sage-dark); }

.gallery-pane { display: none; }
.gallery-pane.active { display: block; }

.photo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  grid-auto-rows: 220px;
}
.photo-item { border-radius: var(--radius); overflow: hidden; background: var(--ivory-dark); }
.photo-item.large { grid-column: span 2; }
.photo-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--sage);
  background: linear-gradient(135deg, var(--ivory-dark), var(--ivory));
}
.gallery-note { text-align: center; margin-top: 1.5rem; color: var(--text-mid); }
.gallery-note a { color: var(--sage-dark); font-weight: 600; }

.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.video-wrapper { position: relative; padding-bottom: 177.78%; /* 9:16 */ height: 0; border-radius: var(--radius); overflow: hidden; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: var(--radius); }
.video-caption { text-align: center; margin-top: 0.75rem; color: var(--text-mid); font-size: 0.85rem; }

/* ---- DISTRIBUTION ---- */
.dist-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 2rem;
}
.dist-card {
  background: white; border-radius: var(--radius); box-shadow: var(--shadow);
  display: flex; gap: 1rem; padding: 1.5rem;
  border-left: 4px solid var(--gold);
  transition: transform 0.3s, box-shadow 0.3s;
}
.dist-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.dist-photo { flex: 0 0 56px; }
.dist-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--sage-dark));
  color: white; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.dist-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 700; color: var(--sage-dark); margin-bottom: 0.15rem; }
.dist-title { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.6rem; }
.dist-addr { font-size: 0.82rem; color: var(--text-mid); margin-bottom: 0.5rem; }
.dist-phone { display: block; font-weight: 700; color: var(--sage-dark); font-size: 0.88rem; margin-bottom: 0.6rem; }
.dist-map-btn {
  display: inline-block; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-dark); border-bottom: 1px solid var(--gold); padding-bottom: 1px;
  font-weight: 700; transition: color 0.2s;
}
.dist-map-btn:hover { color: var(--sage-dark); }

.dist-cta { text-align: center; margin-top: 3rem; }
.dist-cta p { color: var(--text-mid); margin-bottom: 1rem; font-size: 1.05rem; }

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; margin-top: 2rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-block { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { font-size: 1.4rem; flex: 0 0 32px; margin-top: 0.1rem; }
.contact-block h4 { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 700; color: var(--sage-dark); margin-bottom: 0.2rem; }
.contact-block p, .contact-block a { color: var(--text-mid); font-size: 0.9rem; }
.contact-block a:hover { color: var(--sage-dark); }
.contact-social h4 { font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-weight: 700; color: var(--sage-dark); margin-bottom: 0.75rem; }
.social-row { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-btn {
  padding: 0.5rem 1.25rem; border-radius: 50px; font-size: 0.75rem; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 700; transition: all 0.3s;
}
.social-btn.fb { background: #1877f2; color: white; }
.social-btn.ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.social-btn.yt { background: #ff0000; color: white; }
.social-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }

.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-link-btn {
  display: block; text-align: center; margin-top: 0.75rem;
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700; color: var(--sage-dark);
  transition: color 0.2s;
}
.map-link-btn:hover { color: var(--gold-dark); }

/* CONTACT FORM */
.contact-form-wrap { max-width: 700px; margin: 4rem auto 0; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage-dark); font-weight: 700; }
.form-group input, .form-group textarea {
  padding: 0.85rem 1.1rem; border: 1.5px solid var(--ivory-dark);
  border-radius: 8px; font-family: 'Josefin Sans', sans-serif; font-size: 0.9rem;
  background: white; color: var(--text-dark); transition: border-color 0.3s;
  resize: vertical;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--sage-light);
  box-shadow: 0 0 0 3px rgba(107,127,94,0.1);
}

/* ---- FOOTER ---- */
#footer { background: var(--sage-dark); color: white; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; padding: 4rem 1.5rem;
}
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.footer-tagline { font-style: italic; opacity: 0.75; font-size: 0.9rem; margin-bottom: 0.75rem; font-family: 'Cormorant Garamond', serif; }
.footer-tm { font-size: 0.72rem; letter-spacing: 0.08em; opacity: 0.5; text-transform: uppercase; }
.footer-links h5, .footer-contact h5, .footer-social-col h5 { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.25rem; font-weight: 700; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { opacity: 0.7; font-size: 0.88rem; transition: opacity 0.2s; }
.footer-links a:hover { opacity: 1; }
.footer-contact p { opacity: 0.7; font-size: 0.88rem; margin-bottom: 0.5rem; line-height: 1.6; }
.footer-contact a { opacity: 0.7; font-size: 0.88rem; display: block; margin-bottom: 0.3rem; transition: opacity 0.2s; }
.footer-contact a:hover { opacity: 1; }

.footer-social { display: flex; flex-direction: column; gap: 0.75rem; }
.fsoc-btn {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.6rem 1rem; border-radius: 8px;
  background: rgba(255,255,255,0.08); font-size: 0.82rem; font-weight: 600;
  transition: background 0.2s; letter-spacing: 0.05em;
}
.fsoc-btn:hover { background: rgba(255,255,255,0.18); }
.fsoc-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center; padding: 1.25rem;
  font-size: 0.72rem; opacity: 0.45; letter-spacing: 0.08em;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 1.5rem; box-shadow: var(--shadow); border-top: 1px solid var(--ivory-dark); gap: 1rem; }
  .nav-links.open { display: flex; }
  .nav-social { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .ceo-inner { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .photo-item.large { grid-column: span 2; }
}

@media (max-width: 640px) {
  .slide-content { padding: 0 1.5rem; }
  .slide-title { font-size: 2.2rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr; }
  .photo-item.large { grid-column: span 1; }
  .slider-btn { width: 36px; height: 36px; font-size: 0.9rem; }
  .video-grid { grid-template-columns: 1fr; }
}
