/* STEEL & SILK — Premium cinematic site */

:root {
  --bg: #080807;
  --bg2: #11100e;
  --card: #1a1815;
  --text: #f5f0ea;
  --muted: #8c8478;
  --gold: #d4af6a;
  --gold-light: #e8c98a;
  --gold-dim: rgba(212, 175, 106, 0.25);
  --steel: #6b7280;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Syne", system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
}

html.lenis, html.lenis body { height: auto; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: default;
}

body.loaded { overflow-x: hidden; }

img { display: block; max-width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection {
  background: var(--gold);
  color: var(--bg);
}

/* ─── Preloader ─── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: grid;
  place-items: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}

.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: 0.35em;
  color: var(--gold);
  display: block;
  margin-bottom: 2rem;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}

.preloader-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--gold);
  animation: loadBar 1.4s var(--ease) forwards;
}

@keyframes loadBar {
  to { width: 100%; }
}

/* ─── Cursor glow (desktop) ─── */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,106,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

@media (min-width: 1024px) {
  .cursor-glow { opacity: 1; }
}

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.5s, backdrop-filter 0.5s;
}

.header.scrolled {
  background: rgba(8, 8, 7, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 106, 0.08);
}

.nav {
  width: min(1400px, 94vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: var(--text);
}

.logo em {
  color: var(--gold);
  font-style: normal;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 0.65rem 1.4rem !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-dim) !important; }

.nav-burger {
  display: none;
  width: 32px;
  height: 20px;
  position: relative;
}

.nav-burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--text);
  transition: 0.4s var(--ease);
}

.nav-burger span:first-child { top: 0; }
.nav-burger span:last-child { bottom: 0; }

.nav-burger.open span:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.nav-burger.open span:last-child {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s var(--ease);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 3rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--gold); }

/* ─── Hero ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.2s ease, transform 8s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--bg) 0%, transparent 40%),
    linear-gradient(to right, rgba(8,8,7,0.7) 0%, transparent 60%),
    rgba(8, 8, 7, 0.35);
  z-index: 1;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 5vw 12vh;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  line-height: 0.95;
  margin-bottom: 1.5rem;
}

.hero-title .line {
  display: block;
  font-size: clamp(3.5rem, 12vw, 8rem);
  letter-spacing: 0.04em;
  overflow: hidden;
}

.hero-title .word {
  display: inline-block;
  transform: translateY(110%);
}

.hero-title .accent {
  color: var(--gold);
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s;
}

.btn-gold {
  background: var(--gold);
  color: var(--bg);
}

.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 0 40px rgba(212, 175, 106, 0.35);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid rgba(245, 240, 234, 0.35);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-indicators {
  position: absolute;
  right: 5vw;
  bottom: 50%;
  transform: translateY(50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  transition: 0.4s;
}

.hero-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 4vh;
  right: 5vw;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0%, 100% { transform: scaleY(0.6); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ─── Marquee ─── */
.marquee-wrap {
  padding: 2rem 0;
  border-block: 1px solid rgba(212, 175, 106, 0.12);
  overflow: hidden;
  background: var(--bg2);
}

.marquee {
  display: flex;
  gap: 4rem;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee span {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.15em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 175, 106, 0.25);
  white-space: nowrap;
  flex-shrink: 0;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ─── Tags & sections ─── */
.tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 400;
}

h2 em {
  color: var(--gold);
  font-style: normal;
}

.lead {
  font-size: 1.1rem;
  color: var(--text);
  margin: 1.5rem 0;
  line-height: 1.7;
}

.link-arrow {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: transform 0.3s;
}

.link-arrow:hover { transform: translateX(8px); }

/* ─── About ─── */
.about {
  padding: clamp(6rem, 12vw, 10rem) 5vw;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5vw;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.about-visual {
  position: relative;
}

.about-img-main {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  transition: transform 1.2s var(--ease);
}

.about-visual:hover .about-img-main img {
  transform: scale(1.05);
}

.about-img-float {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 45%;
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  border: 4px solid var(--bg);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.about-badge {
  position: absolute;
  top: 2rem;
  left: -1.5rem;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: spinSlow 20s linear infinite;
}

.about-badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3;
  animation: spinSlow 20s linear infinite reverse;
}

@keyframes spinSlow {
  to { transform: rotate(360deg); }
}

.about-text p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ─── Space panels ─── */
.spaces {
  padding-bottom: 2rem;
}

.spaces-header {
  padding: 4rem 5vw 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.space-panel {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-bottom: 2px;
}

.space-panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 1.5s var(--ease);
}

.space-panel.in-view .space-panel-bg {
  transform: scale(1);
}

.space-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, rgba(8,8,7,0.4) 50%, rgba(8,8,7,0.2) 100%);
}

.space-panel-content {
  position: relative;
  z-index: 2;
  padding: 6rem 5vw;
  max-width: 600px;
}

