:root {
  --bg: #080A18;
  --bg-soft: #0E1126;
  --card: rgba(255, 255, 255, 0.075);
  --card-strong: rgba(255, 255, 255, 0.12);
  --text: #F6F7FB;
  --muted: #B8BED4;
  --muted-2: #858CA7;
  --line: rgba(255, 255, 255, 0.12);
  --primary: #7C5CFF;
  --line: rgba(255, 255, 255, 0.12);
  --primary-2: #00D4FF;
  --accent: #B8FF5C;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(124, 92, 255, 0.35), transparent 34rem),
    radial-gradient(circle at top right, rgba(0, 212, 255, 0.22), transparent 30rem),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
  position: relative;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 18px 0;
  transition: 0.25s ease;
}

.site-header.scrolled {
  background: rgba(8, 10, 24, 0.78);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: -0.03em;
  font-size: 1.18rem;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 16px 40px rgba(124, 92, 255, 0.35);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  color: var(--text) !important;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 7px;
  border-radius: 4px;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 150px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(8, 10, 24, 0.78), rgba(8, 10, 24, 0.9)),
    url("https://images.unsplash.com/photo-1557683316-973673baf926?auto=format&fit=crop&w=1800&q=80") center/cover;
  opacity: 0.7;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 220px;
  background: linear-gradient(transparent, var(--bg));
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
}

.eyebrow,
.section-kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.055em;
}

