/* SkinsCaddy — light editorial country club */

:root {
  --paper: #f6f1e6;
  --paper-2: #efe6d4;
  --paper-3: #fffdf8;
  --ink: #1a241c;
  --ink-soft: #3d4a40;
  --muted: #5c6b60;
  --forest: #1c3d2e;
  --forest-deep: #14281e;
  --forest-mid: #2a5a43;
  --brass: #b08d3e;
  --brass-deep: #8c6c28;
  --brass-soft: #d4bc7a;
  --rule: rgba(28, 61, 46, 0.14);
  --rule-strong: rgba(28, 61, 46, 0.22);
  --shadow: 0 18px 40px rgba(20, 40, 30, 0.12);
  --radius: 1.05rem;
  --radius-lg: 1.4rem;
  --radius-xl: 1.75rem;
  --font-serif: "Fraunces", "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 72rem;
  --header-h: 5rem;
  --app-cream: #f7edd1;
  --app-gold: #e6bd52;
  --app-serif: Georgia, "Palatino Linotype", Palatino, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  color-scheme: light;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  background: rgba(176, 141, 62, 0.28);
  color: var(--forest-deep);
}

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

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

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--forest);
  color: var(--paper);
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

.page {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse 70% 36% at 100% 0%, rgba(176, 141, 62, 0.12), transparent 55%),
    radial-gradient(ellipse 48% 32% at 0% 8%, rgba(28, 61, 46, 0.07), transparent 50%),
    var(--paper);
}

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

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Header + mobile nav — match app wood plaque */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background-color: #47280f;
  background-image: url("../img/wood-header.png");
  background-size: cover;
  background-position: center;
  border-bottom: 1.5px solid var(--brass);
  box-shadow: 0 10px 28px rgba(20, 30, 24, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: 0.35rem;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
  line-height: 1;
}

.brand-mark {
  display: block;
  width: 3.55rem;
  height: 3.55rem;
  flex-shrink: 0;
  border-radius: 0;
  overflow: visible;
  object-fit: contain;
  object-position: center;
  background: transparent;
  border: 0;
  filter: drop-shadow(0 6px 10px rgba(20, 40, 30, 0.22));
}
.footer-mark-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  flex-shrink: 0;
  overflow: visible;
  background: transparent;
}
.footer-mark {
  display: block;
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
  object-position: center;
  border: 0;
  background: transparent;
  border-radius: 0;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
}

.brand-titles {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  min-width: 0;
  text-align: left;
}
.brand-word {
  font-family: var(--app-serif);
  font-size: 1.625rem; /* ~26px like the app */
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--app-cream);
  text-shadow: none;
  line-height: 1.1;
}
.brand-sub {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.6875rem; /* ~11px like the app */
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--app-gold);
  text-shadow: none;
  white-space: nowrap;
}
.site-header .brand {
  gap: 0;
}
.site-header .brand-mark {
  width: 4.15rem;
  height: 4.15rem;
  margin-right: -0.2rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.nav-toggle {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  padding: 0;
  border-radius: 999px;
  border: 1.5px solid var(--brass);
  background: linear-gradient(180deg, #2a5a43 0%, #1c3d2e 100%);
  color: #f6f1e6;
  cursor: pointer;
}

.nav-toggle-bars {
  display: grid;
  gap: 0.28rem;
  width: 1.15rem;
}

.nav-toggle-bars span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: #f6f1e6;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) {
  transform: translateY(0.375rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) {
  transform: translateY(-0.375rem) rotate(-45deg);
}

.nav {
  display: none;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(246, 241, 230, 0.88);
}

.nav a:hover,
.nav a:focus-visible {
  color: #f2c96a;
}

.nav-cta {
  color: #f6f1e6 !important;
  padding: 0 0.95rem;
  border-radius: 999px;
  border: 1.5px solid var(--brass);
  background: linear-gradient(180deg, #2a5a43 0%, #1c3d2e 100%);
}

@media (max-width: 767px) {
  .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 0.5rem 1rem 1.15rem;
    background: linear-gradient(180deg, rgba(71, 40, 15, 0.98), rgba(28, 20, 12, 0.98));
    border-bottom: 1.5px solid var(--brass);
    transform: translateY(-0.5rem);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
  }

  .nav.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    visibility: visible;
  }

  .nav a {
    width: 100%;
    padding: 0.35rem 0.25rem;
    border-bottom: 1px solid rgba(242, 201, 106, 0.22);
    color: #f6f1e6;
  }

  .nav-cta {
    margin-top: 0.45rem;
    justify-content: center;
    border-bottom: 1px solid rgba(176, 141, 62, 0.55) !important;
  }
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .nav {
    display: flex;
    align-items: center;
    gap: 1.35rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.8rem 1.45rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
  text-align: center;
}

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

.btn-primary,
.btn-gold {
  background: var(--forest);
  color: var(--paper);
  box-shadow: 0 10px 24px rgba(20, 40, 30, 0.16);
}

.btn-primary:hover,
.btn-gold:hover {
  background: var(--forest-mid);
}

.btn-ghost {
  background: transparent;
  color: var(--forest);
  border-color: var(--rule-strong);
}

.btn-ghost:hover {
  border-color: var(--brass);
  background: rgba(176, 141, 62, 0.08);
}

/* Hero */
.hero {
  display: grid;
  gap: 2.4rem;
  padding: 2.2rem 0 3.4rem;
  align-items: center;
}

@media (min-width: 980px) {
  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    padding: 3.1rem 0 4.4rem;
    gap: 3rem;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass-deep);
  background: rgba(176, 141, 62, 0.12);
  border: 1px solid rgba(176, 141, 62, 0.35);
  margin-bottom: 1.1rem;
}

.eyebrow-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--brass);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.15rem, 4.6vw, 3.55rem);
  line-height: 1.08;
  font-weight: 600;
  color: var(--forest);
}

