/* Janelle's Portfolio — recreation of janellechansy.wixstudio.com/myportfolio */

:root {
  --bg: #ffffff;
  --bg-alt: #fbf3f3;
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --muted: #8a8a8a;
  --accent: #f4c2c2;        /* warm rose pink */
  --accent-deep: #d99595;   /* deeper rose */
  --line: #f0d8d8;
  --max: 1180px;
  --radius: 18px;
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='28' viewBox='0 0 24 28'%3E%3Cpath d='M3 2 L3 22 L8 17 L11 24 L14 23 L11 16 L18 16 Z' fill='%23f4c2c2' stroke='%23d99595' stroke-width='1.2' stroke-linejoin='round'/%3E%3C/svg%3E") 3 2, auto;
}

a, button, .btn, .proj-card, .nav-links a, .brand, [role='button'] {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='28' viewBox='0 0 24 28'%3E%3Cpath d='M3 2 L3 22 L8 17 L11 24 L14 23 L11 16 L18 16 Z' fill='%23d99595' stroke='%23a86464' stroke-width='1.2' stroke-linejoin='round'/%3E%3C/svg%3E") 3 2, pointer;
}

@media (hover: none) {
  html, body, a, button, .btn, .proj-card { cursor: auto; }
}

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--ink);
}
.brand img {
  width: 38px;
  height: 38px;
  display: block;
  transition: transform .4s ease;
}
.brand:hover img { transform: rotate(72deg); }
.brand .dot { color: var(--accent-deep); }
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}
.nav-links a { position: relative; padding: 6px 0; }
.nav-links a:hover { color: var(--accent-deep); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
}

/* Hero */
.hero {
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}

/* Cinematic dark hero — pairs with the WebGL liquid animation */
.hero { background: #02040b; }
.hero h1 { color: #ffffff; }
.hero h1 em { color: #fdf8ec; }              /* warm cream italic keeps editorial feel */
.hero .eyebrow { color: #8cecff; }           /* cyan echoes the animation highlight */
.hero p { color: rgba(255, 255, 255, 0.72); }
.hero .btn-primary { background: #ffffff; color: #02040b; }
.hero .btn-primary:hover { background: #8cecff; color: #02040b; }
.hero .btn-ghost { border-color: #ffffff; color: #ffffff; }
.hero .btn-ghost:hover { background: #ffffff; color: #02040b; }

/* WebGL liquid animation behind hero text */
.hero-liquid-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 0;
}
/* Dark wash on the left so the white headline stays readable */
.hero-liquid-mask {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(2,4,11,0.85) 0%, rgba(2,4,11,0.4) 35%, rgba(2,4,11,0) 70%),
    linear-gradient(to bottom, rgba(2,4,11,0.35) 0%, rgba(2,4,11,0) 40%);
}
.hero .container { position: relative; z-index: 2; }

.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-deep);
  margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.05;
  font-weight: 500;
  margin: 0 0 24px;
  max-width: 900px;
}
.hero h1 em {
  font-style: italic;
  color: #fdf8ec;
  font-weight: 500;
}
.hero p {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 640px;
  margin: 0 0 36px;
}

.cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn-ghost {
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--bg); }

/* Sections */
section { padding: 90px 0; }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 500;
  margin: 0;
}
.section-head .kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--muted);
}

/* About */
.about { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.about-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}
.about-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  margin: 0 0 12px;
  font-weight: 500;
}
.about-card .meta { color: var(--muted); font-size: 14px; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 22px; }
.about-card p { color: var(--ink-soft); margin: 0 0 16px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.tag {
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

/* Projects grid */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.proj-card {
  position: relative;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  display: block;
}
.proj-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(0,0,0,.18); }
.proj-thumb {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 64px;
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.proj-thumb img,
.proj-thumb video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--bg-alt);
  display: block;
}
.proj-body { padding: 24px 26px 28px; }
.proj-cat {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 10px;
}
.proj-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 8px;
}
.proj-desc { color: var(--ink-soft); font-size: 15px; margin: 0; }

