:root {
  --soil: #4b3326;
  --bark: #2d211b;
  --leaf: #274c37;
  --moss: #6f8b55;
  --papaya: #e88a34;
  --lemon: #e0c94f;
  --river: #6f8f96;
  --cream: #f7f1e7;
  --paper: #fffaf1;
  --ink: #211a16;
  --muted: #75685d;
  --line: rgba(75, 51, 38, 0.18);
  --shadow: 0 24px 70px rgba(44, 31, 22, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 74px;
  color: var(--ink);
  background: var(--cream);
  font-family: "Noto Sans TC", system-ui, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fffaf1;
  background: linear-gradient(180deg, rgba(24, 18, 13, 0.72), rgba(24, 18, 13, 0));
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 250, 241, 0.58);
  border-radius: 50%;
  font-family: "Noto Serif TC", serif;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: -3px;
  color: rgba(255, 250, 241, 0.72);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  gap: clamp(12px, 2vw, 26px);
  font-size: 15px;
  font-weight: 700;
}

.nav a {
  opacity: 0.86;
}

.nav a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  color: #fffaf1;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(24, 18, 13, 0.88), rgba(24, 18, 13, 0.38) 46%, rgba(24, 18, 13, 0.08)),
    linear-gradient(0deg, rgba(24, 18, 13, 0.72), rgba(24, 18, 13, 0.05) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 22vh clamp(20px, 7vw, 92px) 180px;
}

.eyebrow,
.section-kicker,
.tag {
  margin: 0 0 14px;
  color: var(--papaya);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
section h2 {
  margin: 0;
  font-family: "Noto Serif TC", serif;
  font-weight: 900;
  line-height: 1.14;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(42px, 6.2vw, 86px);
}

.hero h1 span {
  display: block;
}

.hero-copy {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(255, 250, 241, 0.88);
  font-size: clamp(17px, 1.6vw, 22px);
}

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

.hero-proof span {
  border: 1px solid rgba(255, 250, 241, 0.28);
  border-radius: 999px;
  padding: 8px 12px;
  color: #fffaf1;
  background: rgba(24, 18, 13, 0.28);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 900;
  text-align: center;
}

.button.primary,
.button.compact {
  color: #211a16;
  background: var(--papaya);
}

.button.ghost {
  border: 1px solid rgba(255, 250, 241, 0.46);
  color: #fffaf1;
  background: rgba(255, 250, 241, 0.08);
}

.button.compact {
  min-height: 42px;
  white-space: nowrap;
}

.hero-strip {
  position: absolute;
  z-index: 3;
  right: clamp(18px, 4vw, 56px);
  bottom: 28px;
  left: clamp(18px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 250, 241, 0.28);
}

.hero-strip.hero-strip-six {
  grid-template-columns: repeat(6, 1fr);
}

.hero-strip a {
  padding: 20px 18px 6px 0;
}

.hero-strip span {
  display: block;
  color: rgba(255, 250, 241, 0.54);
  font-size: 12px;
}

.hero-strip strong {
  display: block;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.2;
}

.hero-strip small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 250, 241, 0.68);
  font-size: 13px;
  line-height: 1.35;
}

section {
  padding: clamp(70px, 10vw, 130px) clamp(20px, 6vw, 84px);
}

.conversion-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: clamp(32px, 5vw, 54px);
  padding-bottom: clamp(32px, 5vw, 54px);
  background: var(--paper);
}

.conversion-strip div {
  border: 1px solid rgba(75, 51, 38, 0.14);
  border-radius: 8px;
  padding: 20px;
  background: rgba(247, 241, 231, 0.72);
}

.conversion-strip span {
  color: var(--papaya);
  font-size: 13px;
  font-weight: 900;
}

.conversion-strip strong {
  display: block;
  margin-top: 6px;
  color: var(--soil);
  font-size: 22px;
  line-height: 1.3;
}

.conversion-strip p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.55;
}

.intro-section,
.produce-section,
.writing-section {
  background: var(--paper);
}

.intro-grid,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

section h2 {
  font-size: clamp(34px, 5vw, 64px);
}

.intro-copy,
.section-heading > p {
  color: var(--muted);
  font-size: 18px;
}

.need-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.need-grid article {
  border: 1px solid rgba(75, 51, 38, 0.14);
  border-radius: 8px;
  padding: 22px;
  background: rgba(247, 241, 231, 0.72);
}

.need-grid span {
  color: var(--papaya);
  font-size: 13px;
  font-weight: 900;
}

.need-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--soil);
  font-size: 22px;
  line-height: 1.3;
}

.need-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.55;
}

.farm-section {
  color: #fffaf1;
  background:
    linear-gradient(135deg, rgba(39, 76, 55, 0.94), rgba(75, 51, 38, 0.96)),
    var(--leaf);
}

