/* Marisa Stitches Studio — styles.css */

:root {
  --ivory: #F4EFE7;
  --cream: #F8F4EC;
  --emerald: #1F4D3A;
  --navy: #1E2F4A;
  --gold: #C89A3C;
  --cobalt: #2E5FA5;
  --bright-green: #2FAF74;
  --sky: #8DB9E2;
  --black: #1A1A1A;
}

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

body {
  background: var(--ivory);
  color: var(--black);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* linen texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 17px, rgba(160,130,80,0.055) 17px, rgba(160,130,80,0.055) 18px);
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2.5rem;
  background: var(--ivory);
  border-bottom: 1px solid rgba(200,154,60,0.18);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-m {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.nav-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--emerald);
  line-height: 1.1;
}

.nav-wordmark span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.55rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--emerald);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--emerald);
  padding: 0.6rem 1.25rem;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--navy); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 2.5rem 4rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* zebra left edge */
.hero-zebra-left {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 8px;
  background: repeating-linear-gradient(180deg, #1A1A1A 0px, #1A1A1A 12px, var(--ivory) 12px, var(--ivory) 20px);
  opacity: 0.4;
}

/* cheetah bg top right */
.hero-cheetah-bg {
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background-color: var(--gold);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.07;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.hero-text { position: relative; z-index: 2; }

.hero-kicker {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  animation: fadeUp 0.8s ease both;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--emerald);
  margin-bottom: 0.35rem;
  animation: fadeUp 0.8s ease 0.1s both;
}

.hero-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--navy);
  font-size: 0.85em;
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  font-weight: 300;
  color: var(--navy);
  opacity: 0.8;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--navy);
  opacity: 0.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.4s both;
}