h1 {
  font-size: clamp(3.1rem, 7vw, 6.8rem);
  max-width: 850px;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4.5rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-text {
  color: var(--muted);
  font-size: 1.16rem;
  max-width: 680px;
  margin: 28px 0 34px;
}

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 780;
  border: 1px solid transparent;
  transition: 0.22s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  box-shadow: 0 18px 45px rgba(124, 92, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(124, 92, 255, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--line);
  color: var(--text);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.hero-stats div {
  display: grid;
  gap: 2px;
}

.hero-stats strong {
  font-size: 1.3rem;
}

.hero-stats span {
  color: var(--muted-2);
  font-size: 0.9rem;
}

.hero-card {
  position: relative;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.browser-bar {
  display: flex;
  gap: 8px;
  padding: 6px 8px 14px;
}

.browser-bar span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.hero-card img {
  border-radius: 22px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  min-width: 145px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(8, 10, 24, 0.75);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.floating-card span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.floating-card strong {
  font-size: 1.35rem;
}

.card-one {
  left: -28px;
  bottom: 64px;
}

.card-two {
  right: -24px;
  top: 105px;
}

.logos-section {
  padding: 50px 0;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.logo-row span {
  text-align: center;
  padding: 22px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  font-weight: 750;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  margin-top: 18px;
}

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

.service-card,
.included-item,
.price-card,
blockquote,
.faq-list,
.contact-form {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045));
  border-radius: var(--radius);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
}

.service-card {
  padding: 32px;
  min-height: 260px;
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 18px;
  background: rgba(124, 92, 255, 0.16);
  color: var(--accent);
  font-size: 1.5rem;
}

.service-card p,
.included-item span,
.price-card p,
.portfolio-card p,
.timeline-item p,
.split-content p,
.faq-list p,
.form-note,
.footer p {
  color: var(--muted);
}

.service-card p {
  margin-top: 16px;
}

.included-section {
  padding-top: 40px;
  background: rgba(255, 255, 255, 0.018);
}

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

.included-item {
  display: grid;
  gap: 12px;
  padding: 26px;
}

.included-item strong {
  font-size: 1.05rem;
}

.included-item span {
  font-size: 0.96rem;
}

.split-section {
  overflow: hidden;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.image-stack {
  position: relative;
  min-height: 560px;
}

.image-stack img {
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.main-img {
  height: 480px;
}

.small-img {
  position: absolute;
  width: 55%;
  right: -20px;
  bottom: 0;
  height: 250px;
}

.split-content p {
  margin: 24px 0;
  font-size: 1.08rem;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 28px 0 34px;
}

.check-list li {
  color: var(--muted);
  padding-left: 34px;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--accent);
  font-weight: 900;
}

.text-link {
  color: var(--accent);
  font-weight: 800;
}

.dark-section {
  background:
    radial-gradient(circle at center, rgba(124, 92, 255, 0.22), transparent 42rem),
    #050611;
}

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

.portfolio-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  transition: 0.25s ease;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.095);
}

.portfolio-card img {
  height: 310px;
  object-fit: cover;
  transition: 0.35s ease;
}

.portfolio-card:hover img {
  transform: scale(1.06);
}

.portfolio-card div {
  padding: 24px;
}

.portfolio-card span {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 800;
}

.portfolio-card h3 {
  margin-top: 10px;
}

.portfolio-card p {
  margin-top: 14px;
  font-size: 0.96rem;
}

.portfolio-card strong {
  display: inline-flex;
  margin-top: 18px;
  color: var(--text);
  font-size: 0.92rem;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 28px;
  align-items: start;
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
}

.timeline-item span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  font-weight: 900;
}

.timeline-item p {
  margin-top: 10px;
}

.pricing-section {
  background: rgba(255, 255, 255, 0.025);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.price-card {
  padding: 32px;
  position: relative;
}

.price-card.featured {
  transform: translateY(-18px);
  border-color: rgba(184, 255, 92, 0.38);
  box-shadow: 0 30px 90px rgba(124, 92, 255, 0.3);
}

.badge {
  position: absolute;
  right: 24px;
  top: 24px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(184, 255, 92, 0.14);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 850;
}

.price-card p {
  margin-top: 12px;
  min-height: 52px;
}

.price-card strong {
  display: block;
  font-size: 2.25rem;
  margin: 22px 0;
  letter-spacing: -0.05em;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--muted);
}

.price-card li::before {
  content: "•";
  color: var(--accent);
  margin-right: 10px;
}

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

blockquote {
  padding: 30px;
  color: var(--text);
  font-size: 1.04rem;
}

cite {
  display: block;
  margin-top: 24px;
  color: var(--muted-2);
  font-style: normal;
}

.faq-section {
  background: #050611;
}

.faq-list {
  overflow: hidden;
}

details {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}

details:last-child {
  border-bottom: 0;
}

summary {
  cursor: pointer;
  font-weight: 820;
  font-size: 1.08rem;
}

details p {
  margin-top: 12px;
}

.contact-section {
  background:
    radial-gradient(circle at bottom right, rgba(0, 212, 255, 0.16), transparent 35rem),
    var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.contact-content p:not(.eyebrow) {
  color: var(--muted);
  margin: 22px 0;
  font-size: 1.08rem;
}

.contact-info {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.contact-info .contact-mail {
  color: var(--accent);
  font-weight: 850;
  font-size: 1.1rem;
}

.contact-info span {
  color: var(--muted-2);
}

.contact-form {
  padding: 30px;
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 720;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.075);
  color: var(--text);
  border-radius: 16px;
  padding: 15px 16px;
  outline: none;
}

select option {
  color: #090A1A;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(184, 255, 92, 0.55);
}

textarea {
  resize: vertical;
}

.form-note {
  font-size: 0.86rem;
}

.footer {
  padding: 54px 0 28px;
  border-top: 1px solid var(--line);
  background: #050611;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: start;
}

.footer p {
  margin-top: 16px;
  max-width: 380px;
}

.footer-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--muted-2);
  font-size: 0.9rem;
}