.hero-lead {
  margin: 1.15rem 0 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  margin-top: 1.45rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-meta i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--brass);
  display: inline-block;
}

.legal-chip {
  margin-top: 1.35rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  background: var(--paper-3);
  max-width: 38rem;
}

.legal-chip .fun-disclosure {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
}

.hero-art {
  position: relative;
  justify-self: center;
  width: min(100%, 22rem);
  display: grid;
  place-items: center;
}

/* Phone frames */
.device {
  margin: 0;
  width: min(18.25rem, 78vw);
}

.device-sm {
  width: min(13.25rem, 68%);
}

.device-bezel {
  position: relative;
  aspect-ratio: 9 / 19.1;
  padding: 0.55rem;
  border-radius: 2.05rem;
  background: linear-gradient(165deg, #2c2c2c, #111);
  border: 1px solid rgba(176, 141, 62, 0.38);
  box-shadow:
    var(--shadow),
    inset 0 0 0 2px #1a1a1a;
}

.device-notch {
  position: absolute;
  top: 0.72rem;
  left: 50%;
  z-index: 2;
  width: 28%;
  height: 0.55rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #0b0b0b;
}

.device-screen {
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  background: var(--forest-deep);
}

.device-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-art-caption {
  margin-top: 0.9rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}

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

.section-head {
  max-width: 38rem;
  margin-bottom: 1.85rem;
}

.section-kicker {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass-deep);
}

.section-head h2,
.about-copy h2,
.waitlist-copy h2,
.download-copy h2 {
  margin: 0.55rem 0 0;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.18;
  font-weight: 600;
  color: var(--forest);
}

.section-sub {
  margin: 0.8rem 0 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.caption-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.62rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest-deep);
  background: rgba(176, 141, 62, 0.22);
  border: 1px solid rgba(176, 141, 62, 0.35);
}

/* Product feature grid */
.product-grid {
  display: grid;
  gap: 1.05rem;
}

@media (min-width: 700px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper-3);
  border: 1px solid var(--rule);
  box-shadow: 0 10px 28px rgba(20, 40, 30, 0.06);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(176, 141, 62, 0.45);
}

.product-shot {
  display: grid;
  place-items: end center;
  padding: 1.35rem 1rem 0;
  min-height: 22rem;
  background:
    linear-gradient(180deg, rgba(28, 61, 46, 0.06), transparent 42%),
    var(--paper-2);
}

.product-shot .device {
  margin-bottom: -1.15rem;
}

.product-copy {
  padding: 1.05rem 1.1rem 1.2rem;
}

.product-copy h3 {
  margin: 0.45rem 0 0;
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--forest);
}

.product-copy p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* Download */
.download-band,
.waitlist-band,
.about-band {
  border-radius: var(--radius-xl);
  border: 1px solid var(--rule);
  background: var(--paper-3);
  box-shadow: var(--shadow);
}

