/* ============================================================
   inner.css — services / about / contact pages
   Shared inner-page chrome + section layouts
   ============================================================ */

.inner-hero {
  position: relative;
  padding: clamp(140px, 22vh, 220px) 0 clamp(60px, 10vh, 120px);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  max-width: 1600px;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.inner-hero::after {
  content: "";
  position: absolute;
  inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(12,17,22,0.65) 0%, rgba(12,17,22,0.90) 100%);
}
.inner-hero .eyebrow { display: block; }
.inner-hero h1 {
  font-family: "Shadows Into Light", serif;
  font-size: clamp(2.8rem, 8vw, 5.6rem);
  line-height: 1;
  margin: 14px auto 18px;
  max-width: 18ch;
}
.inner-hero .script {
  display: block;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  margin-bottom: 24px;
}
.inner-hero p {
  max-width: 60ch;
  margin: 0 auto;
  color: var(--fg-muted);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.7;
}

/* ----- Services page sections ------------------------------ */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 720px) { .svc-grid { grid-template-columns: 1fr; } }

.svc-card {
  padding: clamp(36px, 4vw, 56px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  background: var(--bg);
  transition: background var(--dur-base) var(--ease);
}
.svc-card:hover {
  background: var(--bg-soft);
}
.svc-card .num {
  font-family: "Shadows Into Light", serif;
  font-size: 40px;
  color: var(--gold);
  line-height: 1;
}
.svc-card h3 {
  font-family: "Basis Grotesque", sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.svc-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Fleet grid */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 32px);
  margin-top: clamp(48px, 6vh, 72px);
}
@media (max-width: 980px) { .fleet-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .fleet-grid { grid-template-columns: 1fr; } }

.fleet-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--dur-base) var(--ease);
}
.fleet-card:hover { border-color: var(--gold); }
.fleet-card .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.fleet-card h3 {
  font-family: "Basis Grotesque", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.fleet-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.fleet-card .pax {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--fg-dim);
  letter-spacing: 0.08em;
}

/* ----- About page ----------------------------------------- */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

.about-img {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: clamp(48px, 6vh, 72px);
}
@media (max-width: 1000px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  padding: clamp(28px, 3vw, 40px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.value-card .num {
  font-family: "Shadows Into Light", serif;
  font-size: 28px;
  color: var(--gold);
}
.value-card h3 {
  font-family: "Basis Grotesque", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin: 12px 0 12px;
  letter-spacing: -0.005em;
}
.value-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ----- Contact page --------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(40px, 5vw, 72px);
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form {
  display: grid;
  gap: 20px;
}
.contact-form label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  font: inherit;
  background: var(--bg-soft);
  color: var(--fg);
  border: 1px solid var(--line-strong);
  outline: none;
  transition: border-color var(--dur-fast) var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--gold); }
.contact-form textarea { min-height: 140px; resize: vertical; }

.contact-side h3 {
  font-family: "Basis Grotesque", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  margin-top: 28px;
}
.contact-side h3:first-child { margin-top: 0; }
.contact-side a, .contact-side p {
  display: block;
  font-size: 15px;
  padding: 4px 0;
  color: var(--fg);
}
.contact-side a:hover { color: var(--gold); }

/* Trip length blocks (about/services) */
.trip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: clamp(40px, 5vh, 60px);
}
@media (max-width: 1000px) { .trip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .trip-grid { grid-template-columns: 1fr; } }
.trip-card {
  padding: clamp(28px, 3vw, 40px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trip-card .len {
  font-family: "Shadows Into Light", serif;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 12px;
}
.trip-card h3 {
  font-family: "Basis Grotesque", sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
.trip-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* CTA strip */
.cta-strip {
  text-align: center;
  padding: clamp(64px, 10vh, 120px) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}
.cta-strip .script {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}
.cta-strip h2 {
  font-family: "Shadows Into Light", serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 30px;
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.05;
}
.cta-strip .cta-row {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
