@font-face {
  font-family: "Articulat CF";
  src: url("assets/fonts/ArticulatCF-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Articulat CF";
  src: url("assets/fonts/ArticulatCF-DemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Articulat CF";
  src: url("assets/fonts/ArticulatCF-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Articulat CF";
  src: url("assets/fonts/ArticulatCF-Heavy.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #f7f4ef;
  --paper-clean: #ffffff;
  --ink: #111111;
  --ink-soft: #2b2b2b;
  --muted: #626262;
  --line: rgba(17, 17, 17, 0.14);
  --brand: #cf7f24;
  --brand-bright: #fbae17;
  --brand-soft: #fff1dc;
  --panel: #ffffff;
  --dark: #111111;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.1);
  --font-brand: "Articulat CF", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, transparent 0 37%, rgba(207, 127, 36, 0.1) 37.1% 39.1%, transparent 39.2%),
    radial-gradient(circle at var(--mx, 20%) var(--my, 12%), rgba(251, 174, 23, 0.16), transparent 19rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--font-brand);
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 70px);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, padding 240ms ease, box-shadow 240ms ease;
}

.site-header.scrolled {
  padding-block: 12px;
  border-color: rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 40px rgba(17, 17, 17, 0.07);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(220px, 48vw);
}

.brand-logo {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  transition: color 200ms ease, transform 200ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--brand);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brand);
  transform: translateY(-1px);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1.24fr) minmax(300px, 0.76fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  overflow: hidden;
  padding: 132px clamp(20px, 6vw, 86px) 82px;
}

.hero::before {
  position: absolute;
  top: 13%;
  right: -10vw;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 50%;
  content: "";
  animation: orbit 14s linear infinite;
}

.hero::after {
  position: absolute;
  inset: auto -12vw 10% 54%;
  height: 86px;
  background: var(--dark);
  content: "";
  transform: rotate(-32deg);
  animation: stripeDrift 7s ease-in-out infinite alternate;
}

.hero-bg {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  min-height: min(68svh, 680px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.15)),
    url("assets/images/IMAGEN-INICIAL.png") center / cover;
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: imageFloat 6s ease-in-out infinite;
}

.hero-bg::after {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  content: "";
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-overlay::before {
  position: absolute;
  top: 24%;
  left: -22vw;
  width: 70vw;
  height: 42px;
  background: var(--brand);
  content: "";
  opacity: 0.9;
  transform: rotate(-32deg);
  animation: stripePulse 5s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  width: min(1180px, 100%);
}

.hero-stamp {
  position: absolute;
  right: clamp(20px, 7vw, 96px);
  bottom: clamp(28px, 8vw, 86px);
  z-index: 2;
  display: grid;
  width: clamp(82px, 12vw, 150px);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--paper-clean);
  box-shadow: 0 20px 60px rgba(17, 17, 17, 0.16);
  animation: stampSpin 18s linear infinite;
}


.hero-overlay::before {
    opacity: 0.5;
}

.hero-stamp img {
  width: 72%;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.93;
  text-transform: uppercase;
}

h1 {
  max-width: 1180px;
  font-size: clamp(3.25rem, 6.7vw, 7.1rem);
  word-break: normal;
  hyphens: none;
}

h2 {
  max-width: 880px;
  font-size: clamp(2.45rem, 5.4vw, 5.2rem);
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.15;
}

.hero-copy {
  max-width: 570px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 13px 22px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.28);
  content: "";
  transform: translateX(-110%) skewX(-18deg);
  transition: transform 380ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(110%) skewX(-18deg);
}

