/* South Sound Executive Services  -  preview stylesheet. System fonts only. Mobile first. */

:root {
  --ink: #1a1510;
  --ink-soft: #3f362d;
  --paper: #f4eee4;
  --paper-2: #ebe3d4;
  --raised: #faf6ef;
  --rule: #c8bba8;
  --accent: #b5441a;
  --accent-ink: #fff8f2;
  --accent-deep: #8c3312;
  --focus: #b5441a;
  --banner: #3a2a1e;
  --max: 40rem;
  --max-wide: 64rem;
  --space: 1.25rem;
  --radius: 2px;
}

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

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.55;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--accent-deep);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
.nav-toggle-label:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 20;
  padding: 0.4rem 0.7rem;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  transform: translateY(-200%);
}

.skip:focus {
  transform: none;
}

/* Preview ribbon */
.preview-bar {
  margin: 0;
  padding: 0.4rem var(--space);
  background: var(--ink);
  color: var(--paper);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  text-align: center;
}

/* Header / nav */
.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 0.9rem var(--space);
  border-bottom: 1px solid var(--rule);
  background: var(--raised);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  text-decoration: none;
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
}

.wordmark:hover {
  color: var(--ink);
}

.wordmark-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.14rem;
}

.wordmark-primary {
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  line-height: 1.05;
}

.wordmark-sub {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle-label {
  display: inline-block;
  padding: 0.4rem 0.65rem;
  border: 1px solid var(--ink);
  background: var(--raised);
  color: var(--ink);
  font-size: 0.875rem;
  cursor: pointer;
}

.primary-nav {
  display: none;
  width: 100%;
}

.nav-toggle:checked ~ .primary-nav {
  display: block;
}

.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0 0;
}

.primary-nav li {
  border-top: 1px solid var(--rule);
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 0;
  color: var(--ink);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.25;
  border-bottom: 2px solid transparent;
}

.primary-nav a[aria-current="page"] {
  border-bottom-color: var(--accent);
}

.primary-nav a:hover {
  color: var(--accent);
}

/* Type */
h1,
h2,
h3,
.lede {
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 7vw, 3.25rem);
}

h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.4rem, 4vw, 1.85rem);
}

h3 {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
}

p,
ul,
ol {
  margin: 0 0 1rem;
}

ul,
ol {
  padding-left: 1.2rem;
}

li + li {
  margin-top: 0.3rem;
}

.lede {
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  font-weight: 400;
  line-height: 1.4;
}

