:root {
  --ink: #17364a;
  --ink-deep: #102a3b;
  --cream: #f3eee3;
  --cream-dark: #e5dccb;
  --paper: #fbfaf6;
  --white: #ffffff;
  --pine: #355746;
  --accent: #bf6846;
  --line: rgba(23, 54, 74, 0.14);
  --shadow: 0 24px 70px -30px rgba(16, 42, 59, 0.34);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: "Inter", system-ui, sans-serif;
}

h1,
h2,
h3,
.wordmark,
.price {
  font-family: "Fraunces", Georgia, serif;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.announcement {
  background: var(--ink-deep);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 10px 20px;
  text-align: center;
  text-transform: uppercase;
}

/* Keep transform and prefixed backdrop-filter for iOS Safari sticky-nav stability. */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 246, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(23, 54, 74, 0.08);
  transform: translateZ(0);
}

.nav-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1280px;
  padding: 18px 32px;
}

.wordmark {
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
}

.wordmark.small {
  font-size: 0.78rem;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 500;
  opacity: 0.74;
  text-decoration: none;
  transition: opacity 150ms ease;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-links .nav-cta {
  background: var(--ink);
  border-radius: 999px;
  color: var(--white);
  font-weight: 600;
  opacity: 1;
  padding: 10px 18px;
}

.nav-links .nav-cta:hover {
  background: var(--ink-deep);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(390px, 0.86fr);
  margin: 0 auto;
  max-width: 1280px;
  min-height: 680px;
  padding: 42px 32px 72px;
}

.hero-media {
  min-height: 620px;
  overflow: hidden;
  position: relative;
}

.hero-media::after {
  border: 1px solid rgba(255, 255, 255, 0.36);
  content: "";
  inset: 16px;
  pointer-events: none;
  position: absolute;
}

.hero-media > img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-note {
  background: rgba(251, 250, 246, 0.94);
  bottom: 24px;
  left: 24px;
  min-width: 235px;
  padding: 15px 18px 16px;
  position: absolute;
}

.hero-note-kicker {
  display: block;
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  margin-bottom: 5px;
}

.hero-note strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.04rem;
  font-weight: 600;
}

.hero-copy {
  align-self: center;
  padding: 38px 36px 38px 64px;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  margin-bottom: 17px;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #e8a184;
}

h1 {
  font-size: clamp(3.3rem, 5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin-bottom: 26px;
}

.sub {
  color: rgba(23, 54, 74, 0.76);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 26px;
  max-width: 43ch;
}

.purchase-row {
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  padding: 16px 0;
}

.price {
  font-size: 2rem;
  font-weight: 600;
}

.price-note {
  color: rgba(23, 54, 74, 0.62);
  font-size: 0.79rem;
}

.hero-points {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 0 0 27px;
}

.hero-points li {
  color: rgba(23, 54, 74, 0.78);
  font-size: 0.86rem;
  padding-left: 24px;
  position: relative;
}

.hero-points li::before {
  color: var(--pine);
  content: "✓";
  font-weight: 600;
  left: 0;
  position: absolute;
}

.primary-cta,
.solid-btn {
  background: var(--ink);
  border: 0;
  border-radius: 3px;
  color: var(--white);
  cursor: pointer;
  font-size: 0.91rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 150ms ease, transform 120ms ease;
}

.primary-cta {
  align-items: center;
  display: flex;
  justify-content: space-between;
  max-width: 330px;
  padding: 17px 20px;
}

.primary-cta:hover,
.solid-btn:hover {
  background: var(--ink-deep);
}

.primary-cta:active,
.solid-btn:active {
  transform: scale(0.985);
}

.cta-note {
  color: rgba(23, 54, 74, 0.52);
  font-size: 0.72rem;
  margin-top: 11px;
}

.customizer {
  background: var(--ink-deep);
  color: var(--cream);
  display: grid;
  gap: 76px;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.7fr);
  padding: 104px max(32px, calc((100vw - 1160px) / 2));
}

.customizer-intro {
  padding: 36px 0;
}

