/* A1 Ice Cream — website styles */
@import url('./colors_and_type.css');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: #fff; color: var(--ink); font-family: var(--font-body); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ===== Buttons ===== */
.a1-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-heading); font-weight: 700; font-size: 15px;
  border: 2.5px solid var(--ink); border-radius: 999px;
  padding: 12px 22px; cursor: pointer;
  transition: transform var(--t-fast) var(--ease-bounce), box-shadow var(--t-fast) var(--ease-out);
  background: #fff; color: var(--ink); box-shadow: 3px 4px 0 var(--ink);
  text-decoration: none; line-height: 1; white-space: nowrap;
}
.a1-btn--primary { background: var(--red);   color: #fff; box-shadow: 4px 6px 0 var(--ink); }
.a1-btn--green   { background: var(--green); color: #fff; box-shadow: 4px 6px 0 var(--ink); }
.a1-btn--ghost   { background: transparent; box-shadow: none; }
.a1-btn--lg      { padding: 16px 28px; font-size: 17px; }
.a1-btn--full    { width: 100%; }
.a1-btn:hover    { transform: translate(-1px,-1px) rotate(-1.5deg); box-shadow: 5px 7px 0 var(--ink); }
.a1-btn:active   { transform: translate(4px,6px) scale(0.97); box-shadow: 0 0 0 var(--ink); }

/* ===== Section heads ===== */
.a1-eyebrow {
  display: inline-block; font-family: var(--font-display);
  font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red);
  margin-bottom: 8px;
}
.a1-section-head { text-align: center; max-width: 800px; margin: 0 auto 48px; padding: 0 24px; }
.a1-section-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem); line-height: 1.05;
  letter-spacing: 0.01em; text-transform: uppercase; color: var(--ink); margin: 0 0 14px;
}
.a1-section-sub { font-size: 18px; color: var(--ink-2); margin: 0; line-height: 1.5; }

/* ===== Confetti hero background ===== */
.confetti-bg {
  position: relative;
  background-color: #fff;
  background-image:
    radial-gradient(circle at 4%  14%, var(--dot-red)    0 9px, transparent 10px),
    radial-gradient(circle at 16% 78%, var(--dot-orange) 0 7px, transparent 8px),
    radial-gradient(circle at 31% 28%, var(--dot-yellow) 0 8px, transparent 9px),
    radial-gradient(circle at 50% 8%,  var(--dot-green)  0 9px, transparent 10px),
    radial-gradient(circle at 62% 70%, var(--dot-blue)   0 7px, transparent 8px),
    radial-gradient(circle at 78% 24%, var(--dot-pink)   0 9px, transparent 10px),
    radial-gradient(circle at 88% 58%, var(--dot-red)    0 7px, transparent 8px),
    radial-gradient(circle at 95% 90%, var(--dot-orange) 0 8px, transparent 9px),
    radial-gradient(circle at 10% 50%, var(--dot-pink)   0 7px, transparent 8px),
    radial-gradient(circle at 42% 88%, var(--dot-blue)   0 8px, transparent 9px),
    radial-gradient(circle at 70% 4%,  var(--dot-yellow) 0 6px, transparent 7px),
    radial-gradient(circle at 25% 6%,  var(--dot-blue)   0 6px, transparent 7px),
    radial-gradient(circle at 55% 38%, var(--dot-pink)   0 6px, transparent 7px),
    radial-gradient(circle at 84% 4%,  var(--dot-green)  0 7px, transparent 8px);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* ===== Header ===== */
.a1-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 12px 32px;
  background: #fff;
  border-bottom: 3px solid var(--red);
}
.a1-header__brand { display: flex; align-items: center; gap: 12px; }
.a1-header__logo  { width: 56px; height: 56px; }
.a1-header__name  { font-family: var(--font-display); font-size: 22px; line-height: 1; color: var(--green); text-transform: uppercase; }
.a1-header__tag   { font-size: 11px; color: var(--ink-2); letter-spacing: 0.04em; }
.a1-header__nav   { display: flex; gap: 26px; font-family: var(--font-heading); font-weight: 600; font-size: 15px; }
.a1-header__nav a { transition: color var(--t-fast); }
.a1-header__nav a:hover { color: var(--red); }
.a1-header__phone {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); color: var(--red); font-size: 18px;
}
.a1-header__right { display: flex; align-items: center; gap: 16px; }
@media (max-width: 1100px) { .a1-header__nav { display: none; } }
@media (max-width: 700px)  { .a1-header__phone, .a1-header__tag { display: none; } }