.farm-section .section-heading > p {
  color: rgba(255, 250, 241, 0.72);
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 58px;
}

.principles article,
.principle-card,
.produce-card,
.writing-list article,
.writing-list a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.76);
}

.principles article,
.principle-card {
  min-height: 250px;
  border-color: rgba(255, 250, 241, 0.2);
  background: rgba(255, 250, 241, 0.08);
}

.principle-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.principle-card:hover,
.principle-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(240, 210, 73, 0.78);
  background: rgba(255, 250, 241, 0.14);
  outline: none;
}

.principle-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 250, 241, 0.18);
}

.principle-card div {
  padding: 22px 24px 26px;
}

.principles article {
  padding: 28px;
}

.principles span {
  color: var(--lemon);
  font-weight: 900;
}

.principles h3,
.produce-card h3,
.writing-list h3 {
  margin: 14px 0 8px;
  font-size: 25px;
  line-height: 1.25;
}

.principles p {
  color: rgba(255, 250, 241, 0.76);
}

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

.produce-card {
  overflow: hidden;
  box-shadow: var(--shadow);
}

.line-hint {
  max-width: 680px;
  margin: 18px 0 0;
  border-left: 4px solid var(--papaya);
  padding: 10px 0 10px 14px;
  color: var(--soil);
  background: rgba(255, 250, 241, 0.62);
  font-weight: 900;
}

.line-status {
  min-height: 30px;
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  white-space: pre-line;
}

.selection-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  border: 1px solid rgba(75, 51, 38, 0.16);
  border-radius: 8px;
  padding: 16px 18px;
  background: rgba(255, 250, 241, 0.82);
  box-shadow: 0 12px 30px rgba(44, 31, 22, 0.08);
}

.selection-actions strong {
  display: block;
  color: var(--soil);
  font-size: 18px;
  line-height: 1.35;
}

.selection-actions span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.55;
}

.line-order-panel {
  display: grid;
  gap: 14px;
  max-width: 720px;
  margin-top: 18px;
  border: 1px solid rgba(75, 51, 38, 0.16);
  border-radius: 8px;
  padding: 18px;
  background: #fffaf1;
  box-shadow: 0 16px 42px rgba(44, 31, 22, 0.12);
}

.line-order-panel[hidden] {
  display: none;
}

.line-order-panel h3 {
  margin: 0 0 6px;
  color: var(--soil);
  font-size: 24px;
  line-height: 1.3;
}

.line-order-panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.line-order-body {
  display: block;
}

.line-oa-card {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  align-items: center;
  margin-top: -2px;
  border: 1px solid rgba(75, 51, 38, 0.16);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(247, 241, 231, 0.7);
}

.line-oa-card strong {
  color: var(--soil);
  font-size: 14px;
  line-height: 1.35;
}

.line-oa-card span {
  color: var(--papaya);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
}

.line-oa-card .text-link {
  margin-left: auto;
}

.line-order-panel textarea {
  width: 100%;
  min-height: 148px;
  border: 1px solid rgba(75, 51, 38, 0.2);
  border-radius: 8px;
  padding: 14px;
  color: var(--ink);
  background: rgba(247, 241, 231, 0.7);
  font: inherit;
  font-weight: 700;
  line-height: 1.65;
  resize: vertical;
}

.order-form {
  display: grid;
  gap: 12px;
}

.payment-method {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(75, 51, 38, 0.16);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 250, 241, 0.86);
}

.payment-method span {
  color: var(--soil);
  font-size: 14px;
  font-weight: 900;
}

.payment-method p {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.6;
}

.order-form label {
  display: grid;
  gap: 6px;
  color: var(--soil);
  font-weight: 900;
}

.order-form label span {
  font-size: 14px;
}

.required-mark {
  margin-left: 6px;
  border-radius: 999px;
  padding: 2px 7px;
  color: #fffaf1;
  background: var(--papaya);
  font-style: normal;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.order-form input,
.order-form textarea {
  width: 100%;
  border: 1px solid rgba(75, 51, 38, 0.2);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: rgba(247, 241, 231, 0.7);
  font: inherit;
  font-weight: 700;
  line-height: 1.55;
}

.order-form input:focus,
.order-form textarea:focus {
  outline: 3px solid rgba(232, 138, 52, 0.22);
  border-color: var(--papaya);
}

.line-order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.line-order-actions .button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.order-confirmation {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(78, 111, 64, 0.28);
  border-radius: 8px;
  padding: 14px;
  background: rgba(78, 111, 64, 0.08);
}

.order-confirmation[hidden] {
  display: none;
}

.order-confirmation strong {
  display: block;
  color: var(--leaf);
  font-size: 18px;
  line-height: 1.35;
}

.order-confirmation span {
  display: block;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.55;
}

.order-confirmation pre {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  background: rgba(255, 250, 241, 0.86);
  font: inherit;
  font-weight: 800;
  line-height: 1.6;
}

.payment-step {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(232, 138, 52, 0.28);
  border-radius: 8px;
  padding: 14px;
  background: rgba(232, 138, 52, 0.08);
}

.payment-step[hidden] {
  display: none;
}

.payment-step strong {
  display: block;
  color: var(--soil);
  font-size: 18px;
  line-height: 1.35;
}

.payment-step span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.55;
}

