/* Rina's Traditions — Premium Launch System */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --ink: #11100e;
  --ink-soft: #1b1916;
  --cream: #f3efe7;
  --cream-bright: #fcf9f2;
  --paper: #e8e1d5;
  --red: #806e59;
  --red-dark: #40362d;
  --gold: #aa9675;
  --gold-light: #d7c9ad;
  --muted-dark: #686158;
  --muted-light: #bcb4a7;
  --line-dark: rgba(25, 21, 17, 0.14);
  --line-light: rgba(252, 249, 242, 0.16);
  --max-width: 1240px;
  --display: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --shadow-dark: 0 26px 70px rgba(0, 0, 0, 0.26);
  --shadow-light: 0 20px 50px rgba(34, 28, 21, 0.09);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--gold-light);
  color: var(--ink);
}

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

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

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

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

h1,
h2,
h3 {
  margin-bottom: 0.7rem;
  color: inherit;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3.4rem, 7vw, 7rem);
}

h2 {
  font-size: clamp(2.35rem, 4.7vw, 4.8rem);
}

h3 {
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

p {
  margin-bottom: 1rem;
}

.container {
  width: 100%;
  max-width: calc(var(--max-width) + 2rem);
  margin-inline: auto;
  padding-inline: 1rem;
}

.narrow {
  max-width: 940px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line-light);
  background: rgba(17, 16, 14, 0.96);
  color: var(--cream-bright);
  backdrop-filter: blur(18px);
}

.site-header::before {
  content: "SAPORI D'ITALIA  ·  2 PACKS OF FRESH PASTA (4OZ EACH, 8OZ TOTAL) + ANY SAUCE JAR — $20";
  display: block;
  padding: 0.48rem 1rem;
  border-bottom: 1px solid rgba(25, 21, 17, 0.12);
  background: var(--cream);
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding-block: 0.85rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: clamp(130px, 14vw, 185px);
  height: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  width: 100%;
}

.header-contact-link {
  display: none;
}

.site-nav {
  display: flex;
  width: 100%;
  gap: 0.15rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a,
.site-nav button {
  flex: 0 0 auto;
  padding: 0.55rem 0.72rem;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted-light);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a.active,
.site-nav button:hover {
  border-color: rgba(215, 201, 173, 0.48);
  background: rgba(252, 249, 242, 0.06);
  color: var(--cream-bright);
}

/* Shared Sections */
main {
  background: var(--cream);
}

.section {
  position: relative;
  padding-block: clamp(4.5rem, 9vw, 8.5rem);
  background: var(--cream);
}

.section-divider {
  border-top: 1px solid var(--line-dark);
}

main > .section:first-child {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 10%, rgba(215, 201, 173, 0.1), transparent 32%),
    linear-gradient(145deg, #11100e 0%, #1d1a16 100%);
  color: var(--cream-bright);
}

main > .section:first-child::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 35%, rgba(252, 249, 242, 0.035), transparent 28%),
    linear-gradient(90deg, transparent, rgba(252, 249, 242, 0.025), transparent);
}

.page-intro {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  max-width: 900px;
}

.page-intro h1 {
  max-width: 10ch;
  color: var(--cream-bright);
}

.eyebrow,
.meta,
.timeline-years,
.product-kicker,
.deal-kicker {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.21em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.35rem;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: currentColor;
}

main > .section:first-child .eyebrow {
  color: var(--gold-light);
}

.tagline,
.lead,
.intro {
  max-width: 47rem;
  color: inherit;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.lead {
  color: var(--muted-dark);
}

main > .section:first-child .lead {
  color: rgba(255, 250, 240, 0.7);
}

.content-block {
  padding: clamp(1.4rem, 3vw, 2.7rem);
  border-left: 1px solid var(--gold);
  background: var(--cream-bright);
  box-shadow: var(--shadow-light);
}

.content-block p {
  color: #423d37;
}

.content-block p:last-child {
  margin-bottom: 0;
}

/* Buttons and Links */
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.25rem;
  border: 1px solid var(--gold-light);
  background: var(--cream-bright);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--ink);
  color: var(--cream-bright);
  transform: translateY(-2px);
}

