/* Rapid Fire Disc Golf — Sporty Outdoors & Bold Red Theme
   Palette: Sporty Red (#DC2626), Speed Orange (#F97316), Sand Gold (#FBBF24), Dark Slate (#0F172A), Off-White bg (#F8FAFC)
   Typography: Oswald (headings) + Outfit (body) */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #DC2626;
  --primary-hover: #991B1B;
  --accent: #F97316;
  --accent-hover: #EA580C;
  --gold: #FBBF24;
  --ink: #0F172A;
  --ink-2: #1E293B;
  --body: #334155;
  --muted: #64748B;
  --line: #E2E8F0;
  --bg: #F8FAFC;
  --bg-soft: #F1F5F9;
  --bg-soft-2: #FEE2E2;
  --white: #ffffff;
  --flame: linear-gradient(135deg, var(--primary), var(--accent));
  --flame-soft: linear-gradient(135deg, var(--accent), var(--primary));
  --gradient-accent: linear-gradient(135deg, var(--accent), var(--gold));
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px -5px rgba(220, 38, 38, 0.08), 0 8px 20px -6px rgba(220, 38, 38, 0.05);
  --shadow-lg: 0 20px 40px -5px rgba(220, 38, 38, 0.12), 0 10px 20px -5px rgba(220, 38, 38, 0.06);
  --shadow-flame: 0 12px 24px rgba(220, 38, 38, 0.25);
  --shadow-accent: 0 12px 24px rgba(249, 115, 12, 0.25);
  --maxw: 1200px;
  --font: 'Outfit', sans-serif;
  --display: 'Oswald', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--bg);
}

body {
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1, h2 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

h3 {
  font-size: 1.35rem;
  font-family: var(--display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

p {
  margin: 0 0 1.2rem;
}

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

.section {
  padding: clamp(60px, 10vw, 120px) 0;
}

.section--soft {
  background: var(--bg-soft);
}

.section--dark {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.82);
}

.section--dark h2, .section--dark h3, .section--dark h4 {
  color: #fff;
}

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-head {
  max-width: 740px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-head p {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.6;
}

.lead {
  font-size: 1.25rem;
  color: var(--ink-2);
  font-weight: 500;
}

.fire-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--accent);
  display: inline-block;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 14px 32px;
  border-radius: 99px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn--flame {
  background: var(--flame);
  color: #fff;
  box-shadow: var(--shadow-flame);
}

.btn--flame:hover {
  background: var(--primary-hover);
  box-shadow: 0 16px 32px rgba(21, 128, 61, 0.35);
}

.btn--yellow {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}

.btn--yellow:hover {
  background: var(--accent-hover);
  box-shadow: 0 16px 32px rgba(234, 88, 12, 0.35);
}

.btn--dark {
  background: var(--ink);
  color: #fff;
}

.btn--dark:hover {
  background: #000;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn--outline {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1.5px solid var(--line);
  height: 80px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--ink);
}

.brand img {
  height: 52px;
  width: auto;
  border-radius: 0;
}

.brand .brand-txt {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 1.25rem;
}

.brand small {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
  background: var(--bg-soft);
}

.nav-mobile-phone,
.nav-mobile-cta {
  display: none;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-phone {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  font-size: 1.1rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 26px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}

/* hero */
.hero {
  position: relative;
  color: #fff;
  background: linear-gradient(115deg, rgba(15, 23, 42, 0.95) 30%, rgba(220, 38, 38, 0.6) 75%), url('../img/Home-page-disc-photo.webp') center/cover no-repeat;
  padding: clamp(100px, 14vw, 170px) 0 clamp(120px, 16vw, 190px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -100px;
  width: 400px;
  height: 400px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -200px;
  width: 600px;
  height: 600px;
  border: 1px dashed rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.2), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 780px;
  position: relative;
  z-index: 2;
}

.hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero .badge .star {
  color: var(--gold);
}

.hero h1 {
  color: #fff;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 640px;
  margin-bottom: 34px;
}

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

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1.5px solid rgba(255, 255, 255, 0.15);
}

.hero-stats .num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stats .lbl {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* trust strip */
.trust {
  background: var(--ink);
  color: #fff;
  padding: 24px 0;
  border-bottom: 2px solid var(--primary);
}

.trust ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.trust svg {
  color: var(--accent);
  flex-shrink: 0;
}

.trust .hot {
  color: var(--gold);
}

/* grid + cards */
.grid {
  display: grid;
  gap: 30px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 6px;
  width: 100%;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg), var(--shadow-accent);
  border-color: transparent;
}

.card:hover::before {
  transform: scaleX(1);
}

.card .ic {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: rgba(21, 128, 61, 0.1);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--primary);
  flex-shrink: 0;
}