.btn {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

.btn-solid {
  color: var(--ivory);
  background: var(--emerald);
}
.btn-solid:hover { background: var(--navy); }

.btn-outline {
  color: var(--emerald);
  background: transparent;
  border: 1px solid var(--emerald);
}
.btn-outline:hover { background: var(--emerald); color: var(--ivory); }

/* hero M */
.hero-m-wrap {
  position: relative;
  z-index: 2;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-m-wrap svg {
  width: min(260px, 35vw);
  height: auto;
  filter: drop-shadow(2px 4px 24px rgba(31,77,58,0.12));
}

/* diamond strip */
.diamonds {
  display: flex;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.diamonds span {
  flex: 1;
  height: 6px;
}

/* ── MARQUEE ── */
.marquee {
  background: var(--navy);
  padding: 0.7rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 20s linear infinite;
}
.marquee-track span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(244,239,231,0.75);
  letter-spacing: 0.08em;
  padding: 0 1.5rem;
}
.marquee-track b {
  color: var(--gold);
  font-weight: 400;
}

/* ── SECTION SHARED ── */
section { position: relative; z-index: 1; }

.section-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 2.5rem;
}

.eyebrow {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-h {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--emerald);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.section-h em {
  font-style: italic;
  font-weight: 400;
}

.thin-rule {
  width: 100%;
  height: 1px;
  background: rgba(200,154,60,0.25);
  margin: 1rem 0 2rem;
}

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

.about-body p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.about-body p strong {
  font-weight: 400;
  color: var(--emerald);
}

/* Pattern square mosaic */
.about-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  aspect-ratio: 1;
}

.mosaic-q {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mq-zebra {
  background: repeating-linear-gradient(-42deg, #1A1A1A 0, #1A1A1A 7px, var(--ivory) 7px, var(--ivory) 12px, #1A1A1A 12px, #1A1A1A 16px, var(--ivory) 16px, var(--ivory) 23px);
}
.mq-cheetah {
  background-color: var(--gold);
  background-image:
    radial-gradient(ellipse 13px 9px at 18% 20%, var(--navy) 100%, transparent 100%),
    radial-gradient(ellipse 10px 7px at 62% 12%, var(--navy) 100%, transparent 100%),
    radial-gradient(ellipse 15px 10px at 10% 58%, var(--navy) 100%, transparent 100%),
    radial-gradient(ellipse 12px 8px at 55% 50%, var(--navy) 100%, transparent 100%),
    radial-gradient(ellipse 9px 6px at 80% 72%, var(--navy) 100%, transparent 100%),
    radial-gradient(ellipse 14px 9px at 32% 80%, var(--navy) 100%, transparent 100%);
}
.mq-emerald { background: var(--emerald); }
.mq-navy { background: var(--navy); }

.mq-text {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  font-style: italic;
  color: rgba(244,239,231,0.1);
}

/* ── SERVICES ── */
.services-section {
  background: var(--emerald);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--navy) 0 25%, var(--gold) 25% 37%, var(--bright-green) 37% 50%, var(--cobalt) 50% 62%, var(--navy) 62% 75%, var(--gold) 75% 87%, var(--emerald) 87% 100%);
}

.services-section .eyebrow { color: rgba(244,239,231,0.45); }
.services-section .section-h { color: var(--ivory); }
.services-section .thin-rule { background: rgba(244,239,231,0.12); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: rgba(244,239,231,0.08);
  border: 1px solid rgba(244,239,231,0.08);
  margin-top: 2.5rem;
}

.svc {
  background: var(--emerald);
  padding: 2rem 1.75rem;
  transition: background 0.25s;
}
.svc:hover { background: rgba(244,239,231,0.05); }

.svc-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  font-style: italic;
  color: rgba(200,154,60,0.18);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.svc-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  font-style: italic;
  color: var(--ivory);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.svc-items {
  list-style: none;
  margin-bottom: 1.25rem;
}
.svc-items li {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(244,239,231,0.5);
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.svc-price {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold);
}

/* ── PORTFOLIO ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 2.5rem;
}

.port-item {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.port-item:nth-child(1) { grid-column: span 2; aspect-ratio: 2/1; }

.port-swatch {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.45s ease;
}
.port-item:hover .port-swatch { transform: scale(1.04); }

.port-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(31,77,58,0.92);
  padding: 0.65rem 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--ivory);
  letter-spacing: 0.06em;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.port-item:hover .port-label { transform: translateY(0); }

.ps-zebra { background: repeating-linear-gradient(-42deg, #1A1A1A 0, #1A1A1A 8px, var(--ivory) 8px, var(--ivory) 14px, #1A1A1A 14px, #1A1A1A 18px, var(--ivory) 18px, var(--ivory) 26px); }
.ps-cheetah { background-color: var(--gold); background-image: radial-gradient(ellipse 16px 11px at 15% 18%, var(--navy) 100%, transparent 100%), radial-gradient(ellipse 12px 8px at 58% 10%, var(--navy) 100%, transparent 100%), radial-gradient(ellipse 18px 12px at 8% 55%, var(--navy) 100%, transparent 100%), radial-gradient(ellipse 14px 9px at 50% 48%, var(--navy) 100%, transparent 100%), radial-gradient(ellipse 10px 7px at 80% 30%, var(--navy) 100%, transparent 100%), radial-gradient(ellipse 16px 10px at 28% 78%, var(--navy) 100%, transparent 100%); }
.ps-emerald { background: var(--emerald); }
.ps-navy { background: var(--navy); }
.ps-cobalt { background: var(--cobalt); }
.ps-sky { background: var(--sky); }
.ps-green { background: var(--bright-green); }

.port-ghost {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  font-style: italic;
  color: rgba(244,239,231,0.1);
  user-select: none;
}

/* ── PROCESS ── */
.process-section { background: var(--cream); }

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
}

.p-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(31,77,58,0.08);
  align-items: start;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.p-step.visible { opacity: 1; transform: translateY(0); }

.p-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  font-style: italic;
  color: rgba(200,154,60,0.25);
  line-height: 1;
}

.p-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--emerald);
  margin-bottom: 0.3rem;
}

.p-body {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--navy);
  opacity: 0.7;
  line-height: 1.7;
}