.button-secondary {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover {
  background: var(--ink);
  color: var(--cream-bright);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  border-bottom: 1px solid currentColor;
  color: inherit;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.6;
  text-transform: uppercase;
  transition: color 180ms ease, gap 180ms ease;
}

.text-link::after {
  content: "→";
}

.text-link:hover {
  gap: 0.85rem;
  color: var(--gold);
}

/* Media */
.media-box {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0.65rem;
  border: 1px solid rgba(215, 201, 173, 0.46);
  background: var(--ink);
  color: var(--cream-bright);
  text-align: center;
  box-shadow: var(--shadow-dark);
}

.media-box::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  border: 1px solid rgba(252, 249, 242, 0.26);
  pointer-events: none;
}

.media-box::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.14), transparent 27%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.24), transparent 35%);
}

.media-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.08);
  transition: filter 350ms ease, transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.media-box span {
  position: relative;
  z-index: 3;
}

/* Hero */
.hero {
  min-height: auto !important;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-copy h1 {
  max-width: 10ch;
  margin-bottom: 1.35rem;
  color: var(--cream-bright);
  font-size: clamp(3.5rem, 5.4vw, 5.4rem);
}

.hero-copy,
.pasta-reveal-copy,
.pasta-feature-copy {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.hero-copy p,
.page-intro p,
.pasta-reveal-copy p,
.pasta-feature-copy p {
  max-width: 100%;
  overflow-wrap: break-word;
}

.tagline {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  font-style: italic;
}

.intro {
  padding-left: 1rem;
  border-left: 1px solid var(--gold);
  color: rgba(255, 250, 240, 0.66);
  font-size: 0.95rem;
}

.hero-button-row {
  margin-top: 1.8rem;
}

.hero-media {
  min-height: clamp(370px, 56vw, 650px);
  transform: none;
}

/* About */
.two-column {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-story-grid,
.about-story-grid > * {
  min-width: 0;
}

.about-story-grid .content-block {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: clamp(2rem, 4vw, 3.4rem);
  border: 1px solid rgba(170, 150, 117, 0.72);
  background:
    radial-gradient(circle at 100% 0%, rgba(170, 150, 117, 0.14), transparent 32%),
    linear-gradient(145deg, var(--cream-bright), #f6f0e5);
  box-shadow:
    0 0 0 6px var(--cream),
    0 0 0 7px rgba(17, 16, 14, 0.18),
    0 24px 55px rgba(34, 28, 21, 0.12);
}

.about-story-grid .content-block::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--ink) 0 22%, var(--gold) 22% 78%, var(--ink) 78%);
}

.about-story-grid .content-block::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 34px;
  height: 34px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  opacity: 0.72;
}

.about-story-grid .content-block p:first-child {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.08rem;
  line-height: 1.62;
}

.about-story-grid .content-block p {
  overflow-wrap: break-word;
}

.about-story-grid .content-block p:first-child::first-letter {
  float: left;
  margin: 0.08em 0.12em 0 0;
  color: var(--red-dark);
  font-family: var(--display);
  font-size: 3.4em;
  font-weight: 700;
  line-height: 0.78;
}

.portrait-media {
  width: 100%;
  min-height: 520px;
  padding: 1.15rem;
  border-color: var(--gold);
  background:
    linear-gradient(145deg, var(--cream-bright), var(--paper));
  box-shadow:
    0 0 0 6px var(--ink),
    0 0 0 7px var(--gold),
    0 28px 65px rgba(34, 28, 21, 0.18);
  transform: none;
}

.portrait-media::before {
  inset: 17px;
  border-color: rgba(170, 150, 117, 0.82);
}

.portrait-media .media-image {
  inset: 1.15rem;
  width: calc(100% - 2.3rem);
  height: calc(100% - 2.3rem);
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08) sepia(0.04);
}