.button.line-open {
  border: 1px solid rgba(75, 51, 38, 0.22);
  color: var(--soil);
  background: rgba(247, 241, 231, 0.88);
}

.produce-card > div:last-child {
  padding: 24px;
}

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

.produce-photo-link {
  position: relative;
  display: block;
  overflow: hidden;
}

.produce-photo-link::after {
  content: "點選訂購";
  position: absolute;
  right: 12px;
  bottom: 12px;
  border-radius: 999px;
  padding: 6px 12px;
  color: #211a16;
  background: rgba(255, 250, 241, 0.9);
  font-size: 13px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.produce-photo-link:hover::after,
.produce-photo-link:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.produce-photo-link:hover .produce-photo,
.produce-photo-link:focus-visible .produce-photo {
  transform: scale(1.02);
}

.product-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0 18px;
}

.product-details div {
  border: 1px solid rgba(75, 51, 38, 0.15);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(247, 241, 231, 0.72);
}

.product-details dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.product-details dd {
  margin: 3px 0 0;
  color: var(--soil);
  font-size: 18px;
  font-weight: 900;
}

.price-menu {
  margin: 20px 0 16px;
  border: 1px solid rgba(75, 51, 38, 0.15);
  border-radius: 8px;
  padding: 14px;
  background: rgba(247, 241, 231, 0.72);
}

.price-menu + .price-menu {
  margin-top: -6px;
}

.price-menu.secondary {
  background: rgba(255, 250, 241, 0.68);
}

.price-menu h4 {
  margin: 0 0 10px;
  color: var(--soil);
  font-size: 16px;
  line-height: 1.35;
}

.price-menu ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-menu li {
  border-bottom: 1px solid rgba(75, 51, 38, 0.1);
  padding-bottom: 8px;
}

.price-menu li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.price-menu span {
  color: var(--muted);
  font-weight: 800;
}

.price-menu strong {
  color: var(--soil);
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.price-menu p {
  margin: 10px 0 0;
  font-size: 14px;
}

.choice-link {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 10px;
  align-items: center;
  border-radius: 7px;
  margin: -4px;
  padding: 6px 4px;
  transition: background 160ms ease, color 160ms ease;
}

.choice-link::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid rgba(75, 51, 38, 0.34);
  border-radius: 50%;
  background: #fffaf1;
  box-shadow: inset 0 0 0 5px #fffaf1;
}

.choice-link:hover,
.choice-link:focus-visible,
.choice-link.is-selected {
  background: rgba(232, 138, 52, 0.1);
}

.choice-link:hover::before,
.choice-link:focus-visible::before,
.choice-link.is-selected::before {
  border-color: var(--papaya);
  background: var(--papaya);
}

.choice-link.is-selected {
  color: var(--soil);
}

.compact-menu {
  margin-top: 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--soil);
  font-weight: 900;
  border-bottom: 2px solid var(--papaya);
  line-height: 1.45;
}

.produce-visual {
  min-height: 180px;
  background:
    radial-gradient(circle at 26% 36%, rgba(255, 250, 241, 0.72) 0 7%, transparent 8%),
    radial-gradient(circle at 63% 58%, var(--papaya) 0 18%, transparent 19%),
    linear-gradient(135deg, var(--moss), var(--leaf));
}

.produce-photo {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: var(--cream);
  transition: transform 180ms ease;
}

.produce-photo-small {
  height: 190px;
}

