:root {
  --forest: #1b4332;
  --forest-mid: #2d6a4f;
  --forest-soft: #40916c;
  --sun: #f4a261;
  --sun-deep: #e76f51;
  --sand: #f3efe6;
  --mist: #e7f0ea;
  --ink: #14241c;
  --paper: #fffdf8;
  --line: rgba(27, 67, 50, 0.14);
  --shadow: 0 24px 60px rgba(20, 36, 28, 0.18);
  --radius: 22px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(244, 162, 97, 0.18), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(64, 145, 108, 0.16), transparent 50%),
    linear-gradient(180deg, #eef5f0 0%, var(--sand) 35%, var(--paper) 100%);
  line-height: 1.55;
}

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

a {
  color: var(--forest-mid);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.skip {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  background: var(--forest);
  color: white;
  z-index: 100;
}

.skip:focus {
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 0.6rem 1rem;
  left: 0.5rem;
  top: 0.5rem;
  overflow: visible;
  white-space: normal;
}

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 0;
  min-width: 0;
}

.wrap.narrow {
  width: min(720px, calc(100% - 2rem));
  max-width: 100%;
  min-width: 0;
}

/* Top bar */
.top {
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: env(safe-area-inset-top, 0);
}

/* Phone / tablet: slim bar over the hero */
@media (max-width: 859px) {
  .top {
    position: absolute;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(8, 18, 14, 0.55), rgba(8, 18, 14, 0));
    border-bottom: none;
    backdrop-filter: none;
  }

  .top-inner {
    min-height: 40px;
    padding-block: 0.2rem;
    gap: 0.4rem;
  }

  .brand-lockup {
    color: #fff;
    gap: 0.4rem;
  }

  .brand-lockup img {
    width: 22px;
    height: 22px;
    border-radius: 6px;
  }

  .brand-lockup-text strong {
    font-size: 0.82rem;
  }

  .brand-lockup-text small {
    display: none !important;
  }

  .btn-small {
    padding: 0.32rem 0.65rem;
    font-size: 0.72rem;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
  }

  .btn-label-full {
    display: none !important;
  }

  .btn-label-short {
    display: inline !important;
  }
}

@media (min-width: 860px) {
  .top {
    backdrop-filter: blur(14px);
    background: rgba(243, 239, 230, 0.82);
    border-bottom: 1px solid var(--line);
  }

  .top-inner {
    min-height: 56px;
    gap: 0.75rem;
    padding-block: 0.35rem;
  }

  .brand-lockup {
    gap: 0.65rem;
    color: var(--forest);
  }

  .brand-lockup img {
    width: 36px;
    height: 36px;
    border-radius: 9px;
  }

  .brand-lockup-text strong {
    font-size: 1rem;
  }

  .brand-lockup-text small {
    display: block;
    font-size: 0.68rem;
  }

  .btn-small {
    padding: 0.55rem 0.95rem;
    font-size: 0.9rem;
  }

  .btn-label-full {
    display: inline;
  }

  .btn-label-short {
    display: none;
  }
}

.top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  min-width: 0;
  flex-shrink: 1;
  line-height: 1.1;
}

.brand-lockup img {
  flex-shrink: 0;
}

.brand-lockup-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.05rem;
  min-width: 0;
}

.brand-lockup-text small {
  font-weight: 500;
  color: rgba(27, 67, 50, 0.72);
  letter-spacing: 0.02em;
}

.nav {
  display: none;
  gap: 1.25rem;
}

.nav a {
  color: var(--forest);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--sun-deep);
}