.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.16), transparent 68%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: 0.75s ease;
}

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

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 680px;
  }

  .cards-grid,
  .included-grid,
  .portfolio-grid,
  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }

  .logo-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 78px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 74px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 6px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(8, 10, 24, 0.96);
    backdrop-filter: blur(18px);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 12px;
  }

  .hero {
    padding-top: 130px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4.4rem);
  }

  .hero-stats {
    gap: 22px;
  }

  .cards-grid,
  .included-grid,
  .portfolio-grid,
  .pricing-grid,
  .testimonial-grid,
  .logo-row {
    grid-template-columns: 1fr;
  }

  .floating-card {
    display: none;
  }

  .image-stack {
    min-height: auto;
  }

  .main-img {
    height: 360px;
  }

  .small-img {
    display: none;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-grid,
  .footer-bottom,
  .footer-links {
    display: grid;
  }
}

/* Full redesign pass: each demo uses a separate layout language. */
.bakery-page,
.garage-page,
.assoc-page {
  overflow-x: hidden;
}

.bakery-page {
  --bakery-ink: #382719;
  --bakery-muted: #806851;
  --bakery-paper: #FBF1DD;
  --bakery-plum: #6B3D4A;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--bakery-ink);
  background:
    linear-gradient(rgba(56, 39, 25, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 39, 25, 0.035) 1px, transparent 1px),
    var(--bakery-paper);
  background-size: 34px 34px;
}

.bakery-page h1,
.bakery-page h2,
.bakery-page h3 {
  color: var(--bakery-ink);
  letter-spacing: 0;
}

.bakery-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px min(5vw, 62px);
  background: rgba(251, 241, 221, 0.92);
  border-bottom: 1px solid rgba(56, 39, 25, 0.18);
  backdrop-filter: blur(14px);
}

.bakery-header nav {
  display: flex;
  gap: 24px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 750;
}

.bakery-header a {
  color: var(--bakery-ink);
}

.bakery-back {
  font-weight: 950;
  color: var(--bakery-plum) !important;
}

.bakery-hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  min-height: calc(100vh - 72px);
  padding: 34px min(5vw, 62px) 72px;
  gap: 42px;
  align-items: stretch;
}

.bakery-hero-img {
  height: calc(100vh - 150px);
  min-height: 520px;
  object-fit: cover;
  border-radius: 260px 260px 18px 18px;
  box-shadow: 0 28px 70px rgba(56, 39, 25, 0.18);
}

.bakery-hero-copy {
  align-self: center;
  padding: clamp(28px, 5vw, 72px) 0;
}

.bakery-label,
.bakery-section-title span,
.bakery-story span,
.bakery-hours span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--bakery-plum);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bakery-hero h1 {
  font-size: clamp(4rem, 10vw, 10rem);
  line-height: 0.86;
}

.bakery-hero-copy > p:not(.bakery-label) {
  max-width: 500px;
  margin-top: 24px;
  color: var(--bakery-muted);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.35;
}

.bakery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.bakery-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 4px;
  font-weight: 850;
}

.bakery-actions a:first-child {
  color: #fff;
  background: var(--bakery-plum);
}

.bakery-actions a:last-child {
  color: var(--bakery-ink);
  background: rgba(215, 164, 76, 0.24);
}

.bakery-note {
  position: absolute;
  right: min(5vw, 62px);
  bottom: 34px;
  max-width: 230px;
  padding: 18px 20px;
  color: var(--bakery-ink);
  background: #FFF9EB;
  border: 1px solid rgba(56, 39, 25, 0.18);
  box-shadow: 10px 10px 0 rgba(215, 164, 76, 0.42);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
}

.bakery-products,
.bakery-story,
.bakery-hours {
  padding: 96px min(5vw, 62px);
}

.bakery-section-title {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 34px;
  align-items: end;
  max-width: none;
  margin-bottom: 34px;
}

.bakery-section-title h2,
.bakery-story h2,
.bakery-hours h2 {
  font-size: clamp(2.2rem, 5vw, 5.2rem);
  line-height: 0.98;
}

.bakery-product-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.bakery-product {
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 0;
  border-radius: 0;
  background: #FFF9EB;
  border: 1px solid rgba(56, 39, 25, 0.16);
  box-shadow: none;
}

