/* Thomas Truhitte — Make It a True Hit
   Live-site layout + bold sizing, with professional polish
*/

:root {
  --blue: #3f7fb8;
  --blue-deep: #2f6a9c;
  --blue-ink: #245887;
  --gold: #d1b419;
  --gold-soft: #dbc44a;
  --nav: #eef6fc;
  --ink: #1a1f26;
  --white: #ffffff;
  --font: "Source Sans 3", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --space: clamp(1.1rem, 3.5vw, 2rem);
  --max: 1140px;
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink);
  background: var(--blue);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(100% - 2 * var(--space), var(--max));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(238, 246, 252, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(63, 127, 184, 0.22);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.6rem;
  padding-block: 0.65rem;
}

.nav-brand {
  display: flex;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-brand img {
  height: clamp(2.4rem, 5vw, 3.1rem);
  width: auto;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(36, 88, 135, 0.25);
  background: var(--white);
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform 0.2s var(--ease);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
  justify-content: space-between;
  margin-left: 1rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  padding: 0.2rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.nav-links a:hover {
  color: var(--blue-ink);
}

.nav-links a[aria-current="page"],
.nav-links a.is-active {
  color: var(--blue-ink);
  border-bottom-color: var(--gold);
}

.nav-order {
  padding: 0.35rem 0.85rem !important;
  background: var(--gold);
  color: var(--ink) !important;
  border-radius: 4px;
  border-bottom: 0 !important;
}

.nav-order:hover,
.nav-order.is-active {
  background: var(--gold-soft);
  color: var(--ink) !important;
  border-bottom: 0 !important;
}

.nav-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.12rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  text-align: right;
}

.nav-contact a {
  text-decoration: none;
  color: var(--ink);
  transition: color 0.2s var(--ease);
}

.nav-contact a:hover {
  color: var(--blue-ink);
}

/* —— Intro —— */
.intro {
  background-color: var(--blue);
  color: var(--white);
  padding: 2.75rem 0 3.25rem;
}

.intro-stage {
  width: min(100% - 2 * var(--space), var(--max));
  margin-inline: auto;
  background-image: url("../gallery/truhitteA.jpg");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  padding-right: min(32%, 280px);
  min-height: 28rem;
}

.intro-logo {
  width: min(75%, 620px);
  border-radius: 22px;
  margin-bottom: 1.35rem;
  box-shadow: 0 10px 28px rgba(18, 48, 78, 0.28);
}

.intro-listen {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.intro-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 1.5rem 2rem;
  align-items: start;
  max-width: 44rem;
}

.intro-audio {
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
}

.intro-demo audio {
  width: 100%;
  max-width: 22rem;
  height: 2.55rem;
}

.intro-demo p,
.intro-video p {
  margin: 0.4rem 0 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.95);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0d1520;
  overflow: hidden;
  max-width: 28rem;
  border-radius: 4px;
  box-shadow: 0 10px 24px rgba(18, 48, 78, 0.3);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* —— Bio (blue — alternates after gold services) —— */
.section-bio {
  background: var(--blue);
  color: var(--white);
  padding: 0;
}

.bio-band {
  width: min(100%, var(--max) + 8rem);
  margin-inline: auto;
  min-height: 28rem;
  background-image: url("../gallery/truhitteB.jpg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 3.25rem var(--space);
}

.bio-copy {
  width: min(100%, 38rem);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--white);
}

.bio-copy p {
  margin: 0 0 1.15em;
}

.bio-heading {
  margin: 0 0 0.65em;
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
}

.section-bio .section-kicker-on-gold {
  color: var(--gold);
}

.bio-copy em {
  color: var(--gold);
}

.bio-tagline {
  margin: 1.15em 0 0 !important;
  font-size: clamp(2.05rem, 5vw, 3rem);
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--gold);
}

.bio-tag {
  margin-top: 0.35em !important;
  line-height: 1.4;
}

.bio-tag em {
  font-style: italic;
  font-weight: 700;
}

