:root {
  --teal: #14787d;
  --teal-deep: #0a4246;
  --teal-mid: #127277;
  --teal-bright: #1aa0a6;
  --teal-ink: #0f5558;
  --muted: #3a585b;
  --muted-2: #4a6568;
  --nav: #3a5a5c;
  --soft: #e8f6f6;
  --border: #d5ecec;
  --white: #fff;
  --pin: #c23b3b;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--teal-deep);
  line-height: 1.5;
  min-height: 100vh;
}
a { color: var(--teal); text-decoration: none; }
img { max-width: 100%; display: block; }

/* —— Shared header —— */
.site-header {
  position: relative; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem) 0;
  max-width: 1440px; margin: 0 auto;
}
.logo {
  display: flex; align-items: center; gap: 0.7rem;
  color: var(--teal-mid);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.9;
  white-space: nowrap;
}
.logo-word {
  display: flex; align-items: baseline; gap: 0.2em;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}
.logo-word .found,
.logo-word .rest { font-size: inherit; }

/* A2f: large uniform lockup inside hero only */
.hero .logo-word {
  font-size: clamp(2.25rem, 5.5vw, 5.75rem);
}
.hero .logo { gap: 0.85rem; margin-left: -6px; }

/* 2-ring interlocking mark: inline SVG, 2D rotation only (2026-09-26).
   No 3D transforms/perspective/filters, so the rings stay perfect crisp circles.
   Two identical rings (r=22, stroke 6.5): cyan lower-left, deep-teal upper-right; the short teal arc
   (.fb-ring-over) is drawn on top at one crossing so the rings interlock. */
.logo-mark {
  width: 42px; height: 42px; flex-shrink: 0;
  display: grid; place-items: center;
  border: none; border-radius: 0; position: relative;
}
.hero .logo-mark {
  width: clamp(48px, 5.2vw, 78px);
  height: clamp(48px, 5.2vw, 78px);
}
.fb-rings { display: block; width: 100%; height: 100%; overflow: visible; shape-rendering: geometricPrecision; }
/* Rotation is SMIL <animateTransform> inside the SVG (9s, 2D rotate about 50,50):
   works even if this stylesheet is stale/cached; intentionally not stopped by
   prefers-reduced-motion (Mark wants it rotating). */
/* Clear old pseudo-ring mark if any leftover */
.logo-mark::before, .logo-mark::after { content: none; display: none; }

.nav-links {
  display: flex; gap: clamp(0.75rem, 2vw, 1.6rem);
  list-style: none; color: var(--nav);
  font-size: 0.875rem; font-weight: 500;
  margin-left: auto;
}
.nav-links a { color: inherit; }
.nav-links a:hover, .nav-links a.active {
  color: var(--teal); font-weight: 600;
  border-bottom: 1.5px solid rgba(20,120,125,0.5);
  padding-bottom: 2px;
}
.nav-cta {
  background: var(--teal); color: #fff !important;
  padding: 0.7rem 1.35rem; border-radius: 999px;
  font-weight: 600; font-size: 0.875rem;
  box-shadow: 0 8px 18px rgba(20,120,125,0.22);
  white-space: nowrap;
}
.nav-cta:hover { filter: brightness(1.06); }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--border);
  border-radius: 8px; padding: 0.5rem 0.7rem; color: var(--teal);
  font-size: 1.1rem; cursor: pointer;
}

/* —— Hero (A2f) —— */
.hero {
  position: relative;
  max-width: 1440px; margin: 0 auto;
  min-height: min(900px, 100vh);
  overflow: hidden;
  background: #fff;
}
.sky {
  position: absolute; right: 0; top: 0;
  width: 76%; height: 100%;
  background:
    linear-gradient(90deg,
      #ffffff 0%,
      rgba(255,255,255,0.96) 4%,
      rgba(255,255,255,0.62) 12%,
      rgba(255,255,255,0.18) 24%,
      rgba(18,120,125,0.04) 48%,
      rgba(14,100,108,0.10) 100%),
    linear-gradient(180deg,
      rgba(255,255,255,0.14) 0%,
      rgba(255,255,255,0.02) 38%,
      rgba(10,80,86,0.10) 100%),
    url('../assets/omaha-downtown-skyline-v7a2-woodmen-mutual-teal-wash.jpg') 48% 34% / cover no-repeat;
  pointer-events: none;
}
.sky::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 48% 55% at 78% 42%, rgba(255,255,255,0.20), transparent 72%),
    linear-gradient(108deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.22) 14%, transparent 34%);
}
/* A2f: hero copy block lower on desktop */
.hero-content {
  /* static so .portrait-wrap absolute still uses .hero as containing block (not this grid) */
  position: static;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  padding: clamp(4.5rem, 9vh, 8rem) clamp(1rem, 4vw, 3.5rem) 1.1rem;
  gap: 1rem;
  min-height: calc(min(810px, 100vh) - 110px);
}
/* Stack above .sky without becoming absolute containing block for portrait */
.hero-content .left { z-index: 5; }
.hero-content .right { z-index: 5; }

