:root {
  --bg: #f7f1e8;
  --paper: #fcf8f2;
  --text: #1d1611;
  --muted: #665c54;
  --gold: #d8b06c;
  --gold-dark: #9c6d2c;
  --dark: #221710;
  --line: rgba(0, 0, 0, 0.08);
  --white: #fff;
  --shadow: 0 18px 45px rgba(34, 23, 16, 0.1);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

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

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

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

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #f6efe7;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06), 0 10px 30px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(6px);
}

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

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

.brand-logo-large {
  height: 130px !important;
  width: auto !important;
  display: block;
  max-width: none !important;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.96rem;
  color: #3f3832;
}

.nav-links a {
  font-weight: 500;
  color: #2d2620;
  margin: 0 18px;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #c8a46a;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 18px;
  padding: 14px 22px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-small {
  padding: 11px 16px;
}

.btn-gold {
  background: var(--gold);
  color: #111;
}

.btn-gold:hover {
  background: #cda35c;
}

.btn-dark {
  background: #2b1f14;
  color: white;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.btn-dark:hover {
  background: #3a2a1d;
  transform: translateY(-2px);
}

.btn-outline {
  border-color: rgba(0, 0, 0, 0.16);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(0, 0, 0, 0.03);
}

.btn-outline-dark {
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: rgba(255, 255, 255, 0.65);
  color: var(--text);
}

.btn-outline-dark:hover {
  background: rgba(0, 0, 0, 0.04);
}

/* Typography */

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero .eyebrow.accent {
  color: #f0c878;
}

.eyebrow-light {
  color: #e7c37c;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f6efe4 0%, #fbf7f0 45%, #efe2cf 100%);
  padding: 52px 0 82px;
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(22, 15, 10, 0.62) 0%,
    rgba(22, 15, 10, 0.42) 34%,
    rgba(22, 15, 10, 0.14) 68%,
    rgba(22, 15, 10, 0) 100%
  );
}

.luxury-hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 32px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 28px;
  backdrop-filter: blur(8px);
}

.hero-copy h1 {
  margin: 12px 0 0;
  font-size: clamp(52px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.hero-copy p {
  margin-top: 20px;
  max-width: 720px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.8;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.18);
}

.hero-support {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

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

.hero-stats {
  margin-top: 26px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 16px 18px;
  box-shadow: 0 10px 24px rgba(34, 23, 16, 0.06);
}

.stat-card strong {
  display: block;
  font-size: 1rem;
}

.stat-card span {
  display: block;
  color: var(--muted);
  margin-top: 4px;
  font-size: 0.92rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 26px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.trust-strip span:first-child {
  color: #f0c878;
}

.hero-side-stack {
  display: grid;
  gap: 16px;
}

.hero-side-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.side-tall {
  height: 360px;
}

.side-small {
  height: 210px;
}

/* Cards / images */

.photo-card {
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  background: #fff;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.photo-card:hover img {
  transform: scale(1.05);
}

/* Section spacing */

.section {
  padding: 96px 0;
}

.light-section {
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 12px 0 0;
}

.section-heading p,
.lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.section-heading.center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 8px;
}

.light-text h2,
.light-text p {
  color: #fff;
}

.dough-feature-strip,
.brand-story,
.distributor-section,
.contact-section {
  padding: 90px 0;
}

/* Dough feature strip */

.dough-feature-strip {
  background: #fcf8f2;
  border-top: 1px solid rgba(36, 29, 24, 0.08);
  border-bottom: 1px solid rgba(36, 29, 24, 0.08);
}

.dough-feature-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: center;
}

.dough-feature-image {
  height: 340px;
}

.dough-feature-copy h2 {
  margin: 10px 0 0;
  font-size: clamp(38px, 5vw, 56px);
}

.dough-feature-copy p {
  margin-top: 16px;
  font-size: 18px;
  color: #6b6159;
  max-width: 700px;
  line-height: 1.8;
}

.tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.tag-row span,
.badge-pill {
  background: #efe2cc;
  color: #7e5520;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
}

/* Story */

.brand-story {
  background: #fcf8f2;
}

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

.story-text h2 {
  margin: 12px 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.story-text p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.85;
}

.story-images {
  display: grid;
  gap: 18px;
}

.story-images img {
  border-radius: 20px;
  box-shadow: var(--shadow);
  width: 100%;
  min-height: 260px;
  object-fit: cover;
}

/* Generic cards */

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(34, 23, 16, 0.12);
}

.card h3 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.2;
}

.card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.large-card h3 {
  font-size: 1.9rem;
}

.switch-grid,
.baking-grid {
  display: grid;
  gap: 22px;
  margin-top: 38px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-layout,
.grid-two,
.contact-layout,
.distributor-grid,
.product-highlight {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

/* Product */

.check-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.check-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 10px 25px rgba(34, 23, 16, 0.06);
}

.image-stack {
  display: grid;
  gap: 18px;
}

.image-stack img,
.image-grid img,
.product-highlight img,
.distributor-grid img {
  border-radius: 28px;
  box-shadow: var(--shadow);
  min-height: 320px;
  object-fit: cover;
  width: 100%;
}

.wrapped-stack {
  display: grid;
  gap: 18px;
}

.wrapped-stack img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
  object-fit: cover;
  background: #fff;
}

.wrapped-stack img:first-child {
  min-height: 240px;
}

.wrapped-stack img:last-child {
  min-height: 300px;
}