.family-timeline-section {
  overflow: hidden;
  border-top-color: var(--line-light);
  background:
    radial-gradient(circle at 50% -15%, rgba(215, 201, 173, 0.1), transparent 36%),
    linear-gradient(180deg, var(--ink), #171511);
  color: var(--cream-bright);
}

.family-timeline-heading {
  max-width: 780px;
  margin-bottom: 3rem;
}

.family-timeline-heading h2,
.family-timeline-heading .lead {
  color: var(--cream-bright);
}

.family-timeline {
  position: relative;
  display: grid;
  gap: 1px;
  background: rgba(255, 250, 240, 0.14);
}

.timeline-generation {
  position: relative;
  padding: 1.15rem;
  background: #11110f;
}

.timeline-years {
  margin-bottom: 0.8rem;
  color: var(--gold-light);
}

.timeline-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.timeline-image-frame {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 0.86;
  border: 1px solid rgba(226, 200, 143, 0.32);
  background: #24211d;
}

.timeline-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.65) sepia(0.12) contrast(1.05);
  transition: filter 350ms ease, transform 500ms ease;
}

.timeline-name {
  display: block;
  margin-top: 1.1rem;
  color: var(--cream-bright);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
}

.timeline-summary {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted-light);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.timeline-trigger:hover .timeline-image-frame img,
.timeline-trigger:focus-visible .timeline-image-frame img {
  filter: grayscale(0) sepia(0) contrast(1.06);
  transform: scale(1.035);
}

.timeline-trigger:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 6px;
}

/* Products */
.product-grid {
  display: grid;
  min-width: 0;
  gap: clamp(1rem, 2vw, 1.6rem);
  background: transparent;
}

.product-card {
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  padding: 0.8rem 0.8rem 1.4rem;
  border: 1px solid rgba(35, 27, 19, 0.1);
  border-radius: 16px;
  background: rgba(255, 250, 240, 0.94);
  box-shadow:
    0 18px 45px rgba(38, 27, 17, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.72) inset;
  transition:
    transform 250ms ease,
    border-color 250ms ease,
    box-shadow 250ms ease,
    background 250ms ease;
}

