
:root {
  --cream: #fff8f1;
  --sand: #f2e1d2;
  --paper: #ffffff;
  --ink: #241f1b;
  --muted: #685c52;
  --soft: #8b7a70;
  --terracotta: #d86f45;
  --terracotta-dark: #ad4f2f;
  --green: #6f846d;
  --line: rgba(36, 31, 27, 0.13);
  --shadow: 0 18px 44px rgba(47, 32, 22, 0.11);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

a { color: inherit; }

.section {
  padding: clamp(54px, 7vw, 90px) clamp(18px, 6vw, 80px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 6vw, 80px);
  background: rgba(255, 248, 241, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--terracotta-dark);
  font-size: 1.35rem;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 12px;
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav a {
  color: #352d27;
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 22px;
  border-radius: 12px;
  border: 2px solid transparent;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--terracotta);
  color: white;
  box-shadow: 0 10px 26px rgba(217, 111, 69, 0.24);
}

.btn-primary:hover { background: var(--terracotta-dark); }

.btn-secondary {
  background: transparent;
  border-color: #e3a084;
  color: var(--terracotta-dark);
}

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

.btn-light-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.75);
  color: white;
}

.hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: 76vh;
  padding: clamp(46px, 7vw, 88px) clamp(18px, 6vw, 80px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--terracotta-dark);
  font-weight: 800;
  letter-spacing: 0.02em;
}

h1, h2, h3 { margin: 0; line-height: 1.05; }

h1, h2 {
  font-family: "Lora", Georgia, serif;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.55rem, 6.2vw, 5.4rem);
}

.hero-lead {
  max-width: 600px;
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.25rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.trust-row {
  margin-top: 22px;
  color: var(--soft);
  font-size: 0.95rem;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: white;
  box-shadow: var(--shadow);
  max-width: 700px;
  justify-self: end;
}

.hero-card img {
  width: 100%;
  height: min(58vw, 620px);
  max-height: 620px;
  min-height: 420px;
  object-fit: cover;
}

.caption-strip {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 15px 17px;
  border-radius: 17px;
  color: white;
  background: linear-gradient(135deg, rgba(0,0,0,.62), rgba(0,0,0,.24));
  backdrop-filter: blur(7px);
  font-weight: 800;
}

.problem {
  background: var(--sand);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.photo-card,
.story-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

h2 {
  font-size: clamp(2.1rem, 4.4vw, 4.1rem);
}

.section-copy p,
.section-title p {
  color: var(--muted);
  font-size: 1.08rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tags span {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  color: #53483f;
  font-size: 0.92rem;
  font-weight: 800;
}

.narrow {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.moment-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.moment-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.moment-card div { padding: 20px; }

.moment-card h3 {
  font-family: "Lora", Georgia, serif;
  font-size: 1.45rem;
}

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

.hands-on {
  background: #fff;
}

.app-section {
  background: var(--cream);
}

.app-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.phone-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
}

.phone-shot {
  width: min(100%, 255px);
  padding: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.phone-shot img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top;
  border-radius: 17px;
}

.checks {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.checks li {
  margin: 10px 0;
  color: var(--muted);
  font-weight: 700;
}

.checks li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--green);
  font-weight: 900;
}

.story {
  background: var(--sand);
}

.handwritten {
  display: inline-block;
  margin-top: 8px;
  color: var(--terracotta-dark) !important;
  font-weight: 800;
  font-style: italic;
  border-bottom: 3px solid #e9ad83;
}

.testimonials {
  background: white;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

blockquote {
  margin: 0;
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  font-weight: 800;
}

cite {
  display: block;
  margin-top: 14px;
  color: var(--soft);
  font-style: normal;
  font-weight: 500;
}

.cta {
  position: relative;
  isolation: isolate;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  color: white;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(0deg, rgba(0,0,0,.78), rgba(0,0,0,.28)), url("/images/aquarium-blue.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.cta-inner {
  max-width: 760px;
}

.cta h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

.cta p {
  max-width: 640px;
  color: rgba(255,255,255,0.92);
  font-size: 1.12rem;
}

.support {
  background: white;
  border-top: 1px solid var(--line);
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.support-card {
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.support-card h3 {
  font-family: "Lora", Georgia, serif;
  font-size: 1.5rem;
}

.support-card p,
.support-card li { color: var(--muted); }

.install-help {
  padding: 14px 18px;
  background: #2b2520;
  color: white;
  text-align: center;
  font-size: 0.94rem;
}

.install-help strong { color: #ffd2bf; }

.site-footer {
  padding: 26px clamp(18px, 6vw, 80px);
  background: #fff;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.footer-links a { color: var(--terracotta-dark); }

.footer-copy { text-align: center; }

.legal-header {
  padding: 18px clamp(18px, 6vw, 80px);
  background: linear-gradient(135deg, #e8916a, #c85e38);
  color: white;
}

.legal-header a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-weight: 800;
}

.legal-header img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
}

.legal-page { padding: 54px 22px 76px; }

.legal-page .narrow {
  padding: clamp(24px, 5vw, 54px);
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  text-align: left;
}

.legal-page h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.legal-page h2 {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-family: "Lora", Georgia, serif;
}

.legal-page p,
.legal-page li { color: var(--muted); }

.effective-date {
  color: var(--soft);
  font-weight: 700;
}

@media (max-width: 950px) {
  .nav,
  .header-cta { display: none; }

  .hero,
  .grid-2,
  .app-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 38px;
    min-height: auto;
  }

  .hero-card {
    justify-self: stretch;
    max-width: none;
  }

  .hero-card img {
    height: 360px;
    min-height: unset;
  }

  .photo-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .photo-card,
  .story-photo {
    height: 320px;
  }

  .moment-card img {
    height: 250px;
  }

  .phone-row {
    flex-direction: row;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 10px;
  }

  .phone-shot {
    min-width: 235px;
  }

  .phone-shot img {
    height: 470px;
  }

  .button-row .btn { width: 100%; }

  .caption-strip {
    position: static;
    border-radius: 0;
    background: #2b2520;
  }
}


/* DESKTOP POLISH OVERRIDES */
@media (min-width: 951px) {
  .site-header {
    max-width: 1240px;
    margin: 0 auto;
    left: 0;
    right: 0;
  }

  .hero,
  .section {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero {
    grid-template-columns: 1fr 520px;
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero-card {
    max-width: 520px;
  }

  .hero-card img {
    height: 430px;
    min-height: 430px;
    max-height: 430px;
  }

  h1 {
    font-size: clamp(3.1rem, 4.8vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2.4rem, 3.5vw, 3.7rem);
  }

  .photo-card,
  .story-photo {
    height: 360px;
  }

  .moment-card img {
    height: 205px;
  }

  .photo-grid {
    gap: 20px;
  }

  .app-grid {
    grid-template-columns: 1fr 520px;
  }

  .phone-row {
    justify-content: flex-end;
  }

  .phone-shot {
    width: 230px;
  }

  .phone-shot img {
    height: 455px;
  }

  .cta {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: max(6vw, calc((100vw - 1240px) / 2));
    padding-right: max(6vw, calc((100vw - 1240px) / 2));
    min-height: 360px;
  }

  .cta-inner {
    max-width: 720px;
  }

  .support-grid,
  .quote-grid,
  .photo-grid {
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* WIDE SCREEN FIX */
@media (min-width: 1400px) {
  .hero,
  .section {
    max-width: 1180px;
  }

  .hero {
    grid-template-columns: 1fr 500px;
  }

  .hero-card,
  .hero-card img {
    max-width: 500px;
  }

  .hero-card img {
    height: 410px;
    min-height: 410px;
  }
}
