/* WernerHost — custom studio site. No Avada. */

:root {
  --navy: #07111c;
  --navy-2: #0b1926;
  --navy-3: #13283a;
  --blue: #1a7fd4;
  --blue-2: #47a4f3;
  --blue-deep: #0e5aa3;
  --foam: #f3efe6;
  --paper: #e7e1d4;
  --ivory: #faf7f1;
  --ink: #0d1520;
  --ink-soft: #2c3848;
  --muted: #5c6976;
  --line: rgba(13, 21, 32, 0.1);
  --line-dark: rgba(243, 239, 230, 0.12);
  --ok: #3dba7a;
  --shadow: 0 28px 70px rgba(7, 17, 28, 0.2);
  --shadow-sm: 0 10px 28px rgba(7, 17, 28, 0.08);
  --font: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Newsreader", "Iowan Old Style", Georgia, serif;
  --mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;
  --max: 1180px;
  --wide: 1360px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header: 4.5rem;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
strong { font-weight: 600; }
em { font-family: var(--display); font-style: italic; }

::selection {
  background: rgba(26, 127, 212, 0.22);
  color: var(--ink);
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 9999;
  background: var(--navy);
  color: #fff;
  padding: 0.7rem 1rem;
}
.skip:focus { left: 1rem; top: 1rem; }

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

/* ---- Type ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-deep);
}
.eyebrow--light { color: rgba(243, 239, 230, 0.62); }
.eyebrow .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 0 0 rgba(71, 164, 243, 0.55);
  animation: pulse 2.4s ease infinite;
}
@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(71, 164, 243, 0); }
}

h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 450;
  letter-spacing: -0.025em;
  line-height: 1.08;
  overflow-wrap: anywhere;
}
.lead {
  margin: 0;
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 38rem;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.section-head { max-width: 38rem; margin-bottom: 2.75rem; }
.section-head h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4.4vw, 3.35rem);
}
.section-head--row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  max-width: none;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.88rem 1.35rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.015em;
  cursor: pointer;
  transition: transform 0.28s var(--ease), background 0.28s, border-color 0.28s, color 0.28s, box-shadow 0.28s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }
.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--blue-2);
  outline-offset: 3px;
}
.btn--sm { padding: 0.52rem 0.95rem; font-size: 0.82rem; }
.btn--lg { padding: 1.02rem 1.55rem; font-size: 0.98rem; }
.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 28px rgba(26, 127, 212, 0.32);
}
.btn--primary:hover { background: var(--blue-deep); box-shadow: 0 14px 34px rgba(14, 90, 163, 0.38); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(13, 21, 32, 0.16);
}
.btn--ghost:hover { border-color: var(--ink); background: rgba(13, 21, 32, 0.03); }
.btn--light {
  background: var(--ivory);
  color: var(--navy);
}
.btn--on-dark {
  background: transparent;
  color: var(--foam);
  border-color: rgba(243, 239, 230, 0.28);
}
.btn--on-dark:hover { background: rgba(243, 239, 230, 0.08); border-color: #fff; }
.btn--text {
  background: none;
  border: 0;
  padding: 0;
  color: var(--blue-deep);
  font-weight: 600;
  border-radius: 0;
}
.btn--text:hover { color: var(--ink); }

/* ---- Header ---- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  height: var(--header);
  display: flex;
  align-items: center;
  background: rgba(7, 17, 28, 0.28);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  transition: background 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(7, 17, 28, 0.9);
  border-bottom-color: var(--line-dark);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.22);
}
.site-header__inner {
  width: min(100% - 1.6rem, var(--wide));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
}
.logo__img {
  display: block;
  height: 28px;
  width: auto;
  max-width: min(210px, 58vw);
}

.nav {
  display: none;
  align-items: center;
  gap: 1.7rem;
  font-size: 0.88rem;
  font-weight: 500;
}
.nav a {
  color: rgba(243, 239, 230, 0.78);
  transition: color 0.2s;
}
.nav a:hover,
.nav a[aria-current="page"] { color: #fff; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.menu-btn {
  width: 42px;
  height: 42px;
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 11px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.menu-btn span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.28s var(--ease), opacity 0.2s;
}
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.drawer {
  position: fixed;
  inset: var(--header) 0 0 0;
  z-index: 79;
  background: var(--navy);
  padding: 1.25rem 1.4rem 2rem;
  overflow: auto;
}
.drawer[hidden] { display: none; }
.drawer a {
  display: block;
  padding: 1rem 0.15rem;
  border-bottom: 1px solid var(--line-dark);
  color: var(--foam);
  font-weight: 600;
  font-size: 1.15rem;
}
.drawer .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 1.25rem;
  width: 100%;
  border-bottom: 0;
}

.header-actions .btn { display: none; }

@media (min-width: 980px) {
  .nav { display: flex; }
  .menu-btn, .drawer { display: none !important; }
  .header-actions .btn { display: inline-flex; }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header) + 3rem) 0 3.5rem;
  color: var(--foam);
  overflow: hidden;
  background: var(--navy);
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  transform: scale(1.04);
}
.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 17, 28, 0.42) 0%, rgba(7, 17, 28, 0.28) 38%, rgba(7, 17, 28, 0.82) 100%),
    linear-gradient(90deg, rgba(7, 17, 28, 0.55) 0%, rgba(7, 17, 28, 0.12) 70%);
}
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
.hero__layout {
  position: relative;
  display: grid;
  gap: 2.5rem;
}
.hero h1 {
  margin: 0 0 1.15rem;
  font-size: clamp(2.45rem, 8vw, 6.4rem);
  font-weight: 450;
  letter-spacing: -0.035em;
  line-height: 0.94;
  overflow-wrap: anywhere;
}
.hero h1 em {
  display: block;
  color: #d7e8f8;
}
.hero .lead {
  color: rgba(243, 239, 230, 0.78);
  font-size: 1.12rem;
  margin-bottom: 1.85rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.hero__stats {
  list-style: none;
  margin: 2.4rem 0 0;
  padding: 1.3rem 0 0;
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.hero__stats li { min-width: 0; }
.hero__stats strong {
  display: block;
  font-family: var(--display);
  font-weight: 450;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero__stats span {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(243, 239, 230, 0.55);
}

@media (min-width: 900px) {
  .hero { align-items: center; padding-bottom: 5rem; }
  .hero__layout { max-width: 52rem; }
  .hero__stats { margin-top: 2.8rem; }
}

/* ---- Marquee ---- */
.marquee {
  background: var(--navy);
  color: rgba(243, 239, 230, 0.45);
  border-top: 1px solid var(--line-dark);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  padding: 1.05rem 0;
}
.marquee__label {
  width: min(100% - 2.4rem, var(--wide));
  margin: 0 auto 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.marquee__track {
  display: flex;
  gap: 2.6rem;
  width: max-content;
  animation: marquee 42s linear infinite;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  color: rgba(243, 239, 230, 0.72);
}
.marquee__track span { white-space: nowrap; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---- Featured ---- */
.featured {
  padding: 5.5rem 0 2rem;
  background: var(--ivory);
}
.browser {
  border-radius: 18px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: var(--shadow);
  border: 1px solid rgba(13, 21, 32, 0.08);
}
.browser__bar {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.95rem;
  background: #0a1622;
}
.browser__dots { display: flex; gap: 6px; }
.browser__dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3b4754;
  display: block;
}
.browser__dots i:nth-child(1) { background: #ff5f57; }
.browser__dots i:nth-child(2) { background: #febc2e; }
.browser__dots i:nth-child(3) { background: #28c840; }
.browser__url {
  flex: 1;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: rgba(243, 239, 230, 0.45);
}
.browser img {
  width: 100%;
  aspect-ratio: 16 / 8.8;
  object-fit: cover;
  object-position: top center;
}

.work-mini {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}
@media (min-width: 800px) {
  .work-mini { grid-template-columns: 1fr 1fr; }
}

/* ---- Work cards ---- */
.work-card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy);
  min-height: 240px;
  isolation: isolate;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s;
}
.work-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.work-card--lg { min-height: 320px; }
.work-card--wide {
  min-height: 0;
  aspect-ratio: 16 / 9.15;
  margin-bottom: 1rem;
}
.work-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.8s var(--ease);
}
.work-card:hover img { transform: scale(1.05); }
.work-card__meta {
  position: absolute;
  inset: auto 0 0 0;
  padding: 3.2rem 1.25rem 1.15rem;
  background: linear-gradient(to top, rgba(7, 17, 28, 0.94), rgba(7, 17, 28, 0.35) 58%, transparent);
  color: #fff;
  z-index: 1;
}
.work-card__meta small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243, 239, 230, 0.55);
  font-weight: 600;
}
.work-card__meta h3 {
  margin: 0.25rem 0 0;
  font-family: var(--font);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.025em;
}