.product-card:hover {
  border-color: rgba(128, 110, 89, 0.28);
  background: var(--cream-bright);
  box-shadow:
    0 26px 65px rgba(38, 27, 17, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transform: translateY(-6px);
}

.product-card:hover .media-image {
  filter: saturate(1.05) contrast(1.1);
  transform: scale(1.03);
}

.product-card h2 {
  margin: 1.15rem 0 0.35rem;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.product-card:not(.pasta-feature-card) {
  border: 1px solid var(--gold);
  border-radius: 0;
}

.product-card:not(.pasta-feature-card) h2 {
  font-size: clamp(1.65rem, 2.7vw, 2.35rem);
  letter-spacing: -0.035em;
}

.product-card:not(.pasta-feature-card) .product-price {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.product-card:not(.pasta-feature-card) .product-media,
.product-card:not(.pasta-feature-card) .product-media::before {
  border-radius: 0;
}

.product-card p {
  color: var(--muted-dark);
  font-size: 0.9rem;
}

.product-price,
.feature-price-heading {
  margin-bottom: 0.7rem;
  color: var(--red);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-media {
  min-height: 360px;
  overflow: hidden;
  border-color: rgba(199, 161, 90, 0.55);
  border-radius: 11px;
  background: #161513;
  box-shadow: none;
}

.product-media::before {
  border-radius: 6px;
}

.product-media .media-image {
  object-position: center 48%;
}

.pasta-feature-card {
  display: grid;
  grid-column: 1 / -1;
  min-width: 0;
  gap: clamp(0.5rem, 2vw, 1.4rem);
  padding: clamp(0.8rem, 1.5vw, 1.25rem);
  border-color: rgba(199, 161, 90, 0.34);
  border-radius: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(215, 201, 173, 0.1), transparent 34%),
    linear-gradient(145deg, #151310, #0e0d0c);
  color: var(--cream-bright);
  box-shadow: 0 28px 70px rgba(24, 16, 10, 0.18);
}

.pasta-feature-card:hover {
  border-color: rgba(199, 161, 90, 0.58);
  background:
    radial-gradient(circle at 15% 10%, rgba(215, 201, 173, 0.14), transparent 36%),
    linear-gradient(145deg, #191713, #0e0d0c);
  box-shadow: 0 34px 85px rgba(24, 16, 10, 0.24);
}

.pasta-feature-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1.4rem, 5vw, 4.5rem);
}

.pasta-feature-card h2 {
  max-width: 11ch;
  margin-bottom: 1.1rem;
  color: var(--cream-bright);
  font-size: clamp(2.8rem, 4.8vw, 5rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.pasta-feature-card .individual-pasta-price {
  margin-bottom: 0.35rem;
  color: var(--cream-bright) !important;
  font-family: var(--display);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
}

.pasta-feature-card .feature-price-heading {
  margin-top: 0;
  color: var(--gold-light);
}

.product-kicker {
  color: var(--red);
}

.pasta-lead,
.availability-note {
  max-width: 35rem;
  color: rgba(255, 250, 240, 0.72) !important;
}

.availability-note {
  margin-top: 0.8rem;
  padding: 1rem;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.04);
}

.pasta-feature-card .text-link {
  color: var(--gold-light);
}

.pasta-media {
  min-height: 420px;
  border-color: var(--gold);
  border-radius: 0;
  box-shadow: none;
}

.pasta-media::before {
  border-radius: 0;
}

/* Pasta Launch */
.pasta-reveal-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at 80% 28%, rgba(170, 150, 117, 0.12), transparent 34%),
    linear-gradient(145deg, var(--cream-bright), var(--paper));
  color: var(--ink);
}

.pasta-reveal-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("images/swirl.png") center / 900px auto repeat;
  mix-blend-mode: multiply;
  opacity: 0.07;
}

.pasta-reveal-grid,
.pasta-detail-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.pasta-reveal-copy {
  position: relative;
  z-index: 2;
}

.pasta-reveal-copy h2 {
  max-width: 11ch;
  color: var(--ink);
  font-size: clamp(3.2rem, 5.5vw, 5.8rem);
  overflow-wrap: break-word;
}

.pasta-reveal-copy p:not(.eyebrow) {
  max-width: 38rem;
  color: var(--muted-dark);
}

.pasta-statement {
  color: var(--red-dark) !important;
  font-family: var(--display);
  font-size: clamp(1.6rem, 4vw, 3.3rem);
  font-style: italic;
  line-height: 1.05;
}

.pasta-graphic-media {
  width: min(100%, 560px);
  aspect-ratio: 0.9;
  justify-self: center;
}

.pasta-reveal-image,
.pasta-product-image {
  object-position: center;
}

.pasta-image-placeholder {
  background:
    radial-gradient(circle at 34% 28%, rgba(215, 201, 173, 0.16), transparent 34%),
    linear-gradient(145deg, #28231d, #12110f);
}

.pasta-image-placeholder span {
  max-width: 16rem;
  padding: 1.2rem;
  border: 1px solid var(--gold);
  background: rgba(9, 9, 9, 0.72);
  color: var(--cream-bright);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.6;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.pasta-image-placeholder span strong {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 1.55rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: none;
}

.pasta-detail-section {
  background:
    radial-gradient(circle at 80% 20%, rgba(170, 150, 117, 0.08), transparent 32%),
    var(--cream);
}

.pasta-detail-intro h2 {
  max-width: 11ch;
  color: var(--ink);
}

.pasta-detail-copy {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  padding: clamp(2rem, 4vw, 3.4rem);
  border: 1px solid rgba(170, 150, 117, 0.72);
  background:
    radial-gradient(circle at 100% 0%, rgba(170, 150, 117, 0.14), transparent 32%),
    linear-gradient(145deg, var(--cream-bright), #f6f0e5);
  box-shadow:
    0 0 0 6px var(--cream),
    0 0 0 7px rgba(17, 16, 14, 0.18),
    0 24px 55px rgba(34, 28, 21, 0.12);
}

.pasta-detail-copy::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--ink) 0 22%, var(--gold) 22% 78%, var(--ink) 78%);
}

.pasta-detail-copy::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 34px;
  height: 34px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  opacity: 0.72;
}

.pasta-detail-copy p {
  overflow-wrap: break-word;
}

.pasta-detail-copy p:first-child {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.08rem;
  line-height: 1.62;
}

.pasta-detail-copy p:first-child::first-letter {
  float: left;
  margin: 0.08em 0.12em 0 0;
  color: var(--red-dark);
  font-family: var(--display);
  font-size: 3.4em;
  font-weight: 700;
  line-height: 0.78;
}

