/* =========================================================
   Waller Media — Design Tokens
   Palette sampled directly from the WM brand mark.
========================================================= */
:root {
  --cream:        #F3F0E1;
  --cream-soft:   #FAF8F1;
  --cream-deep:   #E7E1CB;
  --ink:          #0A0A0A;
  --ink-soft:     #17160F;
  --ink-elevated: #201F17;
  --slate:        #75746D;
  --slate-light:  #A8A69C;
  --slate-dark:   #4B4A44;
  --gold:         #B08D5A;
  --gold-soft:    #C9AD7F;

  --glass-fill:        rgba(250, 248, 241, 0.55);
  --glass-fill-strong: rgba(250, 248, 241, 0.78);
  --glass-border:      rgba(255, 255, 255, 0.45);
  --glass-fill-dark:   rgba(23, 22, 15, 0.55);
  --glass-border-dark: rgba(255, 255, 255, 0.08);

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

  --container: 1200px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-soft: 0 20px 60px -20px rgba(10, 10, 10, 0.25);
  --shadow-hard: 0 30px 80px -25px rgba(10, 10, 10, 0.45);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 200ms;
  --dur-med: 500ms;
  --dur-slow: 900ms;
}

/* =========================================================
   Reset
========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body, h1, h2, h3, p, figure, blockquote, ul { margin: 0; }
ul { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 10px 0;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; }

.kicker {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 14px;
}
.kicker-light { color: var(--gold-soft); }

.on-dark { color: var(--cream); }

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.section-head { max-width: 780px; margin-bottom: 56px; }
.section-intro {
  font-size: 1.08rem;
  color: var(--slate-dark);
  margin-top: 18px;
  max-width: 640px;
}
.section-intro.on-dark { color: var(--slate-light); }

section { position: relative; }

/* =========================================================
   Glass Panels (Liquid-Glass inspired)
========================================================= */
.glass-panel {
  background: linear-gradient(155deg, var(--glass-fill-strong), var(--glass-fill) 70%);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,0.5);
  position: relative;
  overflow: hidden;
}
.glass-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(120% 90% at 15% 0%, rgba(255,255,255,0.55), transparent 55%);
  pointer-events: none;
}

.glass-panel-dark {
  background: linear-gradient(155deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--glass-border-dark);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hard);
  position: relative;
  overflow: hidden;
}

/* =========================================================
   Buttons
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 14px 30px -12px rgba(10,10,10,0.5);
}
.btn-primary:hover { background: var(--ink-soft); box-shadow: 0 18px 36px -12px rgba(10,10,10,0.55); }

.btn-ghost {
  background: rgba(250,248,241,0.15);
  color: var(--cream);
  border: 1px solid rgba(250,248,241,0.5);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(250,248,241,0.28); }

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

.btn-small { padding: 11px 22px; font-size: 0.85rem; }
.btn-full { width: 100%; padding: 17px 30px; }

/* =========================================================
   Nav
========================================================= */
.site-nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1180px;
  z-index: 500;
  border-radius: 999px;
  padding: 0;
  overflow: visible;
  transition: box-shadow var(--dur-med) var(--ease), background var(--dur-med) var(--ease);
}
.site-nav.scrolled {
  box-shadow: var(--shadow-hard);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
  padding: 0 14px 0 24px;
}

.nav-logo { flex-shrink: 0; display: flex; align-items: center; }
.nav-logo img { height: 116px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: 12px;
  flex: 1;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--gold);
  transition: right var(--dur-fast) var(--ease);
}
.nav-links a:hover::after { right: 0; }

.nav-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-social a {
  display: flex;
  color: var(--slate-dark);
  transition: color var(--dur-fast) var(--ease);
}
.nav-social a:hover { color: var(--gold); }
.nav-social svg { width: 18px; height: 18px; }

