/* ============================================================
   SAMMY'S SAUCES — Premium Design System
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand Palette */
  --color-black: #0a0a0a;
  --color-charcoal: #1a1a1a;
  --color-dark: #2a2a2a;
  --color-muted: #6b6b6b;
  --color-light: #a8a8a8;
  --color-cream: #f5f0eb;
  --color-white: #ffffff;
  --color-offwhite: #faf8f5;

  /* Accent — deep warm red */
  --color-accent: #b71c1c;
  --color-accent-light: #d32f2f;
  --color-accent-dark: #8b0000;

  /* Gold accent */
  --color-gold: #c9a96e;
  --color-gold-light: #dbb97a;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --container-max: 1240px;

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-charcoal);
  background: var(--color-offwhite);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}


/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease-smooth);
}

.nav--scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.nav--dark {
  background: var(--color-black);
}

.nav__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.02em;
  line-height: 1;
}

.nav__logo-sub {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  color: var(--color-gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.3s var(--ease-smooth);
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-white);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link--cta {
  border: 1px solid var(--color-gold);
  padding: 8px 20px;
  color: var(--color-gold);
  transition: all 0.3s;
}

.nav__link--cta::after { display: none; }

.nav__link--cta:hover,
.nav__link--cta.active {
  background: var(--color-gold);
  color: var(--color-black);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-white);
  transition: all 0.3s;
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}
.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

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

.btn--primary:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(183, 28, 28, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.4);
}

.btn--outline:hover {
  border-color: var(--color-white);
  background: rgba(255,255,255,0.08);
}

.btn--lg {
  padding: 20px 48px;
  font-size: 0.85rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.4) 0%,
    rgba(0,0,0,0.25) 40%,
    rgba(0,0,0,0.5) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 0 20px;
}

.hero__tagline {
  font-family: var(--font-accent);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: var(--color-gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 400;
}

.hero__title {
  font-family: var(--font-display);
  color: var(--color-white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero__title-line {
  display: block;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
}

.hero__title-line--accent {
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 700;
  font-style: italic;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold), #e8d5a3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}


/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--color-black);
  padding: 18px 0;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee__track span {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--color-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header__label {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--color-gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--color-charcoal);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-header__desc {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--color-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}


/* ============================================================
   COLLECTION / PRODUCTS
   ============================================================ */
.collection {
  padding: var(--section-pad) 0;
  background: var(--color-offwhite);
}

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

.product-card {
  background: var(--color-white);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-smooth), box-shadow 0.5s var(--ease-smooth);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.product-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}

.product-card:hover .product-card__image {
  transform: scale(1.05);
}

.product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
}

.product-card__info {
  padding: 24px 20px 28px;
}

.product-card__series {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--color-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-card__desc {
  font-size: 0.85rem;
  color: var(--color-muted);
  line-height: 1.6;
}


/* ============================================================
   FEATURES STRIP
   ============================================================ */
.features {
  padding: 80px 0;
  background: var(--color-charcoal);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  text-align: center;
}

.feature__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  color: var(--color-gold);
}

.feature__icon svg {
  width: 100%;
  height: 100%;
}

.feature__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 10px;
}

.feature__text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}


/* ============================================================
   STORY SECTION
   ============================================================ */
.story {
  padding: var(--section-pad) 0;
  background: var(--color-offwhite);
}

.story__layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story__images {
  position: relative;
}

.story__image-main {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.story__image-main img {
  width: 100%;
  height: auto;
}

.story__image-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 45%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  border: 4px solid var(--color-offwhite);
}

.story__image-accent img {
  width: 100%;
  height: auto;
}

.story__content {
  padding-right: 20px;
}

.story__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--color-charcoal);
  line-height: 1.2;
  margin-bottom: 28px;
}

.story__text {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.story__signature {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.story__signature-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--color-accent);
  font-weight: 500;
}


/* ============================================================
   PARALLAX BREAK
   ============================================================ */
.parallax-break {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.parallax-break__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.parallax-break__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.parallax-break__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  font-style: italic;
}


/* ============================================================
   PHILOSOPHY
   ============================================================ */
