/* That Crazy Italian & Son - Clean static build */

:root {
  --cream: #f3efe3;
  --cream-light: #fbf7ef;
  --green-dark: #022c22;
  --green: #064e3b;
  --green-mid: #065f46;
  --lime: #65a30d;
  --lime-light: #bef264;
  --amber: #fef3c7;
  --brown: #78350f;
  --stone: #1c1917;
  --stone-soft: #57534e;
  --border: #e7e5e4;
  --shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--stone);
  font-family: Arial, Helvetica, sans-serif;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 16px;
}

.eyebrow {
  margin: 0;
  color: var(--green-mid);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.large-title {
  font-size: clamp(1.6rem, 3.8vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.025em;
}

.lime {
  color: var(--lime-light);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 12px 12px 0;
}

.header-card {
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(6, 78, 59, 0.15);
  border-radius: 18px;
  background: rgba(251, 247, 239, 0.96);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(14px);
}

.header-stripe {
  height: 4px;
  background: linear-gradient(90deg, var(--brown), var(--green-mid), var(--lime));
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 14px;
}

.brand-button {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-dark);
  padding: 4px 16px 4px 4px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 2px 9px rgba(0, 0, 0, 0.08);
}

.logo-mark {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  overflow: hidden;
  border: 2px solid rgba(6, 78, 59, 0.22);
  border-radius: 50%;
  background: var(--green-dark);
  color: #d9f99d;
  font-size: 14px;
  font-weight: 900;
}

.logo-mark img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-fallback {
  position: absolute;
}

.nav-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.nav-button {
  border: 1px solid rgba(120, 53, 15, 0.12);
  border-radius: 999px;
  background: #fffbeb;
  color: #44403c;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: 0.2s;
}

.nav-button:hover,
.nav-button.active {
  background: var(--green);
  color: #fff;
  box-shadow: 0 5px 13px rgba(6, 78, 59, 0.25);
}

/* Welcome */

.notice-bar {
  border-bottom: 1px solid rgba(120, 53, 15, 0.12);
  background: var(--amber);
  color: #451a03;
  padding: 12px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background: var(--green-dark);
  color: #fff;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background:
    radial-gradient(circle at 15% 15%, rgba(132, 204, 22, 0.35), transparent 28%),
    radial-gradient(circle at 85% 75%, rgba(120, 53, 15, 0.42), transparent 32%),
    linear-gradient(135deg, rgba(20, 83, 45, 0.95), rgba(28, 25, 23, 0.9));
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(to top, rgba(69, 26, 3, 0.6), transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 1180px;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 42px;
  margin: 0 auto;
  padding: 80px 16px;
}

.hero-badge {
  display: inline-flex;
  border: 1px solid rgba(217, 249, 157, 0.25);
  border-radius: 999px;
  background: rgba(236, 252, 203, 0.14);
  color: #ecfccb;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 22px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-copy p {
  max-width: 650px;
  margin: 24px 0 0;
  color: #f5f5f4;
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-block;
  border: 0;
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 900;
  text-decoration: none;
}

.btn-green {
  background: var(--lime);
  color: var(--green-dark);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

.btn-cream {
  background: var(--amber);
  color: var(--green-dark);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

.hero-photo-card {
  overflow: hidden;
  border: 1px solid rgba(217, 249, 157, 0.2);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.hero-photo-frame {
  height: 430px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--stone);
}

.hero-photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}

/* What We Cover */

.cover-section {
  background: var(--cream);
  padding: 64px 16px;
}

.cover-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.gallery-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  padding: 12px 20px;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(6, 78, 59, 0.22);
}

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

.cover-item {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  color: #292524;
  padding: 16px;
  font-weight: 900;
  box-shadow: 0 7px 15px rgba(0, 0, 0, 0.08);
}

.check {
  display: grid;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 50%;
  background: var(--green-mid);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

/* Projects */

.projects-section {
  scroll-margin-top: 110px;
}

.section-heading {
  margin-bottom: 32px;
}

.project-card {
  border: 1px solid var(--border);
  border-radius: 30px;
  background: #fff;
  padding: 18px;
  box-shadow: var(--shadow);
}

.project-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--cream);
  padding: 22px;
}

.project-title {
  margin: 0;
  color: var(--stone);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.project-toggle {
  border: 0;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  padding: 12px 20px;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(6, 78, 59, 0.2);
  transition: 0.2s;
}

.project-toggle:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

.is-collapsed {
  display: none !important;
}

.before-after-gallery {
  display: grid;
  gap: 24px;
}

.ba-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #fff;
  padding: 16px;
  box-shadow: var(--shadow);
}

.photo-box {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: var(--stone);
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.08);
}