.pasta-drop-section {
  border-color: var(--line-light);
  background:
    radial-gradient(circle at 85% 0%, rgba(215, 201, 173, 0.1), transparent 32%),
    linear-gradient(180deg, #11100e, #181612);
  color: var(--cream-bright);
}

.pasta-drop-section h2 {
  max-width: 11ch;
  color: var(--cream-bright);
}

.pasta-drop-section .lead {
  color: var(--muted-light);
}

.family-meal-deal {
  position: relative;
  overflow: hidden;
  margin-block: 2rem 0.5rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--gold);
  background:
    radial-gradient(circle at 90% 10%, rgba(215, 201, 173, 0.12), transparent 28%),
    #1a1713;
  color: var(--cream-bright);
}

.family-meal-deal h3,
.family-meal-deal p {
  position: relative;
  z-index: 1;
  color: inherit;
}

.family-meal-deal h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem 1rem;
  margin-bottom: 0.5rem;
  font-size: clamp(2.5rem, 7vw, 5.4rem);
  text-transform: none;
}

.family-meal-deal h3 span {
  color: var(--gold-light);
}

.family-meal-deal p:last-child {
  margin-bottom: 0;
}

.deal-kicker {
  color: var(--gold-light);
}

.market-highlight-grid {
  display: grid;
  gap: 1px;
  margin-top: 2rem;
  padding: 1px;
  background: var(--line-light);
}

.market-highlight-card {
  padding: 1.4rem;
  background: #11110f;
  transition: background 180ms ease;
}

.market-highlight-card:hover {
  background: #1b1916;
}

.market-highlight-card h3,
.market-highlight-card p {
  color: var(--cream-bright);
}

.market-highlight-card p {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

/* Schedule and Updates */
.schedule-list,
.updates-list,
.updates-scroll {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  background: transparent;
}

.schedule-item,
.post,
.update-preview {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  border: 1px solid rgba(35, 27, 19, 0.1);
  border-radius: 14px;
  background: var(--cream-bright);
  box-shadow: var(--shadow-light);
  transition: background 220ms ease, color 220ms ease;
}

.schedule-item::before,
.post::before,
.update-preview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
}

.schedule-item:hover,
.post:hover,
.update-preview:hover {
  background: var(--paper);
}

.schedule-item h2,
.post h2,
.update-preview h2 {
  max-width: 11ch;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.schedule-item p,
.post p,
.update-preview p {
  color: var(--muted-dark);
}

.schedule-page main > .section:first-child {
  min-height: 430px;
  display: grid;
  align-items: end;
}

.schedule-page .page-intro .lead {
  max-width: 42rem;
  margin-top: 1.4rem;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  font-style: italic;
  line-height: 1.45;
}

.schedule-section {
  background:
    radial-gradient(circle at 90% 0%, rgba(170, 150, 117, 0.12), transparent 30%),
    var(--cream);
}

.schedule-heading {
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.schedule-heading h2 {
  max-width: 10ch;
  color: var(--ink);
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 400;
}

.schedule-heading > p:last-child {
  max-width: 40rem;
  color: var(--muted-dark);
}

.schedule-page .schedule-list {
  gap: 1px;
  padding: 1px;
  background: var(--gold);
}

.schedule-page .schedule-item {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: clamp(1.7rem, 3vw, 2.6rem);
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(215, 201, 173, 0.09), transparent 32%),
    #151310;
  box-shadow: none;
}

.schedule-page .schedule-item::before {
  display: none;
}

.schedule-page .schedule-item:hover {
  background:
    radial-gradient(circle at 100% 0%, rgba(215, 201, 173, 0.15), transparent 36%),
    #1b1814;
}

.schedule-page .schedule-number {
  margin-bottom: 2.5rem;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 1rem;
  font-style: italic;
}

.schedule-page .schedule-type {
  margin-bottom: 0.7rem;
  color: var(--gold-light);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.schedule-page .schedule-item h2 {
  min-height: 2.1em;
  margin-bottom: 1.5rem;
  color: var(--cream-bright);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 400;
}

.schedule-page .schedule-item h2 ~ p {
  margin-bottom: 0.4rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--line-light);
  color: var(--muted-light);
  font-size: 0.86rem;
}

.schedule-page .schedule-item strong {
  color: var(--cream-bright);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.schedule-page .schedule-item .text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin-top: auto;
  border: 1px solid var(--gold);
  background: var(--cream-bright);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.schedule-page .schedule-item .text-link:hover {
  background: var(--gold);
  color: var(--ink);
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--line-light);
  background: #0f0e0c;
  color: var(--cream-bright);
}

.site-footer::after {
  content: "RINA'S";
  position: absolute;
  right: -0.04em;
  bottom: -0.18em;
  color: rgba(255, 250, 240, 0.025);
  font-family: var(--display);
  font-size: clamp(8rem, 28vw, 25rem);
  font-weight: 700;
  letter-spacing: -0.1em;
  line-height: 0.75;
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
}

.footer-title {
  margin-bottom: 0.7rem;
  color: var(--gold-light) !important;
  font-size: 0.7rem !important;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 0.9rem;
}

.footer-logo img {
  width: clamp(145px, 18vw, 210px);
  height: auto;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 250, 240, 0.66);
  font-size: 0.86rem;
}