@media (min-width: 860px) {
  .nav {
    display: flex;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  background: var(--forest);
  color: white;
  text-decoration: none;
  font-weight: 600;
  border: 1.5px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 28px rgba(27, 67, 50, 0.25);
  max-width: 100%;
  font-size: 0.95rem;
}

.btn:hover {
  background: #163528;
  transform: translateY(-1px);
}

.btn-small {
  box-shadow: none;
  flex-shrink: 0;
}

.btn-ghost {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Hero: full first screen on phone – image + brand + CTAs */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: white;
  min-height: 100svh;
  min-height: 100dvh;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    image-set(
      url("assets/hero.webp") type("image/webp"),
      url("assets/hero.jpg") type("image/jpeg")
    ) center / cover no-repeat;
  transform-origin: center center;
  animation: heroDrift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 27, 22, 0.28) 0%, rgba(13, 27, 22, 0.42) 42%, rgba(13, 27, 22, 0.88) 100%),
    linear-gradient(90deg, rgba(13, 27, 22, 0.4), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2rem));
  max-width: 720px;
  margin-inline: auto;
  padding: 0 0 max(1.15rem, env(safe-area-inset-bottom, 0px));
  animation: riseIn 0.9s ease both;
}

.brand-hero {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 7vw, 2.1rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.tagline {
  margin: 0.25rem 0 0.65rem;
  color: var(--sun);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.hero h1 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 3.8vw, 1.3rem);
  font-weight: 600;
  line-height: 1.25;
  max-width: 24ch;
}

.lead {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  max-width: 34ch;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

.hero .cta-row {
  gap: 0.45rem;
}

.hero .btn {
  padding: 0.62rem 0.9rem;
  font-size: 0.84rem;
}

/* Tablet */
@media (min-width: 600px) {
  .hero-content {
    padding-bottom: 1.75rem;
  }

  .brand-hero {
    font-size: clamp(2.15rem, 5vw, 2.85rem);
  }

  .tagline {
    font-size: 0.78rem;
    margin: 0.3rem 0 0.85rem;
  }

  .hero h1 {
    font-size: clamp(1.3rem, 2.5vw, 1.65rem);
    max-width: 22ch;
  }

  .lead {
    font-size: 0.98rem;
    margin-bottom: 1.1rem;
  }

  .hero .btn {
    padding: 0.75rem 1.15rem;
    font-size: 0.92rem;
  }
}

/* Large tablet / laptop */
@media (min-width: 900px) {
  .hero {
    min-height: min(100svh, 860px);
  }

  .hero-content {
    padding-bottom: 2.75rem;
  }

  .brand-hero {
    font-size: clamp(2.8rem, 4.5vw, 4rem);
  }

  .tagline {
    font-size: 0.85rem;
    margin: 0.4rem 0 1.1rem;
  }

  .hero h1 {
    font-size: clamp(1.55rem, 2.2vw, 2.1rem);
    margin-bottom: 0.7rem;
  }

  .lead {
    font-size: 1.08rem;
    margin-bottom: 1.35rem;
  }

  .hero .btn {
    padding: 0.9rem 1.35rem;
    font-size: 1rem;
  }
}

/* Desktop */
@media (min-width: 1200px) {
  .hero {
    justify-content: center;
    min-height: min(88svh, 820px);
  }

  .hero-content {
    padding: 5rem 0 4rem;
  }

  .brand-hero {
    font-size: 4.4rem;
  }
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 100%;
}

@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Strip */
.strip {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.92);
  padding: 1.1rem 0;
}

.strip-grid {
  display: grid;
  gap: 0.85rem;
}

.strip-grid p {
  margin: 0;
  font-size: 0.95rem;
}

.strip-grid strong {
  display: block;
  color: var(--sun);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

@media (min-width: 720px) {
  .strip-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(27, 67, 50, 0.05), rgba(244, 162, 97, 0.08));
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.5rem;
  min-width: 0;
}

.section-head h2 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  color: var(--forest);
  line-height: 1.15;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.section-head p {
  margin: 0;
  color: rgba(20, 36, 28, 0.72);
  font-size: 1.05rem;
}

.section-funfact {
  background:
    linear-gradient(135deg, rgba(244, 162, 97, 0.14), rgba(27, 67, 50, 0.08));
}

.funfact {
  max-width: 40rem;
  margin-inline: auto;
  text-align: center;
}

.funfact-label {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sun-deep);
}

.funfact h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  color: var(--forest);
  line-height: 1.2;
}

.funfact p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(20, 36, 28, 0.86);
}

.funfact em {
  font-style: italic;
  color: var(--forest);
  font-weight: 600;
}

