
:root {
  --navy: #20323d;
  --navy-soft: #314650;
  --green: #748267;
  --green-dark: #53624d;
  --cream: #f7f2e8;
  --sand: #e8dcc5;
  --peach: #df9578;
  --white: #ffffff;
  --text: #26363d;
  --muted: #68767b;
  --border: #d9dedb;
  --shadow: 0 18px 50px rgba(32, 50, 61, 0.12);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(32, 50, 61, 0.08);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  color: var(--navy);
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.94rem;
}

.site-nav a:hover {
  color: var(--green-dark);
}

.nav-button {
  background: var(--navy);
  color: var(--white) !important;
  padding: 11px 18px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.8rem;
  color: var(--navy);
  cursor: pointer;
}

.hero {
  background:
    radial-gradient(circle at 85% 20%, rgba(223,149,120,.16), transparent 23rem),
    linear-gradient(135deg, #fbf8f1, #f5f8f5);
  padding: 84px 0 70px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-weight: 900;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.subscribe h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.98;
  margin: 0;
  letter-spacing: -0.04em;
}

.hero h1 span {
  color: var(--peach);
  display: inline-block;
}

.hero-text {
  font-size: 1.14rem;
  color: var(--muted);
  max-width: 680px;
  margin: 28px 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--navy-soft);
}

.btn-secondary {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}

.microcopy {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 18px;
}

.hero-art {
  position: relative;
}