.work-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1040px) {
  .work-grid { grid-template-columns: repeat(3, 1fr); }
  .work-grid .work-card--lg { grid-column: span 2; }
  .work-grid .work-card--wide { grid-column: 1 / -1; }
}
@media (min-width: 700px) and (max-width: 1039px) {
  .work-grid .work-card--wide { grid-column: 1 / -1; }
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}
.filters button {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}
.filters button.is-on,
.filters button:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* ---- Services ---- */
.services {
  padding: 5.5rem 0;
  background: var(--foam);
}
.svc-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 900px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
}
.svc {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.7rem 1.5rem 1.55rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.svc--dark {
  background: linear-gradient(165deg, var(--navy-2), var(--navy));
  color: var(--foam);
  border-color: transparent;
}
.svc__index {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 1.4rem;
}
.svc--dark .svc__index { color: var(--blue-2); }
.svc h3 {
  margin: 0 0 0.6rem;
  font-size: 1.85rem;
}
.svc p {
  margin: 0 0 1.15rem;
  color: var(--muted);
  font-size: 0.96rem;
}
.svc--dark p { color: rgba(243, 239, 230, 0.68); }
.svc ul {
  margin: 0 0 1.4rem;
  padding: 0;
  list-style: none;
  flex: 1;
}
.svc li {
  padding: 0.42rem 0 0.42rem 1.05rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}
.svc--dark li {
  color: rgba(243, 239, 230, 0.72);
  border-top-color: var(--line-dark);
}
.svc li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.svc .btn { align-self: flex-start; margin-top: auto; }

/* ---- Studio band ---- */
.studio {
  padding: 5.5rem 0;
  background: var(--navy);
  color: var(--foam);
}
.studio__grid {
  display: grid;
  gap: 2.4rem;
}
@media (min-width: 880px) {
  .studio__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
  }
}
.studio__photo {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #0a1622;
}
.studio__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.studio h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
}
.studio p { color: rgba(243, 239, 230, 0.72); }
.studio blockquote {
  margin: 1.6rem 0 0;
  padding: 1.2rem 0 0;
  border-top: 1px solid var(--line-dark);
}
.studio blockquote p {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.35;
  color: #fff;
  margin: 0 0 0.7rem;
}
.studio blockquote footer {
  font-size: 0.85rem;
  color: rgba(243, 239, 230, 0.55);
}

