:root {
  --ink: #111827;
  --muted: #697386;
  --paper: #fbfaf6;
  --white: #ffffff;
  --line: #e7e0d6;
  --green: #315f55;
  --gold: #c69243;
  --rose: #a84b56;
  --clay: #e7d3bf;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 8%, rgba(198, 146, 67, 0.09), transparent 28%),
    radial-gradient(circle at 92% 30%, rgba(49, 95, 85, 0.08), transparent 30%);
  pointer-events: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  min-height: 98px;
  padding: 10px clamp(18px, 4vw, 62px);
  background: rgba(251, 250, 246, 0.9);
  border-bottom: 1px solid rgba(231, 224, 214, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 148px;
  height: 82px;
  overflow: hidden;
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.nav {
  justify-self: center;
  display: flex;
  gap: 30px;
  color: #3e4654;
  font-size: 14px;
  font-weight: 700;
}

.nav a,
.footer-links a {
  position: relative;
  transition: color 180ms ease;
}

.nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--green);
}

.nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid var(--ink);
}

.header-cta,
.button.primary {
  color: var(--white);
  background: var(--ink);
}

.header-cta,
.button {
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.16);
}

.button.secondary {
  background: transparent;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 4px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  min-height: calc(100vh - 98px);
  padding: clamp(36px, 6vw, 86px) clamp(18px, 5vw, 78px) 54px;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
}

.reveal-up {
  animation: fadeUp 900ms ease both;
}

.reveal-scale {
  animation: softScale 1000ms ease both 150ms;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.9;
}

.hero-text {
  max-width: 590px;
  color: #4c5564;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

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

.hero-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 24px 0 54px 9%;
  background: linear-gradient(135deg, #efe3d3, #d8c8b0 48%, #9eab9e);
  border-radius: 50%;
  transform: rotate(-8deg);
  translate: 0 calc(var(--scroll-shift, 0px) * -0.22);
}

.napkin-stack {
  position: relative;
  width: min(76vw, 520px);
  aspect-ratio: 1 / 1;
  z-index: 1;
}

.napkin {
  position: absolute;
  border: 1px solid rgba(17, 24, 39, 0.14);
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.08)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.25) 0 2px, transparent 2px 9px),
    var(--white);
  animation: floatingNapkin 5.5s ease-in-out infinite;
}

.napkin::after {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(17, 24, 39, 0.07);
}

.napkin-one {
  inset: 18% 8% 8% 18%;
  transform: rotate(11deg);
}

.napkin-two {
  inset: 9% 18% 19% 7%;
  background-color: #d8e6de;
  transform: rotate(-9deg);
  animation-delay: 300ms;
}

.napkin-three {
  inset: 25% 25% 25% 25%;
  background-color: #f2dfc4;
  transform: rotate(43deg);
  animation-delay: 650ms;
}

.hero-badge {
  position: absolute;
  right: 3%;
  bottom: 12%;
  z-index: 2;
  width: 174px;
  padding: 22px;
  color: var(--white);
  background: var(--green);
  box-shadow: var(--shadow);
}

.hero-badge strong {
  display: block;
  font-size: 34px;
  margin-bottom: 4px;
}

.hero-badge span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.4;
}

.brand-marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  min-height: 74px;
  padding: 0 clamp(28px, 6vw, 82px);
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.marquee-track span:nth-child(odd) {
  color: #f0cf86;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: var(--white);
}

.feature-strip article {
  min-height: 270px;
  padding: clamp(26px, 4vw, 48px);
  border-right: 1px solid var(--line);
  transition: transform 260ms ease, background 260ms ease;
  will-change: transform;
}

.feature-strip article:hover,
.product-card:hover,
.founder-card:hover {
  transform: translateY(-6px);
}

.feature-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.45 / 1;
  margin-bottom: 28px;
  object-fit: cover;
  object-position: center 66%;
  border: 1px solid var(--line);
  transition: transform 600ms ease, filter 600ms ease;
}

.feature-strip article:hover .feature-image,
.product-card:hover .product-photo {
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.03);
}

.feature-strip article:last-child {
  border-right: 0;
}

