/* =========================================================
   Panya Consulting — locked design system
   Bone & Ink colours · Playfair Display + Inter · full-bleed media
   See PANYA-BRAND-STYLE-GUIDE.md
   ========================================================= */

:root {
  /* ---- DEFAULT THEME: Bone & Ink (Concept 4 colours + Concept 5 typography)
         Light ivory · ink text · bronze accent · Playfair Display + Inter ---- */
  --bg:        #F4F1EA;
  --bg-2:      #ECE7DC;
  --bg-3:      #E3DCCD;
  --text:      #1E1B17;
  --muted:     rgba(30, 27, 23, 0.62);
  --faint:     rgba(30, 27, 23, 0.16);
  --accent:    #9C7B47;

  /* Text that sits OVER imagery — stays light in every theme */
  --on-media:        #F4F1EA;
  --on-media-muted:  rgba(244, 241, 234, 0.74);
  /* Dark overlay used on all media (keeps captions legible) */
  --media-grad: linear-gradient(180deg, rgba(20,16,12,0.22) 0%, rgba(20,16,12,0.40) 55%, rgba(20,16,12,0.82) 100%);

  --serif: "Playfair Display", Georgia, serif;
  --sans:  "Inter", "Helvetica Neue", Arial, sans-serif;
  --maxw: 1500px;
  --gutter: clamp(20px, 4.5vw, 72px);
}


/* ---- THEME: Bone & Ink (light) — editorial ---- */
[data-theme="bone"] {
  --bg: #F4F1EA; --bg-2: #ECE7DC; --bg-3: #E3DCCD;
  --text: #1E1B17; --muted: rgba(30,27,23,0.62); --faint: rgba(30,27,23,0.16);
  --accent: #9C7B47;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --media-grad: linear-gradient(180deg, rgba(20,16,12,0.22) 0%, rgba(20,16,12,0.40) 55%, rgba(20,16,12,0.82) 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-weight: 300;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.5s ease, color 0.5s ease;
}

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

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(80px, 12vw, 180px) 0; }

/* ---------- type ---------- */
.overline { font-size: 0.7rem; letter-spacing: 0.34em; text-transform: uppercase; font-weight: 400; color: var(--accent); }
.label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); font-weight: 400; }

.display { font-family: var(--serif); font-weight: 400; line-height: 1.02; letter-spacing: -0.005em; }
h1.display { font-size: clamp(2.9rem, 8.5vw, 7.4rem); }
h2.display { font-size: clamp(2.2rem, 5.2vw, 4.4rem); }
h3.display { font-size: clamp(1.7rem, 3vw, 2.5rem); }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.4rem); color: var(--muted); font-weight: 300; max-width: 56ch; }
.stmt { font-family: var(--serif); font-weight: 400; line-height: 1.16; letter-spacing: -0.005em; font-size: clamp(1.9rem, 4.2vw, 3.5rem); }
.stmt em { font-style: italic; color: var(--accent); }

/* ---------- buttons / links ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.7em;
  font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 1.05em 2.1em; border: 1px solid var(--faint); border-radius: 999px;
  color: var(--text); transition: all 0.4s ease;
}
.btn:hover { background: var(--text); color: var(--bg); border-color: var(--text); }
.btn .arrow, .link-line span { transition: transform 0.4s ease; display: inline-block; }
.btn:hover .arrow { transform: translateX(5px); }
.link-line { display: inline-flex; align-items: center; gap: 0.6em; font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase; padding-bottom: 6px; border-bottom: 1px solid var(--accent); color: var(--text); transition: gap 0.3s ease; }
.link-line:hover { gap: 1.1em; }
/* official-website links on partner panels sit over dark imagery — keep them white */
.partner .link-line {
  color: #FFFFFF;
  border-bottom-color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5), 0 2px 14px rgba(0,0,0,0.4);
}
.partner .link-line span { color: #FFFFFF; }
.partner .link-line:hover { border-bottom-color: var(--accent); }

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px var(--gutter); transition: padding 0.4s ease, background 0.4s ease, border-color 0.4s ease;
  color: var(--on-media);                 /* light over hero imagery */
  border-bottom: 1px solid transparent;
}
/* legibility scrim behind header while over imagery */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(7,16,17,0.62) 0%, rgba(7,16,17,0.12) 70%, rgba(7,16,17,0) 100%);
  opacity: 1; transition: opacity 0.4s ease;
}
/* Subtle depth on text that sits over photography (premium + legible) */
.hero h1, .hero .overline, .page-head h1, .page-head .overline,
.project h2, .project .meta, .partner h2, .partner .overline { text-shadow: 0 2px 26px rgba(0,0,0,0.34); }

