/* Flagship OnePage — coastal commercial */

:root {
  --teal-950: #062826;
  --teal-900: #0b3d3a;
  --teal-800: #125550;
  --teal-700: #1a6b64;
  --sand-100: #f3ebe0;
  --sand-200: #e6d7c4;
  --sand-300: #d4bfa4;
  --coral: #c45c3e;
  --coral-deep: #a34830;
  --ink: #14221f;
  --ink-soft: #3d4f4a;
  --white: #fffcf8;
  --line: rgba(11, 61, 58, 0.12);
  --shadow: 0 18px 50px rgba(6, 40, 38, 0.18);
  --radius: 14px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --wrap: min(1120px, calc(100% - 2.5rem));
  --header-h: 4.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand-100);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--teal-800);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--coral-deep);
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
  background: rgba(11, 61, 58, 0.08);
  padding: 0.15em 0.4em;
  border-radius: 6px;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.wrap.narrow {
  width: min(720px, calc(100% - 2.5rem));
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--white);
  color: var(--ink);
  padding: 0.75rem 1rem;
  z-index: 100;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 235, 224, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 0.35rem;
  background:
    linear-gradient(135deg, var(--teal-700), var(--teal-950)),
    radial-gradient(circle at 30% 30%, var(--sand-200), transparent 55%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.brand-text em {
  font-style: normal;
  color: var(--teal-800);
  font-family: var(--font-display);
  font-weight: 600;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
}

.nav a:not(.btn) {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav a:not(.btn):hover {
  color: var(--teal-900);
}

.nav-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--teal-900);
}

.mobile-nav {
  display: grid;
  gap: 0.85rem;
  padding: 0.5rem 1.25rem 1.25rem;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 235, 224, 0.98);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a:not(.btn) {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  padding: 0.35rem 0;
}

@media (min-width: 880px) {
  .nav {
    display: flex;
  }

  .nav-toggle,
  .mobile-nav {
    display: none !important;
  }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.55rem 0.95rem;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 0.95rem 1.45rem;
  font-size: 1.02rem;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(196, 92, 62, 0.28);
}

.btn-primary:hover {
  background: var(--coral-deep);
  color: var(--white);
}

.btn-secondary {
  background: var(--teal-900);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--teal-800);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--teal-900);
  border-color: rgba(11, 61, 58, 0.28);
}

.btn-ghost:hover {
  background: rgba(11, 61, 58, 0.06);
  color: var(--teal-950);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.cta-group.center {
  justify-content: center;
}

/* Hero */

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--teal-950);
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(26, 107, 100, 0.55), transparent 55%),
    radial-gradient(ellipse 50% 45% at 15% 80%, rgba(196, 92, 62, 0.22), transparent 50%),
    linear-gradient(165deg, #0b3d3a 0%, #062826 45%, #0a2f2c 100%);
}

.hero-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 252, 248, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 252, 248, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 40%, transparent 95%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(3.5rem, 12vh, 7rem) 0 clamp(3rem, 8vh, 5rem);
}

.brand-hero {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--sand-200);
}

.hero h1 {
  margin: 0;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 6vw, 3.75rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero-emphasis {
  font-style: italic;
  font-weight: 700;
  color: var(--sand-200);
  text-decoration: underline;
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.12em;
  text-decoration-color: rgba(196, 92, 62, 0.85);
}

.lede {
  margin: 1.25rem 0 0;
  max-width: 38rem;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: rgba(255, 252, 248, 0.88);
}

.lede strong {
  color: var(--white);
  font-weight: 700;
}

.hero .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 252, 248, 0.35);
}

.hero .btn-ghost:hover {
  background: rgba(255, 252, 248, 0.08);
  color: var(--white);
}

.hero-note {
  margin: 1.25rem 0 0;
  color: rgba(255, 252, 248, 0.65);
  font-size: 0.98rem;
}

/* Sections */

.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}