.download-band {
  display: grid;
  gap: 1.5rem;
  padding: 1.7rem 1.4rem;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(28, 61, 46, 0.06), transparent 46%),
    var(--paper-3);
}

@media (min-width: 800px) {
  .download-band {
    grid-template-columns: 1.2fr 0.8fr;
    padding: 2.1rem 2rem;
  }
}

.download-copy p,
.waitlist-copy p {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
  max-width: 36rem;
}

.download-list {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.download-list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--forest);
}

.download-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--brass);
}

.download-side {
  display: grid;
  place-items: center;
}

.missing-download {
  padding: 3rem 0 4.5rem;
  max-width: 40rem;
}

.missing-download h1 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: var(--forest);
}

.missing-lead {
  margin: 1rem 0 0;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

/* About */
.about-band-split {
  display: grid;
  gap: 0;
  overflow: hidden;
}

@media (min-width: 860px) {
  .about-band-split {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.about-copy {
  padding: 1.7rem 1.4rem;
}

@media (min-width: 860px) {
  .about-copy {
    padding: 2.3rem 1.6rem 2.3rem 2.2rem;
  }
}

.about-copy p {
  margin: 0.95rem 0 0;
  color: var(--ink-soft);
  max-width: 40rem;
}

.about-list {
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.about-list li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--forest);
}

.about-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--brass);
  font-size: 0.7rem;
}

.season-note {
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  border: 1px solid var(--rule);
  background: var(--paper);
}

.season-note p {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
}

.about-art {
  display: grid;
  place-items: center;
  padding: 1.6rem 1rem;
  background: var(--paper-2);
}

@media (min-width: 860px) {
  .about-art {
    border-left: 1px solid var(--rule);
  }
}

/* Waitlist */
.waitlist-band {
  padding: 1.7rem 1.4rem;
}

@media (min-width: 800px) {
  .waitlist-band {
    padding: 2.1rem 2rem;
  }
}

.waitlist-note {
  margin-top: 0.85rem !important;
  font-size: 0.88rem !important;
  color: var(--muted) !important;
}

.waitlist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.3rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--rule);
  background: var(--forest-deep);
  color: #e6ece8;
  margin-top: 0.5rem;
  padding-bottom: 1.3rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 1.6rem 0 0.85rem;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.site-footer .footer-brand {
  gap: 0;
  align-items: center;
}
.site-footer .brand-mark,
.site-footer .footer-mark {
  width: 4.15rem;
  height: 4.15rem;
  margin-right: -0.2rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
}
.site-footer .brand-word {
  color: var(--app-cream);
  font-family: var(--app-serif);
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-shadow: none;
  line-height: 1.1;
}
.site-footer .brand-sub {
  color: var(--app-gold);
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-shadow: none;
}



.footer-tagline,
.footer-copyright {
  margin: 0;
}

.footer-tagline {
  margin: 0.7rem 0 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brass-soft);
}

.footer-copyright {
  font-size: 0.84rem;
  color: #b7c4bb;
}

.footer-legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-legal-nav a,
.footer-age-note a,
.legal-body a {
  color: var(--brass-soft);
}

.footer-legal-nav a:hover,
.footer-age-note a:hover,
.legal-body a:hover {
  color: var(--paper);
}

.legal-body a {
  color: var(--forest-mid);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.legal-body a:hover {
  color: var(--forest);
}

.footer-age-note {
  padding: 0.2rem 0 0.4rem;
}

.footer-age-note p,
.fun-disclosure {
  margin: 0 0 0.55rem;
  font-size: 0.8rem;
  line-height: 1.55;
  color: #b7c4bb;
  max-width: 54rem;
}

/* Legal pages */
.legal-shell {
  display: grid;
  gap: 1.4rem;
  padding: 1.5rem 0 4rem;
  align-items: start;
}

@media (min-width: 900px) {
  .legal-shell {
    grid-template-columns: 12.5rem minmax(0, 42rem);
    gap: 2.2rem;
  }
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  position: sticky;
  top: calc(var(--header-h) + 0.75rem);
}

@media (min-width: 900px) {
  .legal-nav {
    flex-direction: column;
    gap: 0.2rem;
  }
}

.legal-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-soft);
  border: 1px solid transparent;
}

.legal-nav a:hover,
.legal-nav a.is-active {
  color: var(--forest);
  background: rgba(176, 141, 62, 0.12);
  border-color: rgba(176, 141, 62, 0.32);
}

.legal-page {
  max-width: 42rem;
}