.bio-link {
  color: var(--blue-ink);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.bio-link:hover {
  border-bottom-color: var(--blue-ink);
}

/* —— Contact / Order Now —— */
.section-contact {
  background:
    radial-gradient(ellipse at top right, rgba(209, 180, 25, 0.22), transparent 42%),
    linear-gradient(165deg, var(--blue-deep) 0%, var(--blue) 48%, var(--blue-ink) 100%);
  color: var(--white);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  border-top: 6px solid var(--gold);
}

.contact-hero {
  max-width: 44rem;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.contact-kicker {
  color: var(--gold);
  opacity: 1;
  border-bottom-color: var(--gold);
}

.contact-details h2,
.contact-hero h2 {
  margin: 0 0 0.4em;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: stretch;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  background: rgba(18, 48, 78, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.contact-details {
  padding: 1.75rem;
  background: var(--white);
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(18, 48, 78, 0.2);
}

.contact-path-title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--blue-ink);
}

.contact-path-lead {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(26, 31, 38, 0.72);
}

.contact-note {
  margin: 1.15rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(26, 31, 38, 0.62);
}

.paypal-form {
  margin: 0;
  width: 100%;
}

.contact-logo {
  width: min(100%, 420px);
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(18, 48, 78, 0.28);
}

/* —— Inner pages —— */
.page-hero {
  padding: clamp(2.75rem, 6vw, 4.25rem) 0 1.75rem;
  background: var(--blue);
  color: var(--white);
}

.page-hero h1 {
  margin: 0 0 0.4em;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.page-hero p {
  margin: 0;
  max-width: 36rem;
  font-size: 1.125rem;
  font-weight: 500;
  opacity: 0.95;
  line-height: 1.55;
}

.section {
  padding: clamp(2.25rem, 5vw, 3.75rem) 0;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: start;
}

.about-photo img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(18, 48, 78, 0.22);
}

.about-body {
  background: var(--gold);
  color: var(--ink);
  padding: clamp(1.6rem, 3vw, 2.35rem);
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.6;
  border-radius: 10px;
}

.about-body p {
  margin: 0 0 1em;
}

.intro-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0 0;
}

.intro-cta .btn {
  display: inline-block;
  margin-top: 0;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
}

.btn-ghost:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--blue-ink);
}

/* Trust strip */
.section-trust {
  background: var(--blue-ink);
  color: var(--white);
  padding: 1.75rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 2rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.35rem 0;
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}

.trust-item strong {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.trust-item span {
  font-size: 0.98rem;
  font-weight: 600;
  opacity: 0.88;
}

.btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid var(--gold);
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
    border-color 0.2s var(--ease);
}

.btn:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--blue-ink);
}

.btn-on-gold {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.btn-on-gold:hover {
  background: var(--blue-ink);
  border-color: var(--blue-ink);
  color: var(--white);
}

.btn-ghost-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
}

.btn-ghost-light:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--blue-ink);
}

.section-cta {
  margin: 2rem 0 0;
}

.section-head-dark {
  color: var(--ink);
  max-width: 40rem;
}

.section-head-dark h2 {
  color: var(--ink);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 700;
  margin: 0 0 0.45em;
  letter-spacing: -0.02em;
}

.section-head-dark p:not(.section-kicker) {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(26, 31, 38, 0.85);
}

.section-kicker-on-gold {
  color: var(--blue-ink);
  opacity: 1;
}

.contact-lead {
  margin: 0;
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  font-weight: 600;
  line-height: 1.5;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.88);
}

.order-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
  padding: 0;
  color: var(--white);
}

.order-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.15rem 1.1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 3px solid var(--gold);
  border-radius: 6px;
}

.step-num {
  flex: 0 0 2.1rem;
  width: 2.1rem;
  height: 2.1rem;
  display: inline-grid;
  place-items: center;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 800;
}