/* ---------- over-media labels: readable on ANY photo ----------
   Small uppercase labels over imagery switch from gold (weak over photos)
   to soft ivory with a fine gold accent line + refined shadow. */
.hero .overline, .page-head .overline, .partner .overline,
.project .inner > .overline, .exp .label {
  color: var(--on-media);
  text-shadow: 0 1px 4px rgba(0,0,0,0.45), 0 2px 18px rgba(0,0,0,0.5);
}
.hero .overline, .page-head .overline, .partner .overline {
  display: inline-flex; align-items: center; gap: 16px;
}
.hero .overline::before, .page-head .overline::before, .partner .overline::before {
  content: ""; width: 34px; height: 1px; flex: none;
  background: var(--accent);
  box-shadow: 0 1px 5px rgba(0,0,0,0.45);
}
.project .meta div .label,
.exp .label { color: rgba(244,241,234,0.88); }
.project .meta div .val { text-shadow: 0 1px 4px rgba(0,0,0,0.45); }
.scroll-cue { text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.hero .lead, .page-head .sub, .partner .lead, .exp p {
  text-shadow: 0 1px 4px rgba(0,0,0,0.4), 0 2px 16px rgba(0,0,0,0.35);
}
.site-header.scrolled {
  padding: 14px var(--gutter);
  background: var(--bg);
  color: var(--text);                     /* theme text once solid */
  border-bottom: 1px solid var(--faint);
}
.site-header.scrolled::before { opacity: 0; }

.logo { display: flex; flex-direction: column; line-height: 1; color: currentColor; }

/* ---------- wordmark image logo (brand asset, theme-aware) ---------- */
.logo-img { display: block; height: 42px; width: auto; filter: drop-shadow(0 1px 10px rgba(0,0,0,0.35)); transition: height 0.4s ease; }
.site-header.scrolled .logo-img { height: 34px; filter: none; }
.logo .logo-dark { display: none; }
/* light themes: swap to dark wordmark once header turns solid (or mobile nav opens) */
[data-theme="bone"] .site-header.scrolled .logo-light,
[data-theme="bone"] .site-header:has(.nav.open) .logo-light { display: none; }
[data-theme="bone"] .site-header.scrolled .logo-dark,
[data-theme="bone"] .site-header:has(.nav.open) .logo-dark { display: block; filter: none; }

@media (max-width: 900px) { .logo-img { height: 34px; } .site-header.scrolled .logo-img { height: 30px; } }
.nav { display: flex; gap: clamp(20px, 2.6vw, 40px); align-items: center; }
.nav a { font-size: 0.8rem; letter-spacing: 0.06em; color: currentColor; position: relative; padding: 4px 0; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: currentColor; transition: width 0.3s ease; }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav-toggle { display: none; background: none; border: 0; color: currentColor; font-size: 1.4rem; cursor: pointer; }
/* Guarantee logo + nav legibility over any photo (removed once header turns solid) */
.site-header:not(.scrolled) .logo,
.site-header:not(.scrolled) .nav a,
.site-header:not(.scrolled) .nav-toggle { text-shadow: 0 1px 16px rgba(0,0,0,0.45), 0 1px 3px rgba(0,0,0,0.35); }
.site-header.scrolled .logo,
.site-header.scrolled .nav a { text-shadow: none; }

/* ---------- media helper ----------
   Image is set via inline `background-image:url('assets/img/...')` on the element
   (resolves relative to the PAGE, robust across browsers). The themeable dark
   overlay is a separate ::after layer so it never blocks the photo. */
.media {
  position: absolute; inset: 0; overflow: hidden;
  background-color: var(--bg-2);
  background-size: cover; background-position: center; background-repeat: no-repeat;
  transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}
.media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; z-index: 0; }
.media::after { content: ""; position: absolute; inset: 0; z-index: 1; background: var(--media-grad); pointer-events: none; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; color: var(--on-media); }
.hero .media::after { background: linear-gradient(180deg, rgba(7,18,19,0.40) 0%, rgba(7,18,19,0.32) 45%, rgba(7,18,19,0.9) 100%); }
.hero .inner { position: relative; z-index: 2; width: 100%; padding: 0 var(--gutter) clamp(60px, 9vw, 120px); }
.hero .overline { margin-bottom: 26px; }
.hero h1 { max-width: 18ch; margin-bottom: 30px; color: var(--on-media); }
.hero .lead { margin-bottom: 0; color: var(--on-media-muted); }
.scroll-cue { position: absolute; right: var(--gutter); bottom: 40px; z-index: 2; font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--on-media-muted); display: flex; align-items: center; gap: 10px; }
.scroll-cue::after { content: ""; width: 1px; height: 46px; background: var(--on-media-muted); }