.legal-header {
  margin-bottom: 1.6rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--rule);
}

.legal-header h1 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.85rem, 3.4vw, 2.45rem);
  font-weight: 600;
  color: var(--forest);
}

.legal-meta {
  margin: 0.7rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.legal-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.legal-body h2 {
  margin: 2.1rem 0 0.7rem;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--forest);
}

.legal-body p {
  margin: 0 0 1rem;
}

.legal-body ul {
  margin: 0 0 1.15rem;
  padding-left: 1.2rem;
}

.legal-body li {
  margin-bottom: 0.4rem;
}

.legal-body strong {
  color: var(--forest);
  font-weight: 700;
}

.legal-callout {
  margin: 0 0 1.4rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(176, 141, 62, 0.1);
  border: 1px solid rgba(176, 141, 62, 0.32);
}

.legal-callout p,
.legal-callout .fun-disclosure {
  margin: 0;
  color: var(--ink);
}

.legal-related {
  margin-top: 2rem !important;
  padding-top: 1.2rem;
  border-top: 1px solid var(--rule);
  font-size: 0.9rem;
}

.legal-footer-line {
  margin-top: 1.5rem !important;
  font-size: 0.88rem;
  color: var(--muted);
}

.legal-form {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1.5rem;
  padding: 1.2rem 1.1rem;
  border-radius: var(--radius-lg);
  background: var(--paper-3);
  border: 1px solid var(--rule);
}

.legal-form label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--forest);
}

.legal-form-optional {
  font-weight: 500;
  color: var(--muted);
}

.legal-form input[type="text"],
.legal-form input[type="email"] {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.7rem 0.8rem;
  border-radius: 0.75rem;
  border: 1px solid var(--rule-strong);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.legal-form input:focus {
  outline: 2px solid rgba(176, 141, 62, 0.55);
  outline-offset: 1px;
}

.legal-form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.45;
}

.legal-form-check input {
  margin-top: 0.3rem;
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.legal-form .btn {
  justify-self: start;
  margin-top: 0.3rem;
}

/* Honor Board — season / trophy / bag-tag layer */
.honor-band {
  display: grid;
  gap: 1.4rem;
  padding: 1.2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--rule);
  background:
    linear-gradient(180deg, rgba(176, 141, 62, 0.08), transparent 36%),
    var(--paper-3);
  box-shadow: var(--shadow);
}

@media (min-width: 920px) {
  .honor-band {
    grid-template-columns: 0.9fr 1.2fr;
    padding: 1.5rem 1.5rem 1.5rem 1.2rem;
    align-items: stretch;
  }
}

.honor-bag-panel {
  margin: 0;
  display: grid;
  place-items: center;
  padding: 1.4rem 1rem 1.1rem;
  border-radius: 1.3rem;
  background:
    radial-gradient(ellipse 70% 55% at 50% 38%, rgba(176, 141, 62, 0.28), transparent 58%),
    radial-gradient(ellipse 90% 80% at 50% 60%, #163226, #0c1b14 72%);
  border: 1px solid rgba(176, 141, 62, 0.35);
}

.honor-bag {
  width: min(100%, 16.5rem);
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.35));
}

.honor-bag-panel figcaption {
  margin-top: 0.85rem;
  font-size: 0.8rem;
  color: #d7c48a;
  text-align: center;
}

.honor-copy h3,
.honor-extra h3,
.club-copy h2,
.pwa-band h2 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.2;
  font-weight: 600;
  color: var(--forest);
}

.honor-copy > p,
.honor-extra p,
.club-copy > p,
.pwa-band p {
  margin: 0.7rem 0 0;
  color: var(--ink-soft);
}

.tag-board {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.05rem;
}

.tag-row {
  display: grid;
  grid-template-columns: 3.15rem minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  padding: 0.55rem 0.7rem;
  border-radius: 1rem;
  background: var(--paper);
  border: 1px solid var(--rule);
}

.tag-row.is-locked {
  opacity: 0.78;
  background: repeating-linear-gradient(
    -55deg,
    var(--paper),
    var(--paper) 8px,
    rgba(176, 141, 62, 0.06) 8px,
    rgba(176, 141, 62, 0.06) 16px
  );
}

.tag-medal {
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 50%;
  object-fit: cover;
  background: #0b1611;
  box-shadow: 0 0 0 1px rgba(176, 141, 62, 0.45);
}

.tag-body {
  min-width: 0;
}

