/* Brand Colors */
:root {
  --beige: #f6eddc;
  --beige-deep: #e4d2ae;
  --yellow: #ffd54a;
  --yellow-deep: #f0b400;
  --black: #111111;
  --gray: #555555;
  --white: #ffffff;
}

/* Reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--beige);
  color: var(--black);
  line-height: 1.6;
}

/* Layout helpers */
.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  padding: 4rem 0;
  background: #fdf8ee;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  margin-top: 0;
  color: var(--gray);
}

.two-column {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .two-column {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 237, 220, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
}

.logo-mark {
  background: var(--black);
  color: var(--yellow);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.logo-text {
  font-size: 0.95rem;
}

.nav {
  display: none;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav a {
  text-decoration: none;
  color: var(--black);
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 0;
  height: 2px;
  background: var(--yellow-deep);
  transition: width 0.2s ease-out;
}

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

@media (min-width: 780px) {
  .nav {
    display: flex;
  }
}

/* Buttons */
.btn {
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1.3rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-deep));
  color: var(--black);
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.22);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--black);
  color: var(--black);
}

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

.btn-full {
  width: 100%;
}

.btn-mini {
  font-size: 0.78rem;
  padding: 0.45rem 0.9rem;
}

/* Hero */
.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  }
}

.hero-text h1 {
  font-size: clamp(2rem, 3vw + 1rem, 2.8rem);
  margin-bottom: 0.75rem;
}

.hero-text p {
  max-width: 34rem;
  color: var(--gray);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.5rem 0 1rem;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray);
}

.hero-bullets li::before {
  content: "•";
  margin-right: 0.35rem;
}

/* Hero Patty card */
.hero-graphic {
  display: flex;
  justify-content: center;
}

.patty-card {
  background: var(--black);
  color: var(--beige);
  border-radius: 1.4rem;
  padding: 1.3rem;
  max-width: 17rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}

.patty-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,213,74,0.4), transparent 60%);
  opacity: 0.8;
}

.patty-card > * {
  position: relative;
}

.patty-image-wrap {
  background: rgba(255,255,255,0.06);
  border-radius: 1rem;
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.patty-image-wrap img {
  max-width: 100%;
  height: auto;
  display: block;
}

.patty-caption {
  font-size: 0.8rem;
}

/* Cards */
.cards-grid {
  display: grid;
  gap: 1.6rem;
  margin-top: 2rem;
}

@media (min-width: 760px) {
  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  background: var(--white);
  border-radius: 1.1rem;
  padding: 1.4rem;
  box-shadow: 0 10px 22px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

/* Checklist */
.checklist {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.checklist li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.4rem;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.15rem;
  font-size: 0.9rem;
  color: var(--yellow-deep);
}

/* Highlight box */
.highlight-box {
  background: var(--black);
  color: var(--beige);
  border-radius: 1.1rem;
  padding: 1.5rem;
  box-shadow: 0 18px 30px rgba(0,0,0,0.3);
}

.highlight-box h3 {
  margin-top: 0;
}

.bullet-list {
  margin-top: 0.7rem;
  padding-left: 1.1rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  gap: 1.8rem;
  margin-top: 2rem;
}

@media (min-width: 780px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gallery-item p {
  font-size: 0.9rem;
}

.gallery-thumb {
  border-radius: 1rem;
  padding: 1.3rem;
  text-align: center;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.placeholder-thumb {
  border: 1px dashed rgba(0,0,0,0.25);
  background: linear-gradient(135deg, #f9f1e1, #f3e2c6);
}

.gallery-note {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 1.5rem;
}

/* Contact */
.contact-form {
  margin-top: 1.2rem;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 1.1rem;
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}

.field-group {
  margin-bottom: 0.9rem;
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 0.6rem;
  border: 1px solid rgba(0,0,0,0.18);
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--yellow);
  outline-offset: 1px;
  border-color: var(--yellow-deep);
}

.contact-sidebar {
  background: #fdf8ee;
  border-radius: 1.1rem;
  padding: 1.5rem;
}

.contact-detail {
  margin-top: 0.5rem;
}

.small-note {
  font-size: 0.8rem;
  color: var(--gray);
}

/* Footer */
.site-footer {
  padding: 1.5rem 0 2rem;
  background: var(--black);
  color: var(--beige);
}

.footer-inner {
  text-align: center;
  font-size: 0.85rem;
}

.footer-small {
  margin: 0.25rem 0 0;
  opacity: 0.8;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-out, visibility 0.2s ease-out;
  z-index: 40;
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--beige);
  border-radius: 1.2rem;
  max-width: 480px;
  width: 100%;
  padding: 1.8rem 1.6rem 1.6rem;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.modal h2 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.modal p {
  font-size: 0.9rem;
  color: var(--gray);
}

.modal-form {
  margin-top: 1rem;
}

.modal-close {
  position: absolute;
  top: 0.6rem;
  right: 0.7rem;
  background: transparent;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--black);
}

/* Floating Pothole Patty */
.patty-float {
  position: fixed;
  bottom: 1.2rem;
  right: 1rem;
  display: flex;
  align-items: flex-end;
  gap: 0.6rem;
  z-index: 30;
  animation: patty-bob 3.4s ease-in-out infinite;
}

.patty-avatar {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  background: var(--black);
  border: 2px solid var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}

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

.patty-bubble {
  max-width: 260px;
  background: var(--white);
  border-radius: 1.1rem;
  padding: 0.8rem 0.9rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  font-size: 0.82rem;
}

.patty-bubble p {
  margin: 0 0 0.6rem;
}

.patty-dismiss {
  background: transparent;
  border: none;
  font-size: 0.7rem;
  color: var(--gray);
  text-decoration: underline;
  cursor: pointer;
  margin-left: 0.4rem;
}

@keyframes patty-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 480px) {
  .patty-bubble {
      
      /* Pothole Patty floating widget */
.patty-widget {
  position: fixed;
  right: 1.5rem;
  bottom: 1rem;
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  z-index: 9999;
  transform: translateX(140%);
  opacity: 0;
  animation: patty-slide-in 1.2s ease-out 0.5s forwards;
}

@keyframes patty-slide-in {
  from {
    transform: translateX(140%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.patty-widget img {
  width: 140px;
  max-width: 35vw;
  height: auto;
}

/* Speech bubble for Patty */
.patty-bubble {
  background: #f5e7cf; /* beige to match PPLS brand */
  border: 2px solid #000;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  max-width: 230px;
}

.patty-bubble h3 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.patty-bubble p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Optional: hide Patty on very small screens */
@media (max-width: 480px) {
  .patty-widget {
    right: 0.75rem;
    bottom: 0.75rem;
    transform: translateX(110%);
  }

  .patty-bubble {
    max-width: 190px;
    padding: 0.5rem 0.75rem;
  }
}

    max-width: 210px;
  }
}.logo-mark img {
  height: 32px;
  width: auto;
  display: block;
}


}
