:root{
  --cream:        #efe9dc;
  --cream-2:      #e5dcc9;
  --stone:        #d8cdb8;
  --ink:          #362f27;
  --ink-soft:     #5a5346;
  --gray:         #8c8577;
  --gray-line:    #c7bda8;
  --gold:         #cf9d4f;
  --gold-soft:    #e0bc7c;
  --amber:        #b97a3d;
  --amber-deep:   #93602c;
  --blurple:      #5865F2;
  --blurple-dark: #4752c4;

  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;

  --shadow-card: 0 10px 30px -12px rgba(54,47,39,0.35);
  --shadow-soft: 0 4px 14px -6px rgba(54,47,39,0.25);

  --font-display: "Baloo 2", "Fredoka", system-ui, sans-serif;
  --font-body: "Nunito Sans", "Inter", system-ui, sans-serif;
}

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

body{
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

:focus-visible{
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap{
  width: min(1180px, 92%);
  margin-inline: auto;
}

.hex-texture{
  background-image:
    radial-gradient(circle at 50% 50%, transparent 0, transparent 40%, rgba(54,47,39,.035) 41%, rgba(54,47,39,.035) 42%, transparent 43%);
  background-size: 64px 74px;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(239,233,220,0.97);
  border-bottom: 1px solid var(--gray-line);
}

.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.nav-brand{
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.2px;
  color: var(--ink);
}
.nav-brand img{ height: 40px; width: auto; }

.nav-links{
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
}
.nav-links a{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  position: relative;
  z-index: 1;
  padding: 9px 14px;
  border-radius: 999px;
  transition: color .2s ease;
}
.nav-links a:hover{ color: var(--amber-deep); }
.nav-links a.active{ color: var(--amber-deep); }

.nav-icon{
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  fill: currentColor;
  opacity: .85;
}

.nav-underline{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: rgba(207,157,79,0.16);
  transform: translateX(0);
  transition: transform .38s cubic-bezier(.65,.05,.36,1), width .38s cubic-bezier(.65,.05,.36,1), opacity .2s ease;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
}
.nav-underline.is-ready{ opacity: 1; }

.nav-cta{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
  background: var(--ink);
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease;
}
.nav-cta:hover{ transform: translateY(-2px); box-shadow: 0 10px 20px -8px rgba(54,47,39,.45); }
.nav-cta svg{ width: 16px; height: 16px; }

.nav-toggle{
  display: none;
  position: relative;
  z-index: 101;
  background: none;
  border: none;
  width: 36px;
  height: 32px;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span{
  display: block;
  width: 24px;
  height: 3px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 3px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle.is-active span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2){ opacity: 0; }
.nav-toggle.is-active span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

.nav-scrim{
  display: none;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn svg{ width: 20px; height: 20px; flex-shrink: 0; }

.btn-roblox{
  background: #111;
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(0,0,0,.6);
}
.btn-roblox:hover{ transform: translateY(-3px); background: #000; }

.btn-discord{
  background: var(--blurple);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(88,101,242,.55);
}
.btn-discord:hover{ transform: translateY(-3px); background: var(--blurple-dark); }

.btn-outline{
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-outline:hover{ background: var(--ink); color: var(--cream); }

.btn-ghost-light{
  background: rgba(255,255,255,0.14);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover{ background: rgba(255,255,255,0.26); transform: translateY(-3px); }

.hero{
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.slideshow{
  position: absolute;
  inset: 0;
  z-index: -2;
}
.slideshow img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.6s ease, transform 8s ease;
}
.slideshow img.is-active{
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(30,23,14,0.88) 0%, rgba(30,23,14,0.5) 38%, rgba(35,28,18,0.28) 62%, rgba(45,34,18,0.42) 100%);
}

.hero-inner{
  position: relative;
  width: 100%;
  padding: 160px 0 76px;
  color: #fff;
}

@media (min-width: 721px){
  .hero-inner{
    padding-left: clamp(30px, 7vw, 130px);
  }
}

.hero-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
  margin-bottom: 22px;
}
.hero-eyebrow .dot{
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 0 4px rgba(224,188,124,0.25);
}

.hero-logo{
  width: min(560px, 78vw);
  margin-bottom: 18px;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,.45));
}

.hero h1{ position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.hero p.lede{
  max-width: 560px;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #f1ead9;
  margin: 0 0 34px;
}

.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 46px;
}

.slide-dots{
  display: flex;
  gap: 9px;
}
.slide-dots button{
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.6);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background .2s ease, width .2s ease;
}
.slide-dots button.is-active{
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  width: 24px;
  border-radius: 5px;
}

.scroll-cue{
  position: absolute;
  right: 6%;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.scroll-cue .line{
  width: 1px; height: 42px;
  background: linear-gradient(180deg, rgba(255,255,255,.9), transparent);
  animation: pulse-line 2.2s ease-in-out infinite;
}
@keyframes pulse-line{
  0%,100%{ transform: scaleY(1); opacity: .8; }
  50%{ transform: scaleY(.6); opacity: .4; }
}

.drip-divider{
  display: block;
  width: 100%;
  height: 46px;
  margin-top: -1px;
  fill: var(--cream);
  position: relative;
  z-index: 2;
}

section{ position: relative; }

.section-pad{ padding: 100px 0; }
.section-pad-sm{ padding: 70px 0; }

.section-head{
  max-width: 640px;
  margin: 0 0 52px;
}
.section-head.center{ margin-inline: auto; text-align: center; }

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 14px;
}
.eyebrow::before{
  content: "";
  width: 22px; height: 3px;
  border-radius: 3px;
  background: var(--gold);
}

h2.section-title{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--ink);
}

.section-head p{
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

.about-band{
  background: var(--cream);
}
.about-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.about-copy p{
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.about-copy p:last-child{ margin-bottom: 0; }
.about-copy strong{ color: var(--ink); }

.about-figure{
  position: relative;
}
.about-figure .frame{
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 6px solid #fff;
}
.about-figure .frame img{ width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.about-figure .badge{
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--ink);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius-m);
  font-family: var(--font-display);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-figure .badge img{ width: 34px; height: 34px; }
.about-figure .badge .num{ font-size: 1.3rem; font-weight: 700; line-height: 1; color: var(--gold-soft); }
.about-figure .badge .label{ font-size: 0.72rem; text-transform: uppercase; letter-spacing: .06em; color: #d9d2c2; }

.features-band{
  background: var(--cream-2);
  border-top: 1px solid var(--gray-line);
  border-bottom: 1px solid var(--gray-line);
}

.hex-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.hex-card{
  background: #fff;
  border-radius: var(--radius-m);
  padding: 30px 24px 26px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(54,47,39,0.06);
  transition: transform .22s ease, box-shadow .22s ease;
}
.hex-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.hex-icon{
  width: 58px;
  height: 66px;
  margin-bottom: 18px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(155deg, var(--gold-soft), var(--amber));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.hex-card h3{
  font-family: var(--font-display);
  font-size: 1.12rem;
  margin: 0 0 8px;
  color: var(--ink);
}
.hex-card p{
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

.gallery-band{ background: var(--cream); }

.gallery-grid{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 130px;
  gap: 14px;
}
.gallery-item{
  position: relative;
  border-radius: var(--radius-s);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}
.gallery-item img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease, filter .4s ease;
}
.gallery-item:hover img{ transform: scale(1.08); }
.gallery-item::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(30,23,14,.55), transparent 55%);
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-item:hover::after{ opacity: 1; }
.gallery-item span{
  position: absolute;
  left: 14px; bottom: 12px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}
.gallery-item:hover span{ opacity: 1; transform: translateY(0); }

.gallery-item.g-tall{ grid-row: span 2; }
.gallery-item.g-wide{ grid-column: span 2; }

.cta-band{
  position: relative;
  background: linear-gradient(155deg, var(--amber-deep), var(--ink) 78%);
  color: #fff;
  overflow: hidden;
}
.cta-band .hex-texture{
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 50% 50%, transparent 0, transparent 40%, rgba(255,255,255,.045) 41%, rgba(255,255,255,.045) 42%, transparent 43%);
  background-size: 64px 74px;
}
.cta-inner{
  position: relative;
  text-align: center;
  padding: 90px 0;
}
.cta-inner img.drop{
  width: 56px;
  margin: 0 auto 22px;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.35));
}
.cta-inner h2{
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  margin: 0 0 14px;
}
.cta-inner p{
  max-width: 520px;
  margin: 0 auto 36px;
  color: #ecdfc6;
  font-size: 1.05rem;
  line-height: 1.6;
}
.cta-actions{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer{
  background: var(--ink);
  color: #d9d2c2;
}
.footer-top{
  padding: 64px 0 40px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
}
.footer-brand{ display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img{ height: 36px; }
.footer-brand span{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}
.footer-col p{ font-size: 0.92rem; line-height: 1.6; color: #b8b0a0; max-width: 320px; }

.footer-col h4{
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #f1ead9;
  margin: 0 0 16px;
}
.footer-col ul li{ margin-bottom: 10px; }
.footer-col ul a{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.92rem;
  color: #b8b0a0;
  transition: color .18s ease;
}
.footer-col ul a:hover{ color: var(--gold-soft); }
.footer-icon{
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  fill: currentColor;
  opacity: .8;
}

.footer-socials{ display: flex; gap: 12px; margin-top: 4px; flex-wrap: wrap; }
.social-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--radius-s);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  transition: transform .18s ease, box-shadow .18s ease;
}
.social-btn svg{ width: 18px; height: 18px; }
.social-btn.roblox{ background: #111; color: #fff; }
.social-btn.discord{ background: var(--blurple); color: #fff; }
.social-btn:hover{ transform: translateY(-2px); }

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: #948c7c;
}
.footer-bottom a{ color: #b8b0a0; }
.footer-bottom a:hover{ color: var(--gold-soft); }
.footer-fine{ display: flex; gap: 18px; flex-wrap: wrap; }

.page-hero{
  position: relative;
  padding: 190px 0 110px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(155deg, var(--amber-deep), var(--ink) 85%);
}
.page-hero .hex-texture{
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 50% 50%, transparent 0, transparent 40%, rgba(255,255,255,.05) 41%, rgba(255,255,255,.05) 42%, transparent 43%);
  background-size: 60px 70px;
}
.page-hero-inner{ position: relative; max-width: 680px; }
.page-hero .eyebrow{ color: var(--gold-soft); }
.page-hero h1{
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  margin: 0 0 16px;
  line-height: 1.1;
}
.page-hero p{
  font-size: 1.08rem;
  line-height: 1.65;
  color: #ecdfc6;
  max-width: 560px;
  margin: 0;
}

.story-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.story-card{
  background: #fff;
  border-radius: var(--radius-m);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(54,47,39,0.06);
}
.story-card .idx{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: .1em;
  color: var(--amber-deep);
  margin-bottom: 10px;
  display: block;
}
.story-card h3{
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 10px;
}
.story-card p{
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

.join-band{ background: var(--cream-2); border-top: 1px solid var(--gray-line); border-bottom: 1px solid var(--gray-line); }
.join-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.join-card{
  background: #fff;
  border-radius: var(--radius-l);
  padding: 36px 30px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(54,47,39,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.join-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-card); }
.join-card .join-icon{
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.join-card .join-icon svg{ width: 28px; height: 28px; }
.join-card.roblox-card .join-icon{ background: #111; }
.join-card.discord-card .join-icon{ background: var(--blurple); }
.join-card.group-card .join-icon{ background: var(--gold); }
.join-card.group-card .join-icon img{ width: 30px; }
.join-card h3{ font-family: var(--font-display); font-size: 1.15rem; margin: 0 0 10px; }
.join-card p{ font-size: 0.92rem; line-height: 1.6; color: var(--ink-soft); margin: 0 0 22px; }

.faq-list{ max-width: 760px; margin: 0 auto; }
.faq-item{
  border-bottom: 1px solid var(--gray-line);
  padding: 22px 0;
}
.faq-item summary{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary::after{
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--amber-deep);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq-item[open] summary::after{ transform: rotate(45deg); }
.faq-item p{
  margin: 14px 0 0;
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.reveal{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px){
  .about-grid{ grid-template-columns: 1fr; gap: 40px; }
  .hex-grid{ grid-template-columns: repeat(2, 1fr); }
  .story-grid{ grid-template-columns: 1fr; }
  .join-grid{ grid-template-columns: 1fr; }
  .footer-top{ grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid{ grid-template-columns: repeat(4, 1fr); grid-auto-rows: 110px; }
}

@media (max-width: 720px){
  .nav-underline{ display: none; }

  .nav-scrim{
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(30,23,14,0.42);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .32s ease;
    z-index: 95;
  }
  .nav-scrim.is-open{ opacity: 1; pointer-events: auto; }

  .nav-links{
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(78vw, 320px);
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
    padding: 100px 8% 32px;
    border-left: 1px solid var(--gray-line);
    box-shadow: -18px 0 40px -20px rgba(30,23,14,0.35);
    transform: translateX(100%);
    opacity: 0;
    transition: transform .36s cubic-bezier(.65,.05,.36,1), opacity .3s ease;
    z-index: 96;
  }
  .nav-links.is-open{ transform: translateX(0); opacity: 1; }
  .nav-links a{ padding: 13px 10px; width: 100%; border-radius: var(--radius-s); }
  .nav-links a.active{ background: rgba(207,157,79,0.16); }
  .nav-cta{ display: none; }
  .nav-toggle{ display: block; }

  .hero-inner{ padding: 130px 0 60px; }
  .hero-actions{ flex-direction: column; align-items: stretch; }
  .hero-actions .btn{ width: 100%; }
  .scroll-cue{ display: none; }

  .hex-grid{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-item.g-wide{ grid-column: span 2; }

  .cta-actions{ flex-direction: column; align-items: stretch; }
  .cta-actions .btn{ width: 100%; }

  .footer-bottom{ flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px){
  .wrap{ width: 90%; }
  .section-pad{ padding: 70px 0; }
}