/* ---------- overview ---------- */
.overview .figure { position: relative; aspect-ratio: 16/8; border-radius: 2px; overflow: hidden; margin-bottom: 22px; }
.overview .figure:hover .media { transform: scale(1.04); }
.caption { font-family: var(--serif); font-size: 0.95rem; font-style: italic; color: var(--muted); margin-bottom: clamp(40px, 6vw, 80px); }
.overview .stmt { max-width: 24ch; margin-bottom: 38px; }

/* ---------- featured projects (home) ---------- */
.project { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; color: var(--on-media); }
.project:hover .media { transform: scale(1.04); }
.project .inner { position: relative; z-index: 2; width: 100%; padding: 0 var(--gutter) clamp(48px, 6vw, 90px); }
.project h2 { margin-bottom: 22px; color: var(--on-media); }
.project .meta { display: flex; flex-wrap: wrap; gap: clamp(18px, 4vw, 64px); }
.project .meta div .label { display: block; color: var(--on-media-muted); margin-bottom: 6px; }
.project .meta div .val { font-size: 0.92rem; letter-spacing: 0.02em; color: var(--on-media); }

/* ---------- expertise grid ---------- */
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.exp { position: relative; min-height: clamp(420px, 60vh, 680px); display: flex; align-items: flex-end; overflow: hidden; color: var(--on-media); }
.exp:hover .media { transform: scale(1.05); }
.exp .inner { position: relative; z-index: 2; padding: 36px; }
.exp .label { color: var(--on-media-muted); }
.exp h3 { margin: 12px 0 14px; font-weight: 400; color: var(--on-media); }
.exp p { color: var(--on-media-muted); font-size: 0.92rem; max-width: 34ch; }
.exp-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: 48px; }
.exp-head h2 { max-width: 16ch; }

/* ---------- statement ---------- */
.statement-sec { background: var(--bg-2); }
.statement-sec .stmt { max-width: 26ch; margin: 0 auto; text-align: center; }
.statement-sec .ctac { text-align: center; margin-top: 44px; }

/* ---------- brands ---------- */
.brands { text-align: center; border-top: 1px solid var(--faint); }
.brands .overline { margin-bottom: 44px; }
.brand-row { display: flex; justify-content: center; align-items: center; gap: clamp(40px, 9vw, 130px); flex-wrap: wrap; }
.brand-name { font-family: var(--serif); font-weight: 400; font-size: clamp(2rem, 4.4vw, 3.2rem); letter-spacing: 0.02em; opacity: 0.82; transition: opacity 0.3s ease; }
.brand-name span { display: block; font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent); margin-top: 8px; font-weight: 400; }
.brand-name:hover { opacity: 1; }