.feature-strip span,
.product-body p {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.feature-strip h2,
.product-body h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.08;
  margin-bottom: 18px;
}

.feature-strip p,
.intro p,
.detail-copy p,
.vision p,
.contact p,
.footer p {
  color: var(--muted);
  line-height: 1.75;
}

.section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(60px, 9vw, 120px) clamp(18px, 5vw, 78px);
}

.section h2,
.detail-copy h2,
.vision h2,
.founder-heading h2,
.contact h2 {
  max-width: 850px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  margin-bottom: 22px;
}

.intro > p {
  align-self: end;
  max-width: 680px;
  font-size: 17px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.product-card {
  background: var(--white);
  transition: transform 260ms ease, box-shadow 260ms ease;
  overflow: hidden;
}

.product-visual {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: #f4efe8;
}

.product-photo {
  display: block;
  width: 100%;
  object-fit: cover;
  transition: transform 650ms ease, filter 650ms ease;
}

.cocktail-photo {
  object-position: center 68%;
}

.dinner-feature,
.dinner-photo {
  object-position: center 62%;
}

.pocket-feature,
.pocket-photo {
  object-position: center center;
}

img.product-visual::before,
img.product-visual::after {
  display: none;
}

.product-visual::before,
.product-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(17, 24, 39, 0.12);
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.12);
}

.cocktail::before {
  width: 150px;
  height: 150px;
  left: 50%;
  top: 24%;
  background: #f7f5ef;
  transform: translateX(-50%) rotate(18deg);
}

.cocktail::after {
  width: 120px;
  height: 120px;
  left: 42%;
  top: 36%;
  background: #d5e6dd;
  transform: rotate(-13deg);
}

.dinner::before {
  width: 230px;
  height: 230px;
  left: 18%;
  top: 18%;
  background: #faf7f0;
  transform: rotate(-9deg);
}

.dinner::after {
  width: 210px;
  height: 210px;
  left: 31%;
  top: 26%;
  background: #e7d0a3;
  transform: rotate(12deg);
}

.pocket::before {
  width: 210px;
  height: 248px;
  left: 28%;
  top: 14%;
  background: #fafafa;
  transform: rotate(2deg);
}

.pocket::after {
  width: 132px;
  height: 190px;
  left: 43%;
  top: 28%;
  background: linear-gradient(90deg, #cfcfcf 0 8px, transparent 8px 26px, #cfcfcf 26px 34px, transparent 34px 52px, #cfcfcf 52px 60px, transparent 60px);
  border: 0;
  box-shadow: none;
}

.accent-green .product-visual {
  background: #e6efe9;
}

.accent-gold .product-visual {
  background: #f2e8d8;
}

.accent-rose .product-visual {
  background: #f1e4e5;
}

.product-body {
  padding: 30px;
}

.product-body span {
  display: block;
  color: var(--muted);
  margin-bottom: 20px;
}

.product-body a {
  font-weight: 900;
  color: var(--green);
}

.detail-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  padding: clamp(60px, 9vw, 120px) clamp(18px, 5vw, 78px);
  background: #17201d;
  color: var(--white);
}

.category-hook {
  padding: clamp(70px, 11vw, 150px) clamp(18px, 9vw, 150px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.92), rgba(49, 95, 85, 0.92)),
    url("assets/40x40-dinner-napkin.png") center / cover;
  background-position: center, center calc(50% + var(--scroll-shift, 0px));
}

.category-hook h2 {
  max-width: 980px;
  margin-bottom: 24px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.98;
}

.category-hook p:last-child {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.72;
}

.detail-image {
  position: relative;
  min-height: 450px;
  background: #26372f;
  overflow: hidden;
}

.detail-image::after {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.16), transparent 70%);
  translate: calc(var(--scroll-shift, 0px) * 0.42) 0;
  pointer-events: none;
}