/* ===== Hero ===== */
.a1-hero { position: relative; padding: 56px 32px 0; }
.a1-hero__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center;
}
@media (max-width: 900px) { .a1-hero__inner { grid-template-columns: 1fr; gap: 32px; } }
.a1-hero__title {
  font-family: var(--font-display); font-size: clamp(2.5rem, 6.5vw, 5rem); line-height: 0.98;
  margin: 8px 0 18px; color: var(--ink); text-transform: uppercase; letter-spacing: 0.005em;
}
.a1-hero__title-red   { color: var(--red); }
.a1-hero__title-green { color: var(--green); }
.a1-hero__lead { font-size: 19px; line-height: 1.5; color: var(--ink-2); max-width: 540px; margin: 0 0 26px; }
.a1-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.a1-hero__proof { display: flex; align-items: center; gap: 12px; color: var(--ink-2); font-size: 14px; flex-wrap: wrap; }
.a1-hero__star  { color: #F39C2A; font-size: 18px; letter-spacing: 2px; }
.a1-hero__halal { display:inline-flex; align-items:center; gap:6px; padding:4px 10px; border:1.5px solid var(--green); border-radius:999px; color:var(--green); font-weight:700; font-size:12px; }

.a1-hero__art {
  position: relative; width: 100%; aspect-ratio: 4 / 3; max-width: 560px; margin: 0 auto;
  border-radius: 36px; overflow: hidden;
  border: 4px solid var(--ink); box-shadow: 8px 10px 0 var(--ink);
  transform: rotate(1.2deg);
}
.a1-hero__art img { width: 100%; height: 100%; object-fit: cover; }
.a1-hero__art-badge {
  position: absolute; top: -22px; left: -22px; width: 110px; height: 110px;
  background: #fff; border-radius: 50%; padding: 4px;
  border: 3px solid var(--ink); box-shadow: 4px 6px 0 var(--ink);
  transform: rotate(-12deg); z-index: 2;
  animation: a1-wiggle 3.6s ease-in-out infinite;
}
.a1-hero__art-badge img { border-radius: 50%; width: 100%; height: 100%; object-fit: cover; }
.a1-hero__art-tag {
  position: absolute; bottom: -16px; right: -10px;
  background: var(--green); color: #fff; font-family: var(--font-display); font-size: 14px;
  letter-spacing: 0.04em; padding: 8px 16px; border: 2.5px solid var(--ink); border-radius: 999px;
  text-transform: uppercase; transform: rotate(-4deg); box-shadow: 3px 4px 0 var(--ink);
}
@keyframes a1-wiggle {
  0%, 100% { transform: rotate(-12deg); }
  50%      { transform: rotate(-7deg) translateY(-2px); }
}

/* drip transition */
.a1-drip-divider {
  display: block; line-height: 0; margin-top: 64px; color: var(--red);
  /* Break out of hero's 32px side padding so the wave spans full viewport */
  margin-left: -32px; margin-right: -32px;
  width: calc(100% + 64px);
}
.a1-drip-divider svg { width: 100%; height: 60px; display: block; }

/* ===== Red Banner ===== */
.a1-banner {
  background: var(--red); color: #fff;
  padding: 56px 32px; text-align: center;
  position: relative;
}
.a1-banner__title {
  font-family: var(--font-display); font-size: clamp(2.25rem, 4.8vw, 3.5rem);
  text-transform: uppercase; letter-spacing: 0.01em; margin: 0 0 8px; line-height: 1;
}
.a1-banner__list { font-family: var(--font-display); font-size: clamp(1.25rem, 2.5vw, 1.75rem); margin: 8px 0 16px; letter-spacing: 0.02em; }
.a1-banner__phone {
  display: block; color: #fff;
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 14px 0 4px;
}
.a1-banner__url { font-family: var(--font-display); font-size: 18px; opacity: 0.95; letter-spacing: 0.04em; }

/* ===== Top Announcement Bar ===== */
.a1-announce {
  background: var(--green); color: #fff;
  border-bottom: 2.5px solid var(--ink);
  font-family: var(--font-heading); font-weight: 600;
  font-size: 15px; letter-spacing: 0.01em;
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
  padding: 10px 18px; text-align: center;
}
.a1-announce strong { font-weight: 700; }
.a1-announce__spark { font-size: 18px; }
.a1-announce__cta {
  color: var(--green); background: #fff;
  font-family: var(--font-heading); font-weight: 700; font-size: 13px;
  letter-spacing: 0.02em; text-transform: uppercase;
  border: 2px solid var(--ink); border-radius: 999px;
  padding: 4px 12px; text-decoration: none;
  transition: transform var(--t-fast) var(--ease-out);
}
.a1-announce__cta:hover { transform: translateY(-1px); }
@media (max-width: 560px) { .a1-announce { font-size: 13px; gap: 8px; padding: 9px 14px; } }

/* ===== Services ===== */
.a1-services { padding: 88px 32px; background: #fff; position: relative; }
.a1-services__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 900px) { .a1-services__grid { grid-template-columns: repeat(2, 1fr); } }
.a1-service {
  position: relative; background: var(--cream-soft); border: 2.5px solid var(--ink); border-radius: 28px;
  padding: 22px; box-shadow: 4px 6px 0 var(--ink);
  transition: transform var(--t-base) var(--ease-bounce), box-shadow var(--t-base) var(--ease-out);
}
.a1-service:hover { transform: translate(-2px,-3px) rotate(0deg) !important; box-shadow: 6px 8px 0 var(--ink); }
.a1-service__icon {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  border: 2.5px solid var(--ink); margin-bottom: 14px; color: var(--ink);
}
.a1-service__icon svg { width: 26px; height: 26px; stroke-width: 2.25; }
.a1-service--red    .a1-service__icon { background: var(--red);     color: #fff; }
.a1-service--green  .a1-service__icon { background: var(--green);   color: #fff; }
.a1-service--mango  .a1-service__icon { background: var(--mango);   color: var(--ink); }
.a1-service--mint   .a1-service__icon { background: var(--mint);    color: #fff; }
.a1-service--blue   .a1-service__icon { background: var(--dot-blue);color: #fff; }
.a1-service--pink   .a1-service__icon { background: var(--pink);    color: #fff; }
.a1-service__title { font-family: var(--font-display); font-weight: 400; font-size: 22px; margin: 0 0 8px; text-transform: uppercase; letter-spacing: 0.01em; color: var(--ink); }
.a1-service__blurb { font-size: 15px; color: var(--ink-2); line-height: 1.5; margin: 0; }
.a1-service__tag {
  position: absolute; top: -12px; right: -10px;
  background: var(--red); color: #fff; font-family: var(--font-display); font-size: 11px;
  letter-spacing: 0.04em; border: 2px solid var(--ink); border-radius: 999px;
  padding: 4px 10px; transform: rotate(8deg); text-transform: uppercase;
}

/* ===== Why Choose ===== */
.a1-why { background: var(--pink-soft); padding: 80px 32px; position: relative; }
.a1-why__inner {
  max-width: 1100px; margin: 0 auto;
  background: var(--peach); border: 3px dashed var(--ink); border-radius: 32px;
  padding: 48px 40px;
}
.a1-why h2 {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  text-transform: uppercase; text-align: center; margin: 0 0 28px; line-height: 1.1; color: var(--ink);
}
.a1-why ol {
  list-style: none; padding: 0; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 32px;
  counter-reset: a1-why; max-width: 720px;
}
@media (max-width: 600px) { .a1-why ol { grid-template-columns: 1fr; } }
.a1-why li {
  counter-increment: a1-why;
  position: relative; padding-left: 38px;
  font-family: var(--font-display); font-size: 17px; line-height: 1.3; color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.01em;
}
.a1-why li::before {
  content: counter(a1-why) ")";
  position: absolute; left: 0; top: 0;
  font-family: var(--font-display); color: var(--red); font-size: 17px;
}

/* ===== About ===== */
.a1-about { padding: 96px 32px; background: #fff; }
.a1-about__inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
@media (max-width: 900px) { .a1-about__inner { grid-template-columns: 1fr; } }
.a1-about__photo { position: relative; }
.a1-about__photo-frame {
  background: #fff; border: 4px solid var(--ink); border-radius: 28px;
  box-shadow: 8px 10px 0 var(--ink); padding: 12px;
  transform: rotate(-2deg); aspect-ratio: 4/3; overflow: hidden;
}
.a1-about__photo-frame img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; }
.a1-about__star { position: absolute; top: -16px; right: -16px; width: 90px; transform: rotate(20deg); }
.a1-about__copy p { font-size: 17px; line-height: 1.6; color: var(--ink); margin: 0 0 14px; }
.a1-about__copy strong { color: var(--red); }
.a1-about__signoff { font-family: var(--font-script); font-size: 36px; color: var(--green); margin-top: 16px; }

/* ===== Service Areas ===== */
.a1-areas { padding: 80px 32px; background: var(--peach-soft); position: relative; border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink); }
.a1-areas__inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.a1-areas h2 {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  text-transform: uppercase; margin: 0 0 28px;
}
.a1-areas__list {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 14px; margin: 0;
}
.a1-areas__city {
  font-family: var(--font-display); font-size: 18px;
  background: #fff; color: var(--ink); border: 2.5px solid var(--ink); border-radius: 999px;
  padding: 8px 18px; box-shadow: 3px 4px 0 var(--ink); text-transform: uppercase; letter-spacing: 0.02em;
  transition: transform var(--t-fast) var(--ease-bounce);
}
.a1-areas__city:hover { transform: translate(-2px,-2px) rotate(-2deg); }

/* ===== Pricing ===== */
.a1-pricing { padding: 96px 32px; background: var(--cream-soft); }
.a1-pricing__grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
@media (max-width: 900px) { .a1-pricing__grid { grid-template-columns: 1fr; } }
.a1-pkg {
  position: relative; background: #fff; border: 3px solid var(--ink); border-radius: 28px;
  padding: 28px 24px 24px; box-shadow: 5px 7px 0 var(--ink);
  display: flex; flex-direction: column;
}
.a1-pkg--featured {
  background: var(--red); color: #fff; border-width: 3.5px;
  transform: translateY(-12px) rotate(-1deg);
}
.a1-pkg--featured .a1-pkg__name,
.a1-pkg--featured .a1-pkg__price,
.a1-pkg--featured .a1-pkg__per,
.a1-pkg--featured ul li { color: #fff; }
.a1-pkg__tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%) rotate(-3deg);
  background: var(--green); color: #fff; font-family: var(--font-display); font-size: 12px;
  letter-spacing: 0.06em; border: 2px solid var(--ink); border-radius: 999px;
  padding: 4px 14px; text-transform: uppercase; box-shadow: 2px 3px 0 var(--ink); white-space: nowrap;
}
.a1-pkg__name { font-family: var(--font-display); font-size: 24px; text-transform: uppercase; margin: 0 0 4px; color: var(--ink); }
.a1-pkg__sub  { font-size: 13px; color: var(--ink-2); margin: 0 0 18px; letter-spacing: 0.04em; text-transform: uppercase; }
.a1-pkg--featured .a1-pkg__sub { color: rgba(255,255,255,0.85); }
.a1-pkg__price { font-family: var(--font-display); font-size: 56px; line-height: 1; color: var(--ink); margin: 0; }
.a1-pkg__per   { font-size: 13px; color: var(--ink-2); margin: 4px 0 18px; }
.a1-pkg ul { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.a1-pkg li  { display: flex; align-items: flex-start; gap: 8px; font-size: 14.5px; color: var(--ink); line-height: 1.4; }
.a1-pkg li::before {
  content: ""; flex: none; width: 18px; height: 18px; margin-top: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D43838' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: contain; background-repeat: no-repeat;
}
.a1-pkg--featured li::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}
.a1-pkg__cta { margin-top: auto; }
.a1-pricing__foot { text-align: center; max-width: 720px; margin: 36px auto 0; color: var(--ink-2); font-size: 15px; }

/* ===== Menu ===== */
.a1-menu { padding: 96px 32px; position: relative; background: #fff; }
.a1-menu__filters {
  max-width: 1200px; margin: 0 auto 28px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
}
.a1-menu__filter {
  font-family: var(--font-heading); font-weight: 700; font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase;
  background: #fff; color: var(--ink); border: 2px solid var(--ink); border-radius: 999px;
  padding: 8px 14px; cursor: pointer; box-shadow: 2px 3px 0 var(--ink);
  transition: transform var(--t-fast) var(--ease-out);
}
.a1-menu__filter:hover { transform: translate(-1px,-1px); }
.a1-menu__filter.is-active { background: var(--red); color: #fff; }
.a1-menu__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
@media (max-width: 900px) { .a1-menu__grid { grid-template-columns: repeat(2, 1fr); } }
.a1-treat {
  position: relative; background: #fff; border: 2.5px solid var(--ink); border-radius: 22px;
  padding: 12px; box-shadow: 4px 6px 0 var(--ink);
  transition: transform var(--t-base) var(--ease-bounce);
}
.a1-treat:hover { transform: translate(-2px,-3px) rotate(0deg) !important; }
.a1-treat__art { border-radius: 14px; height: 130px; display: flex; align-items: center; justify-content: center; border: 2px solid var(--ink); margin-bottom: 12px; overflow: hidden; }
.a1-treat__art img { height: 92px; width: auto; }
@media (max-width: 900px) {
  .a1-treat__art { height: auto; aspect-ratio: 1/1; }
  .a1-treat__art img { height: 80%; width: auto; max-width: 90%; }
}
.a1-treat__name { font-family: var(--font-display); font-size: 16px; margin: 0; line-height: 1.15; color: var(--ink); text-transform: uppercase; letter-spacing: 0.01em; }
.a1-treat__brand { font-size: 12px; color: var(--ink-2); margin-top: 4px; font-weight: 600; }
.a1-treat__tag {
  position: absolute; top: 8px; right: 8px;
  font-family: var(--font-display); font-size: 10px; letter-spacing: 0.04em;
  background: var(--red); color: #fff; border: 1.5px solid var(--ink); border-radius: 999px; padding: 3px 8px; text-transform: uppercase;
}
.a1-menu__foot { text-align: center; max-width: 600px; margin: 36px auto 0; color: var(--ink-2); font-size: 15px; }
.a1-menu__expand { display: flex; justify-content: center; margin-top: 36px; }
.a1-menu__viewmore {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 17px; letter-spacing: 0.01em;
  text-transform: uppercase; color: #fff; cursor: pointer;
  background: var(--red); border: 2.5px solid var(--ink); border-radius: 999px;
  padding: 14px 28px; box-shadow: var(--shadow-pop-sm);
  transition: transform var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
}
.a1-menu__viewmore:hover { transform: translate(-2px,-2px) rotate(-1.5deg); box-shadow: var(--shadow-pop); }
.a1-menu__viewmore:active { transform: translate(0,0); box-shadow: 0 0 0 var(--ink); }

/* ===== Gallery ===== */
.a1-gallery { padding: 80px 32px; background: var(--cream-soft); border-top: 3px solid var(--ink); }
.a1-gallery__strip {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 900px) { .a1-gallery__strip { grid-template-columns: repeat(2, 1fr); } }
.a1-gallery__item {
  background: #fff; border: 3px solid var(--ink); border-radius: 18px;
  box-shadow: 4px 6px 0 var(--ink); overflow: hidden; aspect-ratio: 4/3;
  transition: transform var(--t-base) var(--ease-bounce);
}
.a1-gallery__item:nth-child(odd)  { transform: rotate(-1.5deg); }
.a1-gallery__item:nth-child(even) { transform: rotate(1.5deg);  }
.a1-gallery__item:hover { transform: rotate(0) scale(1.03); }
.a1-gallery__item img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Testimonials ===== */
.a1-testimonials { padding: 96px 32px; background: #fff; }
.a1-testimonials__grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
@media (max-width: 900px) { .a1-testimonials__grid { grid-template-columns: 1fr; } }
.a1-quote {
  background: var(--paper); border: 2.5px solid var(--ink); border-radius: 28px;
  padding: 28px 26px 24px; box-shadow: 5px 7px 0 var(--ink);
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
}
.a1-quote:nth-child(1) { transform: rotate(-1deg); background: var(--cream-soft); }
.a1-quote:nth-child(2) { transform: rotate(0.5deg); }
.a1-quote:nth-child(3) { transform: rotate(-0.5deg); background: var(--peach-soft); }
.a1-quote__stars { color: #F39C2A; font-size: 18px; letter-spacing: 3px; }
.a1-quote__body  { font-size: 16px; color: var(--ink); line-height: 1.5; margin: 0; }
.a1-quote__body::before { content: "\201C"; font-family: var(--font-display); font-size: 38px; color: var(--red); line-height: 0; vertical-align: -18px; margin-right: 4px; }
.a1-quote__person { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.a1-quote__avatar {
  width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--ink);
  display: flex; align-items: center; justify-content: center; flex: none;
  font-family: var(--font-display); font-size: 16px; color: var(--ink); text-transform: uppercase;
}
.a1-quote__name { font-family: var(--font-heading); font-weight: 700; font-size: 14px; color: var(--ink); }
.a1-quote__where { font-size: 12px; color: var(--ink-2); }

/* ===== FAQ ===== */
.a1-faq { padding: 96px 32px; background: var(--pink-soft); }
.a1-faq__inner { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.a1-faq__item {
  background: #fff; border: 2.5px solid var(--ink); border-radius: 22px;
  box-shadow: 4px 5px 0 var(--ink); overflow: hidden;
  transition: transform var(--t-fast) var(--ease-out);
}
.a1-faq__item[open] { transform: translate(-1px,-1px); }
.a1-faq__q {
  list-style: none; cursor: pointer; padding: 18px 22px;
  font-family: var(--font-heading); font-weight: 700; font-size: 17px; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.a1-faq__q::-webkit-details-marker { display: none; }
.a1-faq__q::after {
  content: "+"; font-family: var(--font-display); font-size: 28px; color: var(--red);
  line-height: 0.6; transition: transform var(--t-base) var(--ease-bounce);
  flex: none;
}
.a1-faq__item[open] .a1-faq__q::after { content: "\2013"; transform: rotate(0); }
.a1-faq__a { padding: 0 22px 20px; color: var(--ink-2); font-size: 15.5px; line-height: 1.55; }

/* ===== Contact ===== */
.a1-contact { padding: 96px 32px; background: var(--pink-soft); }
.a1-contact__inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start;
}
@media (max-width: 900px) { .a1-contact__inner { grid-template-columns: 1fr; } }
.a1-contact__copy p { font-size: 17px; color: var(--ink-2); line-height: 1.5; }
.a1-contact__list { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 12px; }
.a1-contact__list li { display: flex; align-items: center; gap: 12px; font-size: 15px; }
.a1-contact__list .a1-emoji { width: 24px; text-align: center; font-size: 18px; }

.a1-form {
  background: #fff; border: 3px solid var(--ink); border-radius: 28px;
  padding: 28px; box-shadow: 6px 8px 0 var(--ink);
  display: flex; flex-direction: column; gap: 14px;
}
.a1-form label { display: flex; flex-direction: column; gap: 6px; font-family: var(--font-heading); font-weight: 600; font-size: 14px; color: var(--ink); }
.a1-form input, .a1-form select, .a1-form textarea {
  font-family: var(--font-body); font-size: 16px; padding: 12px 16px;
  border: 2px solid var(--ink); border-radius: 14px; background: #fff; color: var(--ink); outline: none;
  transition: box-shadow var(--t-fast) var(--ease-out);
}
.a1-form input:focus, .a1-form select:focus, .a1-form textarea:focus { box-shadow: 3px 4px 0 var(--green); }
.a1-form input.is-error, .a1-form select.is-error { border-color: var(--red); box-shadow: 3px 4px 0 var(--red); }
.a1-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.a1-form__sent { text-align: center; padding: 32px 8px; display:flex; flex-direction:column; align-items:center; gap:10px; }
.a1-form__sent h3 { margin: 0; font-family: var(--font-display); font-size: 26px; text-transform: uppercase; }
.a1-form__sent p  { margin: 0; color: var(--ink-2); }
.a1-form__error { color: var(--red); font-size: 13px; font-weight: 700; }
.a1-form__respond-note { font-size: 13px; color: var(--ink-2); text-align: center; padding: 6px 0 2px; font-weight: 600; }

/* ===== Footer ===== */
.a1-footer { background: var(--ink); color: #fff; padding: 56px 32px 28px; }
.a1-footer__inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 48px; }
@media (max-width: 700px) { .a1-footer__inner { grid-template-columns: 1fr; } }
.a1-footer__brand { display: flex; gap: 14px; align-items: center; }
.a1-footer__logo { width: 64px; height: 64px; }
.a1-footer__name { font-family: var(--font-display); font-size: 22px; line-height: 1; text-transform: uppercase; }
.a1-footer__tag { font-size: 13px; opacity: 0.7; }
.a1-footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 540px) { .a1-footer__cols { grid-template-columns: 1fr 1fr; } }
.a1-footer__head { font-family: var(--font-display); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--pink); margin-bottom: 10px; }
.a1-footer__cols a { display: flex; align-items: center; gap: 8px; padding: 4px 0; font-size: 14px; opacity: 0.85; transition: opacity var(--t-fast); }
.a1-footer__cols a:hover { opacity: 1; color: #fff; }
.a1-footer__cols svg { width: 16px; height: 16px; stroke-width: 2.25; }
.a1-footer__legal { text-align: center; font-size: 12px; opacity: 0.5; margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.15); }

/* ===== Reveal on scroll ===== */
.a1-reveal { opacity: 0; transform: translateY(24px); transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-bounce); }
.a1-reveal.is-in { opacity: 1; transform: translateY(0); }

/* =========================================================
   MOBILE FIXES — keep everything inside the viewport
   ========================================================= */
@media (max-width: 720px) {
  /* Tighten side padding everywhere */
  .a1-header,
  .a1-hero,
  .a1-banner,
  .a1-services,
  .a1-why,
  .a1-about,
  .a1-areas,
  .a1-pricing,
  .a1-menu,
  .a1-gallery,
  .a1-testimonials,
  .a1-faq,
  .a1-contact,
  .a1-footer { padding-left: 16px !important; padding-right: 16px !important; }

  .a1-services, .a1-about, .a1-pricing, .a1-menu, .a1-testimonials, .a1-faq, .a1-contact { padding-top: 40px; padding-bottom: 40px; }
  .a1-why, .a1-areas, .a1-gallery { padding-top: 32px; padding-bottom: 32px; }

  /* Services — always 2-col on mobile, compact cards */
  .a1-services__grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; }
  .a1-service { padding: 14px !important; border-radius: 14px !important; }
  .a1-service__icon { width: 36px !important; height: 36px !important; border-radius: 10px !important; margin-bottom: 8px !important; }
  .a1-service__icon svg { width: 18px !important; height: 18px !important; }
  .a1-service__title { font-size: 14px !important; margin-bottom: 4px; }
  .a1-service__blurb { font-size: 12px !important; line-height: 1.4; }
  .a1-service__more { font-size: 11px; margin-top: 8px; }

  /* Header — slim it down */
  .a1-header { padding: 10px 16px; gap: 8px; }
  .a1-header__logo { width: 44px; height: 44px; }
  .a1-header__name { font-size: 17px; }
  .a1-header__tag  { display: none; }
  .a1-header__right .a1-btn { padding: 10px 14px; font-size: 13px; }

  /* Hero — keep the badge from poking off-screen, scale art down */
  .a1-hero { padding-top: 24px; }
  .a1-hero__inner { gap: 18px; }
  .a1-hero__title { font-size: clamp(1.85rem, 8.5vw, 2.6rem); }
  .a1-hero__lead  { font-size: 14px; }
  .a1-hero__art { transform: rotate(0.6deg); border-width: 3px; box-shadow: 5px 6px 0 var(--ink); max-width: 340px; }
  .a1-hero__art-badge { width: 64px; height: 64px; top: -8px; left: -8px; }
  .a1-hero__art-tag   { right: 0; bottom: -10px; font-size: 10px; padding: 5px 10px; }
  .a1-hero__cta { gap: 8px; margin-bottom: 16px; }
  .a1-hero__cta .a1-btn { font-size: 13px; padding: 10px 16px; }
  .a1-hero__proof { font-size: 12px; gap: 8px; }

  /* Banner */
  .a1-banner { padding: 28px 16px; }
  .a1-banner__title { font-size: clamp(1.35rem, 5.5vw, 1.9rem); margin-bottom: 6px; }
  .a1-banner__list  { font-size: clamp(0.85rem, 3.2vw, 1.1rem); margin: 4px 0 10px; }
  .a1-banner__phone { font-size: clamp(1.5rem, 6.5vw, 2.1rem); margin: 8px 0 4px; }
  .a1-banner__url   { font-size: 13px; }

  /* Why-Choose card */
  .a1-why h2 { font-size: clamp(1.3rem, 5.5vw, 1.8rem); margin-bottom: 16px; }
  .a1-why__inner { padding: 18px 14px; border-radius: 18px; }
  .a1-why ol { gap: 9px 14px; }
  .a1-why li { font-size: 13px; padding-left: 28px; line-height: 1.35; }
  .a1-why li::before { font-size: 13px; }

  /* Pricing — compact cards, no wasted space */
  .a1-pricing { padding: 36px 16px; }
  .a1-pricing__grid { gap: 12px; }
  .a1-pkg--featured { transform: none; }
  .a1-pkg { padding: 14px 12px; border-radius: 16px; box-shadow: 3px 4px 0 var(--ink); }
  .a1-pkg__name { font-size: 15px; margin-bottom: 2px; }
  .a1-pkg__sub { font-size: 10.5px; margin-bottom: 8px; }
  .a1-pkg__price { font-size: 26px; line-height: 1.05; }
  .a1-pkg__per { font-size: 10.5px; margin: 3px 0 10px; }
  .a1-pkg ul { gap: 5px; margin-bottom: 12px; }
  .a1-pkg li { font-size: 12px; gap: 5px; }
  .a1-pkg li::before { width: 14px; height: 14px; margin-top: 1px; flex: none; }
  .a1-pkg__tag { font-size: 10px; padding: 3px 10px; top: -11px; }
  .a1-pkg__cta { font-size: 13px !important; padding: 10px 14px !important; }
  .a1-pricing__foot { font-size: 12px; margin-top: 16px; line-height: 1.55; }

  /* Menu — 2-col grid, compact treats */
  .a1-menu { padding: 32px 16px; }
  .a1-menu__grid { gap: 10px; }
  .a1-menu__filters { gap: 6px; margin-bottom: 16px; }
  .a1-menu__filter { font-size: 11.5px; padding: 6px 10px; }
  .a1-treat { padding: 9px; border-radius: 16px; }
  .a1-treat__art { margin-bottom: 8px; border-radius: 10px; border-width: 1.5px; }
  .a1-treat__name { font-size: 13px; }
  .a1-treat__brand { font-size: 11px; margin-top: 3px; }
  .a1-treat__tag { font-size: 9px; padding: 2px 7px; }
  .a1-menu__viewmore { font-size: 13px !important; padding: 10px 20px !important; gap: 6px; }
  .a1-menu__foot { font-size: 12px; margin-top: 20px; }

  /* About — compact photo, readable copy */
  .a1-about { padding: 36px 16px; }
  .a1-about__inner { gap: 24px; }
  .a1-about__photo-frame { transform: none; aspect-ratio: 16/9; border-radius: 20px; box-shadow: 5px 6px 0 var(--ink); padding: 8px; }
  .a1-about__star { width: 52px; top: -10px; right: -6px; }
  .a1-about__copy p { font-size: 15px; line-height: 1.55; margin: 0 0 10px; }
  .a1-about__copy strong { font-size: inherit; }
  .a1-about__signoff { font-size: 28px; margin-top: 10px; }
  .a1-about__cta { margin-top: 14px; gap: 10px; }
  .a1-about__cta .a1-btn { font-size: 13px; padding: 10px 16px; }

  /* Testimonials — no rotations, compact marquee */
  .a1-quote, .a1-quote:nth-child(1), .a1-quote:nth-child(2), .a1-quote:nth-child(3) { transform: none; }
  .a1-testimonials { padding: 28px 0; }
  .a1-testimonials .a1-section-head { padding: 0 16px; margin-bottom: 20px; }
  .a1-testimonials--marquee .a1-quote { flex: 0 0 230px; margin-right: 14px; padding: 16px 14px; }
  .a1-quote__body { font-size: 13px; line-height: 1.45; }
  .a1-quote__stars { font-size: 14px; letter-spacing: 1px; }
  .a1-quote__name { font-size: 12px; }
  .a1-quote__where { font-size: 11px; }
  .a1-quote__avatar { width: 36px; height: 36px; font-size: 13px; }

  /* Gallery — no tilts, compact marquee */
  .a1-gallery__item, .a1-gallery__item:nth-child(odd), .a1-gallery__item:nth-child(even) { transform: none; }
  .a1-gallery { padding: 24px 0; }
  .a1-gallery .a1-section-head { padding: 0 16px; margin-bottom: 16px; }
  .a1-gallery--marquee .a1-gallery__item { flex: 0 0 180px; }

  /* FAQ — compact questions */
  .a1-faq { padding: 32px 16px; }
  .a1-faq__inner { gap: 8px; }
  .a1-faq__q { font-size: 14px; padding: 14px 16px; }
  .a1-faq__a { font-size: 13px; padding: 0 16px 14px; line-height: 1.5; }
  .a1-faq__item { border-radius: 16px; box-shadow: 3px 4px 0 var(--ink); border-width: 2px; }

  /* Contact — compact copy + form */
  .a1-contact { padding: 32px 16px; }
  .a1-contact__inner { gap: 20px; }
  .a1-contact__copy p { font-size: 14px; line-height: 1.5; }
  .a1-contact__list { gap: 8px; margin-top: 14px; }
  .a1-contact__list li { font-size: 13px; gap: 8px; }
  .a1-contact__list .a1-emoji { font-size: 15px; }
  .a1-form { padding: 16px 14px; border-width: 2px; box-shadow: 3px 4px 0 var(--ink); gap: 10px; border-radius: 20px; }
  .a1-form__row { grid-template-columns: 1fr; gap: 10px; }
  .a1-form input, .a1-form select, .a1-form textarea {
    font-size: 16px; /* iOS won't auto-zoom on focus at 16px+ */
    padding: 9px 12px; width: 100%; min-width: 0;
    border-radius: 10px; border-width: 1.5px;
  }
  .a1-form textarea { rows: 2; min-height: 70px; }
  .a1-form label { gap: 3px; font-size: 12px; }
  .a1-form__respond-note { font-size: 11.5px; padding: 4px 0; }
  .a1-form__sent h3 { font-size: 20px; }
  .a1-form__sent p { font-size: 13px; }

  /* Service Areas */
  .a1-areas { padding: 28px 16px; }
  .a1-areas h2 { font-size: clamp(1.3rem, 5.5vw, 1.8rem); margin-bottom: 16px; }
  .a1-areas__list { gap: 7px 8px; }
  .a1-areas__city { font-size: 13px; padding: 6px 13px; box-shadow: 2px 3px 0 var(--ink); border-width: 2px; }

  /* Section headings — pull in oversized text */
  .a1-section-title { font-size: clamp(1.4rem, 6.5vw, 2rem); padding: 0 4px; }
  .a1-section-sub   { font-size: 14px; }
  .a1-section-head  { padding: 0 8px; margin-bottom: 24px; }

  /* Pricing foot note */
  .a1-pricing__foot { font-size: 13px; margin-top: 20px; }

  /* Footer */
  .a1-footer { padding-top: 36px; }
  .a1-footer__inner { gap: 24px; }
  .a1-footer__cols { grid-template-columns: 1fr 1fr; gap: 16px; }
  .a1-footer__logo { width: 48px; height: 48px; }
  .a1-footer__name { font-size: 18px; }
  .a1-footer__cols a { font-size: 13px; }
}

/* Extra-small phones (<= 380px) — squeeze a bit more */
@media (max-width: 380px) {
  .a1-pricing__grid { grid-template-columns: 1fr !important; }
  .a1-header__right { gap: 6px; }
  .a1-header__right .a1-btn { padding: 8px 10px; font-size: 12px; }
  .a1-hero__title { font-size: clamp(1.7rem, 8.5vw, 2.2rem); }
  .a1-hero__cta { gap: 8px; }
  .a1-banner__phone { font-size: clamp(1.5rem, 8vw, 2rem); }
  .a1-areas__city { font-size: 13px; padding: 5px 11px; }
  /* Services stay 2-col even on tiny phones, just tighter */
  .a1-services__grid { gap: 8px; }
  .a1-service { padding: 12px !important; }
  .a1-service__title { font-size: 13px !important; }
  .a1-service__blurb { font-size: 11px !important; }
}

/* Mobile drip divider — compensate narrower padding at 720px */
@media (max-width: 720px) {
  .a1-drip-divider {
    margin-left: -16px; margin-right: -16px;
    width: calc(100% + 32px);
  }
}

/* ============================================================
   Clickable services, cities, about CTA, and menu uploads
   ============================================================ */

/* Service tiles as links */
a.a1-service, a.a1-service--link {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
.a1-service__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: gap var(--t-fast) var(--ease-out);
}
.a1-service--link:hover .a1-service__more { gap: 10px; }
.a1-service--link:hover .a1-service__more svg { transform: translateX(2px); }
.a1-service__more svg { transition: transform var(--t-fast) var(--ease-out); }

/* About: Read More CTA */
.a1-about__cta {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.a1-about__cta .a1-btn { text-decoration: none; }

/* Clickable city pills */
a.a1-areas__city, .a1-areas__city--link {
  text-decoration: none;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.a1-areas__city--link::after {
  content: "›";
  font-family: var(--font-display);
  color: var(--red);
  font-size: 22px;
  line-height: 1;
  margin-left: 2px;
  transition: transform var(--t-fast) var(--ease-out);
}
.a1-areas__city--link:hover::after { transform: translateX(3px); }

/* ===== Menu image upload UI ===== */
.a1-menu__upload-hint {
  max-width: 640px;
  margin: 16px auto 0;
  font-size: 14px;
  color: var(--ink-2);
  background: var(--cream-soft);
  border: 1.5px dashed var(--ink-3);
  border-radius: 999px;
  padding: 8px 18px;
  line-height: 1.4;
}
.a1-menu__upload-hint svg { color: var(--red); }
.a1-menu__clear {
  background: none;
  border: none;
  color: var(--red);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  padding: 0;
}
.a1-menu__clear:hover { color: var(--red-deep); }

.a1-treat--upload { cursor: pointer; }
.a1-treat--upload .a1-treat__art { position: relative; }
.a1-treat--upload.has-image .a1-treat__art {
  background: #fff !important;
}
.a1-treat__photo {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

/* Overlay shown on hover or while dragging */
.a1-treat__overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 30, 45, 0.78);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease-out);
  pointer-events: none;
}
.a1-treat--upload:hover .a1-treat__overlay,
.a1-treat--upload.is-drag .a1-treat__overlay {
  opacity: 1;
}
.a1-treat--upload.is-drag {
  outline: 3px dashed var(--red);
  outline-offset: 3px;
}

/* Remove button on uploaded photo */
.a1-treat__remove {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--ink);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 2px 3px 0 var(--ink);
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease-out), transform var(--t-fast) var(--ease-bounce);
  z-index: 2;
}
.a1-treat--upload.has-image:hover .a1-treat__remove { opacity: 1; }
.a1-treat__remove:hover { transform: scale(1.1); background: var(--red); color: #fff; border-color: var(--ink); }

/* ============================================================
   Click :active animations on tiles + marquees + mobile sticky CTA
   ============================================================ */

/* Press-in feedback for every clickable tile family */
a.a1-service:active,
a.a1-areas__city:active,
.a1-areas__city--link:active {
  transform: translate(2px, 3px) rotate(0deg) !important;
  box-shadow: 0 0 0 var(--ink) !important;
}

/* Hover lift on city pills (in addition to existing rotate) */
a.a1-areas__city:hover,
.a1-areas__city--link:hover {
  transform: translate(-2px, -2px) rotate(-2deg);
  box-shadow: 5px 6px 0 var(--ink);
}

/* Service tiles get a deeper press */
a.a1-service:active {
  transform: translate(2px, 4px) !important;
  box-shadow: 1px 2px 0 var(--ink) !important;
  transition: transform 80ms var(--ease-out), box-shadow 80ms var(--ease-out);
}

/* Gallery — marquee (continuous right-to-left loop) */
.a1-gallery--marquee .a1-gallery__strip {
  display: flex !important;
  max-width: none !important;
  width: max-content;
  grid-template-columns: none !important;
  gap: 16px;
  animation: a1-marquee-right 60s linear infinite;
  will-change: transform;
}
.a1-gallery--marquee { overflow: hidden; }
.a1-gallery--marquee .a1-gallery__item {
  flex: 0 0 320px;
  aspect-ratio: 4/3;
  height: auto;
}
.a1-gallery--marquee:hover .a1-gallery__strip { animation-play-state: paused; }

@keyframes a1-marquee-right {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Testimonials — marquee (continuous left-to-right loop) */
.a1-testimonials--marquee {
  overflow: hidden;
}
.a1-testimonials--marquee .a1-testimonials__grid {
  display: flex !important;
  max-width: none !important;
  width: max-content;
  grid-template-columns: none !important;
  gap: 0;
  animation: a1-marquee-left 80s linear infinite;
  will-change: transform;
}
.a1-testimonials--marquee .a1-quote {
  flex: 0 0 380px;
  margin-right: 22px;
}
.a1-testimonials--marquee:hover .a1-testimonials__grid { animation-play-state: paused; }

@keyframes a1-marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Sticky mobile "Book the Truck" button — visible <=700px to match
   the breakpoint where the header phone is hidden */
.a1-sticky-book {
  position: fixed;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 49;
  display: none;
  gap: 10px;
}
.a1-sticky-book .a1-btn {
  flex: 1;
  font-size: 16px;
  padding: 14px 18px;
  box-shadow: 4px 5px 0 var(--ink);
}
@media (max-width: 700px) {
  .a1-sticky-book { display: flex; }
  /* keep last section clear of the sticky bar */
  .a1-footer { padding-bottom: 96px; }
}

/* Photo-only testimonial card (used inside the marquee for uploaded photos) */
.a1-quote--photo {
  padding: 0 !important;
  overflow: hidden;
  background: var(--ink) !important;
  border: 2.5px solid var(--ink) !important;
  position: relative;
  aspect-ratio: 4/5;
  display: flex !important;
  align-items: flex-end;
}
.a1-quote--photo > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.a1-quote--photo__caption {
  position: relative;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  padding: 32px 16px 14px;
  width: 100%;
}

/* ===== Header nav: Home link + dropdown menus for Services / Cities ===== */
.a1-nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.a1-nav-group > button {
  appearance: none;
  background: transparent;
  border: 0;
  font-family: inherit;
  font-weight: 600;
  font-size: 15px;
  color: inherit;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--t-fast);
}
.a1-nav-group > button:hover { color: var(--red); }
.a1-nav-group > button::after {
  content: "▾";
  font-size: 11px;
  margin-left: 2px;
  opacity: 0.6;
}
.a1-nav-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  box-shadow: 4px 6px 0 var(--ink);
  padding: 8px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 140ms var(--ease-out), transform 140ms var(--ease-out);
  z-index: 60;
}
.a1-nav-group:hover .a1-nav-menu,
.a1-nav-group:focus-within .a1-nav-menu,
.a1-nav-group.is-open .a1-nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.a1-nav-menu a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--t-fast), color var(--t-fast);
}
.a1-nav-menu a:hover {
  background: var(--cream-soft);
  color: var(--red);
}

/* ===== Hamburger button ===== */
.a1-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 10px;
  box-shadow: 3px 4px 0 var(--ink);
  cursor: pointer;
  padding: 0;
  transition: transform 120ms, box-shadow 120ms;
}
.a1-hamburger:active { transform: translate(3px,4px); box-shadow: 0 0 0 var(--ink); }
.a1-hamburger span {
  display: block;
  width: 18px; height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
}
@media (max-width: 1100px) { .a1-hamburger { display: flex; } }