.customizer h2,
.product-story h2,
.section-heading h2,
.bulk h2 {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.customizer-intro > p:not(.eyebrow, .hint) {
  color: rgba(243, 238, 227, 0.7);
  line-height: 1.7;
  margin: 20px 0 30px;
  max-width: 48ch;
}

.search {
  display: flex;
  max-width: 610px;
}

.search input {
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 3px 0 0 3px;
  color: var(--ink);
  flex: 1;
  font-size: 0.96rem;
  min-width: 0;
  outline: none;
  padding: 17px 18px;
}

.search input:focus {
  box-shadow: inset 0 0 0 2px var(--accent);
}

.search button {
  background: var(--accent);
  border: 0;
  border-radius: 0 3px 3px 0;
  color: var(--white);
  cursor: pointer;
  font-size: 0.87rem;
  font-weight: 600;
  padding: 17px 23px;
  white-space: nowrap;
}

.search button:hover {
  background: #a9583b;
}

.search button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.hint {
  color: rgba(243, 238, 227, 0.5);
  font-size: 0.75rem;
  margin-top: 12px;
}

.hint.error {
  color: #f2a88b;
  font-weight: 500;
}

.picker {
  margin-top: 30px;
}

.picker-title {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 13px;
}

.picker-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 610px;
}

.picker-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(243, 238, 227, 0.18);
  border-radius: 4px;
  cursor: pointer;
  padding: 13px 11px;
  text-align: center;
  transition: background 150ms ease, border-color 150ms ease;
}

.picker-card:hover,
.picker-card.active {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--cream);
}

.picker-card svg {
  display: block;
  height: 54px;
  margin: 0 auto 7px;
  width: 72px;
}

.picker-card svg path {
  fill: var(--cream);
}

.picker-card .pc-name {
  font-size: 0.77rem;
  font-weight: 600;
}

.picker-card .pc-region {
  font-size: 0.67rem;
  margin-top: 3px;
  opacity: 0.55;
}

.hero-preview {
  align-items: stretch;
  align-self: start;
  background: var(--paper);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding: 19px;
  position: sticky;
  top: 92px;
}

.preview-head,
.swatch-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.preview-head {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.preview-price {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.16rem;
  letter-spacing: 0;
}

.shirt-stage {
  background: var(--cream);
  padding: 22px 22px 16px;
}

.shirt-stage svg {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 410px;
  width: 100%;
}

.swatch-row > span {
  font-size: 0.73rem;
  font-weight: 600;
}

.swatches {
  display: flex;
  gap: 9px;
}

.swatch {
  border: 2px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(23, 54, 74, 0.25);
  cursor: pointer;
  height: 27px;
  transition: transform 120ms ease, box-shadow 120ms ease;
  width: 27px;
}

.swatch:hover {
  transform: scale(1.08);
}

.swatch.active {
  box-shadow: 0 0 0 2px var(--ink);
}

.preview-actions {
  display: grid;
  gap: 8px;
  grid-template-columns: auto auto minmax(130px, 1fr);
}

.ghost-btn {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.71rem;
  font-weight: 600;
  padding: 12px 13px;
}

.ghost-btn:hover {
  border-color: var(--ink);
}

.solid-btn {
  padding: 13px 20px;
}

.solid-btn.wide {
  padding: 15px;
  width: 100%;
}

.product-story {
  display: grid;
  gap: clamp(50px, 7vw, 100px);
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  margin: 0 auto;
  max-width: 1220px;
  padding: 120px 32px;
}

.story-images {
  min-height: 680px;
  position: relative;
}

.story-main {
  height: 82%;
  object-fit: cover;
  width: 82%;
}

.story-secondary {
  border: 10px solid var(--paper);
  bottom: 0;
  height: 49%;
  object-fit: cover;
  position: absolute;
  right: 0;
  width: 49%;
}

.story-copy {
  align-self: center;
}

.story-lede {
  color: rgba(23, 54, 74, 0.7);
  font-size: 1rem;
  line-height: 1.75;
  margin: 24px 0 30px;
}

.detail-list {
  border-top: 1px solid var(--line);
  margin-bottom: 28px;
}

.detail-list > div {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 90px 1fr;
  padding: 16px 0;
}

.detail-list dt {
  font-size: 0.77rem;
  font-weight: 600;
}

.detail-list dd {
  color: rgba(23, 54, 74, 0.68);
  font-size: 0.81rem;
  line-height: 1.5;
}

.text-link {
  color: var(--ink);
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 600;
  gap: 28px;
  padding-bottom: 5px;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
}

.examples {
  background: var(--cream);
  padding: 110px 32px 96px;
}

.section-heading {
  margin: 0 auto 48px;
  max-width: 720px;
  text-align: center;
}

.section-heading > p:last-child {
  color: rgba(23, 54, 74, 0.66);
  line-height: 1.7;
  margin: 20px auto 0;
  max-width: 58ch;
}

.lake-gallery {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1220px;
}

.lake-card {
  background: var(--paper);
  border: 1px solid rgba(23, 54, 74, 0.08);
  padding: 13px;
}

.lake-card img {
  aspect-ratio: 9 / 11;
  background: #f5f1e8;
  object-fit: contain;
  width: 100%;
}

.lake-card figcaption {
  display: grid;
  gap: 3px;
  padding: 13px 4px 3px;
}

.lake-card strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 0.98rem;
}