.photo-box img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: center center;
}

.ba-label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  border-radius: 999px;
  background: var(--stone);
  color: #fff;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.14);
}

.after-label {
  background: var(--green);
}


/* Meals */

.btn-amber {
  background: #f97316;
  color: #fff7ed;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

.meals-page {
  background: var(--cream);
}

.meals-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
}

.meals-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 32px;
}

.meals-hero h1 {
  margin: 16px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.meals-lead {
  max-width: 720px;
  color: #f5f5f4;
  font-size: 18px;
  line-height: 1.7;
}

.meal-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.meal-highlights div,
.meal-card,
.meal-order-form {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  color: var(--stone);
  box-shadow: var(--shadow);
}

.meal-highlights div {
  padding: 18px;
}

.meal-highlights strong {
  display: block;
  color: var(--green);
  font-size: 32px;
  line-height: 1;
}

.meal-highlights span {
  display: block;
  margin-top: 6px;
  color: var(--stone-soft);
  font-weight: 800;
}

.meal-card {
  padding: 28px;
}

.meal-card h2 {
  margin: 0 0 16px;
  font-size: 30px;
}

.meal-card li {
  margin: 10px 0;
  font-weight: 800;
}

.order-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: start;
}

.order-layout h2 {
  margin: 12px 0 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.order-layout p {
  color: var(--stone-soft);
  line-height: 1.7;
}

.meal-order-form {
  display: grid;
  gap: 16px;
  margin-top: 0;
  padding: 26px;
}

.meal-order-form label {
  display: grid;
  gap: 8px;
  color: var(--stone);
  font-weight: 900;
}

.meal-order-form input,
.meal-order-form textarea,
.meal-order-form select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--cream-light);
  color: var(--stone);
  padding: 14px 16px;
  outline: none;
}

.meal-order-form textarea {
  min-height: 92px;
}

.order-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-radius: 18px;
  background: var(--amber);
  color: #451a03;
  padding: 16px;
  font-weight: 900;
}

.order-total strong {
  font-size: 24px;
}

.order-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.paypal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #0070ba;
  color: #fff;
  padding: 14px 20px;
  font-weight: 900;
  text-decoration: none;
}

.paypal-button.disabled {
  background: #a8a29e;
  cursor: not-allowed;
  pointer-events: none;
}

.small-note {
  color: var(--stone-soft);
  font-size: 14px;
  line-height: 1.5;
}



.monday-note {
  margin-top: 22px;
  border-left: 5px solid #f97316;
  border-radius: 18px;
  background: #fff7ed;
  color: #431407;
  padding: 18px;
}

.monday-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.monday-note p {
  margin: 0;
  color: #7c2d12;
  line-height: 1.6;
  font-weight: 700;
}



.meals-menu-section {
  padding-top: 36px;
  padding-bottom: 36px;
}

.meals-menu-heading {
  margin-bottom: 28px;
}

.meals-menu-heading h2 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.meal-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.meal-option-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.meal-image-placeholder {
  display: grid;
  min-height: 230px;
  place-items: center;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(6, 78, 59, 0.12), rgba(249, 115, 22, 0.12)),
    repeating-linear-gradient(
      45deg,
      #f3efe3,
      #f3efe3 12px,
      #ebe3d2 12px,
      #ebe3d2 24px
    );
  color: var(--stone-soft);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.meal-option-card h3 {
  margin: 0;
  padding: 20px;
  color: var(--stone);
  font-size: 26px;
  line-height: 1.1;
}


