/* Interior by Josh — modern aviation craft site */
:root {
  --navy-950: #070b14;
  --navy-900: #0b1220;
  --navy-800: #121a2b;
  --navy-700: #1a2540;
  --ink: #e8edf7;
  --muted: #9aa8c0;
  --gold: #c9a66b;
  --gold-soft: #e2c89a;
  --gold-dim: rgba(201, 166, 107, 0.14);
  --line: rgba(232, 237, 247, 0.1);
  --card: rgba(18, 26, 43, 0.85);
  --radius: 18px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max: 1120px;
  --header-h: 72px;
  --topbar-h: 40px;
}

/* Top utility bar — Air Mod / peer pattern */
.top-bar {
  background: var(--navy-950);
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}

.top-bar-inner {
  min-height: var(--topbar-h);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  padding: 0.45rem 0;
}

.top-bar-tagline {
  margin: 0;
  color: var(--muted);
}

.top-bar-contact {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}

.top-bar-contact a {
  color: var(--gold-soft);
  text-decoration: none;
  font-weight: 600;
}

.top-bar-contact a:hover {
  color: #fff;
}

.top-bar-sep {
  color: var(--muted);
  opacity: 0.6;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--navy-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: #fff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--gold);
  color: var(--navy-900);
  padding: 0.6rem 1rem;
  z-index: 100;
  font-weight: 600;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(11, 18, 32, 0.82);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background:
    linear-gradient(145deg, var(--gold-soft), var(--gold) 45%, #8a6a35);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 8px 20px rgba(201, 166, 107, 0.25);
  position: relative;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 10px 8px 12px;
  border: 1.5px solid rgba(7, 11, 20, 0.45);
  border-radius: 3px 3px 6px 6px;
  border-top: none;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.logo-text em {
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.2rem 0.85rem;
}

.nav-menu > li {
  position: relative;
}

.nav-menu a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--ink);
}

.dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

.caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.7;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.is-open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown {
  list-style: none;
  margin: 0;
  padding: 0.45rem 0;
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  min-width: 14.5rem;
  background: rgba(12, 18, 32, 0.98);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 60;
}

.dropdown a {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.86rem;
  white-space: nowrap;
}

.dropdown a:hover {
  background: rgba(201, 166, 107, 0.1);
  color: var(--gold-soft);
}

.nav-cta {
  display: inline-flex !important;
  align-items: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: var(--gold-dim);
  color: var(--gold-soft) !important;
  border: 1px solid rgba(201, 166, 107, 0.35);
}

.nav-cta:hover {
  background: rgba(201, 166, 107, 0.22);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 44px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: flex-end;
}

.hero-photo {
  padding-top: clamp(5rem, 12vw, 8rem);
}

.hero-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* IG reels are portrait — bias crop to cabin subject */
  object-position: center 28%;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(7, 11, 20, 0.92) 0%, rgba(7, 11, 20, 0.72) 42%, rgba(7, 11, 20, 0.35) 100%),
    linear-gradient(0deg, rgba(7, 11, 20, 0.88) 0%, transparent 45%);
}

.hero-inner {
  position: relative;
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
  padding-bottom: 0.5rem;
}

/* Photo ribbon */
.photo-ribbon {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 0.35rem;
  background: var(--navy-950);
  border-block: 1px solid var(--line);
}

.ribbon-item {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  overflow: hidden;
  position: relative;
  min-height: 140px;
  max-height: 220px;
}

.ribbon-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.45s ease;
}

.ribbon-item:hover img {
  transform: scale(1.05);
}

.ribbon-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 11, 20, 0.35));
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

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

h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.6rem, 6.5vw, 4.4rem);
  max-width: 14ch;
}

.gold-text {
  background: linear-gradient(120deg, var(--gold-soft), var(--gold) 50%, #a8844a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  margin: 0 0 1.75rem;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--navy-950);
  box-shadow: 0 10px 30px rgba(201, 166, 107, 0.28);
}

.btn-primary:hover {
  color: var(--navy-950);
  filter: brightness(1.05);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: rgba(201, 166, 107, 0.45);
  color: #fff;
}

.btn-block {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
}

.hero-stats dt {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--gold-soft);
}