/* Nav CTA (Book a call) */
.nav-cta {
  background: var(--ink);
  color: var(--bg) !important;
  padding: 8px 16px !important;
  border-radius: 999px;
  letter-spacing: 1.4px;
}
.nav-cta:hover { background: var(--accent-deep); }

/* Hero — clients & press strip */
.hero-logos {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  max-width: 900px;
}
.hero-logos-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}
.hero-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  align-items: center;
}
.hero-logo {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.72);
}

/* Section lead / count */
.section-lead {
  max-width: 420px;
  color: var(--ink-soft);
  margin: 0;
  font-size: 16px;
}
.section-count {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Services */
.services { background: var(--bg); border-bottom: 1px solid var(--line); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 34px 30px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -20px rgba(0,0,0,.12); }
.service-num {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--accent-deep);
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 12px;
  line-height: 1.15;
}
.service-card > p {
  color: var(--ink-soft);
  margin: 0 0 22px;
  font-size: 15px;
}
.service-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.service-bullets li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--ink-soft);
}
.service-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* Project card additions */
.proj-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--serif);
  font-size: 15px;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 1px;
  z-index: 2;
}
.proj-client {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: var(--accent-deep);
  margin: 0 0 8px;
}
.proj-read {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 3px;
}
.proj-card:hover .proj-read { color: var(--accent-deep); }

/* Sectors */
.sectors { background: var(--bg); border-bottom: 1px solid var(--line); }
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.sector-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 14px;
  padding: 28px 28px 26px;
}
.sector-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 10px;
}
.sector-card p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 15px;
}

/* Process (in About) */
.process {
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px solid var(--line);
}
.process-head {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 32px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.process-step {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px 28px;
}
.process-num {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 500;
  color: var(--accent-deep);
  line-height: 1;
  margin-bottom: 14px;
}
.process-step h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 10px;
}
.process-step p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 15px;
}

/* Inline testimonials */
.testimonials-inline { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.testimonials-inline .section-lead {
  max-width: 620px;
  margin: -20px 0 40px;
}
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.quote-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 34px 28px;
  margin: 0;
  position: relative;
}
.quote-card::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  left: 20px;
  font-family: var(--serif);
  font-size: 80px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.7;
}
.quote-card p {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}
.quote-meta {
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
}
.testimonial-links {
  margin-top: 36px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}
.testimonial-more {
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}
.testimonial-more:hover { color: var(--accent-deep); border-color: var(--accent); }

/* Contact — form layout */
.contact {
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.contact h2 { color: var(--bg); }
.contact .kicker.light { color: rgba(253, 248, 236, 0.55); }
.contact-head {
  text-align: center;
  margin-bottom: 40px;
}
.contact-head h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 500;
  margin: 8px 0 20px;
}
.contact-lead {
  color: rgba(253, 248, 236, 0.72);
  max-width: 640px;
  margin: 0 auto;
  font-size: 17px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  margin-top: 20px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 8px;
}
.contact-link {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--bg);
  border-bottom: 1px solid rgba(253, 248, 236, 0.25);
  padding-bottom: 8px;
  transition: color .2s ease, border-color .2s ease;
}
.contact-link:hover { color: var(--accent); border-color: var(--accent); }

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: span 2; }
.field span {
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(253, 248, 236, 0.65);
}
.field input,
.field select,
.field textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--bg);
  font-family: inherit;
  font-size: 15px;
  transition: border-color .18s ease, background .18s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.08);
}
.field textarea { resize: vertical; }
.contact-form .btn-primary {
  grid-column: span 2;
  justify-self: start;
  background: var(--accent);
  color: var(--ink);
  border: none;
  cursor: pointer;
}
.contact-form .btn-primary:hover { background: var(--bg); }
.hp { position: absolute; left: -9999px; visibility: hidden; }