.kicker {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Layout */
.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

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

main {
  padding-bottom: 3rem;
}

.section {
  padding: 2.25rem 0;
}

.section + .section {
  border-top: 1px solid var(--rule);
}

.band {
  background: var(--paper-2);
}

/* Hero */
.hero {
  min-height: 22rem;
  padding: 2.5rem 0 2.75rem;
  background: var(--ink);
  color: var(--paper);
}

.hero .kicker {
  color: #e0c8a8;
}

.hero h1 {
  color: var(--paper);
}

.hero .lede,
.hero p {
  color: #ebe3d4;
}

.hero a:not(.btn) {
  color: #f0c9b0;
}

.hero-compact {
  min-height: 16rem;
  padding: 2rem 0 2.25rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.15rem;
  background: var(--accent);
  color: var(--accent-ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
}

.btn:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: var(--accent-ink);
}

.btn:focus-visible {
  outline-color: #fff;
  outline-offset: 3px;
}

.hero .btn {
  box-shadow: none;
}

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

.hero .btn-ghost:hover {
  background: var(--paper);
  color: var(--ink);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

/* Seat cards */
.seats {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.seat {
  display: block;
  height: 100%;
  padding: 1.15rem 1.15rem 1.25rem;
  background: var(--raised);
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--rule);
  border-top: 4px solid var(--ink);
}

.seat:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.seat-first {
  border-top-color: var(--accent);
}

.seat h3 {
  margin-bottom: 0.4rem;
}

.seat p {
  margin-bottom: 0.75rem;
  color: var(--ink-soft);
}

.seat .more {
  font-weight: 700;
  color: var(--accent);
}

.facts {
  display: grid;
  gap: 1rem;
}

.fact {
  padding: 0;
}

.fact h2 {
  font-size: 1.15rem;
}

/* Banner / notice */
.notice {
  padding: 1rem 1.1rem;
  background: var(--banner);
  color: var(--paper);
}

.notice a {
  color: #f0c9b0;
  font-weight: 700;
}

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

/* FAQ  -  always visible */
.faq {
  display: grid;
  gap: 1.5rem;
}

.faq article {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
}

.faq article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.faq h2 {
  font-size: 1.2rem;
}

/* Form */
.form {
  display: grid;
  gap: 1rem;
  max-width: 28rem;
}

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

.field label,
.field .label {
  font-weight: 700;
  font-size: 1rem;
}

.req {
  font-weight: 500;
  color: var(--ink-soft);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--raised);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
}

textarea {
  min-height: 7rem;
  resize: vertical;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 16px) 50%, calc(100% - 10px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2rem;
}

.form button[type="submit"] {
  justify-self: start;
  cursor: pointer;
  font-family: inherit;
}

.form-status {
  margin: 0;
  padding: 0.85rem 1rem;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
}

.form-status[hidden] {
  display: none;
}

.hint {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* Proof list */
.proof {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.proof li {
  padding: 0.55rem 0 0.55rem 1rem;
  border-left: 3px solid var(--accent);
}

/* Footer */
.site-footer {
  padding: 2rem var(--space) 2.5rem;
  background: var(--ink);
  color: #d9cfc0;
}

.site-footer a {
  color: #f0c9b0;
}

.site-footer .wordmark {
  color: var(--paper);
  margin-bottom: 0.75rem;
}

.foot-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 1rem;
  list-style: none;
  margin: 1rem 0 1.25rem;
  padding: 0;
}

.foot-nav li {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.foot-nav li + li {
  margin-top: 0;
}

.foot-nav a {
  display: inline-flex;
  align-items: center;
  height: 1.5rem;
  margin: 0;
  padding: 0;
  line-height: 1;
  text-decoration: none;
  font-size: 0.95rem;
}

.foot-nav a:hover {
  text-decoration: underline;
}

.nap {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.legal {
  margin: 0;
  font-size: 0.8125rem;
  color: #b4a898;
}

/* Breadcrumb */
.crumbs {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: #c9bfb0;
}

.crumbs a {
  color: #e0c8a8;
  text-decoration: none;
}

.crumbs a:hover {
  text-decoration: underline;
}

.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.crumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.45rem;
  color: #8a8074;
}

/* Misc */
.who-where-how h2 {
  font-size: 1.15rem;
}

@media (min-width: 720px) {
  .nav-toggle-label {
    display: none;
  }

  .site-header {
    flex-wrap: nowrap;
    align-items: center;
  }

  .primary-nav {
    display: block;
    width: auto;
    margin-left: auto;
    flex: 0 0 auto;
  }

  .primary-nav ul {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 1.15rem;
    padding: 0;
    margin: 0;
  }

  .primary-nav li {
    border: 0;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
  }

  .primary-nav li:first-child {
    margin: 0;
    padding: 0;
    transform: none;
  }

  .primary-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2rem;
    padding: 0;
    margin: 0;
    line-height: 1;
  }

  .seats {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

  .facts {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .hero {
    min-height: 24rem;
    padding: 3.25rem 0 3.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

.stack-below {
  margin-bottom: 2rem;
}

.hero-book {
  min-height: 0;
  padding: 1.6rem 0 1.4rem;
}

.form-band {
  padding-top: 1.4rem;
  background: var(--paper-2);
}

.notice h2,
.notice p {
  color: inherit;
}

/* Home fold photo.
   Old stacked full-bleed .hero (min-height 22rem, dark ink) and
   .hero-photo (margin 0 0 1.5rem, aspect-ratio 1280/850) cannot win here. */
.hero.hero-home {
  min-height: 0;
  padding: 1.5rem 0 1.75rem;
  background: var(--paper);
  color: var(--ink);
}

.hero.hero-home h1 {
  color: var(--ink);
  margin-bottom: 0.85rem;
}

.hero-photo {
  margin: 0 0 1.5rem;
  aspect-ratio: 1280 / 850;
  overflow: hidden;
  background: var(--paper-2);
}

.hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1280 / 850;
  object-fit: cover;
}

/* Locked numbers as display type */
.metrics {
  display: grid;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.metrics li {
  margin: 0;
}

.metric-value {
  display: block;
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  font-size: clamp(1.85rem, 5.5vw, 3.15rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

/* How-it-works: three numbered beats */
.beats {
  display: grid;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.beats li {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.7rem;
  align-items: start;
  margin: 0;
}

.beats p {
  margin: 0;
}

.beat-num {
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--accent);
}

/* About: empty hole for Leslie's real headshot */
.portrait-hole {
  margin: 0 0 1.5rem;
  max-width: 16rem;
}

.portrait-placeholder {
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  background: var(--paper-2);
  border: 1px dashed var(--rule);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

@media (min-width: 720px) {
  .metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 2.5rem;
  }

  .hero.hero-home {
    min-height: 0;
    padding: 1.5rem 0 1.75rem;
  }
}

.hero-photo-credit {
  margin: 0.4rem 0 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
}

.portrait {
  margin: 0 0 1.5rem;
  max-width: 400px;
}
.portrait img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}


/* Recut: fold, proof strip, two scenes. Chris nav/footer rules above stay. */
.primary-nav li + li {
  margin-top: 0;
}

.hero.hero-home p,
.hero.hero-home .lede {
  color: var(--ink);
}

.fold {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: min(100% - 2.5rem, var(--max-wide));
}

.fold-copy h1 {
  margin-bottom: 0.85rem;
}

.fold .cta-row {
  margin-top: 0;
  margin-bottom: 0;
}

/* Neutralize stacked full-bleed still on the fold. Photo fills its column. */
.hero-home .fold .hero-photo,
.fold .hero-photo {
  margin: 0;
  aspect-ratio: auto;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.fold .hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  aspect-ratio: 1280 / 850;
  object-fit: cover;
}

.proof-display {
  display: block;
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  font-size: clamp(1.85rem, 5.5vw, 3.15rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 0.15rem;
}

.proof-quiet {
  margin: 1.1rem 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.scenes {
  display: grid;
  gap: 2rem;
}

.scene h2 {
  margin-bottom: 0.45rem;
}

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

.tag {
  margin: 0 0 0.75rem;
  color: #d9cfc0;
  font-size: 0.95rem;
}

@media (min-width: 720px) {
  .hero.hero-home {
    min-height: 0;
    padding: 1.35rem 0 1.5rem;
  }

  .fold {
    display: grid;
    grid-template-columns: minmax(18rem, 1fr) minmax(24rem, 1.45fr);
    gap: 1.5rem 2rem;
    align-items: center;
    width: min(100% - 2.5rem, var(--max-wide));
  }

  .fold .fold-copy {
    min-width: 0;
  }

  .fold .hero-photo {
    margin: 0;
    aspect-ratio: auto;
    width: 100%;
    justify-self: stretch;
  }

  .fold .hero-photo img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 18rem;
    object-fit: cover;
  }

  .scenes {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
  }
}