.card h3 {
  margin-bottom: 12px;
  color: var(--ink);
}

.card p {
  color: var(--body);
  font-size: 0.98rem;
  margin: 0;
  flex-grow: 1;
}

.card .more {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--display);
  font-weight: 600;
  color: var(--accent);
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.card .more:hover {
  color: var(--accent-hover);
}

/* category / service card with image */
.svc-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.svc-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg), var(--shadow-flame);
  border-color: var(--primary);
}

.svc-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 6px;
  width: 100%;
  background: var(--flame);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
  z-index: 10;
}

.svc-card:hover::before {
  transform: scaleX(1);
}

.svc-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0;
}

.svc-card .body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.svc-card h3 {
  margin-bottom: 10px;
  color: var(--ink);
}

.svc-card p {
  color: var(--body);
  font-size: 0.98rem;
  margin: 0;
}

.svc-card .tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

/* category icon tile (no image) */
.cat {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: var(--transition);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cat:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.cat .ic {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  background: rgba(21, 128, 61, 0.1);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.cat h3 {
  margin-bottom: 10px;
  color: var(--ink);
}

.cat p {
  color: var(--body);
  font-size: 0.96rem;
  margin: 0;
}

/* split / about */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split img {
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.checklist {
  list-style: none;
  display: grid;
  gap: 16px;
  margin: 24px 0;
}

.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 600;
  color: var(--ink);
}

.checklist svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

/* feature panel (rewards / buy-back) */
.feature-panel {
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(34px, 5vw, 60px);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.feature-panel::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.25), transparent 70%);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
  position: relative;
  z-index: 2;
}

.feature-grid .fcard {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 28px;
}

.feature-grid h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.feature-grid h4 .dot {
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
}

.feature-grid p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
  margin: 0;
}

.feature-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

.feature-badges img {
  height: 44px;
  width: auto;
  border-radius: 6px;
}

/* steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step {
  position: relative;
  padding-top: 10px;
}

.step .n {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--flame);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 20px;
  box-shadow: var(--shadow-flame);
}

.step h3 {
  margin-bottom: 10px;
  color: var(--ink);
}

.step p {
  color: var(--body);
  margin: 0;
}

/* reviews */
.rating-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  background: var(--bg-soft);
  padding: 24px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
}

.rating-banner .score {
  font-family: var(--display);
  font-weight: 700;
  font-size: 3.5rem;
  color: var(--ink);
  line-height: 1;
}

.rating-banner .stars {
  color: var(--gold);
  font-size: 1.6rem;
  letter-spacing: 3px;
}

.rating-banner .meta {
  font-weight: 700;
  color: var(--muted);
  font-size: 1rem;
}