.philosophy {
  padding: var(--section-pad) 0;
  background: var(--color-cream);
}

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

.philosophy__card {
  padding: 48px 36px;
  background: var(--color-white);
  border-radius: 4px;
  transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s;
}

.philosophy__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.07);
}

.philosophy__card-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-cream);
  line-height: 1;
  margin-bottom: 20px;
  -webkit-text-stroke: 1px var(--color-gold);
}

.philosophy__card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 14px;
}

.philosophy__card-text {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.7;
}


/* ============================================================
   GALLERY MOSAIC
   ============================================================ */
.gallery {
  padding: var(--section-pad) 0;
  background: var(--color-offwhite);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}

.gallery__item {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.gallery__item:hover img {
  transform: scale(1.06);
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__item--tall {
  grid-row: span 2;
}


/* ============================================================
   CTA SECTION
   ============================================================ */
.cta {
  position: relative;
  padding: var(--section-pad) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px;
}

.cta__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
}

.cta__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 0 20px;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta__text {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  line-height: 1.7;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-black);
  padding: 80px 0 40px;
}

.footer__layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-white);
  display: block;
  margin-bottom: 6px;
}

.footer__tagline {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--color-gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 280px;
}

.footer__links h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}

.footer__links a:hover {
  color: var(--color-gold);
}

.footer__bottom {
  padding-top: 32px;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
}

.contact-hero__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 0 20px;
}

.contact-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.contact-hero__subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* Contact Body */
.contact-body {
  padding: var(--section-pad) 0;
  background: var(--color-offwhite);
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact__info-block {
  margin-bottom: 36px;
}

.contact__info-block h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 12px;
}

.contact__info-block p {
  font-size: 0.92rem;
  color: var(--color-muted);
  line-height: 1.7;
}

.contact__detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__detail-icon {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__detail-icon svg {
  width: 100%;
  height: 100%;
}

.contact__detail-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-light);
  margin-bottom: 4px;
}

.contact__detail-value {
  font-size: 0.95rem;
  color: var(--color-charcoal);
  transition: color 0.3s;
}

a.contact__detail-value:hover {
  color: var(--color-accent);
}

.contact__social {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.contact__social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-muted);
  transition: all 0.3s;
}

.contact__social-link svg {
  width: 18px;
  height: 18px;
}

.contact__social-link:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(183, 28, 28, 0.04);
}

/* Contact Form */
.contact__form-wrap {
  background: var(--color-white);
  padding: 48px;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  position: relative;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form__group {
  margin-bottom: 24px;
}

.form__label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.form__input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-charcoal);
  background: var(--color-offwhite);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.form__input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12);
}

.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__form .btn {
  margin-top: 8px;
}

.contact__form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.contact__form-success.show {
  display: block;
}

.contact__form-success.show + .contact__form,
.contact__form.hidden {
  display: none;
}

.contact__form-success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: #2e7d32;
}

.contact__form-success-icon svg {
  width: 100%;
  height: 100%;
}

.contact__form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 8px;
}

.contact__form-success p {
  font-size: 0.92rem;
  color: var(--color-muted);
}


/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .story__layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .story__image-accent {
    bottom: -24px;
    right: -20px;
    width: 40%;
  }

  .philosophy__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }

  .footer__layout {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .contact__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-black);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px 40px;
    gap: 24px;
    transition: right 0.4s var(--ease-smooth);
  }

  .nav__menu.open {
    right: 0;
  }

  .nav__link {
    font-size: 0.9rem;
  }

  .nav__link--cta {
    margin-top: 16px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery__item--wide,
  .gallery__item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .footer__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .parallax-break,
  .cta__bg {
    background-attachment: scroll;
  }

  .contact__form-wrap {
    padding: 32px 24px;
  }

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

  .story__image-accent {
    position: relative;
    bottom: auto;
    right: auto;
    width: 60%;
    margin-top: -60px;
    margin-left: auto;
  }
}

@media (max-width: 480px) {
  .hero__title-line {
    font-size: 1.8rem;
  }

  .hero__title-line--accent {
    font-size: 2.2rem;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.78rem;
  }

  .product-card__info {
    padding: 20px 16px 24px;
  }
}