.process-aside {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--emerald);
  color: var(--ivory);
}

.process-aside p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.85;
}

/* ── FORM ── */
.form-section { background: var(--ivory); }

.form-intro {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.form-intro p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--navy);
  margin-bottom: 1rem;
}

.form-notes {
  background: var(--cream);
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--gold);
  margin-bottom: 2.5rem;
}

.form-notes p {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 0.25rem;
}
.form-notes p:last-child { margin-bottom: 0; }

.order-form { display: flex; flex-direction: column; gap: 0; }

.form-block {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(31,77,58,0.1);
}

.form-block-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--emerald);
  margin-bottom: 1.25rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.25rem; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; margin-bottom: 1.25rem; }

.fg { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1.25rem; }
.fg:last-child { margin-bottom: 0; }

.fg label {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--emerald);
  opacity: 0.65;
}

.fg input,
.fg select,
.fg textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(31,77,58,0.25);
  padding: 0.6rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--navy);
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
  appearance: none;
  border-radius: 0;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus { border-bottom-color: var(--gold); }

.fg textarea { resize: none; height: 80px; }

/* Radio/checkbox groups */
.check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.check-pill {
  position: relative;
}

.check-pill input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.check-pill label {
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--navy);
  background: transparent;
  border: 1px solid rgba(31,77,58,0.25);
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  transition: all 0.15s;
  text-transform: none;
  opacity: 1;
}

.check-pill input:checked + label {
  background: var(--emerald);
  color: var(--ivory);
  border-color: var(--emerald);
}

.check-pill label:hover {
  border-color: var(--emerald);
}

.form-submit-row {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.form-success {
  display: none;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
}

/* ── FAQ ── */
.faq-section { background: var(--navy); }
.faq-section .eyebrow { color: rgba(244,239,231,0.4); }
.faq-section .section-h { color: var(--ivory); }
.faq-section .thin-rule { background: rgba(244,239,231,0.1); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(244,239,231,0.06);
  border: 1px solid rgba(244,239,231,0.06);
  margin-top: 2.5rem;
}

.faq-item {
  background: var(--navy);
  padding: 1.75rem;
  transition: background 0.2s;
}
.faq-item:hover { background: rgba(244,239,231,0.04); }

.faq-q {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  font-style: italic;
  color: var(--ivory);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.faq-a {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(244,239,231,0.55);
  line-height: 1.75;
}

/* ── INSTAGRAM ── */
.ig-section {
  background: var(--cream);
  text-align: center;
}

.ig-section .section-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ig-handle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--emerald);
  margin: 1rem 0 0.5rem;
}

.ig-sub {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--navy);
  opacity: 0.6;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

/* fake ig grid */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.ig-cell {
  aspect-ratio: 1;
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 3rem 2.5rem 2rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg,
    var(--navy) 0 20%,
    var(--gold) 20% 32%,
    var(--bright-green) 32% 44%,
    var(--cobalt) 44% 56%,
    var(--sky) 56% 68%,
    var(--navy) 68% 80%,
    var(--gold) 80% 92%,
    var(--emerald) 92% 100%
  );
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ivory);
  margin-bottom: 0.25rem;
}

.footer-brand p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.footer-brand small {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(244,239,231,0.25);
  line-height: 1.6;
  display: block;
}

.footer-col h4 {
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244,239,231,0.3);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(244,239,231,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(244,239,231,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.62rem;
  font-weight: 300;
  color: rgba(244,239,231,0.2);
  letter-spacing: 0.08em;
}

.footer-ig {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(244,239,231,0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-ig:hover { color: var(--gold); }

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { padding: 0.9rem 1.25rem; }
  .nav-links, .nav-cta { display: none; }
  .hero { padding: 5.5rem 1.25rem 3rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-m-wrap { display: flex; justify-content: center; }
  .hero-m-wrap svg { width: 180px; }
  .section-wrap { padding: 4rem 1.25rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-mosaic { display: none; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .port-item:nth-child(1) { grid-column: span 2; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
}