.section-head h2,
.problem h2,
.closing h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--teal-950);
}

.section-head p,
.problem p,
.closing p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.problem {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.gap-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.gap-list li {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.05rem;
}

.gap-list li span {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 0.35rem;
}

.includes {
  background:
    linear-gradient(180deg, var(--sand-100), #ebe1d2);
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem 1.5rem;
}

@media (min-width: 640px) {
  .feature-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .feature-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.feature-list li {
  position: relative;
  padding: 0.85rem 0.85rem 0.85rem 1.85rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 500;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 1.2rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--teal-700);
}

/* Pricing — interaction containers, kept quiet */

.pricing {
  background: var(--white);
}

.price-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .price-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.price-tier {
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--sand-100);
  display: flex;
  flex-direction: column;
}

.price-tier.featured {
  background: var(--teal-900);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow);
}

.price-tier h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
}

.price {
  margin: 0.85rem 0 0.35rem;
  font-size: 1rem;
  color: inherit;
  opacity: 0.9;
}

.price span {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  opacity: 1;
}

.tier-blurb {
  margin: 0 0 1.25rem;
  opacity: 0.85;
}

.price-tier ul {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  flex: 1;
}

.price-tier li {
  padding: 0.45rem 0;
  border-top: 1px solid rgba(11, 61, 58, 0.1);
  font-size: 0.98rem;
}

.price-tier.featured li {
  border-top-color: rgba(255, 252, 248, 0.14);
}

.price-tier .btn {
  width: 100%;
}

.price-tier.featured .btn-primary {
  background: var(--sand-100);
  color: var(--teal-950);
  box-shadow: none;
}

.price-tier.featured .btn-primary:hover {
  background: var(--white);
  color: var(--teal-950);
}

.price-tier:not(.featured) .btn-secondary {
  background: transparent;
  color: var(--teal-900);
  border-color: rgba(11, 61, 58, 0.28);
}

.price-tier:not(.featured) .btn-secondary:hover {
  background: rgba(11, 61, 58, 0.06);
}

/* How */

.how {
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(196, 92, 62, 0.08), transparent 50%),
    var(--sand-100);
}

.steps {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  counter-reset: step;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.steps li {
  counter-increment: step;
  padding-top: 0.25rem;
}

.steps li::before {
  content: counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.steps strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  color: var(--teal-950);
}

.steps span {
  color: var(--ink-soft);
}

.industries {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.industry-strip {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.9;
  color: var(--teal-800);
  font-weight: 500;
}

.closing {
  background: var(--teal-900);
  color: var(--white);
  text-align: center;
}

.closing h2 {
  color: var(--white);
}

.closing p {
  color: rgba(255, 252, 248, 0.82);
  margin-bottom: 0.5rem;
}

.closing .cta-group {
  justify-content: center;
}

.closing .btn-primary {
  background: var(--sand-100);
  color: var(--teal-950);
  box-shadow: none;
}

.closing .btn-primary:hover {
  background: var(--white);
}

/* Footer */

.site-footer {
  background: var(--teal-950);
  color: rgba(255, 252, 248, 0.72);
  padding: 2.5rem 0 2rem;
  font-size: 0.95rem;
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
}

.footer-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
}

.footer-meta {
  margin: 0.35rem 0 0;
}

.footer-meta a,
.footer-links a {
  color: var(--sand-200);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-legal {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  opacity: 0.75;
}

/* Utility / status pages */

.page-simple {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.simple-main {
  display: grid;
  place-items: center;
  padding: 3rem 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(26, 107, 100, 0.12), transparent 55%),
    var(--sand-100);
}

.simple-card {
  width: min(520px, calc(100% - 2.5rem));
  text-align: center;
}

.simple-card h1 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.4rem);
  color: var(--teal-950);
  letter-spacing: -0.03em;
}

.simple-card p {
  margin: 0 0 1.5rem;
  color: var(--ink-soft);
}

/* Motion */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}