.bakery-product:nth-child(2) {
  margin-top: 72px;
}

.bakery-product img {
  height: 330px;
  border-radius: 0;
  object-fit: cover;
}

.bakery-product div {
  padding: 24px;
}

.bakery-product h3 {
  margin: 0;
  padding: 0;
  font-size: 1.55rem;
}

.bakery-product p,
.bakery-story p,
.bakery-hours-card p {
  color: var(--bakery-muted);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.bakery-product p {
  margin-top: 10px;
  padding: 0;
}

.bakery-story {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 54px;
  align-items: center;
  background: #EEDDBE;
}

.bakery-story img {
  height: 540px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: -18px 18px 0 rgba(107, 61, 74, 0.18);
}

.bakery-story p {
  max-width: 640px;
  margin-top: 22px;
  font-size: 1.08rem;
}

.bakery-hours {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 48px;
  align-items: start;
}

.bakery-hours-card {
  display: grid;
  gap: 0;
  padding: 0;
  border: 1px solid rgba(56, 39, 25, 0.2);
  border-radius: 0;
  background: #FFF9EB;
}

.bakery-hours-card p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(56, 39, 25, 0.14);
}

.bakery-hours-card p:last-child {
  border-bottom: 0;
}

.garage-page {
  --garage-bg: #030507;
  --garage-panel: #111820;
  --garage-metal: #D6E1E8;
  --garage-muted: #8FA1AD;
  --garage-lime: #B9FF3D;
  --garage-red: #FF4D35;
  --garage-line: rgba(214, 225, 232, 0.18);
  font-family: "Arial Narrow", "Roboto Condensed", "Segoe UI", Arial, sans-serif;
  color: var(--garage-metal);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 92px),
    radial-gradient(circle at 75% 5%, rgba(185, 255, 61, 0.13), transparent 25rem),
    var(--garage-bg);
}

.garage-page h1,
.garage-page h2,
.garage-page h3 {
  color: var(--garage-metal);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.garage-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px min(4vw, 56px);
  background: rgba(3, 5, 7, 0.78);
  border-bottom: 1px solid var(--garage-line);
  backdrop-filter: blur(16px);
}

.garage-logo {
  color: var(--garage-metal);
  font-size: 1.18rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.garage-header nav {
  display: flex;
  gap: 26px;
}

.garage-header nav a {
  color: var(--garage-muted);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.garage-hero {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: end;
  min-height: 100vh;
  padding: 120px min(4vw, 56px) 34px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 5, 7, 0.94), rgba(3, 5, 7, 0.4), rgba(3, 5, 7, 0.9)),
    url("https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&w=1900&q=80") center/cover;
}

.garage-hero::before {
  content: "";
  position: absolute;
  inset: 78px min(4vw, 56px) auto;
  height: 1px;
  background: var(--garage-lime);
  box-shadow: 0 0 30px rgba(185, 255, 61, 0.8);
}