.funfact-sign {
  margin-top: 1.15rem !important;
  font-size: 0.95rem !important;
  color: rgba(20, 36, 28, 0.62) !important;
}

/* Features */
.feature-list {
  display: grid;
  gap: 3.5rem;
}

.feature {
  display: grid;
  gap: 1.75rem;
  align-items: center;
  min-width: 0;
}

.feature-copy,
.feature-copy p,
.feature-copy h3 {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: break-word;
}

@media (min-width: 900px) {
  .feature {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }

  .feature-reverse {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .feature-reverse .feature-copy {
    order: 2;
  }

  .feature-reverse .phone {
    order: 1;
  }
}

.feature-copy h3 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--forest);
}

.feature-copy p {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(20, 36, 28, 0.8);
  max-width: 38ch;
}

.phone {
  margin: 0;
  justify-self: center;
  width: min(280px, 100%);
  max-width: 100%;
  padding: 0.7rem;
  border-radius: 28px;
  background: linear-gradient(160deg, #1b4332, #0d1b16);
  box-shadow: var(--shadow);
  animation: floaty 5.5s ease-in-out infinite;
}

.phone img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  background: #111;
  aspect-ratio: 720 / 1616;
  object-fit: contain;
  display: block;
}

.phone picture {
  display: block;
}

.phone figcaption {
  margin-top: 0.55rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
}

.phone-home {
  animation-delay: -1.5s;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.more-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .more-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .more-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.more-grid article {
  padding: 1.25rem 1.2rem;
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.8);
  border: 1px solid var(--line);
}

.more-grid h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--forest);
}

.more-grid p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(20, 36, 28, 0.75);
}

/* Gallery */
.gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 900px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery figure {
  margin: 0;
  padding: 0.55rem;
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.85);
  border: 1px solid var(--line);
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  aspect-ratio: 720 / 1616;
  object-fit: contain;
  background: #111;
  display: block;
}

.gallery picture {
  display: block;
}

.gallery figcaption {
  margin-top: 0.5rem;
  text-align: center;
  font-weight: 600;
  color: var(--forest);
  font-size: 0.9rem;
}

/* Steps */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 860px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.steps li {
  padding: 1.4rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.step-num {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--sun);
  color: var(--forest);
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.steps h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  color: var(--forest);
  font-size: 1.25rem;
}

.steps p {
  margin: 0;
  color: rgba(20, 36, 28, 0.75);
}

/* FAQ */
details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

details summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--forest);
  list-style: none;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary::after {
  content: "+";
  float: right;
  color: var(--sun-deep);
  font-weight: 700;
}

details[open] summary::after {
  content: "–";
}

details p {
  margin: 0.7rem 0 0;
  color: rgba(20, 36, 28, 0.75);
}

/* CTA band */
.cta-band {
  background:
    linear-gradient(135deg, rgba(27, 67, 50, 0.95), rgba(45, 106, 79, 0.92)),
    image-set(
      url("assets/hero.webp") type("image/webp"),
      url("assets/hero.jpg") type("image/jpeg")
    ) center / cover;
  color: white;
  text-align: center;
}

.cta-band-inner {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  padding-block: 1rem;
}

.cta-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
}

.cta-band h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  max-width: 16ch;
}

.cta-band p {
  margin: 0;
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.88);
}

.fine {
  font-size: 0.88rem !important;
}

.fine a {
  color: var(--sun);
}

/* Download */
.section-download {
  padding-top: 3.5rem;
}

.download-panel {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: 1.25rem;
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  max-width: 100%;
  overflow: hidden;
}

@media (min-width: 900px) {
  .download-panel {
    grid-template-columns: 1.2fr 0.8fr;
    padding: 2.25rem 2rem;
  }
}

.btn-xl {
  padding: 1.05rem 1.6rem;
  font-size: 1.05rem;
  margin-top: 0.25rem;
}

.download-meta {
  margin: 0.75rem 0 0.65rem;
  color: rgba(20, 36, 28, 0.65);
  font-size: 0.92rem;
}

.ios-note {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--sun);
  background: rgba(244, 162, 97, 0.12);
  color: rgba(20, 36, 28, 0.82);
  font-size: 0.95rem;
  line-height: 1.45;
}