.review {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.review .stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review p {
  font-size: 1.1rem;
  color: var(--ink-2);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.review .who {
  font-weight: 800;
  color: var(--primary);
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.review .where {
  font-size: 0.88rem;
  color: var(--muted);
}

/* gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--line);
}

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 0;
}

.gallery-grid figure:hover img {
  transform: scale(1.05);
}

.gallery-grid figure.is-lightbox {
  cursor: zoom-in;
}

.gallery-grid .wide {
  grid-column: span 2;
}

/* info / hours callout */
.info-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.info-card h3 {
  margin-bottom: 20px;
}

.hours-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-weight: 600;
  color: var(--ink);
}

.hours-list li span:last-child {
  color: var(--primary);
  font-weight: 700;
}

/* brand chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.chip {
  display: inline-block;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 99px;
  padding: 12px 24px;
  font-family: var(--display);
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* FAQ accordion-style list */
.faq-item {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.faq-item h3 {
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-transform: none;
}

.faq-item h3 .q {
  color: var(--primary);
  font-family: var(--display);
  font-weight: 600;
  flex-shrink: 0;
}

.faq-item p {
  color: var(--body);
  margin: 0;
}

.method-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.method-list li {
  padding-left: 0;
}

.method-list strong {
  color: var(--ink);
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -50%;
  width: 600px;
  height: 600px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 207, 0, 0.15), transparent 65%);
  pointer-events: none;
}

.cta-band h2 {
  color: #fff;
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.95);
  max-width: 620px;
  margin: 0 auto 34px;
  font-size: 1.15rem;
  position: relative;
  z-index: 2;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* form */
.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.form-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.field input, .field textarea, .field select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background: #fafafa;
  color: var(--ink);
}

.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(21, 128, 61, 0.15);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.consent {
  display: flex;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-line {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-line .ic {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(21, 128, 61, 0.1);
  display: grid;
  place-items: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-line h4 {
  margin-bottom: 4px;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.1rem;
}

.contact-line a, .contact-line p {
  color: var(--body);
  margin: 0;
}

/* page hero (interior) */
.page-hero {
  position: relative;
  background: linear-gradient(115deg, var(--ink) 40%, var(--primary-hover));
  color: #fff;
  padding: clamp(60px, 8vw, 100px) 0;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.2), transparent 70%);
  pointer-events: none;
}

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

.page-hero h1 {
  color: #fff;
  margin-bottom: 14px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 660px;
  font-size: 1.2rem;
  margin: 0;
}

.crumb {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
  font-weight: 500;
}

.crumb a:hover {
  color: #fff;
}

/* footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 70px 0 30px;
  border-top: 4px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-grid h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.footer-grid ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-grid a:hover {
  color: var(--primary);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.footer-brand img {
  height: 52px;
  width: auto;
}

.footer-bottom {
  border-top: 1.5px solid rgba(255, 255, 255, 0.1);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.9rem;
}

.footer-credit {
  flex-basis: 100%;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 10px;
}

.footer-credit a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.footer-credit a:hover {
  text-decoration: underline;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* lightbox */
body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 48px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-inner {
  max-width: min(92vw, 1200px);
  width: 100%;
  position: relative;
}

.lightbox-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 85vh;
}

.lightbox-stage img {
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
  margin: 16px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.lightbox-caption[hidden] {
  display: none;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: grid;
  place-items: center;
  padding: 0;
}

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--primary);
  color: #fff;
}

.lightbox-close {
  top: -60px;
  right: 0;
  font-size: 2.4rem;
}

.lightbox-prev {
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
}

@media(max-width:900px){
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .split, .form-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid .wide {
    grid-column: span 2;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .lightbox-prev {
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
  }
  .lightbox-next {
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
  }
  .lightbox-close {
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10;
  }
}

@media(max-width:1080px){
  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }
  .brand .brand-txt {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .brand small {
    display: none;
  }
  .nav-links, .nav-phone {
    display: none;
  }
  .nav-cta > .btn {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    border-bottom: 1.5px solid var(--line);
    padding: 20px 24px;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    z-index: 60;
  }
  .nav-links.open a {
    padding: 12px;
    width: 100%;
  }
  .nav-links.open .nav-mobile-phone, .nav-links.open .nav-mobile-cta {
    display: block;
    width: 100%;
    list-style: none;
  }
  .nav-links.open .nav-mobile-phone {
    border-top: 1.5px solid var(--line);
    margin-top: 8px;
    padding-top: 12px;
  }
  .nav-links.open .nav-mobile-phone a {
    display: block;
    padding: 12px;
    font-weight: 700;
    color: var(--ink);
  }
  .nav-links.open .nav-mobile-cta {
    padding: 8px 0 4px;
  }
  .nav-links.open .nav-mobile-cta .btn {
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media(max-width:560px){
  .grid-2, .grid-3, .grid-4, .feature-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid .wide {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
  .container {
    padding: 0 16px;
  }
  body {
    font-size: 16px;
  }
}