.hero-stats dd {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Trust strip */
.trust-strip {
  border-block: 1px solid var(--line);
  background: rgba(7, 11, 20, 0.55);
  padding: 0.95rem 0;
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1rem;
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

.trust-inner .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

/* Sections */
.section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}

.section-head h2,
.about-copy h2,
.craft h2,
.proof-note h2,
.contact h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4vw, 2.85rem);
}

.section-lede {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.about-visual {
  display: grid;
  gap: 0.75rem;
}

.about-photo {
  display: block;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: none;
  cursor: zoom-in;
  width: 100%;
}

.about-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.about-photo:hover img {
  transform: scale(1.03);
}

.about-photo-sm img {
  height: 180px;
}

.about-photo-row {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 0.75rem;
}

.about-photo img {
  object-position: center 25%;
}

.about-copy p {
  color: var(--muted);
  max-width: 38rem;
}

.checklist {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.checklist li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--ink);
  font-size: 0.98rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--gold-dim);
  box-shadow: inset 0 0 0 2px var(--gold);
}

.about-card {
  background: linear-gradient(165deg, rgba(26, 37, 64, 0.95), rgba(11, 18, 32, 0.95));
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-card-top {
  padding: 1.4rem 1.5rem 1.1rem;
  background:
    linear-gradient(135deg, rgba(201, 166, 107, 0.18), transparent 55%),
    var(--navy-800);
  border-bottom: 1px solid var(--line);
}

.pill {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-card-top h3 {
  margin: 0;
  font-size: 1.65rem;
}

.about-card-top p {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.fact-list {
  margin: 0;
  padding: 0.4rem 0;
}

.fact-list > div {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  border-bottom: 1px solid var(--line);
}

.fact-list > div:last-child {
  border-bottom: none;
}

.fact-list dt {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  padding-top: 0.15rem;
}

.fact-list dd {
  margin: 0;
  font-size: 0.95rem;
}

.fact-list a {
  text-decoration: none;
  color: var(--ink);
}

.fact-list a:hover {
  color: var(--gold-soft);
}

/* Services */
.services {
  background: linear-gradient(180deg, transparent, rgba(7, 11, 20, 0.65) 20%, rgba(7, 11, 20, 0.65) 80%, transparent);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.3rem 1.45rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  border-color: rgba(201, 166, 107, 0.35);
  transform: translateY(-2px);
}

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

.service-card-photo {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-thumb {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background: #0a101c;
  cursor: zoom-in;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card-photo:hover .service-thumb img {
  transform: scale(1.06);
}

.service-body {
  padding: 1rem 1.1rem 1.2rem;
}

.service-body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
}

.service-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-card-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(160deg, rgba(201, 166, 107, 0.14), rgba(18, 26, 43, 0.95));
  border-color: rgba(201, 166, 107, 0.35);
  min-height: 100%;
}

.service-card-cta .service-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.service-card-cta .btn {
  margin-top: 1rem;
  align-self: flex-start;
}

.service-card:target {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(201, 166, 107, 0.35);
}

.service-icon {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 0.85rem;
  letter-spacing: 0.06em;
}

.service-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.35rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

/* Why Us */
.why-us {
  background: linear-gradient(180deg, transparent, rgba(7, 11, 20, 0.55) 15%, rgba(7, 11, 20, 0.55) 85%, transparent);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.why-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.3rem;
  background: var(--card);
}

.why-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.3rem;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.process-inline-title {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  color: var(--gold-soft);
}

/* Process */
.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: none;
}

.process-steps li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.15rem 1.4rem;
  background: rgba(18, 26, 43, 0.55);
  position: relative;
}

.step-num {
  display: block;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}

.process-steps h3 {
  margin: 0 0 0.45rem;
  font-size: 1.3rem;
}

.process-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Gallery */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.gal {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--navy-800);
  display: flex;
  flex-direction: column;
}

.gal button {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background: #0a101c;
  cursor: zoom-in;
  overflow: hidden;
  position: relative;
  flex: 1;
}

.gal button img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 0.45s ease;
}

.gal-lg button img,
.gal-wide button img {
  height: 280px;
}