.garage-rail {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 14px;
  border-left: 1px solid var(--garage-line);
  border-right: 1px solid var(--garage-line);
  color: var(--garage-muted);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.garage-rail strong {
  color: var(--garage-lime);
}

.garage-hero-copy {
  max-width: 1040px;
  padding-left: clamp(24px, 5vw, 86px);
  position: relative;
}

.garage-hero-copy span,
.garage-strip-copy span,
.garage-workshop-copy span,
.garage-booking span {
  color: var(--garage-lime);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.garage-hero h1 {
  margin-top: 16px;
  max-width: 1100px;
  font-size: clamp(3.2rem, 8vw, 8.8rem);
  line-height: 0.82;
}

.garage-hero p {
  max-width: 620px;
  margin-top: 24px;
  color: var(--garage-muted);
  font-size: 1.16rem;
}

.garage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.garage-actions a,
.garage-booking-card a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  color: #071006;
  background: var(--garage-lime);
  font-weight: 950;
  text-transform: uppercase;
}

.garage-actions a:last-child {
  color: var(--garage-metal);
  background: rgba(214, 225, 232, 0.08);
  border: 1px solid var(--garage-line);
}

.garage-dashboard {
  position: absolute;
  right: min(4vw, 56px);
  bottom: 34px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(620px, 45vw);
  border: 1px solid var(--garage-line);
  background: rgba(3, 5, 7, 0.72);
  backdrop-filter: blur(16px);
}

.garage-dashboard div {
  padding: 18px;
  border-right: 1px solid var(--garage-line);
}

.garage-dashboard div:last-child {
  border-right: 0;
}

.garage-dashboard span {
  display: block;
  color: var(--garage-muted);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.garage-dashboard strong {
  display: block;
  margin-top: 8px;
  color: var(--garage-metal);
  font-size: clamp(1.45rem, 3vw, 2.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.garage-strip {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1px;
  background: var(--garage-line);
  border-top: 1px solid var(--garage-line);
  border-bottom: 1px solid var(--garage-line);
}

.garage-strip-copy,
.garage-service {
  min-height: 340px;
  padding: 38px min(4vw, 56px);
  background: var(--garage-panel);
}

.garage-strip-copy h2,
.garage-workshop h2,
.garage-booking h2 {
  margin-top: 14px;
  font-size: clamp(2.2rem, 5vw, 5.5rem);
  line-height: 0.88;
}

.garage-service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.garage-service {
  padding: 34px;
}

.garage-service span {
  color: var(--garage-red);
  font-weight: 950;
}

.garage-service h3 {
  margin-top: 64px;
  font-size: clamp(1.35rem, 2vw, 2.25rem);
}

.garage-service p,
.garage-workshop p,
.garage-booking-card p {
  color: var(--garage-muted);
}

.garage-service p {
  margin-top: 14px;
}

.garage-workshop {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  align-items: stretch;
  padding: 0;
}

.garage-workshop-media {
  position: relative;
  height: 650px;
  overflow: hidden;
  clip-path: polygon(0 0, 94% 0, 100% 100%, 0 100%);
  background:
    linear-gradient(90deg, rgba(3, 5, 7, 0.34), rgba(3, 5, 7, 0.78)),
    repeating-linear-gradient(90deg, rgba(214, 225, 232, 0.08) 0 1px, transparent 1px 78px),
    url("https://images.unsplash.com/photo-1632823469850-1b7b1e8b7e1e?auto=format&fit=crop&w=1200&q=80") center/cover,
    linear-gradient(135deg, #05090D, #121B22 52%, #05090D);
}

.garage-workshop-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 48%, rgba(185, 255, 61, 0.34) 48% 49%, transparent 49%),
    radial-gradient(circle at 25% 35%, rgba(185, 255, 61, 0.1), transparent 18rem);
  mix-blend-mode: screen;
  pointer-events: none;
}

.garage-workshop-copy {
  display: grid;
  align-content: center;
  padding: 70px min(4vw, 56px);
  background: #070B10;
}

.garage-workshop p {
  margin-top: 22px;
  font-size: 1.06rem;
}

.garage-booking {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding: 0;
  background: var(--garage-line);
}

.garage-booking-panel,
.garage-booking-card {
  padding: 72px min(4vw, 56px);
  background: #0C1118;
}

.garage-booking-card {
  display: grid;
  align-content: center;
  gap: 16px;
  border: 0;
}

.garage-booking-card a {
  width: fit-content;
  margin-top: 14px;
}

.assoc-page {
  --assoc-ink: #142333;
  --assoc-muted: #557084;
  --assoc-sky: #92DAFF;
  --assoc-mint: #6EE7A8;
  --assoc-coral: #FF6F61;
  --assoc-yellow: #FFE46B;
  font-family: "Trebuchet MS", Inter, ui-sans-serif, system-ui, sans-serif;
  color: var(--assoc-ink);
  background:
    radial-gradient(circle at 15% 5%, rgba(146, 218, 255, 0.5), transparent 24rem),
    #F6FBFF;
}

.assoc-page h1,
.assoc-page h2,
.assoc-page h3 {
  color: var(--assoc-ink);
  letter-spacing: 0;
}

.assoc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px min(6vw, 76px);
  background: #F6FBFF;
  border-bottom: 4px solid var(--assoc-ink);
}

.assoc-mark {
  color: var(--assoc-ink);
  font-size: 1.25rem;
  font-weight: 950;
}

.assoc-header nav {
  display: flex;
  gap: 10px;
}

.assoc-header nav a {
  padding: 9px 15px;
  border: 3px solid var(--assoc-ink);
  border-radius: 0;
  color: var(--assoc-ink);
  background: #fff;
  box-shadow: 5px 5px 0 var(--assoc-ink);
  font-weight: 950;
}

.assoc-hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 54px min(6vw, 76px) 88px;
}

.assoc-hero::before {
  content: "";
  position: absolute;
  inset: auto min(6vw, 76px) 38px auto;
  width: 52vw;
  height: 26px;
  border-radius: 0;
  background: var(--assoc-yellow);
  z-index: -1;
}

.assoc-photo-wall {
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  gap: 16px;
  align-items: end;
}

.assoc-photo-wall img {
  object-fit: cover;
  border: 4px solid var(--assoc-ink);
  box-shadow: 10px 10px 0 var(--assoc-coral);
}

.assoc-photo-wall img:first-child {
  height: 560px;
}

.assoc-photo-wall img:last-child {
  height: 360px;
  margin-bottom: 54px;
  box-shadow: 10px 10px 0 var(--assoc-mint);
}

.assoc-hero-copy p,
.assoc-actions-grid span,
.assoc-volunteer span,
.assoc-donation span {
  color: var(--assoc-coral);
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.assoc-hero h1 {
  max-width: 850px;
  margin-top: 14px;
  font-size: clamp(3.2rem, 7vw, 7.8rem);
  line-height: 0.92;
}

.assoc-hero-copy > span {
  display: block;
  max-width: 620px;
  margin-top: 24px;
  color: var(--assoc-muted);
  font-size: 1.2rem;
  line-height: 1.65;
}

.assoc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.assoc-actions a,
.assoc-donation-card a {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border: 3px solid var(--assoc-ink);
  border-radius: 0;
  color: var(--assoc-ink);
  background: var(--assoc-mint);
  box-shadow: 6px 6px 0 var(--assoc-ink);
  font-weight: 950;
}

.assoc-actions a:last-child {
  background: var(--assoc-yellow);
}

.assoc-actions-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 18px;
  padding: 88px min(6vw, 76px);
  background: var(--assoc-sky);
}

.assoc-card {
  min-height: 300px;
  padding: 28px;
  border: 4px solid var(--assoc-ink);
  border-radius: 0;
  background: #fff;
  box-shadow: 10px 10px 0 var(--assoc-ink);
}

.assoc-card:nth-child(2) {
  transform: translateY(38px) rotate(-1deg);
  background: var(--assoc-yellow);
}

.assoc-card:nth-child(3) {
  transform: rotate(1deg);
  background: #DFFFEF;
}

.assoc-card h2 {
  margin-top: 58px;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 0.98;
}

.assoc-card p,
.assoc-volunteer p,
.assoc-donation-card p {
  color: var(--assoc-muted);
}

.assoc-card p {
  margin-top: 14px;
}

.assoc-volunteer {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 28px;
  padding: 88px min(6vw, 76px);
  background:
    linear-gradient(135deg, #fff 25%, transparent 25%) 0 0 / 28px 28px,
    #F6FBFF;
}

.assoc-volunteer-banner {
  padding: 42px;
  border: 4px solid var(--assoc-ink);
  background: var(--assoc-coral);
  box-shadow: 12px 12px 0 var(--assoc-ink);
}

.assoc-volunteer-banner span {
  color: #fff;
}

.assoc-volunteer h2,
.assoc-donation h2 {
  margin-top: 14px;
  font-size: clamp(2.2rem, 5vw, 5.4rem);
  line-height: 0.94;
}

.assoc-volunteer h2 {
  color: #fff;
}

.assoc-volunteer > p {
  align-self: end;
  max-width: 560px;
  margin: 0;
  padding: 28px;
  border-left: 8px solid var(--assoc-mint);
  background: #fff;
  font-size: 1.08rem;
}

.assoc-donation {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 36px;
  align-items: start;
  padding: 92px min(6vw, 76px);
  background: #142333;
}

.assoc-donation h2,
.assoc-donation span {
  color: #fff;
}

.assoc-donation-card {
  display: grid;
  gap: 0;
  padding: 0;
  border: 4px solid #fff;
  border-radius: 0;
  background: #fff;
  box-shadow: 12px 12px 0 var(--assoc-coral);
}

.assoc-donation-card p {
  padding: 20px 24px;
  border-bottom: 3px solid var(--assoc-ink);
}

.assoc-donation-card a {
  width: fit-content;
  margin: 22px 24px 24px;
}

@media (max-width: 980px) {
  .bakery-hero,
  .bakery-section-title,
  .bakery-story,
  .bakery-hours,
  .garage-hero,
  .garage-strip,
  .garage-workshop,
  .garage-booking,
  .assoc-hero,
  .assoc-volunteer,
  .assoc-donation {
    grid-template-columns: 1fr;
  }

  .bakery-product-grid,
  .garage-service-list,
  .assoc-actions-grid {
    grid-template-columns: 1fr 1fr;
  }

  .garage-rail {
    writing-mode: initial;
    flex-direction: row;
    min-height: 74px;
  }

  .garage-dashboard {
    position: static;
    width: 100%;
    margin-top: 30px;
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .garage-workshop-media {
    clip-path: none;
  }
}

@media (max-width: 760px) {
  .bakery-header,
  .garage-header,
  .assoc-header {
    align-items: flex-start;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .bakery-header nav,
  .garage-header nav,
  .assoc-header nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .bakery-hero,
  .bakery-products,
  .bakery-story,
  .bakery-hours,
  .garage-hero,
  .garage-strip-copy,
  .garage-workshop-copy,
  .garage-booking-panel,
  .garage-booking-card,
  .assoc-hero,
  .assoc-actions-grid,
  .assoc-volunteer,
  .assoc-donation {
    padding-left: 22px;
    padding-right: 22px;
  }

  .bakery-hero {
    min-height: auto;
    padding-top: 38px;
  }

  .bakery-hero-img,
  .bakery-story img,
  .garage-workshop-media,
  .assoc-photo-wall img:first-child,
  .assoc-photo-wall img:last-child {
    height: 340px;
    min-height: 0;
  }

  .bakery-note {
    position: static;
    margin: 0 22px 34px;
  }

  .bakery-product-grid,
  .garage-service-list,
  .assoc-actions-grid,
  .assoc-photo-wall {
    grid-template-columns: 1fr;
  }

  .bakery-product:nth-child(2),
  .assoc-photo-wall img:last-child {
    margin-top: 0;
    margin-bottom: 0;
  }

  .garage-header {
    position: static;
  }

  .garage-hero {
    min-height: auto;
    padding-top: 64px;
  }

  .garage-dashboard {
    grid-template-columns: 1fr;
  }

  .garage-dashboard div {
    border-right: 0;
    border-bottom: 1px solid var(--garage-line);
  }

  .garage-dashboard div:last-child {
    border-bottom: 0;
  }

  .assoc-card:nth-child(2),
  .assoc-card:nth-child(3) {
    transform: none;
  }
}