.left {
  display: flex; flex-direction: column; justify-content: flex-start;
  padding-top: 0.25rem;
}
h1.hero-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 4.2vw, 3rem);
  line-height: 1.06; font-weight: 700;
  color: var(--teal-deep); letter-spacing: -0.01em; max-width: 540px;
}
h1.hero-title .accent { color: var(--teal); }
.rule {
  width: 72px; height: 3.5px;
  background: linear-gradient(90deg, var(--teal-bright), var(--teal));
  border-radius: 2px; margin: 0.65rem 0 0.65rem;
}
.lead {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700; color: var(--teal-mid);
  letter-spacing: -0.01em; line-height: 1.2; margin-bottom: 0.5rem;
}
.sub {
  font-size: clamp(0.95rem, 1.4vw, 1.03rem);
  line-height: 1.48; color: var(--muted);
  max-width: 500px; font-weight: 450;
}

/* A2g: email-first nudge + Email/Text BUTTONS; Leave your info softer */
.email-nudge {
  margin-top: 0.75rem;
  font-size: clamp(0.8125rem, 1.2vw, 0.875rem);
  line-height: 1.4; color: var(--teal-ink);
  font-weight: 550; max-width: 480px;
}
.btn-row {
  margin-top: 0.75rem; display: flex; align-items: center; gap: 0.65rem; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.8rem 1.35rem; border-radius: 999px;
  font-weight: 650; font-size: 0.95rem;
  text-decoration: none; border: 2px solid transparent;
  box-shadow: 0 6px 16px rgba(16,90,95,0.10);
}
.btn-email {
  background: var(--teal); color: #fff !important;
  border-color: var(--teal);
  box-shadow: 0 8px 18px rgba(20,120,125,0.28);
}
.btn-email:hover { filter: brightness(1.06); }
.btn-text {
  background: #fff; color: var(--teal-ink) !important;
  border-color: var(--teal-bright);
}
.btn-text:hover { background: var(--soft); }
.info-cta {
  margin-top: 0.65rem; display: inline-flex; align-items: center; gap: 0.65rem;
  background: var(--soft); color: var(--teal-ink);
  padding: 0.7rem 1.15rem; border-radius: 999px;
  font-weight: 600; font-size: 0.875rem; width: fit-content;
  border: 1px solid #c7e8e9;
}
.info-cta:hover { background: #dff2f2; }
.info-cta .dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--teal); color: #fff;
  display: grid; place-items: center; font-size: 0.8rem; flex-shrink: 0;
}
/* legacy plain-link row (contact page may still use contact-alt-row) */
.contact-row {
  margin-top: 0.65rem; display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.875rem; font-weight: 550; flex-wrap: wrap;
}
.contact-row a {
  color: var(--teal);
  border-bottom: 1.5px solid rgba(20,120,125,0.4);
}
.contact-row a.email {
  font-weight: 600; color: var(--teal-ink);
  border-bottom-color: rgba(15,85,88,0.35);
}
.contact-row .sep { color: #9ab0b2; font-weight: 400; }
.phone-tertiary {
  margin-top: 0.5rem; font-size: 0.75rem; color: #7a9295; font-weight: 450;
}
.phone-tertiary a {
  color: #6a8588;
  border-bottom: 1px solid rgba(90,117,120,0.3);
}

.serve {
  margin-top: 0.65rem; display: flex; align-items: center; gap: 0.5rem;
  color: var(--teal); font-size: 0.8125rem; font-weight: 550;
}
.serve .pin { color: var(--pin); }
.packages { margin-top: auto; padding-top: 0.9rem; }
.packages-label {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: #4f6d70; font-weight: 600; margin-bottom: 0.55rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem;
}
.packages-label .to-pricing {
  letter-spacing: 0; text-transform: none; font-size: 0.75rem;
  color: var(--teal); font-weight: 600;
  border-bottom: 1.5px solid rgba(20,120,125,0.45);
}
.cards {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.6rem;
}
.card {
  background: rgba(255,255,255,0.97);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.75rem 0.5rem 0.7rem;
  box-shadow: 0 10px 22px rgba(16,90,95,0.07);
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  color: inherit;
  display: block;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(16,90,95,0.12);
}
.card .price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.7rem); font-weight: 700;
  color: var(--teal-mid); line-height: 1;
  text-decoration: underline;
  text-decoration-color: rgba(18,114,119,0.32);
  text-underline-offset: 3px;
}
.card .lbl {
  margin-top: 0.3rem; font-size: 0.7rem; line-height: 1.2;
  color: var(--muted-2); font-weight: 550;
}
.card .see {
  margin-top: 0.35rem; font-size: 0.625rem; color: var(--teal); font-weight: 600;
}
.card.card-highlight {
  border-color: var(--teal-bright);
  box-shadow: 0 10px 24px rgba(20,120,125,0.16);
  background: linear-gradient(180deg, #f2fbfb 0%, #fff 70%);
}
.card.card-highlight .lbl { color: var(--teal-ink); font-weight: 650; }
.pkg .deadline {
  margin: 0.15rem 0 0.65rem;
  font-size: 0.85rem; font-weight: 650;
  color: var(--teal-ink);
}
.monthly { margin-top: 0.6rem; display: flex; gap: 0.6rem; flex-wrap: wrap; }
.mcard {
  flex: 1; min-width: 200px;
  background: var(--teal); color: #fff;
  border-radius: 12px; padding: 0.7rem 0.9rem;
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
  box-shadow: 0 8px 18px rgba(20,120,125,0.24);
  transition: filter 0.15s ease;
}
.mcard:hover { filter: brightness(1.06); }
.mcard .p {
  font-size: 1.2rem; font-weight: 700;
  font-family: "Cormorant Garamond", Georgia, serif; white-space: nowrap;
}
.mcard .l { font-size: 0.75rem; opacity: 0.92; font-weight: 500; }

.right { position: relative; min-height: 100%; }
.soft-orb {
  position: absolute; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.42), rgba(255,255,255,0));
  right: 0; bottom: 20px; z-index: 1; pointer-events: none;
}
/* Portrait LOCKED A2g — exact: right:40px; bottom:78px; 292×292; absolute to .hero */
.portrait-wrap {
  position: absolute; z-index: 12;
  right: 40px;
  bottom: 78px;
  top: auto;
  pointer-events: auto;
}
.portrait {
  width: 292px; height: 292px; max-width: none;
  border-radius: 50%;
  object-fit: cover; object-position: center 18%;
  border: 6px solid #fff;
  box-shadow:
    0 0 0 3.5px var(--teal-bright),
    0 26px 52px rgba(10,70,75,0.30);
  background: #ddd;
  display: block;
}
.badge {
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: -52px;
  background: #fff; border-radius: 14px;
  padding: 0.5rem 1rem; min-width: 188px;
  box-shadow: 0 12px 26px rgba(10,70,75,0.15);
  border: 1px solid #d8ecec;
  text-align: center;
  white-space: nowrap;
}
.badge strong { display: block; color: var(--teal-ink); font-size: 0.875rem; line-height: 1.15; }
.badge span { display: block; color: #5a7578; font-size: 0.75rem; line-height: 1.2; margin-top: 1px; }

/* —— Sample grid (below hero, equal-height, no fan) —— */
.sample-grid-section {
  max-width: 1440px; margin: 0 auto;
  padding: 1.5rem clamp(1rem, 4vw, 3.5rem) 2.5rem;
  border-top: 1px solid var(--border);
}
.sample-grid-inner { max-width: 1100px; margin: 0 auto; }
.sample-grid-label {
  text-align: center;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-ink); font-weight: 700;
  margin-bottom: 1rem;
}
.sample-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.sample-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(16,90,95,0.07);
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.sample-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(16,90,95,0.12);
}
.sample-card img {
  width: 100%; height: 160px;
  object-fit: cover; object-position: top center;
  border-bottom: 1px solid #e2efef;
  background: #e8eeee;
}
.sample-card .sample-name {
  padding: 0.75rem 0.85rem;
  font-size: 0.8rem; font-weight: 650; color: var(--teal-ink);
  line-height: 1.3;
}