/* Instagram reel frames are portrait — taller tiles */
.gallery-ig {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gal-portrait button img {
  height: 320px;
  object-position: center 20%;
}

.gal-portrait.gal-lg button img {
  height: 420px;
}

.gallery-cta {
  margin: 1.25rem 0 0;
}

.gal:hover button img {
  transform: scale(1.04);
}

.gal figcaption {
  padding: 0.85rem 1rem 1rem;
  display: grid;
  gap: 0.15rem;
}

.gal figcaption strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.gal figcaption span {
  color: var(--muted);
  font-size: 0.86rem;
}

.gallery-note {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(4, 7, 14, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(6px);
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox-figure {
  margin: 0;
  max-width: min(1100px, 100%);
  max-height: 90vh;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
}

.lightbox-figure img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.lightbox-figure figcaption {
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(18, 26, 43, 0.9);
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(18, 26, 43, 0.9);
  color: var(--gold-soft);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.lightbox-close:hover,
.lightbox-nav:hover {
  border-color: var(--gold);
  color: #fff;
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.65rem;
  max-width: 46rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  padding: 0 1rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 0;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  padding-bottom: 0.25rem;
}

/* Proof */
.proof {
  background: rgba(7, 11, 20, 0.5);
  border-block: 1px solid var(--line);
}

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

.proof blockquote {
  margin: 0;
  padding: 2rem;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(145deg, rgba(201, 166, 107, 0.12), rgba(18, 26, 43, 0.9));
  border: 1px solid rgba(201, 166, 107, 0.28);
  box-shadow: var(--shadow);
}

.proof blockquote p {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.25;
  font-style: italic;
}

.proof blockquote footer {
  color: var(--muted);
  font-size: 0.9rem;
}

.proof-note p {
  color: var(--muted);
}

.text-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--gold-soft);
}

.text-link:hover {
  color: #fff;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.25rem;
  align-items: start;
}

.contact-channels {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.contact-channels li {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.75rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.contact-channels span {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  padding-top: 0.2rem;
}

.contact-channels a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}

.contact-channels a:hover {
  color: var(--gold-soft);
}

.contact-plain {
  color: var(--ink);
  font-weight: 500;
}

.contact-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.4rem 1.35rem 1.5rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(7, 11, 20, 0.55);
  color: var(--ink);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  font: inherit;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(201, 166, 107, 0.55);
  box-shadow: 0 0 0 3px rgba(201, 166, 107, 0.12);
}

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

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.form-status {
  margin: 0;
  min-height: 1.2em;
  font-size: 0.9rem;
  color: var(--gold-soft);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.75rem 0 2.25rem;
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 0.25rem;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.footer-brand span,
.footer-meta {
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-phone {
  margin-top: 0.35rem;
  color: var(--gold-soft);
  text-decoration: none;
  font-weight: 600;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-content: start;
}

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--gold-soft);
}

.footer-meta {
  display: grid;
  gap: 0.2rem;
  text-align: right;
}

/* Motion */
.fade-up {
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.7s ease forwards;
}

.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.16s; }
.delay-3 { animation-delay: 0.24s; }
.delay-4 { animation-delay: 0.32s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-up {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .service-grid-visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-ribbon {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-masonry,
  .gallery-ig {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .about-grid,
  .proof-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .process-steps,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .top-bar-tagline {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: rgba(11, 18, 32, 0.97);
    border-bottom: 1px solid var(--line);
    max-height: calc(100vh - var(--header-h) - var(--topbar-h));
    overflow-y: auto;
  }

  .nav.is-open .nav-menu {
    display: flex;
  }

  .nav-menu > li {
    border-bottom: 1px solid var(--line);
  }

  .nav-menu a {
    display: block;
    padding: 0.85rem 0.2rem;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0.5rem 0.75rem;
    display: none;
    min-width: 0;
  }

  .has-dropdown.is-open .dropdown {
    display: block;
  }

  .dropdown a {
    padding: 0.5rem 0.2rem;
    white-space: normal;
  }

  .nav-cta {
    margin-top: 0.5rem;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .service-grid-visual,
  .process-steps,
  .gallery-masonry,
  .gallery-ig,
  .why-grid,
  .field-row,
  .photo-ribbon,
  .about-photo-row {
    grid-template-columns: 1fr;
  }

  .ribbon-item {
    max-height: 220px;
  }

  .gal button img,
  .gal-lg button img,
  .gal-wide button img,
  .gal-portrait button img,
  .gal-portrait.gal-lg button img {
    height: 280px;
  }

  .lightbox-nav {
    display: none;
  }

  .trust-inner .dot {
    display: none;
  }

  h1 {
    max-width: none;
  }
}