.site-footer a:hover {
  color: var(--gold-light);
}

/* Modals */
.modal-open {
  overflow: hidden;
}

.promo-modal[hidden] {
  display: none;
}

.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.promo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 16, 14, 0.78);
  backdrop-filter: blur(8px);
}

.promo-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 600px);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  padding: clamp(1.7rem, 5vw, 3.2rem);
  border: 1px solid rgba(128, 110, 89, 0.36);
  background: var(--cream-bright);
  color: var(--ink);
  box-shadow: var(--shadow-dark);
}

.promo-modal-card h2 {
  color: var(--ink);
}

.promo-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 5;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--cream-bright);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.promo-modal-close:hover {
  background: var(--ink);
  color: var(--cream-bright);
}

.contact-modal-card {
  width: min(100%, 580px);
  padding: clamp(2rem, 6vw, 4rem);
  border-color: var(--gold);
  background:
    radial-gradient(circle at 100% 0%, rgba(170, 150, 117, 0.14), transparent 34%),
    var(--cream-bright);
  text-align: left;
}

.contact-modal-card .eyebrow {
  margin-bottom: 1.1rem;
  color: var(--red-dark);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
}

.contact-modal-card h2 {
  max-width: 9ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.7rem, 8vw, 4.7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
}

.contact-modal-list {
  display: grid;
  gap: 0;
  margin-block: 0 1.6rem;
  border-top: 1px solid var(--line-dark);
}

.contact-modal-list p {
  margin: 0;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  color: var(--muted-dark);
}

.contact-modal-list strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-modal-list strong + br {
  display: none;
}

.contact-modal-list a {
  color: var(--muted-dark);
  font-family: var(--display);
  font-size: 1.08rem;
  text-decoration: none;
}

.contact-modal-list a:hover {
  color: var(--ink);
}

.contact-wholesale-button {
  width: 100%;
  min-height: 58px;
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream-bright);
}

.contact-wholesale-button:hover {
  background: var(--gold);
  color: var(--ink);
}

.timeline-modal-card {
  display: grid;
  width: min(100%, 940px);
  gap: clamp(1.5rem, 4vw, 3rem);
  background: #151310;
  color: var(--cream-bright);
}

.timeline-modal-image {
  min-height: 320px;
  border: 1px solid var(--gold);
  background: #151412;
}

.timeline-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.timeline-modal-copy {
  align-self: start;
}

.timeline-modal-copy h2 {
  color: var(--cream-bright);
  font-size: clamp(2rem, 5vw, 4rem);
}

.timeline-modal-person {
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.timeline-modal-copy p:last-child {
  color: var(--muted-light);
}

.promo-sale-card {
  overflow: hidden;
  padding-block: clamp(2.5rem, 6vw, 4rem);
  border-color: var(--gold);
  text-align: center;
  isolation: isolate;
}

.promo-sale-card::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: -1;
  background: url("images/fallingpasta.png") repeat;
  background-size: 300px auto;
  mix-blend-mode: multiply;
  opacity: 0.16;
  animation: pastaDrift 24s linear infinite;
}