/* ===== Mobile drawer overlay ===== */
.a1-mobile-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.45);
  animation: a1-fade-in 180ms ease;
}
@keyframes a1-fade-in { from { opacity: 0; } to { opacity: 1; } }

.a1-mobile-drawer {
  position: absolute; top: 0; right: 0;
  width: min(320px, 88vw); height: 100%;
  background: #fff;
  border-left: 3px solid var(--ink);
  display: flex; flex-direction: column;
  animation: a1-slide-in 220ms cubic-bezier(0.22,1,0.36,1);
  overflow-y: auto;
}
@keyframes a1-slide-in {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

.a1-mobile-drawer__head {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 18px;
  border-bottom: 2.5px solid var(--ink);
  background: var(--cream-soft);
}
.a1-mobile-drawer__name {
  font-family: var(--font-display); font-size: 18px;
  color: var(--green); text-transform: uppercase; flex: 1;
}
.a1-mobile-drawer__close {
  background: none; border: none; font-size: 20px;
  cursor: pointer; color: var(--ink); padding: 4px 8px;
  font-family: var(--font-heading); font-weight: 700;
  border-radius: 8px; transition: background 120ms;
}
.a1-mobile-drawer__close:hover { background: var(--red); color: #fff; }

.a1-mobile-drawer__nav {
  display: flex; flex-direction: column;
  padding: 12px 0; flex: 1;
}
.a1-mobile-drawer__link {
  display: block;
  padding: 14px 22px;
  font-family: var(--font-heading); font-weight: 700; font-size: 17px;
  color: var(--ink); text-decoration: none;
  border-bottom: 1.5px solid var(--cream-soft);
  transition: background 120ms, color 120ms, padding-left 120ms;
}
.a1-mobile-drawer__link:hover {
  background: var(--cream-soft); color: var(--red); padding-left: 28px;
}

.a1-mobile-drawer__footer {
  display: flex; flex-direction: column; gap: 10px;
  padding: 18px;
  border-top: 2.5px solid var(--ink);
  background: var(--cream-soft);
}

/* ===== Mobile size fixes ===== */
@media (max-width: 600px) {

  /* Tighter section padding */
  .a1-services, .a1-menu, .a1-about,
  .a1-pricing, .a1-faq, .a1-areas,
  .a1-testimonials, .a1-gallery,
  .a1-contact, .a1-footer {
    padding-left: 14px !important;
    padding-right: 14px !important;
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }

  /* Hero tighter */
  .a1-hero { padding: 20px 14px 0; }
  .a1-hero__title { font-size: clamp(1.7rem, 8.5vw, 2.4rem) !important; margin-bottom: 10px; }
  .a1-hero__lead  { font-size: 13px !important; margin-bottom: 14px; }
  .a1-hero__art   { border-radius: 18px !important; box-shadow: 4px 5px 0 var(--ink) !important; max-width: 300px; }
  .a1-hero__art-badge { width: 58px !important; height: 58px !important; top: -8px !important; left: -8px !important; }
  .a1-hero__cta   { gap: 8px; }
  .a1-hero__cta .a1-btn { font-size: 13px !important; padding: 10px 14px !important; }

  /* Section titles smaller */
  .a1-section-title { font-size: clamp(1.3rem, 6vw, 1.8rem) !important; margin-bottom: 8px; }
  .a1-section-sub   { font-size: 13px !important; }
  .a1-section-head  { margin-bottom: 20px !important; }

  /* Service tiles — keep compact (2-col) */
  .a1-service { padding: 12px !important; border-radius: 12px !important; }
  .a1-service__icon { width: 32px !important; height: 32px !important; border-radius: 8px !important; margin-bottom: 7px !important; }
  .a1-service__icon svg { width: 16px !important; height: 16px !important; }
  .a1-service__title { font-size: 13px !important; }
  .a1-service__blurb { font-size: 11.5px !important; line-height: 1.35; }
  .a1-service__more  { display: none; }

  /* Pricing tiles — very compact at small screens */
  .a1-pricing { padding: 28px 14px !important; }
  .a1-pricing__grid { gap: 10px !important; }
  .a1-pkg { padding: 12px 10px !important; border-radius: 14px !important; box-shadow: 2px 3px 0 var(--ink) !important; }
  .a1-pkg__name  { font-size: 14px !important; }
  .a1-pkg__sub   { font-size: 10px !important; margin-bottom: 6px !important; }
  .a1-pkg__price { font-size: clamp(1.5rem, 6.5vw, 2rem) !important; }
  .a1-pkg__per   { font-size: 10px !important; margin: 2px 0 8px !important; }
  .a1-pkg ul     { gap: 4px !important; margin-bottom: 10px !important; }
  .a1-pkg li     { font-size: 11.5px !important; gap: 4px !important; }
  .a1-pkg li::before { width: 13px !important; height: 13px !important; }
  .a1-pkg__cta   { font-size: 12px !important; padding: 9px 12px !important; }
  .a1-pricing__foot { font-size: 11.5px !important; margin-top: 14px !important; }

  /* Banner */
  .a1-banner { padding: 22px 14px !important; }
  .a1-banner__title { font-size: clamp(1.15rem, 5vw, 1.5rem) !important; margin-bottom: 4px; }
  .a1-banner__phone { font-size: clamp(1.3rem, 5.5vw, 1.8rem) !important; margin: 6px 0 3px; }
  .a1-banner__list  { font-size: clamp(0.8rem, 3vw, 1rem) !important; margin: 3px 0 8px; }
  .a1-banner__url   { font-size: 12px !important; }

  /* Menu tighter */
  .a1-menu { padding: 28px 14px !important; }
  .a1-menu__filters { margin-bottom: 18px; gap: 6px; }
  .a1-menu__filter { font-size: 11px !important; padding: 6px 10px !important; }
  .a1-treat__name { font-size: 13px !important; }
  .a1-treat__brand { font-size: 11px !important; }
  .a1-menu__foot { font-size: 12px !important; }

  /* Pricing footnote */
  .a1-pricing__foot { font-size: 12px !important; margin-top: 16px !important; }

  /* FAQ */
  .a1-faq { padding: 24px 14px !important; }
  .a1-faq__inner { gap: 6px !important; }
  .a1-faq__item { border-radius: 14px !important; box-shadow: 2px 3px 0 var(--ink) !important; border-width: 1.5px !important; }
  .a1-faq__q { font-size: 13px !important; padding: 12px 14px !important; }
  .a1-faq__q::after { font-size: 22px !important; }
  .a1-faq__a { font-size: 12.5px !important; padding: 0 14px 12px !important; line-height: 1.5; }

  /* Contact */
  .a1-contact { padding: 24px 14px !important; }
  .a1-contact__inner { gap: 16px !important; }
  .a1-contact__copy p { font-size: 13px !important; }
  .a1-contact__list { gap: 6px !important; margin-top: 12px !important; }
  .a1-contact__list li { font-size: 12.5px !important; gap: 7px !important; }
  .a1-form { padding: 14px 12px !important; gap: 8px !important; border-radius: 18px !important; box-shadow: 2px 3px 0 var(--ink) !important; }
  .a1-form input, .a1-form select, .a1-form textarea { padding: 9px 11px !important; border-radius: 9px !important; border-width: 1.5px !important; font-size: 16px !important; }
  .a1-form label { font-size: 11.5px !important; }
  .a1-form__row { gap: 8px !important; }
  .a1-form__respond-note { font-size: 11px !important; }

  /* Why Choose */
  .a1-why { padding: 24px 14px !important; }
  .a1-why h2 { font-size: clamp(1.2rem, 5vw, 1.5rem) !important; margin-bottom: 12px; }
  .a1-why__inner { padding: 14px 12px !important; border-radius: 16px !important; }
  .a1-why ol { gap: 7px !important; }
  .a1-why li { font-size: 12.5px !important; padding-left: 26px !important; }
  .a1-why li::before { font-size: 12.5px !important; }

  /* About */
  .a1-about { padding: 28px 14px !important; }
  .a1-about__inner { gap: 18px !important; }
  .a1-about__photo-frame { aspect-ratio: 16/9 !important; border-radius: 16px !important; padding: 6px !important; box-shadow: 4px 5px 0 var(--ink) !important; }
  .a1-about__star { width: 44px !important; top: -8px !important; right: -4px !important; }
  .a1-about__copy p { font-size: 14px !important; line-height: 1.5; margin: 0 0 8px !important; }
  .a1-about__signoff { font-size: 24px !important; margin-top: 8px !important; }
  .a1-about__cta .a1-btn { font-size: 13px !important; padding: 10px 14px !important; }

  /* Service Areas */
  .a1-areas { padding: 24px 14px !important; }
  .a1-areas h2 { font-size: clamp(1.15rem, 5vw, 1.5rem) !important; margin-bottom: 12px !important; }
  .a1-areas__list { gap: 6px 7px !important; }
  .a1-areas__city { font-size: 12px !important; padding: 5px 11px !important; box-shadow: 2px 2px 0 var(--ink) !important; border-width: 1.5px !important; }

  /* Menu tighter at small screens */
  .a1-menu { padding: 24px 14px !important; }
  .a1-menu__filters { gap: 5px !important; margin-bottom: 14px !important; }
  .a1-menu__filter { font-size: 10.5px !important; padding: 5px 9px !important; }
  .a1-treat { padding: 8px !important; border-radius: 12px !important; }
  .a1-treat__art { margin-bottom: 6px !important; border-radius: 8px !important; border-width: 1.5px !important; }
  .a1-treat__name { font-size: 11.5px !important; line-height: 1.2; }
  .a1-treat__brand { font-size: 10px !important; margin-top: 2px !important; }
  .a1-treat__tag { font-size: 8.5px !important; padding: 2px 6px !important; }
  .a1-menu__viewmore { font-size: 12px !important; padding: 9px 16px !important; }
  .a1-menu__foot { font-size: 11.5px !important; margin-top: 16px !important; }

  /* Gallery marquee */
  .a1-gallery { padding: 20px 0 !important; }
  .a1-gallery--marquee .a1-gallery__item { flex: 0 0 160px !important; }

  /* Testimonial cards */
  .a1-testimonials { padding: 24px 0 !important; }
  .a1-testimonials--marquee .a1-quote { flex: 0 0 200px !important; margin-right: 12px !important; padding: 13px 12px !important; }
  .a1-quote { padding: 14px !important; border-radius: 18px !important; }
  .a1-quote__body { font-size: 12px !important; line-height: 1.4; }
  .a1-quote__stars { font-size: 13px !important; letter-spacing: 1px; }
  .a1-quote__name { font-size: 12px !important; }
  .a1-quote__where { font-size: 10.5px !important; }
  .a1-quote__avatar { width: 32px !important; height: 32px !important; font-size: 12px !important; }

  /* Footer tighter */
  .a1-footer { padding: 22px 14px 88px !important; }
  .a1-footer__inner { gap: 18px !important; }
  .a1-footer__brand { gap: 10px !important; }
  .a1-footer__logo { width: 44px !important; height: 44px !important; }
  .a1-footer__name { font-size: 16px !important; }
  .a1-footer__tag { font-size: 11.5px !important; }
  .a1-footer__cols { gap: 14px !important; }
  .a1-footer__head { font-size: 11px !important; margin-bottom: 7px !important; }
  .a1-footer__cols a { font-size: 12px !important; padding: 3px 0 !important; }
  .a1-footer__legal { font-size: 11px !important; margin-top: 20px !important; padding-top: 14px !important; }

  /* Announce bar */
  .a1-announce { font-size: 11.5px !important; padding: 7px 12px !important; gap: 5px !important; }
  .a1-announce__cta { font-size: 11px !important; padding: 3px 9px !important; }

  /* Drip divider */
  .a1-drip-divider { margin-left: -16px !important; margin-right: -16px !important; width: calc(100% + 32px) !important; }

  /* Header tighter on mobile */
  .a1-header { padding: 10px 14px !important; }
  .a1-header__logo { width: 42px !important; height: 42px !important; }
  .a1-header__name { font-size: 17px !important; }
}