.logo-card {
  background: white;
  border-radius: 38px;
  padding: 24px;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.logo-card img {
  border-radius: 28px;
}

.hero-note {
  position: absolute;
  left: -40px;
  bottom: -25px;
  max-width: 330px;
  background: var(--navy);
  color: white;
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.quick-strip {
  background: var(--navy);
  color: var(--white);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.strip-grid > div {
  padding: 24px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.12);
}

.strip-grid > div:last-child {
  border-right: 0;
}

.strip-grid span {
  display: block;
  font-size: 1.55rem;
  margin-bottom: 4px;
}

.strip-grid strong,
.strip-grid small {
  display: block;
}

.strip-grid small {
  color: #cbd4d7;
}

.section {
  padding: 96px 0;
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading h2,
.about-copy h2,
.subscribe h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: end;
  gap: 40px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 24px;
}

.story-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: transform .2s ease, box-shadow .2s ease;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.story-image {
  min-height: 220px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.featured .story-image {
  min-height: 300px;
}

.image-one {
  background:
    linear-gradient(rgba(32,50,61,.10), rgba(32,50,61,.25)),
    linear-gradient(135deg, #98a99a, #c9baa0 48%, #536b78);
}

.image-two {
  background:
    linear-gradient(135deg, #d9c6a3, #f0e9d9 50%, #82948b);
}

.image-three {
  background:
    linear-gradient(135deg, #7d96a3, #b9c8c8 50%, #e3c8a3);
}

.story-image::after {
  content: "";
  position: absolute;
  inset: 18% 10%;
  border-radius: 55% 45% 50% 50%;
  border: 2px solid rgba(255,255,255,.55);
}

.tag {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  background: white;
  color: var(--navy);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 900;
}

.story-content {
  padding: 24px;
}

.post-meta {
  font-size: .82rem;
  color: var(--green-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.story-content h3,
.route-card h3,
.tips-grid h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
}

.story-content h3 {
  font-size: 1.55rem;
  line-height: 1.18;
  margin: 8px 0 12px;
}

.story-content p {
  color: var(--muted);
}

.text-link,
.route-card a {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.route-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  border: 1px solid rgba(32,50,61,.08);
}

.route-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  font-weight: 900;
}

.route-label {
  margin: 0;
  font-size: .75rem;
  font-weight: 900;
  color: var(--peach);
  letter-spacing: .12em;
}

.route-card h3 {
  margin: 6px 0 10px;
  font-size: 1.55rem;
}

.route-card p {
  color: var(--muted);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tips-grid article {
  border-top: 4px solid var(--peach);
  background: #fbfbf9;
  padding: 26px;
  border-radius: 0 0 18px 18px;
}

.tips-grid span {
  color: var(--green);
  font-weight: 900;
}

.tips-grid h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.tips-grid p {
  color: var(--muted);
}

.about-section {
  background: #f4f7f4;
}

.about-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 70px;
  align-items: center;
}

.about-card {
  background: white;
  padding: 18px;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.about-card img {
  border-radius: 24px;
}

.about-copy p:not(.eyebrow) {
  font-size: 1.08rem;
  color: var(--muted);
}

.subscribe {
  padding: 70px 0;
  background: var(--navy);
  color: white;
}

.subscribe-box {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 40px;
  align-items: center;
}

.subscribe .eyebrow {
  color: #cdd7c5;
}

.subscribe h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.subscribe p {
  color: #d5dde0;
}

.subscribe-form {
  display: flex;
  background: white;
  padding: 7px;
  border-radius: 999px;
}

.subscribe-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 16px;
  font-size: 1rem;
  border-radius: 999px;
}

.subscribe-form button {
  border: 0;
  background: var(--peach);
  color: #fff;
  font-weight: 900;
  padding: 14px 20px;
  border-radius: 999px;
  cursor: pointer;
}

.site-footer {
  background: #17262e;
  color: white;
  padding: 48px 0 24px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.footer-brand p {
  margin: 2px 0 0;
  color: #aab7bd;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-links a {
  text-decoration: none;
  color: #dbe2e4;
  font-weight: 700;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #97a7ae;
  font-size: .9rem;
}

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

@media (max-width: 950px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--border);
  }

  .site-nav.open {
    display: flex;
  }

  .hero-grid,
  .about-grid,
  .subscribe-box,
  .split-heading {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .hero-note {
    left: 20px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand span {
    display: none;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-grid {
    gap: 46px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-note {
    position: static;
    margin-top: 14px;
    transform: none;
  }

  .story-grid,
  .tips-grid,
  .strip-grid {
    grid-template-columns: 1fr;
  }

  .strip-grid > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .section {
    padding: 70px 0;
  }

  .subscribe-form {
    flex-direction: column;
    border-radius: 18px;
  }

  .subscribe-form input,
  .subscribe-form button {
    min-height: 48px;
  }

  .footer-grid,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* =========================
   MERCH STORE
========================= */
.cart-button {
  border: 0;
  background: var(--peach);
  color: white;
  padding: 11px 16px;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.cart-count {
  min-width: 22px;
  height: 22px;
  margin-left: 5px;
  display: inline-grid;
  place-items: center;
  color: var(--navy);
  background: white;
  border-radius: 50%;
  font-size: .75rem;
}
.site-nav .active { color: var(--peach); }
.shop-hero {
  padding: 78px 0 70px;
  background: linear-gradient(135deg, #fbf8f1, #eef3ef);
  overflow: hidden;
}
.shop-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}
.shop-hero h1 {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  font-size: clamp(3.2rem, 6vw, 5.7rem);
  line-height: .96;
  letter-spacing: -.045em;
}
.shop-hero h1 span { color: var(--peach); }
.shop-hero p:not(.eyebrow) { max-width: 650px; color: var(--muted); font-size: 1.12rem; margin-bottom: 28px; }
.shop-logo-stage { position: relative; min-height: 500px; display: grid; place-items: center; }
.shop-logo-ring {
  width: min(480px, 100%);
  padding: 22px;
  border-radius: 50%;
  background: white;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.shop-logo-ring img { border-radius: 50%; }
.shop-sticker-note {
  position: absolute;
  bottom: 15px;
  left: 0;
  background: var(--navy);
  color: white;
  padding: 16px 22px;
  border-radius: 18px;
  max-width: 310px;
  font-weight: 800;
  transform: rotate(-2deg);
  box-shadow: var(--shadow);
}
.merch-benefits { background: var(--navy); color: white; }
.merch-benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.merch-benefit-grid > div { padding: 24px; text-align: center; border-right: 1px solid rgba(255,255,255,.12); }
.merch-benefit-grid > div:last-child { border-right: 0; }
.merch-benefit-grid strong, .merch-benefit-grid span { display:block; }
.merch-benefit-grid span { color: #c4d0d4; font-size: .9rem; }
.shop-heading { max-width: none; display: grid; grid-template-columns: 1fr .65fr; align-items: end; gap: 40px; }
.shop-filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 34px; }
.filter-chip {
  border: 1px solid var(--border);
  background: white;
  color: var(--navy);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  cursor: pointer;
}
.filter-chip.active, .filter-chip:hover { background: var(--navy); border-color: var(--navy); color: white; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
  border: 1px solid var(--border);
  background: white;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card.hidden-product { display:none; }
.product-visual {
  height: 290px;
  background: linear-gradient(145deg, #f6f0e4, #e4ece7);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.product-visual::after {
  content:"";
  position:absolute;
  width: 220px; height: 220px;
  border: 1px solid rgba(32,50,61,.12);
  border-radius: 50%;
}
.product-visual img { position: relative; z-index: 3; object-fit: cover; border-radius: 50%; }
.sticker-shape { width: 175px; height: 175px; border-radius: 50%; padding: 7px; background:white; box-shadow: 0 12px 28px rgba(32,50,61,.18); transform: rotate(-5deg); z-index:2; }
.sticker-shape img { width:100%; height:100%; }
.hat-mockup { padding-top: 28px; }
.hat-crown { width: 190px; height: 120px; background:#435447; border-radius: 95px 95px 20px 20px; position:relative; z-index:2; box-shadow: inset 0 -12px 0 rgba(0,0,0,.08); display:grid; place-items:center; }
.hat-crown img { width:78px; height:78px; border:3px solid white; }
.hat-bill { width: 175px; height: 55px; border-radius: 0 0 90% 90%; background:#314137; position:absolute; top:180px; left:50%; transform:translateX(-25%) rotate(-4deg); z-index:1; }
.koozie-body { width:145px; height:185px; background:#46594a; border-radius: 12px 12px 24px 24px; display:grid; place-items:center; z-index:2; box-shadow: inset 0 8px 0 rgba(255,255,255,.12), 0 16px 25px rgba(32,50,61,.15); }
.koozie-body img { width:90px; height:90px; border:3px solid white; }
.tumbler-body { width:120px; height:205px; background:#f8f8f5; border:1px solid #cbd3d0; border-radius:12px 12px 30px 30px; display:grid; place-items:center; z-index:2; box-shadow: 0 16px 24px rgba(32,50,61,.12); }
.tumbler-lid { width:126px; height:25px; background:#24353d; border-radius:8px; position:absolute; top:35px; z-index:4; }
.tumbler-body img { width:80px; height:80px; }
.shirt-body { width:190px; height:195px; background:#405348; clip-path: polygon(24% 0, 40% 10%, 60% 10%, 76% 0, 100% 18%, 84% 42%, 73% 34%, 73% 100%, 27% 100%, 27% 34%, 16% 42%, 0 18%); display:grid; place-items:center; z-index:2; position:relative; filter: drop-shadow(0 12px 12px rgba(32,50,61,.15)); }
.kids-shirt .shirt-body { width:165px; height:175px; background:#596e5d; }
.shirt-body img { width:78px; height:78px; border:3px solid white; }
.sweatshirt-body { width:205px; height:190px; background:#364b40; clip-path: polygon(25% 12%, 40% 4%, 60% 4%, 75% 12%, 100% 28%, 86% 50%, 76% 41%, 75% 100%, 25% 100%, 24% 41%, 14% 50%, 0 28%); position:relative; z-index:2; display:grid; place-items:center; }
.kids-sweatshirt .sweatshirt-body { width:180px; height:175px; background:#697a69; }
.sweatshirt-body .hood { width:75px; height:60px; border-radius:50% 50% 15px 15px; border:12px solid rgba(0,0,0,.12); position:absolute; top:4px; left:50%; transform:translateX(-50%); }
.sweatshirt-body img { width:78px; height:78px; margin-top:25px; border:3px solid white; }
.product-info { padding: 21px; display:flex; flex-direction:column; flex:1; }
.product-type { margin:0 0 4px; color:var(--peach); font-size:.72rem; letter-spacing:.12em; font-weight:900; }
.product-info h3 { margin:0 0 8px; font-family:Georgia, "Times New Roman", serif; color:var(--navy); font-size:1.38rem; line-height:1.15; }
.product-description { color:var(--muted); font-size:.93rem; margin:0 0 16px; }
.product-option-row { margin: auto 0 16px; }
.product-option-row.two-options { display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.product-option-row label { display:block; color:var(--navy); font-size:.76rem; font-weight:900; }
.variant-select { width:100%; margin-top:4px; padding:9px 8px; border:1px solid var(--border); border-radius:9px; background:white; color:var(--text); }
.product-bottom { display:flex; justify-content:space-between; align-items:center; gap:12px; margin-top:auto; }
.product-price { color:var(--navy); font-size:1.12rem; }
.add-cart { border:0; background:var(--navy); color:white; border-radius:999px; padding:10px 13px; font-weight:900; cursor:pointer; }
.add-cart:hover { background:var(--green-dark); }
.merch-callout { background:var(--cream); padding:70px 0; }
.merch-callout-grid { display:grid; grid-template-columns:230px 1fr; gap:50px; align-items:center; max-width:900px; }
.merch-callout img { border-radius:50%; box-shadow:var(--shadow); }
.merch-callout h2 { margin:0 0 12px; font-family:Georgia, "Times New Roman", serif; color:var(--navy); font-size:clamp(2.2rem,4vw,3.4rem); }
.merch-callout p:not(.eyebrow) { color:var(--muted); }
.cart-drawer { position:fixed; inset:0; z-index:100; pointer-events:none; visibility:hidden; }
.cart-drawer.open { pointer-events:auto; visibility:visible; }
.cart-backdrop { position:absolute; inset:0; background:rgba(19,32,38,.55); opacity:0; transition:opacity .2s ease; }
.cart-drawer.open .cart-backdrop { opacity:1; }
.cart-panel { position:absolute; right:0; top:0; width:min(430px, 94vw); height:100%; background:white; transform:translateX(100%); transition:transform .25s ease; display:flex; flex-direction:column; box-shadow:-20px 0 40px rgba(0,0,0,.15); }
.cart-drawer.open .cart-panel { transform:translateX(0); }
.cart-header { display:flex; justify-content:space-between; align-items:flex-start; padding:25px; border-bottom:1px solid var(--border); }
.cart-header h2 { margin:0; font-family:Georgia, "Times New Roman", serif; color:var(--navy); }
.cart-close { border:0; background:transparent; font-size:2rem; cursor:pointer; color:var(--navy); }
.cart-items { padding:20px; overflow:auto; flex:1; }
.empty-cart { color:var(--muted); text-align:center; margin-top:60px; }
.cart-item { display:grid; grid-template-columns:1fr auto; gap:12px; padding:15px 0; border-bottom:1px solid var(--border); }
.cart-item strong { color:var(--navy); display:block; }
.cart-item small { color:var(--muted); }
.cart-item-actions { display:flex; align-items:center; gap:8px; margin-top:8px; }
.cart-item-actions button { width:28px; height:28px; border:1px solid var(--border); background:white; border-radius:50%; cursor:pointer; }
.remove-item { color:#a05043; border:0 !important; width:auto !important; border-radius:0 !important; font-size:.78rem; }
.cart-summary { padding:22px; border-top:1px solid var(--border); background:#faf9f5; }
.cart-summary > div { display:flex; justify-content:space-between; color:var(--navy); font-size:1.2rem; margin-bottom:15px; }
.checkout-button { width:100%; border:0; background:var(--peach); color:white; border-radius:999px; padding:14px; font-weight:900; font-size:1rem; cursor:pointer; }
.cart-summary p { color:var(--muted); font-size:.78rem; text-align:center; margin:10px 0 0; }
@media (max-width: 1100px) { .product-grid { grid-template-columns:repeat(3,1fr); } }
@media (max-width: 950px) {
  .shop-hero-grid, .shop-heading { grid-template-columns:1fr; }
  .shop-logo-stage { min-height:auto; }
  .shop-sticker-note { position:relative; bottom:auto; margin-top:-20px; }
  .merch-benefit-grid { grid-template-columns:1fr; }
  .merch-benefit-grid > div { border-right:0; border-bottom:1px solid rgba(255,255,255,.12); }
  .product-grid { grid-template-columns:repeat(2,1fr); }
  .merch-callout-grid { grid-template-columns:180px 1fr; }
}
@media (max-width: 640px) {
  .shop-hero { padding-top:50px; }
  .shop-hero h1 { font-size:3.2rem; }
  .product-grid { grid-template-columns:1fr; }
  .merch-callout-grid { grid-template-columns:1fr; text-align:center; }
  .merch-callout-grid img { width:180px; margin:auto; }
  .product-visual { height:260px; }
  .cart-button { width:100%; }
}