.nav-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero
========================================================= */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 32px 100px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,8,0.55) 0%, rgba(10,10,8,0.35) 35%, rgba(10,10,8,0.65) 100%),
    linear-gradient(90deg, rgba(10,10,8,0.55) 0%, rgba(10,10,8,0.1) 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 { color: var(--cream); margin-bottom: 22px; }
.hero-sub {
  color: var(--cream);
  opacity: 0.88;
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 18px;
}
.hero-trust {
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-portrait { display: flex; flex-direction: column; align-items: center; }
.portrait-glass {
  padding: 14px;
  width: 100%;
  max-width: 320px;
}
.portrait-glass img {
  border-radius: calc(var(--radius-lg) - 10px);
  width: 100%;
  height: auto;
  aspect-ratio: 700 / 860;
  object-fit: cover;
  object-position: top center;
}
.portrait-caption {
  margin-top: 18px;
  text-align: center;
  color: var(--cream);
  font-size: 0.92rem;
  line-height: 1.5;
}
.portrait-caption span { color: var(--slate-light); font-size: 0.82rem; }

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(250,248,241,0.6);
  border-radius: 999px;
}
.scroll-cue span {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--cream);
  animation: scrollcue 1.8s ease infinite;
}
@keyframes scrollcue {
  0% { opacity: 1; transform: translate(-50%, 0); }
  70% { opacity: 0; transform: translate(-50%, 14px); }
  100% { opacity: 0; transform: translate(-50%, 14px); }
}

/* =========================================================
   In Action
========================================================= */
.in-action {
  padding: 64px 0;
  background: var(--ink);
}
.action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.action-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.action-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.action-card figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 22px;
  background: linear-gradient(0deg, rgba(10,10,8,0.85), transparent);
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* =========================================================
   Credential strip
========================================================= */
.credential-strip {
  padding: 56px 32px;
  border-bottom: 1px solid var(--cream-deep);
}
.credential-list {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.credential-list li {
  text-align: center;
  padding: 18px 10px;
}
.credential-figure {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}
.credential-label {
  display: block;
  font-size: 0.82rem;
  color: var(--slate);
  letter-spacing: 0.02em;
}

/* =========================================================
   About
========================================================= */
.about { padding: 130px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.about-image-frame { padding: 14px; max-width: 420px; }
.about-image-frame img {
  border-radius: calc(var(--radius-lg) - 10px);
  width: 100%;
  aspect-ratio: 700/1041;
  object-fit: cover;
}
.about-copy p { color: var(--ink-soft); margin-bottom: 18px; font-size: 1.04rem; }
.about-copy p:last-of-type { margin-bottom: 30px; }

.pull-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink);
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  line-height: 1.5;
}
.pull-quote cite {
  display: block;
  margin-top: 14px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.85rem;
  color: var(--slate);
  letter-spacing: 0.03em;
}

/* =========================================================
   Services / Pricing
========================================================= */
.services { padding: 130px 0; background: var(--cream-soft); border-top: 1px solid var(--cream-deep); border-bottom: 1px solid var(--cream-deep); }

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
}

.track-card {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--cream-deep);
}
.track-card::before { display: none; }
.track-card h3 { margin-bottom: 16px; color: var(--ink); }
.track-card > p:not(.track-badge) { color: var(--ink-soft); }
.track-card p { color: var(--slate-dark); font-size: 0.98rem; line-height: 1.6; }
.track-badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--ink);
  color: var(--gold);
  font-size: 0.68rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 10px;
  margin-bottom: 18px;
}

.track-card-featured {
  border: 1.5px solid var(--gold-soft);
  transform: scale(1.03);
  box-shadow: var(--shadow-hard);
}

.pricing-callout {
  text-align: center;
  padding: 52px 40px;
  max-width: 780px;
  margin: 16px auto 0;
}
.pricing-callout-figure {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
}
.pricing-callout-figure span { color: var(--gold); font-weight: 700; }
.pricing-callout-sub {
  color: var(--slate-dark);
  font-size: 0.98rem;
  margin-bottom: 28px;
}

/* =========================================================
   Why it matters
========================================================= */
.why { padding: 130px 0; }
.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: start;
}
.why-point { margin-bottom: 30px; }
.why-point h3 { margin-bottom: 10px; }
.why-point p { color: var(--ink-soft); }

.why-faq {
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--cream-deep);
}
.why-faq h3 { margin-bottom: 12px; }
.why-faq p { color: var(--ink-soft); }

.why-media {
  position: sticky;
  top: 120px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
}
.why-media img { width: 100%; height: 100%; object-fit: cover; }

/* =========================================================
   Portfolio (dark)
========================================================= */
.portfolio {
  padding: 130px 0;
  background: var(--ink);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.portfolio-grid-compact {
  grid-template-columns: repeat(2, minmax(0, 340px));
  max-width: 720px;
  margin: 0 auto;
  justify-content: center;
}
.portfolio-card {
  display: flex;
  flex-direction: column;
}
.portfolio-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.portfolio-media-vertical { aspect-ratio: 9/13; }
.portfolio-media img, .portfolio-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,10,8,0.25);
  transition: background var(--dur-fast) var(--ease);
}
.play-btn svg { margin-left: 3px; color: var(--ink); }
.play-btn::before {
  content: "";
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--cream);
  position: absolute;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,0.6);
  transition: transform var(--dur-fast) var(--ease);
}
.play-btn svg { position: relative; }
.play-btn:hover::before { transform: scale(1.08); }
.play-btn:hover { background: rgba(10,10,8,0.4); }

