:root {
  --bg: #f4efe5;
  --ink: #17140f;
  --muted: #726958;
  --line: #ded3c0;
  --card: #fffaf0;
  --forest: #1f3428;
  --moss: #6c7f43;
  --clay: #b85432;
  --gold: #d89a2b;
  --sky: #2b6f87;
  --shadow: 0 24px 60px rgba(23, 20, 15, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: white;
}

.skip:focus {
  top: 1rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  background: rgba(244, 239, 229, 0.9);
  border-bottom: 1px solid rgba(23, 20, 15, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: var(--gold);
  font-family: Georgia, serif;
}

nav {
  display: none;
}

.hero {
  display: grid;
  gap: 1.5rem;
  min-height: auto;
  padding: 1.25rem 1rem 2rem;
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.eyebrow {
  margin: 0;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 11.5ch;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.85rem, 13vw, 5.5rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.05rem, 9.5vw, 4.4rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.18rem;
  line-height: 1.1;
}

.lead,
.section-head p,
.media-copy p,
.cta p {
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-actions,
.cta-actions {
  display: grid;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
}

.btn.primary {
  background: var(--gold);
  color: var(--ink);
}

.btn.secondary {
  background: transparent;
}

.btn.dark {
  background: var(--ink);
  color: white;
}

.phone-stage {
  position: relative;
  display: grid;
  min-height: 34rem;
  place-items: center;
}

.phone {
  position: relative;
  width: min(76vw, 21rem);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 8px solid var(--ink);
  border-radius: 28px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.phone.small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(38vw, 10rem);
  border-width: 5px;
  border-radius: 20px;
  transform: rotate(4deg);
}

.phone video,
.phone img,
.stories video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.decision-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  color: var(--ink);
  box-shadow: 0 14px 38px rgba(23, 20, 15, 0.08);
}

.decision-strip article {
  min-width: 0;
  padding: 0.9rem 0.75rem;
  border-right: 1px solid var(--line);
}

.decision-strip span,
.decision-strip small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
}

.decision-strip strong {
  display: block;
  font-size: clamp(1rem, 4.8vw, 1.5rem);
  line-height: 1.1;
}

.section {
  padding: 4rem 1rem;
}

.section-head {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.service-grid,
.price-layout,
.gallery-grid {
  display: grid;
  gap: 0.9rem;
}

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 14px 35px rgba(23, 20, 15, 0.1);
}

.service-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.service-card div {
  padding: 1rem;
}

.service-card span {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--clay);
  font-weight: 950;
}

.service-card.hot {
  background: #fff3df;
  border-color: rgba(184, 84, 50, 0.36);
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.prices {
  background: #eee6d7;
  color: var(--ink);
}

.prices .eyebrow {
  color: var(--clay);
}

.prices .section-head p {
  color: var(--muted);
}

.price-card {
  min-height: 13rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 18px 45px rgba(23, 20, 15, 0.1);
}

.price-card.dark {
  border-color: rgba(31, 52, 40, 0.26);
  background: #20382a;
  color: white;
}

.price-card p,
.price-card span {
  color: var(--muted);
}

.price-card.dark p,
.price-card.dark span {
  color: rgba(255, 255, 255, 0.78);
}

.price-card strong {
  display: block;
  margin: 1.4rem 0 0.45rem;
  font-size: clamp(3.1rem, 15vw, 5.7rem);
  line-height: 0.9;
}

.rule-panel {
  display: grid;
  gap: 1.4rem;
  padding: 1.15rem;
  border-radius: 8px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.rule-panel ul {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rule-panel li {
  padding: 0.9rem 1rem;
  border-left: 5px solid var(--moss);
  border-radius: 8px;
  background: white;
  font-weight: 800;
}

.media-band {
  display: grid;
  gap: 1.4rem;
  padding: 3.5rem 1rem;
  background: #151713;
  color: white;
}

.media-band .eyebrow {
  color: #f3c66d;
}

.media-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.stories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.stories video {
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: black;
}

.gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1.18;
  border-radius: 8px;
  object-fit: cover;
}

.cta {
  display: grid;
  gap: 1.3rem;
  padding: 4rem 1rem;
  background: var(--forest);
  color: white;
}

.cta .eyebrow {
  color: #f2c46f;
}

.cta p {
  color: rgba(255, 255, 255, 0.72);
}

footer {
  display: grid;
  gap: 0.15rem;
  padding: 1.5rem 1rem;
  background: var(--ink);
  color: white;
  text-align: center;
}

footer span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}

@media (min-width: 760px) {
  .topbar {
    padding-inline: 2rem;
  }

  nav {
    display: flex;
    gap: 1rem;
    color: var(--muted);
    font-weight: 900;
  }

  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(18rem, 0.82fr);
    align-items: center;
    gap: 3rem;
    min-height: calc(100svh - 74px);
    padding: 3rem 2rem 4rem;
  }

  .hero-copy {
    max-width: 39rem;
  }

  .phone-stage {
    min-height: 35rem;
    justify-self: end;
  }

  .phone {
    width: min(25vw, 19rem);
  }

  .phone.small {
    right: -0.75rem;
    bottom: 3.2rem;
    width: min(12vw, 9.1rem);
  }

  .hero-actions,
  .cta-actions {
    grid-template-columns: repeat(2, max-content);
  }

  .btn {
    min-width: 11rem;
  }

  .section,
  .media-band,
  .cta {
    padding: 5.5rem 2rem;
  }

  .decision-strip {
    margin-inline: 2rem;
  }

  .section-head,
  .media-copy {
    max-width: 52rem;
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .price-layout,
  .stories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rule-panel,
  .media-band,
  .cta {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  .hero,
  .section,
  .media-band,
  .cta,
  .topbar {
    padding-inline: max(3rem, calc((100vw - 1180px) / 2));
  }

  h1 {
    font-size: clamp(4.7rem, 6.4vw, 5.85rem);
    max-width: 11.2ch;
  }

  .decision-strip {
    margin-inline: max(3rem, calc((100vw - 1180px) / 2));
  }
}

@media (min-width: 1440px) {
  h1 {
    font-size: 5.7rem;
  }

  .hero {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 0.62fr);
  }

  .phone {
    width: 18.5rem;
  }

  .phone.small {
    width: 8.5rem;
  }
}
