/* ============================================
   BELISSINONNA — Global Stylesheet
   Bold Italian Food Truck Energy
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --green: #1B6B3A;
  --green-dark: #145A2E;
  --red: #C8202A;
  --red-dark: #A51A22;
  --mint: #D6EDE4;
  --white: #FFFFFF;
  --dark: #1A1A1A;
  --grey: #F5F5F5;
  --cream: #FDF8F0;

  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;

  --nav-height: 80px;
  --section-pad: clamp(60px, 10vw, 120px);
  --side-pad: clamp(20px, 5vw, 80px);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}

p {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  max-width: 600px;
}

.label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* --- Italian Flag Stripe (decorative) --- */
.flag-stripe {
  display: flex;
  height: 6px;
  width: 100%;
}
.flag-stripe span:nth-child(1) { flex: 1; background: var(--green); }
.flag-stripe span:nth-child(2) { flex: 1; background: var(--white); }
.flag-stripe span:nth-child(3) { flex: 1; background: var(--red); }

.flag-stripe-vertical {
  position: absolute;
  width: 6px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.flag-stripe-vertical span:nth-child(1) { flex: 1; background: var(--green); }
.flag-stripe-vertical span:nth-child(2) { flex: 1; background: var(--white); }
.flag-stripe-vertical span:nth-child(3) { flex: 1; background: var(--red); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-decoration: none;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 32, 42, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline-dark:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: translateY(-2px);
}

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--side-pad);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.nav.scrolled {
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 55px;
  width: auto;
}
.nav-logo em {
  font-style: italic;
  color: var(--red);
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--dark);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.3s ease;
}

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

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

.nav-insta {
  font-size: 1.2rem !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  padding: 6px 12px !important;
  background: var(--red);
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s ease !important;
}

.nav-insta:hover {
  background: var(--green) !important;
  color: var(--white) !important;
  transform: scale(1.1);
}

.nav-insta::after {
  display: none !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  transition: color 0.3s ease;
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--green);
}

/* --- Floating CTA Button --- */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.floating-cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--green);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 30px rgba(27, 107, 58, 0.4);
  transition: all 0.3s ease;
}

.floating-cta a:hover {
  background: var(--red);
  box-shadow: 0 8px 30px rgba(200, 32, 42, 0.4);
  transform: translateY(-2px);
}

.floating-cta .phone-icon {
  font-size: 1.1rem;
}

/* ============================================
   HERO SECTIONS
   ============================================ */

.hero {
  min-height: 100vh;
  padding-top: var(--nav-height);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-mint {
  background: var(--mint);
}

.hero-green {
  background: var(--green);
  color: var(--white);
}

.hero-red {
  background: var(--red);
  color: var(--white);
}

.hero-content {
  padding: 60px var(--side-pad);
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--red);
}

.hero h1 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 3.8vw, 4.5rem);
}

.hero h1 .italic {
  font-style: italic;
  color: var(--red);
  font-size: 1.3em;
  display: block;
}

/* ---- Reveal Text (PIZZA letters) ---- */
.reveal-text {
  display: inline-flex !important;
}