.step-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.step-copy strong {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.step-copy span {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.35;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-action {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.15rem 1.25rem;
  background: rgba(63, 127, 184, 0.08);
  border: 2px solid rgba(63, 127, 184, 0.28);
  border-radius: 6px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.contact-action:hover,
.contact-action-primary:hover {
  background: rgba(209, 180, 25, 0.18);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.contact-action-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.contact-action-value {
  font-size: clamp(1.25rem, 2.6vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--blue-ink);
}

.contact-pay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 2rem 1.75rem;
  background: linear-gradient(160deg, var(--gold-soft) 0%, var(--gold) 55%, #c4a812 100%);
  color: var(--ink);
  border: 0;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(18, 48, 78, 0.32);
}

.pay-label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-ink);
  opacity: 0.9;
}

.pay-title {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}

.pay-copy {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
  max-width: 20rem;
  color: rgba(26, 31, 38, 0.88);
}

.pay-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.35rem;
  padding: 1rem 1.25rem;
  border: 2px solid var(--blue);
  border-radius: 4px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.pay-button:hover {
  background: var(--blue-ink);
  border-color: var(--blue-ink);
  transform: translateY(-1px);
}

.pay-secure {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(36, 88, 135, 0.85);
}

/* Services band (gold) */
.section-services {
  background: var(--gold);
  color: var(--ink);
  padding: clamp(2.75rem, 6vw, 4.25rem) 0;
}

.section-services .section-head-dark {
  color: var(--ink);
}

.section-services .section-head-dark h2 {
  color: var(--ink);
}

.section-services .section-head-dark p:not(.section-kicker) {
  color: rgba(26, 31, 38, 0.88);
}

.section-services .section-kicker {
  color: var(--blue-ink);
  opacity: 1;
  border-bottom-color: var(--blue);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.55;
  color: var(--ink);
}

.services-grid li {
  padding: 0.65rem 0;
  border-top: 2px solid rgba(26, 31, 38, 0.16);
}

.services-grid li::before {
  content: "";
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-right: 0.7rem;
  background: var(--blue);
  vertical-align: 0.15em;
}

.section-services .btn {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.section-services .btn:hover {
  background: var(--blue-ink);
  border-color: var(--blue-ink);
  color: var(--white);
}

/* Story band (gold — alternates after blue about) */
.section-story {
  background: var(--gold);
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
}

.section-story .about-body {
  background: var(--white);
  color: var(--ink);
}

.section-story .about-body h2 {
  margin: 0 0 0.65em;
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-story .section-kicker-on-gold {
  color: var(--blue-ink);
  border-bottom-color: var(--blue);
}

.section-story .about-body .btn {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.section-story .about-body .btn:hover {
  background: var(--blue-ink);
  border-color: var(--blue-ink);
}

.section-story .about-body .btn-on-gold {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* Gallery — horizontal scrolling strip (local / Cloudflare assets) */
.section-gallery {
  background: #173a5c;
  color: var(--white);
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  overflow: hidden;
}

.gallery-head-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 1.5rem;
}

.gallery-head {
  margin-bottom: 0;
}

.section-gallery .section-head h2,
.gallery-head h2 {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  color: var(--white);
}

.section-gallery .section-head p:not(.section-kicker),
.gallery-head p:not(.section-kicker) {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.88;
  max-width: 32rem;
}

.section-gallery .section-kicker,
.gallery-head .section-kicker {
  color: var(--gold);
  opacity: 1;
  border-bottom-color: var(--gold);
}

.gallery-controls {
  display: flex;
  gap: 0.5rem;
}

.gallery-btn {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.15rem;
  line-height: 1;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.gallery-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.gallery-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
  padding-bottom: 0.5rem;
  cursor: grab;
}

.gallery-scroll:active {
  cursor: grabbing;
}

.gallery-scroll:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.gallery-track {
  display: flex;
  gap: 0.85rem;
  width: max-content;
  padding: 0 max(var(--space), calc((100vw - var(--max)) / 2));
}

.gallery-card {
  margin: 0;
  flex: 0 0 auto;
  width: min(42vw, 280px);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
}

.gallery-card-wide {
  width: min(48vw, 320px);
}

.gallery-card img {
  width: 100%;
  height: clamp(22rem, 55vh, 34rem);
  object-fit: cover;
  object-position: center top;
  display: block;
}

.gallery-local {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.gallery-local img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
}

.about-collage {
  margin-top: 2rem;
}

.about-collage img {
  width: 100%;
  border-radius: 12px;
}

.gallery-local {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.gallery-local img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.25s var(--ease);
}

.gallery-local a:hover img {
  transform: scale(1.02);
}

.gallery-local a:nth-child(1) img,
.gallery-local a:nth-child(4) img {
  aspect-ratio: 3 / 4;
}

.gallery-embed {
  margin-top: 2rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.85rem;
  border-radius: 10px;
}

.gallery-embed .pa-gallery-player-widget {
  width: 100% !important;
  min-height: 320px !important;
  height: min(60vh, 520px) !important;
}

.section-head {
  margin-bottom: 1.5rem;
  color: var(--white);
}

.section-head h2 {
  margin: 0 0 0.35em;
  font-size: 1.75rem;
  font-weight: 700;
}

.section-kicker {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.4rem;
}

.page-error {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem var(--space);
  background: var(--blue);
  color: var(--white);
}

.page-error h1 {
  margin: 0 0 0.35em;
  font-size: clamp(3rem, 10vw, 5rem);
  font-weight: 700;
}

.page-error p {
  margin: 0 0 1.5rem;
  font-size: 1.125rem;
}

/* —— Footer —— */
.site-footer {
  background: var(--blue-ink);
  color: rgba(255, 255, 255, 0.92);
  padding: 1.6rem 0 1.85rem;
  font-size: 0.98rem;
  font-weight: 600;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  align-items: center;
}

.footer-links a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.footer-links a:hover {
  border-bottom-color: var(--white);
}

.site-footer a {
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.site-footer a:hover {
  border-bottom-color: var(--white);
}

/* Mobile sticky order bar */
.mobile-order {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  border: 0;
  border-radius: 0;
  border-top: 2px solid rgba(26, 31, 38, 0.12);
  box-shadow: 0 -8px 24px rgba(18, 48, 78, 0.18);
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.22s var(--ease), opacity 0.22s var(--ease),
    visibility 0.22s var(--ease);
}

/* —— Responsive —— */

/* Large tablets / small laptops: keep layout, ease portrait pressure */
@media (max-width: 1200px) {
  .nav-links a {
    font-size: 1.125rem;
  }

  .intro-stage {
    background-size: auto 95%;
    background-position: right bottom;
    padding-right: min(28%, 240px);
    min-height: 26rem;
  }

  .bio-band {
    background-size: auto 100%;
    background-position: left center;
    padding-left: min(34%, 280px);
  }

  .bio-copy {
    width: min(100%, 34rem);
  }
}

/* Hide phone/email in header before nav gets cramped */
@media (max-width: 1100px) {
  .nav-contact {
    display: none;
  }

  .nav-panel.is-open .nav-contact {
    display: flex;
  }

  .nav-links {
    gap: 0.1rem 0.85rem;
  }

  .nav-links a {
    font-size: 1.05rem;
  }
}

/* Stack demos / contact before hamburger so mid widths don't crush */
@media (max-width: 980px) {
  .intro-stage {
    background-image: none;
    padding-right: 0;
    min-height: 0;
  }

  .intro-logo {
    width: min(85%, 520px);
  }

  .intro-media {
    grid-template-columns: 1fr;
    max-width: 36rem;
  }

  .intro-demo audio {
    max-width: none;
  }

  .video-frame {
    max-width: none;
  }

  .bio-band {
    background-image: none;
    min-height: 0;
    justify-content: flex-start;
    padding: 2.75rem var(--space);
  }

  .bio-copy {
    width: 100%;
    max-width: 42rem;
  }

  /* Keep a portrait on tablet/phone where CSS background drops */
  .bio-band::before {
    content: "";
    display: block;
    width: min(100%, 320px);
    max-width: 100%;
    aspect-ratio: 3 / 4;
    margin: 0 0 1.5rem;
    background: url("../gallery/truhitteB.jpg") center top / cover no-repeat;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(18, 48, 78, 0.2);
  }

  .bio-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-layout,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .order-steps {
    grid-template-columns: 1fr;
  }

  .gallery-showcase {
    grid-template-columns: 1fr;
  }

  .gallery-feature img {
    min-height: 22rem;
    aspect-ratio: 4 / 5;
  }

  .gallery-card {
    width: min(70vw, 260px);
  }

  .gallery-card-wide {
    width: min(78vw, 290px);
  }

  .gallery-card img {
    height: clamp(18rem, 50vh, 28rem);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-logo {
    width: min(100%, 380px);
  }
}

/* Phones & small tablets: hamburger nav */
@media (max-width: 860px) {
  .site-header {
    position: sticky;
  }

  .nav {
    min-height: 4rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 0.85rem var(--space) 1.15rem;
    background: var(--white);
    border-bottom: 1px solid rgba(63, 127, 184, 0.2);
    box-shadow: 0 12px 24px rgba(18, 48, 78, 0.1);
    z-index: 50;
  }

  .nav-panel.is-open {
    display: flex;
  }

  .nav-panel.is-open .nav-contact {
    display: flex;
    align-items: flex-start;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    white-space: normal;
  }

  .nav-links {
    flex-direction: column;
    gap: 0.1rem;
  }

  .nav-links a {
    display: block;
    padding: 0.65rem 0;
    font-size: 1.2rem;
    border-bottom: 0;
  }

  .nav-links a[aria-current="page"],
  .nav-links a.is-active {
    border-bottom: 0;
    color: var(--blue-ink);
  }

  .nav-order {
    display: inline-block;
    margin-top: 0.35rem;
    text-align: center;
  }

  .intro {
    padding: 1.75rem 0 2.25rem;
  }

  .intro-logo {
    width: min(100%, 480px);
    margin-bottom: 1.35rem;
  }

  .bio-copy {
    font-size: clamp(1.05rem, 4.2vw, 1.3rem);
  }

  .contact-hero h2 {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
  }

  .contact-details {
    padding: 1.35rem;
  }

  .contact-pay {
    padding: 1.5rem 1.35rem;
  }

  .contact-info,
  .services-list {
    font-size: clamp(1.05rem, 4.2vw, 1.35rem);
  }

  .gallery-local {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .mobile-order {
    display: block;
  }

  body {
    padding-bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
  }

  body.near-contact .mobile-order,
  body.nav-open .mobile-order {
    transform: translateY(110%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

/* Small phones */
@media (max-width: 480px) {
  :root {
    --space: 1rem;
  }

  .nav-brand img {
    height: 2.25rem;
  }

  .intro-demo audio {
    height: 2.35rem;
  }

  .intro-demo p,
  .intro-video p {
    font-size: 0.9375rem;
  }

  .bio-band {
    padding: 2rem var(--space);
  }

  .section-contact {
    padding: 2.25rem 0;
  }

  .gallery-local {
    gap: 0.55rem;
  }

  .about-body {
    padding: 1.25rem;
    font-size: 1rem;
  }

  .page-hero {
    padding: 2rem 0 1.25rem;
  }

  .page-hero h1 {
    font-size: clamp(1.85rem, 9vw, 2.5rem);
  }
}

@media (max-width: 700px) {
  .gallery-card {
    width: min(78vw, 240px);
  }

  .gallery-card-wide {
    width: min(82vw, 260px);
  }
}

/* Prevent horizontal scroll from oversized media */
html,
body {
  overflow-x: hidden;
}

iframe {
  max-width: 100%;
}

.intro-demo audio {
  max-width: 100%;
}

.paypal-form input[type="image"] {
  max-width: min(100%, 180px);
  height: auto;
}