.button-primary {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.button-secondary {
  background: transparent;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 34px;
  height: 54px;
  place-items: start center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 5px;
  height: 5px;
  margin-top: 13px;
  border-radius: 50%;
  background: var(--brand);
  animation: cue 1.8s ease-in-out infinite;
}

.section {
  position: relative;
  padding: clamp(76px, 10vw, 132px) clamp(20px, 6vw, 86px);
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: clamp(34px, 6vw, 58px);
}

.value-grid,
.blog-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-item,
.blog-card,
.project-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 70px rgba(17, 17, 17, 0.06);
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.value-item::before,
.blog-card::before,
.project-card::before {
  position: absolute;
  top: 0;
  left: -30%;
  width: 28%;
  height: 100%;
  background: rgba(251, 174, 23, 0.14);
  content: "";
  transform: skewX(-18deg);
  transition: left 360ms ease;
}

.value-item:hover,
.blog-card:hover,
.project-card:hover {
  border-color: rgba(207, 127, 36, 0.48);
  box-shadow: 0 26px 80px rgba(17, 17, 17, 0.12);
  transform: translateY(-8px);
}

.value-item:hover::before,
.blog-card:hover::before,
.project-card:hover::before {
  left: 112%;
}

.value-item {
  min-height: 250px;
  padding: 28px;
}

.icon-line {
  display: inline-flex;
  margin-bottom: 58px;
  color: var(--brand);
  font-size: 1.45rem;
  font-weight: 800;
}

.value-item p,
.blog-card p,
.project-card span,
.quote-copy p,
.about-copy p,
.modal-content p {
  color: var(--muted);
}

.portfolio-section {
  background:
    linear-gradient(135deg, transparent 0 18%, rgba(17, 17, 17, 0.08) 18.1% 20.2%, transparent 20.3%),
    var(--paper-clean);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 8px 14px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.filter:hover,
.filter.active {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.project-card {
  grid-column: span 4;
  cursor: pointer;
}

.project-card:nth-child(1),
.project-card:nth-child(5) {
  grid-column: span 6;
}

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
  transition: transform 520ms ease, filter 420ms ease;
}

.project-card:nth-child(2) img,
.project-card:nth-child(4) img {
  object-position: right top;
}

.project-card:hover img {
  filter: saturate(1.12) contrast(1.1);
  transform: scale(1.06) rotate(0.5deg);
}

.project-card div,
.blog-card div {
  position: relative;
  z-index: 1;
  padding: 22px;
}

.project-card p {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-card span {
  display: block;
  margin-top: 9px;
  font-size: 0.95rem;
}

.quote-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
}

.quote-copy {
  position: sticky;
  top: 120px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: clamp(20px, 4vw, 34px);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fafafa;
  color: var(--ink);
  outline: none;
  padding: 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(207, 127, 36, 0.12);
}

textarea {
  resize: vertical;
}

.file-input {
  min-height: 88px;
  place-items: center;
  border: 1px dashed rgba(207, 127, 36, 0.52);
  border-radius: var(--radius);
  background: var(--brand-soft);
  color: var(--ink-soft);
  cursor: pointer;
  padding: 18px;
}

.file-input input {
  border: 0;
  background: transparent;
  padding: 0;
}

.privacy-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.form-message {
  display: none;
  grid-column: 1 / -1;
  margin: 0;
  border: 1px solid rgba(207, 127, 36, 0.34);
  border-radius: var(--radius);
  background: var(--brand-soft);
  color: var(--ink);
  padding: 14px;
  font-weight: 700;
}

.form-message.visible {
  display: block;
}

.about-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(26px, 6vw, 78px);
  align-items: center;
  background:
    linear-gradient(135deg, transparent 0 72%, rgba(17, 17, 17, 0.1) 72.1% 76%, transparent 76.1%),
    var(--paper);
}

.about-copy {
  position: relative;
  z-index: 1;
}

.about-image {
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.08)),
    url("assets/images/SOBRE-MAHALO.png") center / cover;
  box-shadow: var(--shadow);
  animation: imageFloat 7s ease-in-out infinite;
}

.about-copy p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--ink);
}

.blog-card {
  background: #fff;
}

.blog-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 520ms ease;
}

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

.blog-card:nth-child(1) img {
  object-position: right bottom;
}

.cta-section {
  padding-top: 24px;
  background: var(--paper-clean);
}

.cta-inner {
  position: relative;
  display: grid;
  justify-items: start;
  gap: 24px;
  border-block: 1px solid var(--line);
  padding: clamp(44px, 7vw, 78px) 0;
}

.cta-inner::after {
  position: absolute;
  right: 0;
  bottom: 28px;
  width: min(34vw, 420px);
  height: 34px;
  background: var(--brand);
  content: "";
  transform: rotate(-18deg);
}

.contact-section {
  background: var(--paper-clean);
}

.contact-grid {
  align-items: stretch;
}

.contact-grid a,
.contact-grid span {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease, color 180ms ease;
}

.contact-grid a:hover {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
  transform: translateY(-5px) rotate(-1deg);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(17, 17, 17, 0.54);
  padding: 18px;
  backdrop-filter: blur(14px);
}