.reveal-letter {
  display: inline-block;
  position: relative;
  color: var(--red);
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  transition: -webkit-text-fill-color 0.15s ease, transform 0.3s ease;
  -webkit-text-fill-color: var(--red);
  /* Initial animation */
  opacity: 0;
  transform: scale(0);
  animation: revealLetterIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.reveal-letter:nth-child(1) { animation-delay: 0s; }
.reveal-letter:nth-child(2) { animation-delay: 0.08s; }
.reveal-letter:nth-child(3) { animation-delay: 0.16s; }
.reveal-letter:nth-child(4) { animation-delay: 0.24s; }
.reveal-letter:nth-child(5) { animation-delay: 0.32s; }

@keyframes revealLetterIn {
  0% { opacity: 0; transform: scale(0); }
  60% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}

.reveal-letter:hover {
  -webkit-text-fill-color: transparent;
  transform: scale(1.08);
}

/* Overlay sweep animation */
.reveal-letter::after {
  content: attr(data-letter);
  position: absolute;
  inset: 0;
  color: var(--green);
  opacity: 0;
  pointer-events: none;
}

.reveal-letter.sweep::after {
  animation: revealSweep 0.4s ease-in-out forwards;
}

@keyframes revealSweep {
  0% { opacity: 0; }
  10% { opacity: 1; }
  70% { opacity: 1; }
  100% { opacity: 0; }
}

.hero h1 .outline {
  -webkit-text-stroke: 2px var(--dark);
  color: transparent;
}

.hero-green h1 .italic {
  color: var(--mint);
}

.hero-sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 460px;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-phone {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-green .hero-phone {
  color: var(--mint);
}

.hero-image {
  position: relative;
  height: 100%;
  min-height: 500px;
  overflow: hidden;
}

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

/* Decorative dots pattern */
.hero-dots {
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(var(--green) 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.15;
  z-index: 1;
}

.hero-dots.top-right {
  top: 120px;
  right: 40px;
}

/* Diagonal cut overlay on hero image */
.hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60px;
  width: 120px;
  height: 100%;
  background: inherit;
  z-index: 2;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.hero-mint .hero-image::before { background: var(--mint); }
.hero-green .hero-image::before { background: var(--green); }
.hero-red .hero-image::before { background: var(--red); }

/* Stacked hero for inner pages */
.hero-stacked {
  grid-template-columns: 1fr;
  min-height: 70vh;
  text-align: center;
}

.hero-stacked .hero-content {
  padding: 80px var(--side-pad) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-stacked .hero-image {
  min-height: 300px;
  max-height: 50vh;
}

.hero-stacked .hero-image::before {
  display: none;
}

/* ============================================
   SECTIONS
   ============================================ */

section {
  padding: var(--section-pad) var(--side-pad);
  position: relative;
}

.section-mint { background: var(--mint); }
.section-white { background: var(--white); }
.section-grey { background: var(--grey); }
.section-green { background: var(--green); color: var(--white); }
.section-red { background: var(--red); color: var(--white); }
.section-dark { background: var(--dark); color: var(--white); }
.section-cream { background: var(--cream); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .label {
  color: var(--green);
  margin-bottom: 12px;
  display: block;
}

.section-green .section-header .label {
  color: var(--mint);
}

.section-red .section-header .label {
  color: rgba(255, 255, 255, 0.7);
}

.section-header h2 .italic {
  font-style: italic;
  color: var(--red);
}

.section-green .section-header h2 .italic {
  color: var(--mint);
}

.section-header p {
  margin: 16px auto 0;
  opacity: 0.8;
}

/* Ornamental divider */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.ornament span {
  width: 40px;
  height: 1px;
  background: var(--green);
}

.ornament svg {
  width: 24px;
  height: 24px;
  fill: var(--green);
}

/* ============================================
   USP SECTION (3 columns)
   ============================================ */

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.usp-card {
  text-align: center;
  padding: 30px 20px;
}

.usp-icon {
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--mint);
}

.usp-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.usp-card h3 {
  margin-bottom: 8px;
}

.usp-card h3 .italic {
  font-style: italic;
  color: var(--red);
}

.usp-card p {
  margin: 0 auto;
  font-size: 0.95rem;
  opacity: 0.75;
}

/* ============================================
   ABOUT / SPLIT SECTION
   ============================================ */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}

.split-image {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.split-content {
  padding: clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-content .label {
  margin-bottom: 12px;
  color: var(--red);
}

.split-content h2 {
  margin-bottom: 20px;
}

.split-content h2 .italic {
  font-style: italic;
  color: var(--red);
}

.section-green .split-content h2 .italic {
  color: var(--mint);
}

.section-green .split-content .label {
  color: var(--mint);
}

.split-content p {
  margin-bottom: 16px;
  opacity: 0.85;
}

.split-content .btn {
  margin-top: 16px;
  align-self: flex-start;
}

/* ============================================
   MENU / SPECIALS CARDS
   ============================================ */

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 520px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.section-green .menu-item {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

.menu-item-desc {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-top: 4px;
}

.menu-item-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
  margin-left: 20px;
}

.section-green .menu-item-price {
  color: var(--mint);
}

/* ============================================
   PERFECT VOOR (2 columns)
   ============================================ */

.duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.duo-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 400px;
}

.duo-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.duo-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.duo-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 30px 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  color: var(--white);
}

.duo-card-overlay h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.duo-card-overlay p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.6;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--red);
}

.section-green .stat-number,
.section-red .stat-number {
  color: var(--white);
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  text-align: center;
  padding: var(--section-pad) var(--side-pad);
}

.cta-section h2 {
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section h2 .italic {
  font-style: italic;
}

.section-red .cta-section h2 .italic {
  color: var(--white);
}

.cta-section p {
  margin: 0 auto 32px;
  opacity: 0.9;
}

/* ============================================
   HOW IT WORKS (steps)
   ============================================ */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto 0;
}

.step {
  text-align: center;
  padding: 20px;
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--green);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 12px;
}

.section-green .step-number {
  color: var(--white);
  opacity: 0.3;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin: 0 auto;
}

/* Arrow connector between steps */
.step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -20px;
  top: 40px;
  font-size: 1.5rem;
  color: var(--green);
  opacity: 0.3;
}

.section-green .step:not(:last-child)::after {
  color: var(--white);
}

/* ============================================
   PIZZA MENU GRID
   ============================================ */

.pizza-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.pizza-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pizza-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.pizza-card-image {
  height: 200px;
  overflow: hidden;
}

.pizza-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.pizza-card-body {
  padding: 24px;
}