.lake-card span {
  font-size: 0.64rem;
  opacity: 0.57;
}

.map-proof {
  font-size: 0.74rem;
  margin-top: 26px;
  opacity: 0.62;
  text-align: center;
}

.how {
  background: var(--ink);
  color: var(--cream);
  padding: 104px 32px;
}

.section-heading.inverse {
  margin-bottom: 52px;
}

.how-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1100px;
}

.how-card {
  border-top: 1px solid rgba(243, 238, 227, 0.26);
  padding: 28px 8px 0;
}

.how-num {
  color: #e8a184;
  font-family: "Fraunces", Georgia, serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.how-card h3 {
  font-size: 1.38rem;
  font-weight: 600;
  margin: 19px 0 12px;
}

.how-card p {
  color: rgba(243, 238, 227, 0.68);
  font-size: 0.86rem;
  line-height: 1.7;
  max-width: 34ch;
}

.bulk {
  padding: 96px 32px;
}

.bulk-inner {
  align-items: center;
  background: var(--cream);
  display: flex;
  gap: 50px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1100px;
  padding: 56px 62px;
}

.bulk h2 {
  font-size: clamp(2rem, 3.2vw, 3.1rem);
}

.bulk-inner > div > p:last-child {
  color: rgba(23, 54, 74, 0.68);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 56ch;
}

.bulk .solid-btn {
  flex-shrink: 0;
  padding: 16px 25px;
}

.footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  font-size: 0.68rem;
  gap: 30px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1220px;
  opacity: 0.66;
  padding: 34px 32px;
}

.mobile-sticky-cta {
  display: none;
}

.modal {
  align-items: center;
  background: rgba(16, 42, 59, 0.66);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 20px;
  position: fixed;
  z-index: 100;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.modal-card {
  background: var(--paper);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.5);
  max-height: calc(100vh - 36px);
  max-width: 440px;
  overflow-y: auto;
  padding: 38px 36px;
  position: relative;
  width: 100%;
}

.modal-close {
  background: none;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.65rem;
  opacity: 0.5;
  position: absolute;
  right: 17px;
  top: 12px;
}

.modal-card h3 {
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.modal-sub {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 21px;
  opacity: 0.68;
}

#order-form label {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  margin-bottom: 13px;
}

#order-form input,
#order-form textarea,
#order-form select {
  background: var(--white);
  border: 1px solid rgba(23, 54, 74, 0.2);
  border-radius: 2px;
  color: var(--ink);
  font-size: 0.93rem;
  margin-top: 6px;
  outline: none;
  padding: 11px 13px;
  resize: vertical;
  width: 100%;
}

#order-form input:focus,
#order-form textarea:focus,
#order-form select:focus {
  border-color: var(--ink);
}

#order-form input[readonly] {
  background: var(--cream);
}

.form-status {
  font-size: 0.8rem;
  margin-top: 11px;
  min-height: 1.2em;
  text-align: center;
}

.form-status.ok {
  color: #2e704b;
  font-weight: 600;
}

.form-status.err {
  color: var(--accent);
  font-weight: 600;
}

.hidden {
  display: none !important;
}

.sr-only {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  }

  .hero-copy {
    padding-left: 42px;
    padding-right: 12px;
  }

  .customizer {
    gap: 42px;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
  }

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