/* ---------- partner blocks ---------- */
.partner { position: relative; min-height: clamp(80vh, 95vh, 1000px); display: flex; align-items: center; overflow: hidden; color: var(--on-media); }
.partner:hover .media { transform: scale(1.04); }
.partner .inner { position: relative; z-index: 2; width: 100%; padding: clamp(60px,8vw,120px) var(--gutter); max-width: 720px; }
.partner.right .inner { margin-left: auto; }
.partner h2 { margin-bottom: 22px; color: var(--on-media); }
.partner .overline { margin-bottom: 18px; }
.partner .lead { margin-bottom: 30px; color: var(--on-media-muted); }

/* ---------- page header ---------- */
.page-head { position: relative; min-height: 70vh; display: flex; align-items: flex-end; overflow: hidden; color: var(--on-media); }
.page-head .inner { position: relative; z-index: 2; padding: 0 var(--gutter) clamp(50px,7vw,90px); width: 100%; }
.page-head .overline { margin-bottom: 22px; }
.page-head h1 { color: var(--on-media); max-width: 20ch; }
.page-head .sub { color: var(--on-media-muted); max-width: 60ch; margin-top: 24px; font-size: clamp(1rem,1.4vw,1.3rem); }

/* ---------- projects grid (HBA /projects/ style) ---------- */
.proj-intro { padding: clamp(70px,9vw,130px) 0 clamp(30px,4vw,50px); }
.proj-intro .stmt { max-width: 26ch; }
.filters { display: flex; flex-wrap: wrap; gap: 30px; align-items: center; padding: 28px 0; border-top: 1px solid var(--faint); border-bottom: 1px solid var(--faint); margin-bottom: clamp(36px,5vw,64px); }
.filter-group { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.filter-group > .label { margin-right: 4px; }
.chip { font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); background: none; border: 1px solid var(--faint); border-radius: 999px; padding: 9px 18px; cursor: pointer; transition: all 0.3s ease; }
.chip:hover { color: var(--text); border-color: var(--text); }
.chip.active { background: var(--text); color: var(--bg); border-color: var(--text); }

.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.4vw, 38px) clamp(16px, 1.8vw, 26px); }
.pcard { cursor: pointer; }
.pcard .thumb { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 2px; margin-bottom: 18px; background: var(--bg-2); }
.pcard .thumb .media { transition: transform 1.1s cubic-bezier(.2,.7,.2,1); }
.pcard:hover .thumb .media { transform: scale(1.06); }
.pcard .tags { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-bottom: 10px; }
.pcard .tags span { font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.pcard h3 { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; line-height: 1.2; }
.pcard .yr { color: var(--muted); }
.proj-note { margin-top: clamp(50px,6vw,80px); padding-top: 30px; border-top: 1px solid var(--faint); font-size: 0.84rem; color: var(--muted); max-width: 70ch; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 110px); }
.detail { padding: 26px 0; border-top: 1px solid var(--faint); }
.detail .k { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.detail .v { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.detail .v a:hover { color: var(--accent); }
.form label { display: block; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin: 24px 0 8px; }
.form input, .form textarea, .form select { width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--faint); padding: 12px 0; font-family: var(--sans); font-size: 1rem; color: var(--text); font-weight: 300; border-radius: 0; -webkit-appearance: none; appearance: none; }
.form select { cursor: pointer; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 14px) 50%, calc(100% - 8px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }
.form select option { background: var(--bg); color: var(--text); }
.form input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--accent); }
.form .btn { margin-top: 36px; cursor: pointer; background: none; }

/* ---------- footer ---------- */
.site-footer { background: var(--bg); border-top: 1px solid var(--faint); padding: clamp(70px,9vw,130px) 0 40px; }
.footer-cta { text-align: center; padding-bottom: 80px; }
.footer-cta h2 { margin: 18px 0 34px; }
.footer-fine { font-size: 0.72rem; line-height: 1.6; color: var(--muted); max-width: 80ch; margin: 0 auto 30px; text-align: center; opacity: 0.85; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px; padding-top: 38px; border-top: 1px solid var(--faint); font-size: 0.78rem; color: var(--muted); }
.footer-bottom a:hover { color: var(--accent); }