.pizza-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.pizza-card-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.pizza-tag {
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pizza-card-body p {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* ============================================
   CONTACT FORM
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(27, 107, 58, 0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-info-block {
  padding: 40px;
  background: var(--mint);
  border-radius: 12px;
}

.contact-info-block h3 {
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-detail-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-detail a {
  color: var(--green);
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-detail a:hover {
  color: var(--red);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 60px var(--side-pad) 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-brand em {
  font-style: italic;
  color: var(--mint);
}

.footer p {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.7;
}

.footer h4 {
  font-size: 0.8rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  color: var(--mint);
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  opacity: 0.7;
  padding: 4px 0;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-contact a,
.footer-contact p {
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-contact a {
  transition: opacity 0.3s ease;
}

.footer-contact a:hover {
  opacity: 1;
}

.footer-contact .contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.5;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  font-size: 1.2rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-social a:hover {
  opacity: 1;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* ============================================
   TEXTURE / GRAIN OVERLAY
   ============================================ */

.grain::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

/* ============================================
   CIRCULAR REVEAL HEADING (Hero)
   ============================================ */

.circular-reveal {
  position: relative;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow:
    16px 16px 32px #b8d4c9,
    -16px -16px 32px #f4fffa;
  overflow: hidden;
  transition: box-shadow 0.5s ease;
  animation: circularFloat 5s ease-in-out infinite;
}

.circular-reveal:hover {
  box-shadow:
    20px 20px 40px #b0ccc1,
    -20px -20px 40px #f4fffa;
}

@keyframes circularFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Inner neumorphism rings */
.circular-reveal-ring {
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow:
    inset 6px 6px 12px #c2ddd2,
    inset -6px -6px 12px #eafff4;
  pointer-events: none;
}

.circular-reveal-ring-inner {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow:
    inset 4px 4px 8px #c2ddd2,
    inset -4px -4px 8px #eafff4;
  pointer-events: none;
}

/* Default pizza image */
.circular-reveal-default {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  z-index: 5;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

/* Hover images inside circle */
.circular-reveal-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0;
  z-index: 20;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.circular-reveal-img.active {
  opacity: 1;
}

/* Rotating SVG text */
.circular-reveal-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: circularSpin 30s linear infinite;
  z-index: 25;
  pointer-events: none;
}

@keyframes circularSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Pause rotation on hover for easier text targeting */
.circular-reveal:hover .circular-reveal-svg {
  animation-play-state: paused;
}

.circular-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  fill: #ffffff;
  cursor: pointer;
  transition: fill 0.3s ease;
  paint-order: stroke;
  stroke: rgba(0,0,0,0.4);
  stroke-width: 0.5px;
}

.circular-text:hover {
  fill: #ffffff;
}

/* Hero-image override for circular reveal */
.hero-image.hero-circular {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  overflow: visible;
}

.hero-image.hero-circular::before {
  display: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .circular-reveal {
    width: 340px;
    height: 340px;
  }
  .circular-reveal-center span {
    font-size: 1.3rem;
  }
  .circular-text {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .circular-reveal {
    width: 280px;
    height: 280px;
  }
  .circular-reveal-center span {
    font-size: 1.1rem;
    padding: 10px 16px;
  }
  .circular-text {
    font-size: 10px;
    letter-spacing: 0.2em;
  }
}

/* ============================================
   INSTAGRAM GRID
   ============================================ */

.clipppy {
  position: absolute;
  top: -999px;
  left: -999px;
  width: 0;
  height: 0;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.insta-grid figure {
  margin: 0;
  overflow: hidden;
  cursor: pointer;
}

.insta-grid figure img {
  width: 100%;
  aspect-ratio: 4/5;
  min-height: 100%;
  object-fit: cover;
  vertical-align: bottom;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.insta-grid figure:hover img {
  transform: scale(1.1);
}

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

.insta-banner {
  max-width: 1000px;
  margin: 0 auto;
}

.insta-banner figure {
  margin: 0;
  overflow: hidden;
  cursor: pointer;
}

.insta-banner svg {
  width: 100%;
  display: block;
}

.insta-handle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
  transition: color 0.3s ease;
}

.insta-handle:hover {
  color: var(--green);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding: 100px var(--side-pad) 40px;
  }

  .hero-image {
    min-height: 350px;
  }

  .hero-image::before {
    display: none;
  }

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

  .split-image {
    min-height: 350px;
  }

  .usp-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

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

  .step:not(:last-child)::after {
    display: none;
  }

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

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

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

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

  .insta-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  h1 {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }

  .hero h1 {
    font-size: clamp(2rem, 8.5vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.6rem, 6vw, 2.5rem);
  }

  .hero-content {
    padding: 100px 24px 40px;
  }

  .hero-image {
    min-height: 280px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .split-content {
    padding: 40px 24px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .duo-card {
    min-height: 300px;
  }

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

  .insta-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .floating-cta a {
    padding: 12px 20px;
    font-size: 0.8rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .usp-icon {
    width: 140px;
    height: 140px;
  }
}