/* —— Inner pages —— */
.page-main {
  max-width: 960px; margin: 0 auto;
  padding: 2rem clamp(1rem, 4vw, 2.5rem) 4rem;
}
.page-hero-band {
  background:
    linear-gradient(105deg, rgba(255,255,255,0.96) 0%, rgba(232,246,246,0.88) 55%, rgba(20,120,125,0.12) 100%),
    url('../assets/omaha-downtown-skyline-v7a2-woodmen-mutual-teal-wash.jpg') 80% 45% / cover no-repeat;
  border-bottom: 1px solid var(--border);
}
.page-hero-inner {
  max-width: 960px; margin: 0 auto;
  padding: 2.5rem clamp(1rem, 4vw, 2.5rem) 2rem;
}
.page-hero-inner h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--teal-deep); line-height: 1.05; font-weight: 700;
}
.page-hero-inner p {
  margin-top: 0.75rem; color: var(--muted); max-width: 36rem; font-size: 1.05rem;
}
.pkg-grid {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .pkg-grid { grid-template-columns: 1fr 1fr; }
  .pkg-grid .wide { grid-column: 1 / -1; }
}
.pkg {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.35rem 1.4rem;
  box-shadow: 0 10px 24px rgba(16,90,95,0.06);
}
.pkg h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem; color: var(--teal-deep); margin: 0 0 0.2rem;
}
.pkg .amt {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem; font-weight: 700; color: var(--teal); margin: 0.35rem 0 0.6rem;
}
.pkg ul {
  margin: 0; padding-left: 1.1rem; color: var(--muted-2); font-size: 0.95rem;
}
.pkg ul li { margin: 0.25rem 0; }
.pkg.featured {
  border-color: var(--teal);
  background: linear-gradient(180deg, #f4fbfb 0%, #fff 60%);
}
.pkg .tag {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--teal); background: var(--soft);
  padding: 0.2rem 0.55rem; border-radius: 999px; margin-bottom: 0.4rem;
}
.section-label {
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: #6a8588; font-weight: 600; margin: 2rem 0 0.85rem;
}
.cta-bar {
  margin-top: 2.5rem;
  background: var(--teal); color: #fff;
  border-radius: 16px; padding: 1.5rem 1.6rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  box-shadow: 0 12px 28px rgba(20,120,125,0.25);
}
.cta-bar p { margin: 0; font-size: 1.05rem; max-width: 28rem; }
.cta-bar .actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.btn-light {
  background: #fff; color: var(--teal-ink);
  padding: 0.75rem 1.2rem; border-radius: 999px; font-weight: 700; font-size: 0.9rem;
}
.btn-ghost {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
  padding: 0.7rem 1.15rem; border-radius: 999px; font-weight: 600; font-size: 0.9rem;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }

/* Contact form */
.contact-grid {
  display: grid; gap: 1.5rem;
}
@media (min-width: 720px) {
  .contact-grid { grid-template-columns: 1fr 1.15fr; }
}
.contact-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 1.5rem;
  box-shadow: 0 10px 24px rgba(16,90,95,0.06);
}
.contact-card label {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: var(--teal-ink); margin: 0.85rem 0 0.35rem;
}
.contact-card label:first-child { margin-top: 0; }
.contact-card input,
.contact-card textarea {
  width: 100%; padding: 0.7rem 0.85rem;
  border: 1px solid var(--border); border-radius: 10px;
  font: inherit; color: var(--teal-deep); background: #fafcfc;
}
.contact-card input:focus,
.contact-card textarea:focus {
  outline: 2px solid rgba(20,120,125,0.35); border-color: var(--teal);
}
.contact-card textarea { min-height: 120px; resize: vertical; }
.contact-card .submit {
  margin-top: 1.1rem; width: 100%;
  background: var(--teal); color: #fff; border: none;
  padding: 0.85rem 1.2rem; border-radius: 999px;
  font-weight: 700; font-size: 0.95rem; cursor: pointer;
  box-shadow: 0 8px 18px rgba(20,120,125,0.22);
}
.contact-card .submit:hover { filter: brightness(1.06); }
.form-note {
  margin-top: 0.75rem; font-size: 0.85rem; color: var(--muted-2);
}
.form-note strong { color: var(--teal); }
.side-blurb h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem; color: var(--teal-deep); margin-bottom: 0.5rem;
}
.side-blurb p { color: var(--muted); margin-bottom: 1rem; }
.side-blurb ul { color: var(--muted-2); padding-left: 1.1rem; }
.side-blurb li { margin: 0.35rem 0; }
.contact-alt-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem;
  margin-top: 1rem; font-size: 0.95rem; font-weight: 600;
}
.contact-alt-row a {
  color: var(--teal);
  border-bottom: 1.5px solid rgba(20,120,125,0.4);
}
.contact-alt-row a.email { color: var(--teal-ink); }
.contact-alt-row .sep { color: #9ab0b2; font-weight: 400; }
.site-footer {
  max-width: 1440px; margin: 0 auto;
  padding: 1.5rem clamp(1rem, 4vw, 3.5rem) 2rem;
  color: #6a8588; font-size: 0.85rem;
  border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem;
}
.site-footer a { color: var(--teal); font-weight: 600; }

.addr-line { margin-top: 1rem; color: var(--muted-2); font-size: 0.9rem; }
.form-row-2 {
  display: grid; gap: 0.75rem;
}
@media (min-width: 560px) {
  .form-row-2 { grid-template-columns: 1fr 1fr; }
}
.form-row-2 label { margin-top: 0 !important; }
.contact-card .form-row-2 { margin-top: 0.85rem; }

/* —— Responsive (A2j mobile: bigger portrait, same position) —— */
@media (max-width: 980px) {
  .hero {
    min-height: 0;
    overflow: visible; /* badge may hang slightly below skyline band */
  }
  /* A2j: name SLIDES LEFT — room on right for skyline portrait */
  .site-header {
    padding: 10px 10px 0 8px;
    align-items: flex-start;
    gap: 6px;
  }
  .hero .logo {
    max-width: 210px;
    margin-left: 0;
    margin-right: auto;
    flex-shrink: 1;
    gap: 7px;
  }
  .hero .logo-word {
    font-size: 32px;
    gap: 0.12em;
    flex-wrap: nowrap;
  }
  .hero .logo-word .found,
  .hero .logo-word .rest { font-size: 32px; }
  /* A2j: visible ring mark beside name (Mark marked NO LOGO); SVG, never collapses */
  .hero .logo-mark {
    width: 40px; height: 40px; min-width: 40px; min-height: 40px;
    display: grid; place-items: center;
    flex-shrink: 0;
    overflow: visible;
  }
  .hero-content {
    grid-template-columns: 1fr;
    min-height: 0;
    /* A2j: ~128px under nav — portrait sits in skyline above lead */
    padding: 128px 1rem 1rem;
  }
  h1.hero-title { max-width: 230px; } /* clear of skyline portrait */
  .lead { max-width: 240px; }
  .sky {
    width: 100%;
    height: 250px;
    right: 0; left: 0;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.78) 72%, #fff 100%),
      linear-gradient(90deg, rgba(20,120,125,0.10), transparent 55%),
      url('../assets/omaha-downtown-skyline-v7a2-woodmen-mutual-teal-wash.jpg') 52% 36% / cover no-repeat;
  }
  .sky::after { display: none; }
  .right {
    position: static;
    min-height: 0;
  }
  .soft-orb { display: none; }
  /* A2j MOBILE LOCK: portrait 148px in right skyline — right:8px; top:52px
     Mark approved; NOT over $79/$149 packages; NOT founder row */
  .portrait-wrap {
    position: absolute;
    z-index: 15;
    right: 8px;
    left: auto;
    top: 52px;
    bottom: auto;
    display: block;
    margin: 0;
    width: 158px;
    max-width: none;
  }
  .portrait {
    width: 148px; height: 148px; max-width: none;
    border-width: 3.5px;
    object-fit: cover;
    object-position: center 18%;
    margin: 0 0 0 auto;
    box-shadow: 0 0 0 2.5px var(--teal-bright), 0 12px 26px rgba(10,70,75,0.28);
  }
  .badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -36px;
    padding: 5px 9px;
    min-width: 148px;
    border-radius: 9px;
    white-space: nowrap;
  }
  .badge strong { font-size: 10px; }
  .badge span { font-size: 9px; }
  .packages { margin-top: 0.75rem; }
  .cards { grid-template-columns: repeat(3, 1fr); }
  /* Packages + monthly fully clear of portrait (portrait is up on skyline) */
  .monthly { margin-right: 0; flex-direction: column; }
  .mcard { min-width: 0; }
  .sample-grid { grid-template-columns: 1fr; }
  .sample-card img { height: 180px; }
}
@media (max-width: 720px) {
  .nav-links, .site-header .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.nav-open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; left: 1rem; right: 1rem; top: 100%;
    background: #fff; border: 1px solid var(--border);
    border-radius: 14px; padding: 1rem;
    box-shadow: 0 16px 32px rgba(10,70,75,0.12);
    z-index: 30;
  }
  .site-header.nav-open .nav-cta {
    display: inline-flex; position: absolute;
    left: 1rem; right: 1rem; top: calc(100% + 11.5rem);
    justify-content: center; z-index: 30;
  }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding-top: 128px; }
  .sky { height: 220px; }
  /* A2j lock: right:8px; top:52px; 148px */
  .portrait-wrap { top: 52px; right: 8px; width: 158px; }
  .portrait { width: 148px; height: 148px; }
}

