/* ==========================================================================
   WovenArc — Global Stylesheet
   ==========================================================================

   Color Palette:
     --charcoal:    #1a1a2e   (deep charcoal-navy, primary text)
     --navy:        #2d2d44   (secondary text)
     --slate:       #5a5a72   (body copy)
     --muted:       #8a8a9a   (captions, meta)
     --gold:        #c4a265   (accent, sparingly)
     --gold-light:  #d4b87a   (hover state)
     --cream:       #faf8f5   (primary background)
     --warm-white:  #f5f2ed   (alternate sections)
     --white:       #ffffff
     --border:      #e8e5df   (subtle dividers)

   Typography:
     Headings: 'Playfair Display' (serif, editorial)
     Body: 'Inter' (clean sans-serif)
   ========================================================================== */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --charcoal: #1a1a2e;
  --navy: #2d2d44;
  --slate: #5a5a72;
  --muted: #8a8a9a;
  --gold: #c4a265;
  --gold-light: #d4b87a;
  --cream: #faf8f5;
  --warm-white: #f5f2ed;
  --white: #ffffff;
  --border: #e8e5df;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1200px;
  --section-padding: 6rem 1.5rem;
  --section-padding-mobile: 4rem 1.25rem;

  --transition: 0.3s ease;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--slate);
  background-color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--charcoal);
  line-height: 1.25;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
}

h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

p {
  max-width: 640px;
}

.text-center p {
  margin-left: auto;
  margin-right: auto;
}

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center {
  text-align: center;
}

.section {
  padding: var(--section-padding);
}

.section--alt {
  background-color: var(--warm-white);
}

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

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--slate);
  margin-top: 1rem;
  line-height: 1.7;
}

.section--dark .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* Decorative arc line */
.arc-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin: 1.5rem 0;
}

.text-center .arc-line {
  margin-left: auto;
  margin-right: auto;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.875rem 2rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
}

.btn--primary {
  background-color: var(--charcoal);
  color: var(--white);
}

.btn--primary:hover {
  background-color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(26, 26, 46, 0.15);
}

.btn--secondary {
  background-color: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}

.btn--secondary:hover {
  border-color: var(--charcoal);
  transform: translateY(-1px);
}

.btn--gold {
  background-color: var(--gold);
  color: var(--white);
}

.btn--gold:hover {
  background-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(196, 162, 101, 0.25);
}

.btn--white {
  background-color: var(--white);
  color: var(--charcoal);
}

.btn--white:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.text-center .btn-group {
  justify-content: center;
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.site-header--scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
}

.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

.site-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 450;
  color: var(--slate);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--charcoal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.875rem !important;
  padding: 0.625rem 1.25rem;
  background-color: var(--charcoal);
  color: var(--white) !important;
  border-radius: 5px;
  transition: all var(--transition) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background-color: var(--navy);
  color: var(--white) !important;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--charcoal);
  border-radius: 1px;
  transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Footer --- */
.site-footer {
  background-color: var(--charcoal);
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 1.5rem 2rem;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand .site-logo {
  color: var(--white);
  margin-bottom: 1rem;
  display: inline-block;
}

.footer__tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.75rem;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 1.25rem;
}

.footer__links a {
  display: block;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.3rem 0;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
}

/* --- Hero Section --- */
.hero {
  padding: 10rem 1.5rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: url('../images/hero-bg.jpg') center center / cover no-repeat;
}

/* Cream overlay for readability — adjust opacity to control image visibility */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(250, 248, 245, 0.82);
  pointer-events: none;
  z-index: 0;
}

/* Subtle arc ring motif */
.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(196, 162, 101, 0.1);
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero .section-subtitle {
  font-size: 1.1875rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__trust {
  margin: 3rem auto 0;
  font-size: 0.8125rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* --- Phase Cards (Before/During/After) --- */
.phases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.phase-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.phase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
}

.phase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.phase-card:hover::before {
  opacity: 1;
}

.phase-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

.phase-card h3 {
  margin-bottom: 0.75rem;
}

.phase-card p {
  font-size: 0.9375rem;
  color: var(--slate);
  max-width: none;
}

/* --- Use Case Cards --- */
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.usecase-card {
  padding: 2.5rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: default;
}

.usecase-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  border-color: var(--gold);
}

.usecase-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(196, 162, 101, 0.1), rgba(196, 162, 101, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

.usecase-card h3 {
  margin-bottom: 0.5rem;
}

.usecase-card p {
  font-size: 0.9375rem;
  max-width: none;
}

/* --- Product Preview / Image Placeholder --- */
.image-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--warm-white) 0%, rgba(196, 162, 101, 0.08) 100%);
  border-radius: 12px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 2.5rem;
  position: relative;
  overflow: hidden;
}