.promo-sale-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at top, rgba(170, 150, 117, 0.14), transparent 48%),
    rgba(252, 249, 242, 0.94);
}

.promo-sale-card .eyebrow {
  margin-bottom: 1.35rem;
  color: var(--red-dark);
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
}

.promo-sale-card .eyebrow::before {
  display: none;
}

.promo-sale-title {
  margin-bottom: 0.65rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(4.6rem, 16vw, 7.5rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.76;
}

.promo-sale-subtitle {
  margin-bottom: 1.15rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.75rem, 5vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
  text-transform: none;
}

.promo-sale-note {
  max-width: 29rem;
  margin-inline: auto;
  color: var(--muted-dark);
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1.55;
}

.promo-button-row {
  justify-content: center;
  margin-top: 1.5rem;
}

@keyframes pastaDrift {
  from {
    background-position: 0 -180px;
  }

  to {
    background-position: 0 180px;
  }
}

/* Responsive */
@media (min-width: 700px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
  }

  .header-actions,
  .site-nav {
    width: auto;
  }

  .header-contact-link {
    display: inline-flex;
    margin-right: 1rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--gold-light);
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
  }

  .hero-grid,
  .two-column,
  .pasta-reveal-grid,
  .pasta-detail-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .hero-grid,
  .pasta-reveal-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(3rem, 6vw, 6.5rem);
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pasta-feature-card {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }

  .market-highlight-grid,
  .schedule-list,
  .updates-list,
  .updates-scroll,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .family-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline-modal-card {
    grid-template-columns: minmax(230px, 0.8fr) minmax(0, 1.2fr);
  }
}

@media (min-width: 1040px) {
  .site-nav {
    gap: 0.35rem;
  }

  .site-nav a,
  .site-nav button {
    padding-inline: 1rem;
  }

  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .family-timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (max-width: 1039px) {
  .about-story-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-story-grid .portrait-media {
    width: min(100%, 900px);
    justify-self: center;
  }
}

@media (max-width: 699px) {
  h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .site-header::before {
    font-size: 0.57rem;
    letter-spacing: 0.12em;
  }

  .header-actions {
    gap: 0.55rem;
    min-width: 0;
  }

  .header-contact-link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 0.54rem 0.56rem;
    border: 1px solid rgba(215, 201, 173, 0.38);
    background: rgba(252, 249, 242, 0.06);
    color: var(--gold-light);
    font-family: var(--sans);
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
  }

  .site-nav {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
  }

  .site-nav a,
  .site-nav button {
    padding-inline: 0.48rem;
    font-size: 0.62rem;
    letter-spacing: 0.09em;
  }

  .hero-copy h1,
  .pasta-reveal-copy h2,
  .pasta-feature-card h2 {
    max-width: none;
    font-size: clamp(2.65rem, 11vw, 3.15rem);
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-grid,
  .pasta-reveal-grid,
  .pasta-detail-grid {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

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

  .pasta-feature-card {
    text-align: center;
  }

  .pasta-feature-copy {
    align-items: center;
  }

  .family-meal-deal h3 {
    display: block;
  }

  .family-meal-deal h3 span {
    display: block;
    margin-top: 0.25rem;
  }

  .portrait-media {
    min-height: 430px;
    box-shadow: var(--shadow-light);
  }

  .about-story-grid .content-block,
  .about-story-grid .portrait-media {
    width: calc(100vw - 2rem);
    max-width: calc(100vw - 2rem);
  }

  .schedule-page .page-intro h1 {
    max-width: 100%;
    font-size: 2.9rem;
    overflow-wrap: normal;
  }

  .schedule-page .page-intro .lead {
    width: calc(100vw - 2rem);
    max-width: calc(100vw - 2rem);
    font-size: 1.15rem;
  }

  .schedule-page .schedule-heading > p:last-child {
    width: calc(100vw - 2rem);
    max-width: calc(100vw - 2rem);
  }

  .schedule-page .schedule-heading h2 {
    font-size: 2.7rem;
  }
}

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