.ios-note strong {
  color: var(--forest);
}

.install-steps {
  margin: 0;
  padding-left: 1.2rem;
  color: rgba(20, 36, 28, 0.78);
}

.install-steps li {
  margin-bottom: 0.35rem;
}

.download-phone {
  justify-self: center;
}

/* Donate */
.section-donate {
  background:
    linear-gradient(180deg, rgba(244, 162, 97, 0.12), rgba(27, 67, 50, 0.06));
}

.donate-panel {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  padding: 1.5rem 1.25rem 2rem;
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.95);
  border: 1px solid var(--line);
}

.donate-panel .section-head {
  margin-inline: auto;
  text-align: center;
}

.donate-label {
  margin: 0 0 0.75rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.donate-amounts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.donate-chip {
  position: relative;
  min-width: 4.5rem;
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  background: var(--mist);
  color: var(--forest);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.donate-chip:hover {
  transform: translateY(-2px);
  border-color: var(--forest-soft);
  background: white;
}

.donate-chip.is-popular {
  background: var(--forest);
  color: white;
}

.donate-chip.is-popular:hover {
  background: #163528;
  border-color: #163528;
}

.chip-hint {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 0.15rem;
}

.donate-chip-open {
  min-width: 8.5rem;
  font-size: 0.95rem;
  background: white;
  border-color: var(--line);
}

.btn-paypal {
  background: #0070ba;
  box-shadow: 0 10px 28px rgba(0, 112, 186, 0.28);
}

.btn-paypal:hover {
  background: #005ea6;
}

.donate-note {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: rgba(20, 36, 28, 0.65);
}

/* Guestbook + feedback */
.guestbook-entries {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.guestbook-card {
  padding: 1.1rem 1.25rem;
  border-left: 3px solid var(--sun);
  background: rgba(255, 253, 248, 0.85);
}

.guestbook-meta {
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
  color: rgba(20, 36, 28, 0.7);
}

.guestbook-meta strong {
  color: var(--forest);
}

.guestbook-text {
  margin: 0;
  line-height: 1.55;
  white-space: pre-wrap;
}

.guestbook-empty {
  margin: 0 0 0.5rem;
  color: rgba(20, 36, 28, 0.65);
}

.contact-form {
  width: 100%;
  max-width: min(560px, 100%);
  margin-inline: auto;
  display: grid;
  gap: 1rem;
  min-width: 0;
  box-sizing: border-box;
}

.form-row {
  display: grid;
  gap: 0.4rem;
  text-align: left;
  min-width: 0;
  max-width: 100%;
}

.form-row label {
  font-weight: 600;
  color: var(--forest);
  font-size: 0.95rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.optional {
  font-weight: 500;
  color: rgba(20, 36, 28, 0.55);
  font-size: 0.85rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
  resize: vertical;
  box-sizing: border-box;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid var(--forest-soft);
  outline-offset: 1px;
  border-color: var(--forest-soft);
}

.contact-form .btn {
  justify-self: start;
  border: none;
  cursor: pointer;
  font: inherit;
  max-width: 100%;
}

.form-note {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(20, 36, 28, 0.65);
  overflow-wrap: anywhere;
  word-break: break-word;
}

#feedback,
#guestbook {
  overflow-x: clip;
}

#feedback .section-head,
#guestbook .section-head {
  margin-inline: auto;
  text-align: center;
  max-width: 100%;
}

.honey {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.thanks-panel {
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.thanks-panel h1 {
  margin-bottom: 0.75rem;
  color: var(--forest);
}

/* Footer */
.footer {
  padding: 2.5rem 0 2rem;
  background: #0f1f18;
  color: rgba(255, 255, 255, 0.78);
}

.footer a {
  color: var(--sun);
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
}

.footer strong {
  color: white;
  font-size: 1.1rem;
}

.footer p {
  margin: 0.2rem 0 0;
}

.copy {
  opacity: 0.65;
  font-size: 0.85rem;
}

@media (min-width: 760px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr auto;
    align-items: end;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media,
  .phone,
  .hero-content {
    animation: none !important;
  }
}