.image-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.03);
}

/* --- Testimonial Section --- */
.testimonial-block {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 0;
}

.testimonial-block blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.testimonial-block cite {
  font-style: normal;
  font-size: 0.875rem;
  color: var(--muted);
}

/* --- Problem Section Bullets --- */
.problem-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.problem-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.0625rem;
  color: var(--navy);
}

.problem-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  border-radius: 50%;
}

.text-center .problem-list {
  align-items: center;
}

/* --- Features List --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  padding: 2rem;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--border);
}

.feature-item h4 {
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.feature-item p {
  font-size: 0.9375rem;
  max-width: none;
}

/* --- Page Hero (Inner Pages) --- */
.page-hero {
  padding: 9rem 1.5rem 4rem;
  text-align: center;
  position: relative;
}

.page-hero__content {
  max-width: 640px;
  margin: 0 auto;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

/* About page hero with woven textile background */
.page-hero--about {
  background: url('../images/about-hero-bg.jpg') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.page-hero--about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(250, 248, 245, 0.85);
  pointer-events: none;
  z-index: 0;
}

.page-hero--about .page-hero__content {
  position: relative;
  z-index: 1;
}

/* How It Works page hero background */
.page-hero--howitworks {
  background: url('../images/howitworks-hero-bg.jpg') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.page-hero--howitworks::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(250, 248, 245, 0.85);
  pointer-events: none;
  z-index: 0;
}

.page-hero--howitworks .page-hero__content {
  position: relative;
  z-index: 1;
}

/* Use Cases page hero background */
.page-hero--usecases {
  background: url('../images/usecases-hero-bg.jpg') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.page-hero--usecases::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(250, 248, 245, 0.85);
  pointer-events: none;
  z-index: 0;
}

.page-hero--usecases .page-hero__content {
  position: relative;
  z-index: 1;
}

/* --- How It Works Steps --- */
.steps {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 3rem;
}

.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.step:nth-child(even) {
  direction: rtl;
}

.step:nth-child(even) > * {
  direction: ltr;
}

.step__content {
  padding: 1rem 0;
}

.step__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step__content h3 {
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  margin-bottom: 1rem;
}

.step__content p {
  font-size: 1rem;
}

.step__visual {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--warm-white), rgba(196, 162, 101, 0.06));
  border-radius: 12px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--muted);
  overflow: hidden;
}

.step__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* --- Role Sections (Organizer / Participant) --- */
.role-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.role-card {
  padding: 2.5rem;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--border);
}

.role-card h3 {
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
}

.role-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.role-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--slate);
}

.role-list li::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  margin-top: 0.55rem;
  background-color: var(--gold);
  border-radius: 50%;
}

/* --- Use Cases Page Detail --- */
.usecase-detail {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.usecase-detail:last-child {
  border-bottom: none;
}

.usecase-detail__header {
  margin-bottom: 2rem;
}

.usecase-detail__header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.usecase-detail__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.usecase-detail__item h4 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.usecase-detail__item p {
  font-size: 0.9375rem;
  max-width: none;
}

/* --- About Page --- */
.about-section {
  max-width: 720px;
  margin: 0 auto;
}

.about-section h2 {
  margin-bottom: 1rem;
}

.about-section p {
  margin-bottom: 1.25rem;
  max-width: none;
}

.about-section p:last-child {
  margin-bottom: 0;
}

.about-vision {
  padding: 3rem;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  margin-top: 2rem;
}

/* --- Contact Form --- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-group label .optional {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.8125rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8125rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 162, 101, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8a9a' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-sidebar h3 {
  margin-bottom: 1rem;
}

.contact-sidebar p {
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  max-width: none;
}

.contact-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.contact-sidebar__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--navy);
}

.contact-sidebar__list li::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  background-color: var(--gold);
  border-radius: 50%;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* --- Responsive --- */
@media (max-width: 968px) {
  .section {
    padding: var(--section-padding-mobile);
  }

  .hero {
    padding: 8rem 1.25rem 4rem;
  }

  .page-hero {
    padding: 7.5rem 1.25rem 3rem;
  }

  .phases-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .usecases-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .step {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .step:nth-child(even) {
    direction: ltr;
  }

  .role-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .usecase-detail__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

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

  .footer__bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: flex;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .site-header__inner {
    height: 64px;
  }

  .hero {
    padding-top: 7rem;
  }

  .page-hero {
    padding-top: 6.5rem;
  }
}

@media (max-width: 480px) {
  .footer__top {
    grid-template-columns: 1fr;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-group .btn {
    text-align: center;
  }
}