.space-num {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.space-panel h3 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.space-panel p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.space-panel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.space-panel li {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1px solid var(--gold-dim);
  color: var(--gold);
}

/* ─── Gallery ─── */
.gallery {
  padding: clamp(6rem, 10vw, 8rem) 5vw;
  background: var(--bg2);
}

.gallery-head {
  margin-bottom: 3rem;
  max-width: 1400px;
  margin-inline: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 12px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  transition: transform 0.8s var(--ease), filter 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(transparent, rgba(8,8,7,0.9));
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
}

.gallery-item:hover figcaption {
  transform: translateY(0);
}

.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* ─── Parallax experience ─── */
.experience {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: -20% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.experience::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 7, 0.75);
}

.experience-inner {
  position: relative;
  z-index: 2;
  padding: 6rem 5vw;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.experience blockquote p {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: 4rem;
}

.experience blockquote em {
  color: var(--gold);
  font-style: normal;
}

.experience-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.exp-card {
  padding: 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212, 175, 106, 0.15);
  border-radius: 4px;
  backdrop-filter: blur(10px);
  transition: transform 0.4s var(--ease), border-color 0.4s;
}

.exp-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.exp-time {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.exp-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.exp-card p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ─── Services ─── */
.services {
  padding: clamp(6rem, 10vw, 8rem) 5vw;
}

.services-wrap {
  max-width: 1400px;
  margin: 0 auto;
}

.services-intro {
  margin-bottom: 3rem;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.svc-card {
  background: var(--card);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}

.svc-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.svc-card--highlight {
  border-color: var(--gold-dim);
  box-shadow: 0 0 60px rgba(212, 175, 106, 0.08);
}

.svc-img {
  height: 220px;
  overflow: hidden;
}

.svc-img img {
  width: 100%;
  height: 100%;
  transition: transform 0.8s var(--ease);
}

.svc-card:hover .svc-img img {
  transform: scale(1.1);
}

.svc-body {
  padding: 1.75rem;
}

.svc-body h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.svc-body p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.svc-link {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── Location ─── */
.location {
  padding: clamp(6rem, 10vw, 8rem) 5vw;
  background: var(--bg2);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.location-visual {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.location-visual img {
  width: 100%;
  height: 100%;
}

.location-pin {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: var(--gold);
  color: var(--bg);
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
}

.location-pin span {
  font-family: var(--font-display);
  font-size: 2rem;
  display: block;
  line-height: 1;
}

.location-pin p {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.location-text p,
.location-text address {
  color: var(--muted);
  line-height: 1.8;
  margin: 1.5rem 0;
  font-style: normal;
}

.location-text strong {
  color: var(--text);
  font-size: 1.1rem;
}

/* ─── Contact ─── */
.contact {
  padding: clamp(6rem, 10vw, 8rem) 5vw;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

.contact-left p {
  color: var(--muted);
  margin-top: 1.5rem;
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.field {
  position: relative;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 1.2rem 0 0.6rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  outline: none;
  transition: border-color 0.3s;
}

.field label {
  position: absolute;
  left: 0;
  top: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  pointer-events: none;
  transition: 0.3s var(--ease);
}

.field input:focus,
.field input:not(:placeholder-shown),
.field select:valid,
.field textarea:focus,
.field textarea:not(:placeholder-shown) {
  border-color: var(--gold);
}

.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field select:valid + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  top: -0.2rem;
  font-size: 0.6rem;
  color: var(--gold);
}

.field select {
  appearance: none;
  cursor: pointer;
}

.field select option {
  background: var(--bg2);
}

.btn-submit {
  margin-top: 1rem;
  width: 100%;
}

.btn-submit.sent span::after {
  content: " — Thank You!";
}

/* ─── Footer ─── */
.footer {
  padding: 3rem 5vw;
  border-top: 1px solid rgba(212, 175, 106, 0.1);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.footer p {
  flex: 1;
  font-size: 0.85rem;
  color: var(--muted);
  min-width: 200px;
}

.footer nav {
  display: flex;
  gap: 2rem;
}

.footer nav a {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}

.footer nav a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.6;
}

/* ─── Reveal helpers (initial state) ─── */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
}

.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal-scale { transform: scale(0.92); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-burger { display: block; }

  .about-grid,
  .location-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .about-img-float {
    right: 1rem;
    bottom: -1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .g-wide { grid-column: span 2; }
  .g-tall { grid-row: span 1; }

  .experience-cards,
  .services-cards {
    grid-template-columns: 1fr;
  }

  .space-panel { min-height: 70vh; }

  .hero-indicators { bottom: 15%; top: auto; transform: none; flex-direction: row; right: 5vw; }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .g-wide { grid-column: span 1; }

  .hero-scroll-hint { display: none; }
}