.folded-piece {
  position: absolute;
  width: 58%;
  aspect-ratio: 1 / 1.18;
  left: 18%;
  top: 14%;
  background:
    linear-gradient(115deg, transparent 49%, rgba(17, 24, 39, 0.12) 50%, transparent 51%),
    linear-gradient(135deg, #f8f4ec, #d8cab4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.26);
  transform: rotate(-7deg);
  animation: foldedDrift 6s ease-in-out infinite;
}

.cutlery-line {
  position: absolute;
  top: 24%;
  width: 11px;
  height: 245px;
  background: #d9d9d9;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.line-one,
.line-two {
  animation: cutleryGlint 3.8s ease-in-out infinite;
}

.line-two {
  animation-delay: 500ms;
}

.line-one {
  right: 23%;
}

.line-two {
  right: 17%;
  height: 222px;
  top: 29%;
}

.detail-copy p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
}

.detail-copy .button {
  margin-top: 20px;
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.all-products {
  align-items: start;
}

.sku-list {
  display: grid;
  gap: 14px;
}

.sku-list div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.sku-list strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
}

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

.vision {
  padding: clamp(62px, 10vw, 130px) clamp(18px, 9vw, 150px);
  background: var(--clay);
}

.vision p {
  max-width: 850px;
  font-size: 18px;
}

.email-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--green);
  font-weight: 900;
}

.founders,
.contact {
  padding: clamp(60px, 9vw, 120px) clamp(18px, 5vw, 78px);
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
  border: 1px solid var(--line);
}

.founder-card {
  padding: clamp(30px, 5vw, 52px);
  background: var(--white);
}

.founder-photo {
  display: block;
  width: 132px;
  height: 132px;
  margin-bottom: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.14);
}

.founder-card h3 {
  margin-bottom: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
}

.founder-card p {
  margin-bottom: 18px;
  color: var(--muted);
}

.founder-card a {
  color: var(--green);
  font-weight: 900;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(28px, 7vw, 90px);
  background: var(--white);
  border-top: 1px solid var(--line);
}

form {
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 15px 14px;
  font: inherit;
  background: var(--paper);
  color: var(--ink);
}

textarea {
  resize: vertical;
}

form .button {
  width: max-content;
  cursor: pointer;
}

.contact-panel {
  padding: clamp(28px, 5vw, 48px);
  background: var(--paper);
  border: 1px solid var(--line);
}

.contact-panel h3 {
  margin-bottom: 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
}

.contact-panel .button {
  width: max-content;
  margin-top: 14px;
}

.contact-note {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 36px clamp(18px, 5vw, 78px);
  color: rgba(255, 255, 255, 0.82);
  background: var(--ink);
}

.footer .brand-mark {
  color: var(--ink);
  background: var(--white);
}

.footer-brand {
  width: 150px;
  padding: 0;
  background: rgba(255, 255, 255, 0.94);
}

.footer p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-email {
  display: inline-flex;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

[data-animate] {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 850ms ease, transform 850ms cubic-bezier(.2, .8, .2, 1);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes softScale {
  from {
    opacity: 0;
    transform: scale(.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes floatingNapkin {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}

@keyframes foldedDrift {
  0%,
  100% {
    transform: rotate(-7deg) translateY(0);
  }
  50% {
    transform: rotate(-5deg) translateY(-14px);
  }
}

@keyframes cutleryGlint {
  0%,
  100% {
    filter: brightness(1);
  }
  45% {
    filter: brightness(1.35);
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  font-weight: 800;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .site-header.menu-open .nav {
    display: grid;
    position: absolute;
    left: 18px;
    right: 18px;
    top: 86px;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-header.menu-open .nav a {
    position: relative;
    padding: 18px;
    border-bottom: 1px solid var(--line);
  }

  .hero,
  .section,
  .detail-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-stage {
    min-height: 430px;
  }

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

  .marquee-track span {
    min-height: 62px;
    padding-inline: 26px;
  }

  .feature-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-visual {
    height: 280px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 70px;
  }

  .brand {
    width: 128px;
    height: 74px;
  }

  .hero {
    padding-top: 34px;
  }

  h1 {
    font-size: 58px;
  }

  .hero-actions {
    display: grid;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .hero-stage {
    min-height: 360px;
  }

  .hero-badge {
    right: 0;
    bottom: 7%;
  }

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

  .sku-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