/* Contact */

.contact-page {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  margin: 0 auto;
  padding: 56px 16px;
}

.contact-card {
  border-radius: 32px;
  background: var(--stone);
  color: #fff;
  padding: 32px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.contact-card h1 {
  margin: 10px 0 0;
  font-size: 40px;
  line-height: 1.1;
}

.contact-card p {
  color: #e7e5e4;
  line-height: 1.65;
}

.contact-list {
  margin-top: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  padding: 16px;
}

.contact-icon {
  width: 28px;
  flex-shrink: 0;
  color: var(--lime-light);
  font-weight: 900;
}

.contact-item strong {
  display: block;
  margin-bottom: 4px;
}

.contact-item span {
  color: #e7e5e4;
  word-break: break-word;
}

form {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--stone);
  padding: 14px 16px;
  outline: none;
}

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

.submit-button {
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: var(--lime);
  color: var(--green-dark);
  padding: 14px 24px;
  font-weight: 900;
}

/* Map */

.map-heading {
  margin-bottom: 20px;
}

.map-heading h2 {
  margin: 8px 0 0;
  color: var(--stone);
  font-size: 34px;
  line-height: 1.1;
}

.map-card,
.quotes-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.map-area {
  position: relative;
  height: 430px;
  overflow: hidden;
  background: #edf3df;
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(#d6dccb 1px, transparent 1px),
    linear-gradient(90deg, #d6dccb 1px, transparent 1px);
  background-size: 34px 34px;
}

.radius {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  border: 4px solid rgba(6, 95, 70, 0.8);
  border-radius: 50%;
  background: rgba(132, 204, 22, 0.1);
  box-shadow: 0 0 0 18px rgba(20, 83, 45, 0.08);
  transform: translate(-50%, -50%);
}

.pin {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
}

.pin-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin: 0 auto;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 30px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.pin-label {
  margin-top: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  padding: 12px 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.16);
}

.pin-label small {
  display: block;
  color: var(--green-mid);
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pin-label strong {
  display: block;
  color: var(--stone);
  font-size: 24px;
}

.map-chip {
  position: absolute;
  border-radius: 999px;
  background: #fff;
  color: #44403c;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 7px 14px rgba(0, 0, 0, 0.12);
}

.chip1 { top: 20%; left: 18%; }
.chip2 { top: 28%; right: 18%; }
.chip3 { bottom: 20%; left: 24%; }
.chip4 { right: 22%; bottom: 18%; }

/* Quotes */

.quotes-card {
  margin-top: 32px;
  padding: 24px;
}

.quote-box {
  margin-top: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--cream);
  color: var(--stone-soft);
  padding: 20px;
  font-weight: 800;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border);
  background: #fff;
  padding: 32px 16px;
  text-align: center;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  margin-top: 6px;
  color: var(--stone-soft);
  font-size: 14px;
}

/* Responsive */

@media (max-width: 850px) {
  .hero-inner,
  .contact-grid,
  .meals-hero-inner,
  .order-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding: 56px 16px;
  }

  .hero-photo-frame {
    height: 320px;
  }

  .cover-header,
  .project-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .cover-grid,
  .meal-highlights,
  .meal-options-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ba-row {
    grid-template-columns: 1fr;
  }

  .brand-name {
    display: none;
  }

  .header-inner {
    align-items: flex-start;
  }

  .nav-button {
    padding: 7px 10px;
    font-size: 11px;
  }

  .contact-grid {
    padding-top: 40px;
  }
}

@media (max-width: 520px) {
  .cover-grid,
  .meal-highlights,
  .meal-options-grid,
  .order-buttons {
    grid-template-columns: 1fr;
  }

  .notice-bar {
    font-size: 12px;
  }

  .hero-photo-frame {
    height: 280px;
  }

  .map-area {
    height: 360px;
  }

  .radius {
    width: 250px;
    height: 250px;
  }

  .map-chip {
    display: none;
  }
}