/* ---- Process ---- */
.process { padding: 5.5rem 0; background: var(--ivory); }
.steps {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}
.step {
  padding: 1.4rem 1.2rem 1.3rem;
  border-top: 1.5px solid var(--ink);
}
.step strong {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 0.7rem;
}
.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ---- Hosting ---- */
.hosting {
  padding: 0 0 5.5rem;
}
.host-panel {
  display: grid;
  gap: 2rem;
  padding: 2.4rem 1.6rem;
  border-radius: 22px;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(26, 127, 212, 0.28), transparent 46%),
    linear-gradient(145deg, var(--navy), #0c2236 60%, #0a2a28);
  color: #fff;
  box-shadow: var(--shadow);
}
@media (min-width: 860px) {
  .host-panel {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    padding: 3rem 2.6rem;
  }
}
.host-panel h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
}
.host-panel .lead { color: rgba(243, 239, 230, 0.68); }
.host-price {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  padding: 1.4rem 1.3rem;
}
.host-price b {
  display: block;
  font-family: var(--display);
  font-weight: 450;
  font-size: 3.4rem;
  letter-spacing: -0.04em;
  line-height: 1;
}
.host-price b span {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(243, 239, 230, 0.5);
  margin-left: 0.2rem;
}
.host-price small {
  display: block;
  margin: 0.35rem 0 1rem;
  color: var(--blue-2);
  font-weight: 600;
}
.host-price ul {
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  color: rgba(243, 239, 230, 0.75);
}
.host-price li { padding: 0.22rem 0; }