@media (max-width: 480px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .mcard { flex-direction: column; align-items: flex-start; }
  h1.hero-title { font-size: 1.875rem; }
  .lead { font-size: 1.05rem; }
}

/* 2026-09-24 CTA pass: positioning line */
.sub .positioning { color: var(--teal-ink); font-weight: 650; }
@media (max-width: 720px) {
  /* keep inner-page hero copy readable over the skyline on phones */
  .page-hero-band {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.93) 0%, rgba(240,249,249,0.9) 100%),
      url('../assets/omaha-downtown-skyline-v7a2-woodmen-mutual-teal-wash.jpg') 80% 45% / cover no-repeat;
  }
}
.site-footer a { white-space: nowrap; }

/* 2026-09-24 FB link (footer + contact options; after email/text) */
.fb-link { display: inline-flex; align-items: center; gap: 0.35em; white-space: nowrap; }
.fb-link .fb-icon { flex-shrink: 0; position: relative; top: -0.5px; }
.contact-fb { margin-top: 0.4rem; font-size: 0.85rem; color: #6a8588; }
.contact-fb .fb-link { color: var(--teal); font-weight: 600; border-bottom: 1px solid rgba(20,120,125,0.35); }

/* 2026-09-25 email + text: Email and Text share the row evenly on phones */
@media (max-width: 560px) {
  .btn-row { flex-wrap: nowrap; }
  .btn-row .btn { flex: 1 1 0; }
  .cta-bar .actions { width: 100%; }
  .cta-bar .actions a { flex: 1 1 calc(50% - 0.3rem); text-align: center; }
  .cta-bar .actions a:last-child { flex-basis: 100%; }
}

/* 2026-09-25 skyline photo credit (CC attribution) */
.site-footer .photo-credit { flex-basis: 100%; font-size: 0.7rem; line-height: 1.45; color: #5b7a7d; }
.site-footer .photo-credit a { color: inherit; font-weight: 500; white-space: normal; text-decoration: underline; text-decoration-color: rgba(106,133,136,0.4); }
.site-footer .photo-credit a[rel~="license"] { white-space: nowrap; }

/* —— 2026-09-26 preview: findability band + inquiry card + check page —— */
.find-band {
  background: linear-gradient(100deg, var(--teal-deep) 0%, var(--teal) 100%);
  color: #fff;
}
.find-band-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 1.35rem clamp(1rem, 4vw, 3.5rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.find-band-copy h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 1.9rem); line-height: 1.1; font-weight: 700;
}
.find-band-copy p { margin-top: 0.3rem; font-size: 0.92rem; line-height: 1.45; color: rgba(255,255,255,0.88); max-width: 40rem; }
.find-band-action { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; flex-shrink: 0; }
.find-band-btn {
  background: #fff; color: var(--teal-deep) !important;
  padding: 0.8rem 1.4rem; border-radius: 999px;
  font-weight: 700; font-size: 0.95rem; white-space: nowrap;
  box-shadow: 0 8px 18px rgba(0,30,32,0.22);
}
.find-band-btn:hover { background: var(--soft); }
.find-band-micro { font-size: 0.72rem; color: rgba(255,255,255,0.78); text-align: center; }

.inquiry-section {
  background: linear-gradient(180deg, #f3fafa 0%, #fff 100%);
  padding: clamp(2.5rem, 6vw, 4rem) 1rem;
}
.inquiry-card, .check-card {
  max-width: 640px; margin: 0 auto;
  background: #fff; border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(1.4rem, 4vw, 2.25rem);
  box-shadow: 0 18px 40px rgba(16,90,95,0.10);
  scroll-margin-top: 1.5rem;
}
.eyebrow {
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal); font-weight: 700; margin-bottom: 0.4rem;
}
.inquiry-card h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3.4vw, 2.3rem); line-height: 1.08; font-weight: 700;
  color: var(--teal-deep);
}
.inquiry-sub { margin-top: 0.5rem; color: var(--muted); font-size: 0.97rem; }
.fb-form { margin-top: 1.25rem; }
.f-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem 1rem; }
.f-field { display: flex; flex-direction: column; }
.fb-form > .f-field { margin-top: 1rem; }
.fb-form label, .chips legend {
  font-size: 0.82rem; font-weight: 600; color: var(--teal-ink); margin-bottom: 0.35rem;
}
.fb-form .req { color: var(--teal); }
.fb-form .opt { color: #5b7a7d; font-weight: 500; }
.fb-form input[type="text"], .fb-form input[type="email"], .fb-form input[type="tel"], .fb-form input[type="url"], .fb-form textarea {
  width: 100%; padding: 0.75rem 0.95rem;
  border: 1px solid #cfe4e5; border-radius: 12px;
  font: inherit; font-size: 0.95rem; color: var(--teal-deep); background: #fafdfd;
  transition: border-color .15s, box-shadow .15s;
}
.fb-form input:focus, .fb-form textarea:focus {
  outline: none; border-color: var(--teal); background: #fff;
  box-shadow: 0 0 0 3px rgba(20,120,125,0.16);
}
.fb-form textarea { min-height: 120px; resize: vertical; }
.fb-form small { margin-top: 0.3rem; font-size: 0.75rem; color: #4f6d70; }
.chips { border: none; margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chips legend { width: 100%; padding: 0; float: left; }
.chip { margin: 0 !important; cursor: pointer; }
.chip input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.chip span {
  display: inline-block; padding: 0.45rem 0.9rem; border-radius: 999px;
  border: 1px solid #cfe4e5; background: #fafdfd;
  font-size: 0.82rem; font-weight: 550; color: var(--teal-ink);
  transition: background .15s, border-color .15s, color .15s;
}
.chip input:checked + span { background: var(--teal); border-color: var(--teal); color: #fff; }
.chip input:checked + span::before { content: "✓ "; }
.chip input:focus-visible + span { box-shadow: 0 0 0 3px rgba(20,120,125,0.25); }
.f-submit {
  margin-top: 1.3rem; width: 100%;
  background: var(--teal-deep); color: #fff; border: none;
  padding: 0.95rem 1.2rem; border-radius: 999px;
  font: inherit; font-weight: 700; font-size: 1rem; cursor: pointer;
  box-shadow: 0 10px 22px rgba(10,66,70,0.25);
}
.f-submit:hover { background: var(--teal-ink); }
.f-submit:disabled { opacity: .7; cursor: wait; }
.f-small { margin-top: 0.8rem; font-size: 0.78rem; color: #4f6d70; text-align: center; line-height: 1.5; }
.f-small a { font-weight: 600; }
.f-error { margin-top: 0.8rem; font-size: 0.85rem; color: #8a2f2f; background: #fbeeee; border-radius: 10px; padding: 0.7rem 0.9rem; }
.f-success {
  margin-top: 1.25rem; padding: 1.1rem 1.2rem; border-radius: 14px;
  background: var(--soft); border: 1px solid #c7e8e9;
  color: var(--teal-ink); font-weight: 600; line-height: 1.5;
}
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* check.html */
.check-main { padding: 2rem 1rem 3.5rem; background: linear-gradient(180deg, #f3fafa 0%, #fff 100%); }
.check-hero .eyebrow { margin-bottom: 0.5rem; }
.check-hero-inner { text-align: center; }
.check-hero-inner p { margin-left: auto; margin-right: auto; }
.check-list {
  max-width: 640px; margin: 1.75rem auto 0; padding: 0 0.25rem;
}
.check-list h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem; color: var(--teal-deep); margin-bottom: 0.6rem;
}
.check-list ul { list-style: none; }
.check-list li {
  position: relative; padding: 0.45rem 0 0.45rem 2rem;
  color: var(--muted); font-size: 0.97rem; border-bottom: 1px solid #e3f1f1;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0.45rem;
  width: 1.35rem; height: 1.35rem; border-radius: 50%;
  background: var(--soft); color: var(--teal); font-weight: 700; font-size: 0.8rem;
  display: grid; place-items: center;
}
.check-foot { max-width: 640px; margin: 1.25rem auto 0; text-align: center; font-size: 0.82rem; color: #4f6d70; }
.check-foot a { font-weight: 600; display: inline-block; padding: .6rem .25rem; }
.thanks-card { text-align: center; }
.thanks-card h1 { font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(2rem, 4vw, 2.6rem); color: var(--teal-deep); line-height: 1.1; }
.thanks-card p { margin-top: 0.75rem; color: var(--muted); }
.thanks-card .f-submit { display: inline-block; width: auto; padding: 0.85rem 1.6rem; color: #fff !important; }

@media (max-width: 720px) {
  .find-band-inner { flex-direction: column; align-items: stretch; text-align: left; gap: 1rem; padding-top: 1.5rem; padding-bottom: 1.5rem; }
  .find-band-action { align-items: stretch; }
  .find-band-btn { text-align: center; }
  .f-grid { grid-template-columns: 1fr; }
}

/* 2026-09-26 QA fixes: iOS zoom, tap targets */
.fb-form input, .fb-form textarea,
.fb-form input[type="text"], .fb-form input[type="email"], .fb-form input[type="tel"], .fb-form input[type="url"] { font-size: 16px; }
.chip span { min-height: 44px; padding: .7rem 1rem; display: inline-flex; align-items: center; }
.nav-toggle { min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
.nav-open .nav-links a { display: block; padding: .7rem 0; }
.nowrap { white-space: nowrap; }
@media (max-width: 720px) {
  .site-header.nav-open .nav-links { gap: 0; }
  .site-header.nav-open .nav-cta { top: calc(100% + 16.25rem); }
}

/* 2026-09-26: 4 sample tiles, 4-up on desktop, 2x2 on tablet, stacked on phones */
.sample-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .sample-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .sample-grid { grid-template-columns: 1fr; } }

/* 2026-09-26 form v3: big, simple, one column (phone + desktop) */
.fb-form--big { margin-top: 1.5rem; }
.fb-form--big .f-field { margin-top: 0 !important; margin-bottom: 1.5rem; }
.fb-form--big label {
  font-size: 1.0625rem; font-weight: 650; color: var(--teal-deep);
  margin-bottom: 0.5rem; line-height: 1.3;
}
.fb-form--big input[type="text"], .fb-form--big input[type="email"],
.fb-form--big input[type="tel"], .fb-form--big input[type="url"] {
  min-height: 56px; padding: 0.8rem 1.1rem;
  font-size: 18px; border-width: 1.5px; border-radius: 14px;
}
.fb-form--big textarea {
  font-size: 18px; line-height: 1.5; min-height: 190px;
  padding: 0.9rem 1.1rem; border-width: 1.5px; border-radius: 14px;
}
.fb-form--big small { font-size: 0.9375rem; line-height: 1.45; margin-top: 0.4rem; }
.fb-form--big small.f-help-above { margin: 0 0 0.6rem; }
.fb-form--big .f-submit {
  margin-top: 0.25rem; min-height: 60px; font-size: 1.125rem; border-radius: 16px;
}
.fb-form--big .f-small { font-size: 0.9rem; margin-top: 1rem; }
.inquiry-card, .check-card { max-width: 680px; }

/* 2026-09-26e: 5+ sample tiles. Flex rows of 3 on desktop with a centered last row
   (5 = 3+2, 6 = 3+3), 2 per row on tablet, stacked on phones. */
.sample-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.sample-grid .sample-card { flex: 0 1 calc((100% - 2rem) / 3); }
@media (max-width: 980px) { .sample-grid .sample-card { flex-basis: calc((100% - 1rem) / 2); } }
@media (max-width: 720px) { .sample-grid .sample-card { flex-basis: 100%; } }