.modal.open {
  display: flex;
}

.modal-panel {
  position: relative;
  display: grid;
  width: min(1040px, 100%);
  max-height: min(860px, 92svh);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.modal-hero-image {
  width: 100%;
  max-height: min(68svh, 760px);
  background: var(--paper);
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.modal-content {
  padding: clamp(22px, 4vw, 42px);
}

.modal-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.gallery-thumb {
  display: block;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.gallery-thumb:hover,
.gallery-thumb:focus-visible,
.gallery-thumb.active {
  border-color: var(--brand);
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.1);
  transform: translateY(-3px);
}

.gallery-thumb img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;

  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;

  border: 1px solid var(--brand);
  background: var(--brand) url("./assets/images/whatsapp.svg") no-repeat center;
  background-size: 60%;

  box-shadow: 0 16px 44px rgba(207, 127, 36, 0.3);
  transition: transform 180ms ease, background 180ms ease;
  animation: waPulse 2.8s ease-in-out infinite;

  font-size: 0; /* prevents any leftover text rendering issues */
}

.whatsapp-float:hover {
  background-color: var(--dark);
  background-image: url("./assets/images/whatsapp2.svg");
  transform: translateY(-4px);
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes cue {
  0%,
  100% {
    opacity: 0;
    transform: translateY(0);
  }
  42% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: translateY(18px);
  }
}

@keyframes imageFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(-0.5deg);
  }
}

@keyframes stripePulse {
  0%,
  100% {
    transform: translateX(0) rotate(-32deg);
  }
  50% {
    transform: translateX(7vw) rotate(-32deg);
  }
}

@keyframes stripeDrift {
  from {
    transform: translateX(0) rotate(-32deg);
  }
  to {
    transform: translateX(-4vw) rotate(-32deg);
  }
}

@keyframes stampSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes waPulse {
  0%,
  100% {
    box-shadow: 0 16px 44px rgba(207, 127, 36, 0.3);
  }
  50% {
    box-shadow: 0 16px 44px rgba(207, 127, 36, 0.3), 0 0 0 12px rgba(207, 127, 36, 0.08);
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    position: relative;
    z-index: 22;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    cursor: pointer;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: var(--ink);
    transition: transform 200ms ease;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: grid;
    place-content: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    font-size: 1.4rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    overflow-x:hidden;
  }

  .hero-content {
      .grid-column: 1;
      width: 100%;
      max-width: 100%;
  }
  .hero-bg {
    grid-column: 1;
    
  }

  .hero-bg {
    grid-row: 2;
    min-height: 460px;
  }

  .hero-stamp {
    background-color: #ffffff;
    right: 26px;
    bottom: 86px;
  }

  .value-grid,
  .blog-grid,
  .contact-grid,
  .quote-section,
  .about-section {
    grid-template-columns: 1fr;
  }

  .quote-copy {
    position: static;
  }

  .project-card,
  .project-card:nth-child(1),
  .project-card:nth-child(5) {
    grid-column: span 6;
  }

  .about-image {
    min-height: 480px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding-inline: 18px;
  }

  .brand {
    width: min(186px, 58vw);
  }

  h1 {
    font-size: clamp(2.5rem, 13vw, 4.2rem);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero {
    min-height: auto;
    padding: 116px 18px 92px;
  }

  .hero::after {
    inset: auto -28vw 21% 35%;
    height: 58px;
  }

  .hero-overlay::before {
    top: 26%;
    left: -34vw;
    height: 34px;
    opacity: 0.72;
  }

  .hero-bg {
    min-height: 330px;
  }

  .hero-stamp {
    width: 86px;
    right: 20px;
    bottom: 46px;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .section {
    padding-inline: 18px;
  }

  .project-card,
  .project-card:nth-child(1),
  .project-card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .project-card img {
    height: auto;
  }

  .blog-card img {
    height: 250px;
  }

  .lead-form,
  .modal-gallery {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 360px;
  }

  .contact-grid a,
  .contact-grid span {
    min-height: 82px;
  }

  .cta-inner::after {
    width: 46vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

  .hero-content {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-bg {
    grid-column: 1;
    grid-row: 2;
    min-height: 320px;
  }

  h1 {
    font-size: clamp(2.4rem, 10vw, 4.2rem);
    line-height: 0.95;
  }

  .hero-copy {
    font-size: 1.05rem;
  }