.portfolio-info { padding: 22px 22px 26px; }
.portfolio-tag {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 8px;
  font-weight: 600;
}
.portfolio-info h3 { color: var(--cream); margin-bottom: 10px; font-size: 1.1rem; }
.portfolio-info p { color: var(--slate-light); font-size: 0.92rem; }

/* =========================================================
   Contact
========================================================= */
.contact {
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}
.contact-media { position: absolute; inset: 0; z-index: 0; }
.contact-media img { width: 100%; height: 100%; object-fit: cover; }
.contact-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,8,0.82), rgba(10,10,8,0.7));
}
.contact-inner { position: relative; z-index: 1; }
.contact-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.contact-head .section-intro { margin-inline: auto; }

.contact-form {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}
.form-field { display: flex; flex-direction: column; margin-bottom: 22px; }
.form-row .form-field { margin-bottom: 0; }
.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.form-field input, .form-field select, .form-field textarea {
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(10,10,8,0.15);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 0.98rem;
  color: var(--ink);
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  background: rgba(255,255,255,0.9);
  border-color: var(--gold);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.field-error {
  font-size: 0.8rem;
  color: #9a3b3b;
  margin-top: 6px;
  min-height: 1em;
}
.form-field.has-error input,
.form-field.has-error textarea { border-color: #9a3b3b; }

.form-note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--slate-dark);
}
.form-note a { text-decoration: underline; }
.form-note.success { color: #2f6b46; font-weight: 600; }
.form-note.error { color: #9a3b3b; font-weight: 600; }

/* =========================================================
   Footer
========================================================= */
.site-footer {
  background: var(--ink);
  color: var(--slate-light);
  padding: 64px 0 32px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 40px; width: auto; margin-bottom: 12px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand p { font-size: 0.85rem; color: var(--slate-light); }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { font-size: 0.9rem; }
.footer-links a:hover { color: var(--cream); }
.footer-copy { text-align: center; padding-top: 26px; font-size: 0.8rem; color: var(--slate); }

/* =========================================================
   Reveal-on-scroll
========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   Responsive
========================================================= */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-portrait { max-width: 320px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-image-frame { margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr; }
  .why-media { position: static; aspect-ratio: 16/9; margin-top: 10px; }
  .tracks-grid { grid-template-columns: 1fr; }
  .track-card-featured { transform: none; order: -1; }
  .pricing-callout { padding: 40px 26px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .credential-list { grid-template-columns: repeat(2, 1fr); }
  .action-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta, .nav-social { display: none; }
  .nav-toggle { display: flex; }

  .site-nav.menu-open .nav-inner { flex-wrap: wrap; align-items: center; height: auto; padding: 14px; }
  .site-nav.menu-open .nav-logo { order: 1; }
  .site-nav.menu-open .nav-toggle { order: 2; margin-left: auto; }
  .site-nav.menu-open .nav-links {
    order: 3;
    display: flex;
    flex-direction: column;
    flex: 0 0 100%;
    width: 100%;
    align-items: flex-start;
    gap: 4px;
    margin: 10px 0 4px;
    padding-top: 14px;
    border-top: 1px solid var(--cream-deep);
  }
  .site-nav.menu-open .nav-links a { padding: 10px 4px; width: 100%; }
  .site-nav.menu-open .nav-social {
    order: 4;
    display: flex;
    flex: 0 0 100%;
    width: 100%;
    justify-content: flex-start;
    gap: 20px;
    margin: 4px 0 2px;
  }
  .site-nav.menu-open .nav-cta {
    order: 5;
    display: inline-flex;
    flex: 0 0 100%;
    width: 100%;
    margin: 10px 0 10px;
  }
  .site-nav { border-radius: 26px; }
  .site-nav.menu-open { border-radius: 26px; }

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

@media (max-width: 640px) {
  .section-inner { padding: 0 20px; }
  .hero { padding: 120px 20px 80px; }
  .about, .services, .why, .portfolio, .contact { padding: 90px 0; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .credential-list { grid-template-columns: 1fr 1fr; }
  .action-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 30px 22px; }
  .hero-actions .btn { flex: 1 1 auto; text-align: center; }
  .nav-logo img { height: 68px; }
}