/* ---- Quotes ---- */
.quotes { padding: 5.5rem 0; background: var(--foam); }
.quote-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 720px) { .quote-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) {
  .quote-grid { grid-template-columns: repeat(3, 1fr); }
  .quote--feature { grid-column: span 2; }
}
.quote {
  margin: 0;
  padding: 1.45rem 1.35rem;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.quote--feature {
  background: var(--navy);
  color: #fff;
  border: 0;
}
.quote p {
  margin: 0;
  font-size: 1.02rem;
  letter-spacing: -0.015em;
}
.quote--feature p {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.55rem;
  line-height: 1.3;
}
.quote footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.86rem;
}
.quote footer img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.quote footer strong { display: block; }
.quote footer span { color: var(--muted); font-size: 0.78rem; }
.quote--feature footer span { color: rgba(243, 239, 230, 0.5); }

/* ---- CTA ---- */
.cta {
  padding: 5.5rem 0 6rem;
  text-align: center;
  background: var(--ivory);
}
.cta h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}
.cta .lead { margin: 0 auto 1.7rem; }
.cta__fine {
  margin: 1.2rem 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--navy);
  color: rgba(243, 239, 230, 0.68);
  padding: 3.4rem 0 0;
}
.site-footer__grid {
  display: grid;
  gap: 2.4rem;
  padding-bottom: 2.4rem;
}
@media (min-width: 800px) {
  .site-footer__grid { grid-template-columns: 1.2fr 2fr; }
}
.site-footer .logo__img { height: 26px; }
.site-footer p { margin: 0.7rem 0 0; max-width: 28ch; font-size: 0.92rem; }
.foot-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.foot-cols h4 {
  margin: 0 0 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243, 239, 230, 0.38);
}
.foot-cols a {
  display: block;
  padding: 0.28rem 0;
  font-size: 0.92rem;
  color: rgba(243, 239, 230, 0.75);
}
.foot-cols a:hover { color: #fff; }
.site-footer__bar {
  border-top: 1px solid var(--line-dark);
  padding: 1.1rem 0 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: rgba(243, 239, 230, 0.4);
}

/* ---- Inner pages ---- */
.page-hero {
  position: relative;
  padding: calc(var(--header) + 4.2rem) 0 3.4rem;
  background: var(--navy);
  color: var(--foam);
  overflow: hidden;
}
.page-hero--photo .hero__media { opacity: 0.38; }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(2.35rem, 8vw, 5.2rem);
  line-height: 0.96;
}
.page-hero .lead { color: rgba(243, 239, 230, 0.72); }