@media (max-width: 820px) {
  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-bottom: 58px;
  }

  .hero-media {
    min-height: 520px;
  }

  .hero-copy {
    padding: 54px 14px 0;
  }

  .customizer {
    grid-template-columns: 1fr;
    padding: 76px 32px;
  }

  .customizer-intro {
    padding: 0;
  }

  .hero-preview {
    position: static;
  }

  .product-story {
    grid-template-columns: 1fr;
  }

  .story-images {
    min-height: 590px;
  }

  .story-copy {
    max-width: 600px;
  }

  .how-grid {
    gap: 42px;
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .bulk-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 70px;
  }

  body {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .announcement {
    font-size: 0.58rem;
    letter-spacing: 0.07em;
    padding: 9px 12px;
  }

  .nav-inner {
    padding: 14px 18px;
  }

  .wordmark {
    font-size: 0.9rem;
  }

  .nav-links .nav-cta {
    font-size: 0.75rem;
    padding: 9px 14px;
  }

  .hero {
    min-height: 0;
    padding: 16px 0 54px;
  }

  .hero-media {
    min-height: 420px;
  }

  .hero-media > img {
    object-position: 56% center;
  }

  .hero-media::after {
    inset: 10px;
  }

  .hero-note {
    bottom: 14px;
    left: 14px;
    min-width: 205px;
    padding: 12px 14px;
  }

  .hero-copy {
    padding: 42px 20px 0;
  }

  h1 {
    font-size: clamp(3.1rem, 14vw, 4.2rem);
  }

  .sub {
    font-size: 0.98rem;
  }

  .primary-cta {
    max-width: none;
  }

  .customizer {
    gap: 40px;
    padding: 64px 20px;
  }

  .customizer h2,
  .product-story h2,
  .section-heading h2,
  .bulk h2 {
    font-size: 2.35rem;
  }

  .search {
    display: grid;
    gap: 8px;
  }

  .search input,
  .search button {
    border-radius: 3px;
    padding: 15px 16px;
    width: 100%;
  }

  .picker-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-preview {
    padding: 14px;
  }

  .shirt-stage {
    padding: 14px 10px 8px;
  }

  .preview-actions {
    grid-template-columns: 1fr 1fr;
  }

  .preview-actions .solid-btn {
    grid-column: 1 / -1;
  }

  .product-story {
    gap: 48px;
    padding: 76px 20px;
  }

  .story-images {
    min-height: 410px;
  }

  .story-main {
    height: 82%;
    width: 84%;
  }

  .story-secondary {
    border-width: 6px;
    height: 47%;
    width: 47%;
  }

  .detail-list > div {
    gap: 12px;
    grid-template-columns: 74px 1fr;
  }

  .examples {
    padding: 76px 20px 66px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .lake-gallery {
    gap: 10px;
    grid-template-columns: 1fr 1fr;
  }

  .lake-card {
    padding: 8px;
  }

  .lake-card.featured {
    grid-column: 1 / -1;
  }

  .lake-card.featured img {
    aspect-ratio: 16 / 10;
  }

  .how {
    padding: 76px 20px;
  }

  .bulk {
    padding: 58px 20px;
  }

  .bulk-inner {
    gap: 28px;
    padding: 36px 24px;
  }

  .bulk .solid-btn {
    width: 100%;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 28px 20px;
  }

  .mobile-sticky-cta {
    align-items: center;
    background: var(--ink-deep);
    bottom: 0;
    color: var(--white);
    display: flex;
    font-size: 0.88rem;
    font-weight: 600;
    justify-content: space-between;
    left: 0;
    padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
    position: fixed;
    right: 0;
    text-decoration: none;
    z-index: 60;
  }

  .mobile-sticky-cta strong {
    color: var(--cream);
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.15rem;
  }

  .modal {
    align-items: flex-end;
    padding: 0;
  }

  .modal-card {
    max-height: calc(100vh - 22px);
    max-width: none;
    padding: 32px 22px calc(28px + env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* ---------- design style chips ---------- */
.styles { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.style-chip {
  font: 600 0.84rem "Inter", sans-serif;
  padding: 9px 16px; border-radius: 999px; cursor: pointer;
  background: transparent; color: var(--ink);
  border: 1.5px solid rgba(29, 58, 79, 0.25);
  transition: border-color 0.15s, background 0.15s;
}
.style-chip:hover { border-color: var(--ink); }
.style-chip.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.style-note { font-size: 0.8rem; opacity: 0.6; margin-top: -8px; }