.product-layout img {
  width: 100%;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Gallery */

.dough-gallery {
  background: #fcf8f2;
}

.dough-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.dough-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 22px;
  display: block;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.dough-grid img:hover {
  transform: scale(1.035);
}

.pizza-oven-photo {
  width: 100%;
  height: 280px !important;
  margin: 0;
  display: block;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Case info */

.two-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

.serve-panel {
  background: linear-gradient(160deg, #f8efe2 0%, #efe0ca 100%);
  padding: 40px;
}

.serve-panel h2,
.case-panel h2 {
  margin: 12px 0 0;
  font-size: 2rem;
}

.serve-panel p {
  color: var(--muted);
  line-height: 1.8;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.pill-grid span {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  font-weight: 600;
}

.case-panel {
  background: #fff;
}

.case-panel .eyebrow {
  display: block;
  background: var(--dark);
  color: #e7c37c;
  padding: 22px 32px 0;
}

.case-panel h2 {
  padding: 0 32px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead {
  background: var(--paper);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: #6f655d;
}

th,
td {
  padding: 16px 18px;
  border-top: 1px solid var(--line);
  text-align: left;
}

tbody td:first-child {
  font-weight: 700;
}

/* Handling / storage */

.steps-list {
  color: var(--muted);
  padding-left: 20px;
  line-height: 1.9;
}

.badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* Process */

.process-dark {
  background: linear-gradient(180deg, #221710 0%, #2b1a12 100%);
  color: #fff;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.process-pill {
  border-radius: 20px;
  padding: 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.process-pill span {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0;
  font-weight: 700;
  text-transform: none;
}

/* Baking */

.image-grid {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.image-grid.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

/* Distributor */

.distributor-section {
  background: #f7f1e8;
}

.benefits {
  margin-top: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.benefits li {
  margin-bottom: 8px;
}

.distributor-note {
  margin-top: 18px;
  color: var(--muted);
  font-weight: 600;
}

.distributor-subline {
  margin-top: 14px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.7;
}

/* FAQ */

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}

/* Contact */

.contact-section {
  background: linear-gradient(135deg, #f2e0c1 0%, #f8efe2 40%, #f0dfc5 100%);
}

.contact-card select{
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 15px 16px;
  font: inherit;
  background: #fcfaf6;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-card select:focus{
  outline: none;
  border-color: #c8a46a;
  box-shadow: 0 0 0 3px rgba(200, 164, 106, 0.16);
}

.form-helper {
  margin: -2px 0 6px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 15px 16px;
  font: inherit;
  background: #fcfaf6;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-card input:focus,
.contact-card textarea:focus {
  outline: none;
  border-color: #c8a46a;
  box-shadow: 0 0 0 3px rgba(200, 164, 106, 0.16);
}

.contact-card textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.9;
}

/* Footer */

.site-footer {
  background: #1b130f;
  color: #fff;
  padding: 34px 0;
}

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

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-sub {
  margin-top: 6px;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.footer-links {
  display: flex;
  gap: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-links a:hover {
  color: #fff;
}

/* Optional reveal animations */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

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

/* Responsive */

@media (max-width: 1080px) {
  .switch-grid,
  .baking-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-layout,
  .grid-two,
  .contact-layout,
  .two-panel,
  .luxury-hero,
  .dough-feature-grid,
  .story-grid,
  .distributor-grid,
  .product-highlight {
    grid-template-columns: 1fr;
  }

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

  .image-grid.three-up {
    grid-template-columns: 1fr;
  }

  .hero-side-stack {
    margin-top: 8px;
  }
}

@media (max-width: 760px) {
  .nav-links,
  .btn-small {
    display: none;
  }

  .switch-grid,
  .baking-grid,
  .check-grid,
  .pill-grid,
  .image-grid.two-up,
  .process-strip,
  .hero-side-bottom,
  .dough-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .serve-panel,
  .case-panel .eyebrow,
  .case-panel h2 {
    padding-inline: 22px;
  }

  .case-panel h2 {
    padding-bottom: 0;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 28px 0 56px;
  }

  .hero-copy {
    padding: 22px;
  }

  .hero-copy h1 {
    font-size: 44px;
  }

  .side-tall,
  .side-small,
  .dough-feature-image {
    height: 260px;
  }

  .brand-logo-large {
    height: 90px !important;
  }
}
.accordion-group {
  margin-top: 34px;
  display: grid;
  gap: 16px;
}

.accordion-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.accordion-item:hover {
  box-shadow: 0 24px 55px rgba(34, 23, 16, 0.12);
  transform: translateY(-2px);
}

.accordion-item.active {
  border-color: rgba(200, 164, 106, 0.35);
  box-shadow: 0 24px 55px rgba(34, 23, 16, 0.12);
}

.accordion-toggle {
  width: 100%;
  background: #fff;
  border: none;
  padding: 22px 24px;
  text-align: left;
  font: inherit;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text);
  cursor: pointer;
  position: relative;
}

.accordion-toggle::after {
  content: "›";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 28px;
  font-weight: 400;
  color: var(--gold-dark);
  transition: transform 0.25s ease, color 0.25s ease;
}

.accordion-item.active .accordion-toggle::after {
  transform: translateY(-50%) rotate(-90deg);
  color: #7e5520;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 0 24px 22px;
}

.accordion-content p,
.accordion-content li {
  color: var(--muted);
  line-height: 1.8;
}

.accordion-content strong {
  color: var(--text);
}

.contact-card select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 15px 16px;
  font: inherit;
  background: #fcfaf6;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-card select:focus {
  outline: none;
  border-color: #c8a46a;
  box-shadow: 0 0 0 3px rgba(200, 164, 106, 0.16);
}