.prose { padding: 4.5rem 0; }
.prose__grid {
  display: grid;
  gap: 2.2rem;
}
@media (min-width: 880px) {
  .prose__grid { grid-template-columns: 0.85fr 1.15fr; gap: 4rem; }
}
.prose h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}
.prose p { color: var(--ink-soft); }
.prose p + p { margin-top: 1rem; }
.prose img { border-radius: 12px; }
.prose ul { color: var(--ink-soft); padding-left: 1.2rem; }

body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

.split {
  display: grid;
  gap: 1.2rem;
}
@media (min-width: 800px) {
  .split-2 { grid-template-columns: 1fr 1fr; }
}

.price-table {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .price-table { grid-template-columns: repeat(3, 1fr); }
}
.price-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
}
.price-card--featured {
  background: var(--navy);
  color: #fff;
  border-color: transparent;
}
.price-card h3 { margin: 0 0 0.4rem; font-size: 1.5rem; }
.price-card .amt {
  font-family: var(--display);
  font-size: 2.6rem;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0.6rem 0 0.3rem;
}
.price-card .amt span {
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--muted);
  margin-left: 0.4rem;
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
}
.price-card--featured .amt span { color: rgba(243, 239, 230, 0.5); }
.price-card p { color: var(--muted); font-size: 0.92rem; }
.price-card--featured p { color: rgba(243, 239, 230, 0.68); }
.price-card ul {
  margin: 1rem 0 1.3rem;
  padding: 0;
  list-style: none;
  flex: 1;
  font-size: 0.9rem;
}
.price-card li {
  padding: 0.38rem 0;
  border-top: 1px solid var(--line);
}
.price-card--featured li { border-top-color: var(--line-dark); }

/* ---- Form ---- */
.form-wrap {
  display: grid;
  gap: 2rem;
}
@media (min-width: 880px) {
  .form-wrap { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
}
.form {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0 0 0.35rem;
}
.form .field { margin-bottom: 0.95rem; }
.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  outline: none;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 127, 212, 0.15);
}
.form textarea { min-height: 140px; resize: vertical; }
.form .row {
  display: grid;
  gap: 0.8rem;
}
@media (min-width: 560px) {
  .form .row { grid-template-columns: 1fr 1fr; }
}
.check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  margin: 0.4rem 0 1.1rem;
}
.check input { width: auto; }
.form-turnstile { margin: 0.4rem 0 1rem; min-height: 65px; }
.form-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0.7rem 0 0;
}
.aside-card {
  background: var(--navy);
  color: var(--foam);
  border-radius: 20px;
  padding: 1.6rem;
}
.aside-card h3 { margin: 0 0 0.5rem; font-size: 1.6rem; }
.aside-card p { color: rgba(243, 239, 230, 0.7); }
.aside-card a { color: var(--blue-2); font-weight: 600; }

.notice {
  display: none;
  margin-bottom: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  font-size: 0.9rem;
}
.notice.is-on { display: block; }
.notice--ok { background: rgba(61, 186, 122, 0.12); color: #146b3c; }
.notice--err { background: rgba(180, 40, 40, 0.08); color: #8a1d1d; }

.sent-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(7, 17, 28, 0.62);
  backdrop-filter: blur(8px);
}
.sent-modal[hidden] { display: none; }
.sent-modal__card {
  width: min(100%, 28rem);
  background: var(--ivory);
  color: var(--ink);
  border-radius: 22px;
  padding: 2.1rem 1.7rem 1.7rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.sent-modal__mark {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1a7fd4;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
}
.sent-modal__card h2 {
  margin: 0 0 0.55rem;
  font-size: 2.1rem;
}
.sent-modal__card p {
  margin: 0 0 1.4rem;
  color: var(--muted);
}

/* ---- Reveals ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}

@media (max-width: 640px) {
  .hero__stats { grid-template-columns: 1fr 1fr 1fr; gap: 0.6rem; }
  .hero__stats span { font-size: 0.68rem; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .host-price b { font-size: 2.7rem; }
}