.tag-name {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--forest);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.tag-what,
.tag-how {
  margin: 0.12rem 0 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.tag-how {
  color: var(--muted);
}

.lock-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.12rem 0.48rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brass-deep);
  border: 1px solid rgba(176, 141, 62, 0.45);
  background: rgba(176, 141, 62, 0.12);
}

.honor-extras {
  display: grid;
  gap: 1rem;
  margin-top: 1.05rem;
}

@media (min-width: 760px) {
  .honor-extras {
    grid-template-columns: 1fr 1fr;
  }
}

.honor-extra {
  padding: 1.15rem 1.2rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--paper-3);
  border: 1px solid var(--rule);
}

.medal-ladder {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
}

.medal-ladder li {
  display: grid;
  justify-items: center;
  gap: 0.28rem;
  padding: 0.55rem 0.3rem 0.65rem;
  border-radius: 0.85rem;
  border: 1px solid var(--rule);
  background: var(--paper);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--forest);
  text-align: center;
}

.metal {
  display: inline-block;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 2px 4px rgba(20, 40, 30, 0.18);
  font-size: 0;
}

.metal-bronze { background: radial-gradient(circle at 32% 28%, #e8c08a, #8a5a2b); }
.metal-silver { background: radial-gradient(circle at 32% 28%, #f4f2ee, #8d9398); }
.metal-gold { background: radial-gradient(circle at 32% 28%, #ffe9a4, #b08d3e); }
.metal-platinum { background: radial-gradient(circle at 32% 28%, #f7fbff, #9aa7b8); }

.book-line {
  margin-top: 0.85rem !important;
  font-family: var(--font-serif);
  font-size: 1.05rem !important;
  font-weight: 600;
  color: var(--forest) !important;
}

.coming-next {
  margin: 0.95rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.club-band,
.pwa-band {
  border-radius: var(--radius-xl);
  border: 1px solid var(--rule);
  background: var(--paper-3);
  box-shadow: var(--shadow);
}

.club-band {
  display: grid;
  gap: 1.2rem;
  overflow: hidden;
}

@media (min-width: 860px) {
  .club-band {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.club-copy {
  padding: 1.7rem 1.4rem;
}

@media (min-width: 860px) {
  .club-copy {
    padding: 2.1rem 1.5rem 2.1rem 2rem;
  }
}

.club-tools {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.club-tools li {
  padding: 0.75rem 0.85rem;
  border-radius: 0.95rem;
  border: 1px solid var(--rule);
  background: var(--paper);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.club-tools strong {
  display: block;
  margin-bottom: 0.12rem;
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--forest);
}

.club-art {
  display: grid;
  place-items: center;
  padding: 1.4rem 1rem;
  background: var(--paper-2);
}

@media (min-width: 860px) {
  .club-art {
    border-left: 1px solid var(--rule);
  }
}

.pwa-band {
  padding: 1.7rem 1.4rem;
  background:
    linear-gradient(135deg, rgba(28, 61, 46, 0.07), transparent 48%),
    var(--paper-3);
}

@media (min-width: 800px) {
  .pwa-band {
    padding: 2.1rem 2rem;
  }
}

.pwa-band p {
  max-width: 42rem;
}

.product-copy p + p {
  margin-top: 0.45rem;
}

.anchor {
  display: block;
  height: 0;
  overflow: hidden;
}

@media (max-width: 520px) {
  .medal-ladder {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* How it plays walkthrough */
.play-section {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

.play-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.4rem;
}

.play-toc a {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest);
  border: 1px solid var(--rule-strong);
  background: var(--paper-3);
}

.play-toc a:hover,
.play-toc a:focus-visible {
  border-color: var(--brass);
  background: rgba(176, 141, 62, 0.1);
}

.play-step {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 1.15rem;
  padding: 1.25rem 1.15rem 1.35rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--rule);
  background: var(--paper-3);
  box-shadow: 0 10px 28px rgba(20, 40, 30, 0.06);
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

@media (min-width: 920px) {
  .play-step {
    grid-template-columns: 1.15fr 0.85fr;
    padding: 1.55rem 1.5rem;
    align-items: start;
  }

  .play-step-plain {
    grid-template-columns: 1fr;
  }
}

.play-num {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--brass-deep);
  margin-bottom: 0.35rem;
}

.play-step-copy h3 {
  margin: 0.45rem 0 0;
  font-size: clamp(1.28rem, 2.2vw, 1.7rem);
  line-height: 1.22;
  font-weight: 600;
  color: var(--forest);
}

.play-step-copy > p {
  margin: 0.7rem 0 0;
  color: var(--ink-soft);
}

.play-list {
  margin: 0.85rem 0 0;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.play-list li {
  margin-bottom: 0.38rem;
}

.play-pills {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.play-pills li {
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--forest);
  background: var(--paper);
  border: 1px solid var(--rule);
}

.play-tags {
  margin-top: 0.95rem;
}

.play-metals {
  margin-top: 1rem;
}

.tag-row-text {
  grid-template-columns: minmax(0, 1fr);
}

.play-step-art {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  align-items: end;
  padding: 0.4rem 0.2rem 0;
}

.play-step-art-single {
  align-items: center;
}

.play-bag {
  width: min(100%, 18rem);
}

.play-legal {
  margin-top: 1.15rem;
  max-width: none;
}

#play-honor,
#play-open,
#play-hotlist,
#play-solo,
#play-skins,
#play-groups,
#play-sides,
#play-tools {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

@media (min-width: 768px) {
  .nav {
    gap: 0.95rem;
  }

  .nav a {
    font-size: 0.88rem;
  }
}


.memorial-note {
  margin: 0.55rem 0 0.9rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink-soft, #3d4a42);
}
.memorial-note em {
  font-style: italic;
  color: var(--fairway-deep, #1f4a32);
}
.memorial-caption {
  margin: 0.55rem 0 0;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.35;
  color: var(--fairway-deep, #1f4a32);
}


.hero-promise {
  margin: 1.15rem 0 0.95rem;
  max-width: 34rem;
  font-family: var(--app-serif, Georgia, serif);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--fairway-deep, #1f4a32);
}
.about-promise {
  margin: 0.45rem 0 0.95rem;
  max-width: 36rem;
}


.footer-legal-line {
  margin: 0.55rem 0 0;
  max-width: 28rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #b7c4bb;
}


.homepage-disclaimer {
  margin: 0.85rem 0 0;
  max-width: 36rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ink-soft, #3d4a42);
}

.nav a[aria-current="page"] {
  color: #f2c96a;
}

/* Play / Add to Home Screen */
.play-home {
  padding: 2.2rem 0 3.6rem;
  max-width: 54rem;
}

.play-home h1 {
  margin: 0.35rem 0 0;
  font-size: clamp(2.05rem, 4.2vw, 3.1rem);
  line-height: 1.1;
  font-weight: 600;
  color: var(--forest);
}

.play-home-lead {
  margin: 0.85rem 0 0;
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 32rem;
}

.install-grid {
  display: grid;
  gap: 1.1rem;
  margin-top: 1.8rem;
}

@media (min-width: 760px) {
  .install-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.install-card {
  padding: 1.35rem 1.25rem 1.45rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--rule);
  background: var(--paper-3);
  box-shadow: var(--shadow);
}

.install-card h2 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--forest);
}

.install-card ol {
  margin: 0.9rem 0 0;
  padding: 0 0 0 1.2rem;
  display: grid;
  gap: 0.55rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.5;
}

.install-note {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--muted);
}

.play-home-cta {
  margin-top: 1.8rem;
  display: grid;
  justify-items: center;
  gap: 0.7rem;
}

.clubhouse-plate {
  width: min(100%, 34rem);
  margin-left: auto;
  margin-right: auto;
  padding: 1.4rem 1.35rem 1.5rem;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--brass);
  background:
    linear-gradient(180deg, rgba(176, 141, 62, 0.1), transparent 46%),
    var(--paper-3);
  box-shadow: var(--shadow);
  text-align: left;
}

.clubhouse-plate h2 {
  margin: 0.4rem 0 0;
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--forest);
}

.clubhouse-plate-lead {
  margin: 0.7rem 0 1.15rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.play-home-soon {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

.play-home-problem {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  text-align: center;
}

.play-home-problem a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.chrome-kebab {
  display: inline-block;
  width: 0.42em;
  height: 1.15em;
  margin: 0 0.18em -0.12em;
  vertical-align: middle;
  background:
    radial-gradient(circle closest-side, currentColor 72%, transparent 74%) center top / 100% 33% no-repeat,
    radial-gradient(circle closest-side, currentColor 72%, transparent 74%) center center / 100% 33% no-repeat,
    radial-gradient(circle closest-side, currentColor 72%, transparent 74%) center bottom / 100% 33% no-repeat;
}