.produce-visual.lemon {
  background:
    radial-gradient(circle at 36% 50%, var(--lemon) 0 18%, transparent 19%),
    radial-gradient(circle at 62% 38%, #f4e17d 0 12%, transparent 13%),
    linear-gradient(135deg, #849d5f, #47643b);
}

.produce-visual.cucumber {
  background:
    linear-gradient(100deg, transparent 0 22%, rgba(255, 250, 241, 0.32) 23% 27%, transparent 28%),
    radial-gradient(circle at 70% 35%, #8db572 0 11%, transparent 12%),
    linear-gradient(135deg, #496d48, #223d30);
}

.music-section {
  display: grid;
  grid-template-columns: minmax(290px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  color: #fffaf1;
  background:
    radial-gradient(circle at 82% 12%, rgba(232, 138, 52, 0.22), transparent 34%),
    linear-gradient(135deg, #171c19, #263a35 55%, #4b3326);
}

.section-kicker.light {
  color: var(--lemon);
}

.music-copy p:not(.section-kicker) {
  color: rgba(255, 250, 241, 0.76);
  font-size: 18px;
}

.light-button {
  margin-top: 18px;
  color: #211a16;
  background: var(--lemon);
}

.video-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.music-media {
  display: grid;
  gap: 18px;
}

.album-order {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) 1fr;
  gap: 18px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 8px;
  color: #fffaf1;
  background: rgba(255, 250, 241, 0.08);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.album-order:hover,
.album-order:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(240, 210, 73, 0.82);
  background: rgba(255, 250, 241, 0.12);
}

.album-order img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.album-order span {
  display: grid;
  gap: 5px;
  padding-right: 18px;
}

.album-order strong {
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.25;
}

.album-order small {
  color: var(--lemon);
  font-weight: 900;
}

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

.writing-list article,
.writing-list a {
  padding: 28px;
}

.writing-list a {
  color: inherit;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.writing-list a:hover,
.writing-list a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(232, 138, 52, 0.42);
  box-shadow: 0 16px 34px rgba(44, 31, 22, 0.1);
  outline: none;
}

.writing-list p {
  margin: 0;
  color: var(--papaya);
  font-weight: 900;
}

.writing-list span {
  color: var(--muted);
}

.writing-list .offer-card h3 {
  margin-top: 10px;
  font-size: clamp(34px, 5vw, 46px);
  line-height: 1;
}

.writing-list .offer-card ul {
  display: grid;
  gap: 6px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
}

.offer-button {
  width: 100%;
  margin-top: 22px;
  border: 0;
  color: #211a16;
  background: var(--papaya);
  cursor: pointer;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 6vw, 84px);
  color: #fffaf1;
  background: var(--soil);
}

.contact-actions {
  display: grid;
  gap: 14px;
}

.contact-actions a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: 8px;
  padding: 18px 20px;
  background: rgba(255, 250, 241, 0.08);
}

.contact-actions span {
  color: rgba(255, 250, 241, 0.64);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(20px, 6vw, 84px);
  color: rgba(255, 250, 241, 0.7);
  background: #211a16;
}

.sticky-cta {
  position: fixed;
  z-index: 30;
  right: clamp(14px, 4vw, 42px);
  bottom: 14px;
  display: flex;
  gap: 8px;
  border: 1px solid rgba(75, 51, 38, 0.18);
  border-radius: 999px;
  padding: 8px;
  background: rgba(255, 250, 241, 0.92);
  box-shadow: 0 14px 36px rgba(44, 31, 22, 0.2);
  backdrop-filter: blur(14px);
}

.sticky-cta a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 16px;
  color: #211a16;
  background: var(--papaya);
  font-weight: 900;
  line-height: 1.2;
}

.sticky-cta a:last-child {
  color: var(--soil);
  background: rgba(75, 51, 38, 0.1);
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    background: rgba(24, 18, 13, 0.86);
  }

  .nav {
    max-width: 330px;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px 14px;
    font-size: 13px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 30px;
  }

  .hero-content {
    padding-top: 160px;
    padding-bottom: 140px;
  }

  .hero h1 {
    max-width: 680px;
    font-size: clamp(40px, 9vw, 68px);
  }

  .hero-strip,
  .conversion-strip,
  .need-grid,
  .intro-grid,
  .section-heading,
  .principles,
  .produce-grid,
  .music-section,
  .writing-list,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-strip {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin: -98px 20px 0;
    border-top-color: rgba(255, 250, 241, 0.22);
  }

  .hero-strip.hero-strip-six {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 12px;
  }

  .produce-photo {
    height: 220px;
    min-height: 220px;
  }

  .produce-photo-small {
    height: 220px;
    min-height: 220px;
  }

  .album-order {
    grid-template-columns: 1fr;
  }

  .album-order img {
    height: 210px;
  }

  .album-order span {
    padding: 0 18px 18px;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: absolute;
    align-items: center;
    padding: 14px 18px;
  }

  .brand small {
    display: none;
  }

  .nav {
    display: flex;
    max-width: 132px;
    justify-content: flex-end;
    gap: 8px;
  }

  .nav a:not([href="#produce"]):not([href="#contact"]) {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: 128px;
    padding-bottom: 118px;
    padding-inline: 20px;
  }

  .hero h1 {
    max-width: 360px;
    font-size: 40px;
    line-height: 1.18;
  }

  .hero-copy {
    margin-top: 20px;
    font-size: 17px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-strip {
    margin: -82px 16px 0;
  }

  .hero-strip a {
    padding: 14px 8px 10px 0;
  }

  .hero-strip strong {
    font-size: 20px;
  }

  .hero-strip small {
    font-size: 12px;
  }

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

  .contact-actions a {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  section {
    padding-inline: 20px;
  }

  .site-footer {
    flex-direction: column;
  }
}