/* Form success popup */
.form-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(26, 26, 26, 0.55);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.form-popup-overlay.open { display: flex; }
.form-popup {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px 40px 36px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.35);
}
.form-popup-icon {
  font-size: 34px;
  color: var(--accent);
  margin-bottom: 14px;
  line-height: 1;
}
.form-popup h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  margin: 0 0 12px;
  color: var(--ink);
}
.form-popup p {
  color: var(--ink-soft);
  margin: 0 0 26px;
  font-size: 16px;
}

/* Footer — 3-column layout */
.site-footer {
  padding: 60px 0 28px;
  border-top: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
}
.footer-desc {
  color: var(--ink-soft);
  font-size: 14px;
  margin: 0;
  max-width: 360px;
  line-height: 1.55;
}
.footer-col-title {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
  font-weight: 600;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.footer-col a {
  color: var(--ink-soft);
  font-size: 14px;
}
.footer-col a:hover { color: var(--accent-deep); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.4px;
}

/* Project detail */
.detail-hero { padding: 80px 0 40px; }
.detail-hero .back {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 30px;
  display: inline-block;
}
.detail-hero .back:hover { color: var(--accent-deep); }
.detail-hero h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.05;
  font-weight: 500;
  margin: 0 0 20px;
}
.detail-meta { display: flex; gap: 20px; flex-wrap: wrap; color: var(--muted); font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; }
.detail-meta span { padding-right: 20px; border-right: 1px solid var(--line); }
.detail-meta span:last-child { border-right: none; }

.detail-body { padding: 40px 0 80px; }
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.detail-grid h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin: 0 0 12px;
  font-weight: 500;
}
.detail-grid .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 8px;
}
.detail-grid p { color: var(--ink-soft); margin: 0 0 16px; }
.deliverables {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.deliverables li {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 15px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 50px;
  align-items: start;
}
.gallery .frame {
  border-radius: 12px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  overflow: hidden;
  display: block;
}
.gallery .frame img,
.gallery .frame video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 92vh;
  object-fit: contain;
  background: var(--bg-alt);
}
.gallery .frame.wide { grid-column: span 2; }

/* Testimonials: force images to fill full frame width regardless of native size */
.testimonials-gallery .frame img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: fill;
}

/* Embedded case-study mockup (used on Tuition page) */
.case-study {
  margin-top: 60px;
  border-radius: 18px;
  overflow: hidden;
}
.case-study-head { margin-bottom: 24px; }
.case-study-head .kicker {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--muted);
  margin-bottom: 8px;
}
.case-study-title {
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 500;
  margin: 0;
  max-width: 800px;
}
.case-study-frame {
  width: 100%;
  height: clamp(720px, 92vw, 1280px);
  border: none;
  display: block;
  border-radius: 18px;
  background: #e9e6df;
}
.case-study-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
}
@media (max-width: 820px) {
  .case-study-frame { height: 720px; }
}

.next-prev {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 30px 0;
  margin-top: 40px;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.next-prev a:hover { color: var(--accent-deep); }

@media (max-width: 960px) {
  .nav-inner { flex-wrap: wrap; gap: 12px; }
  .nav-links { gap: 14px; font-size: 12px; flex-wrap: wrap; justify-content: flex-end; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 820px) {
  .nav-links { gap: 12px; font-size: 11px; }
  .about-grid, .detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .proj-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 20px; }
  .quotes-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; padding: 22px; }
  .field-full { grid-column: auto; }
  .contact-form .btn-primary { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .gallery { grid-template-columns: 1fr; gap: 18px; }
  .gallery .frame.wide { grid-column: auto; }
  .gallery .frame img,
  .gallery .frame video { max-height: none; }
  section { padding: 60px 0; }
  .hero { padding: 60px 0 40px; }
  .section-head { flex-direction: column; align-items: flex-start; }
}