/* ---------- trust / credibility strip ---------- */
.trust { border-top: 1px solid var(--faint); border-bottom: 1px solid var(--faint); }
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: clamp(36px,5vw,64px) clamp(16px,2.4vw,36px); border-right: 1px solid var(--faint); }
.stat:last-child { border-right: 0; }
.stat .n { font-family: var(--serif); font-size: clamp(2rem,3.4vw,2.9rem); line-height: 1; margin-bottom: 12px; }
.stat .l { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 760px){ .trust-row { grid-template-columns: 1fr 1fr; } .stat:nth-child(2){border-right:0;} }

/* ---------- capabilities row ---------- */
.caps { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--faint); border: 1px solid var(--faint); }
.cap { background: var(--bg); padding: clamp(30px,4vw,52px); }
.cap .n { font-family: var(--serif); color: var(--accent); font-size: 1.2rem; margin-bottom: 14px; }
.cap h4 { font-family: var(--serif); font-weight: 400; font-size: 1.45rem; margin-bottom: 10px; }
.cap p { color: var(--muted); font-size: 0.95rem; }
@media (max-width: 760px){ .caps { grid-template-columns: 1fr; } }

/* message field: starts single-line like the other fields, auto-grows via JS */
.form textarea { resize: none; overflow-y: auto; min-height: 47px; max-height: 220px; line-height: 1.5; }

/* ---------- contact form status ---------- */
.form-status { display: none; margin-top: 18px; font-size: 0.92rem; line-height: 1.5; padding: 14px 18px; border-radius: 2px; }
.form-status.success { display: block; color: var(--text); border: 1px solid var(--accent); background: color-mix(in srgb, var(--accent) 10%, transparent); }
.form-status.error { display: block; color: var(--text); border: 1px solid var(--faint); background: var(--bg-2); }

/* ---------- craft strip (partners) ---------- */
.craft-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 1.8vw, 26px); }
.craft { position: relative; }
.craft .media { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 2px; transition: transform 1.1s cubic-bezier(.2,.7,.2,1); }
.craft .media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.1s cubic-bezier(.2,.7,.2,1); }
.craft:hover .media img { transform: scale(1.06); }
.craft .media::after { background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.18) 100%); }
.craft figcaption { margin-top: 14px; font-size: 0.85rem; color: var(--muted); }
.craft figcaption .label { display: block; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
@media (max-width: 900px) { .craft-grid { grid-template-columns: 1fr; } .craft .media { aspect-ratio: 16/10; } }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s ease, transform 1s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- premium interaction polish ---------- */
/* soft page entrance */
@keyframes pageFade { from { opacity: 0; } to { opacity: 1; } }
body { animation: pageFade 0.7s ease both; }
/* gentle card lift on hover */
.pcard { transition: transform 0.6s cubic-bezier(.2,.7,.2,1); }
.pcard:hover { transform: translateY(-6px); }
.craft { transition: transform 0.6s cubic-bezier(.2,.7,.2,1); }
.craft:hover { transform: translateY(-6px); }
/* refined form focus */
.form input:focus, .form textarea:focus, .form select:focus { box-shadow: 0 1px 0 0 var(--accent); }
/* accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .pcard, .craft, .media, .media > img, .logo-img, .btn, .link-line { transition: none !important; }
  .pcard:hover, .craft:hover { transform: none; }
  .exp:hover .media, .partner:hover .media, .project:hover .media,
  .pcard:hover .thumb .media, .craft:hover .media img { transform: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1000px) { .proj-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) {
  .nav { position: fixed; inset: 0; flex-direction: column; justify-content: center; align-items: center; gap: 34px; background: var(--bg); transform: translateY(-100%); transition: transform 0.5s ease; mix-blend-mode: normal; }
  .nav.open { transform: none; }
  .nav a { font-size: 1.3rem; color: var(--text); }
  .nav-toggle { display: block; z-index: 210; }
  .exp-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) { .proj-grid { grid-template-columns: 1fr; } }
