:root {
  --cream: #fff8ec;
  --cream-2: #fff1d6;
  --peach: #ffd6ba;
  --pumpkin: #ff8a3d;
  --marigold: #ffc857;
  --coral: #ff6f61;
  --cranberry: #b8325f;
  --plum: #5a2555;
  --sage: #71996a;
  --ink: #2c1f22;
  --muted: #725f58;
  --white: #ffffff;
  --border: rgba(93, 49, 36, 0.14);
  --shadow: 0 24px 70px rgba(95, 51, 32, 0.16);
  --shadow-strong: 0 30px 90px rgba(165, 77, 34, 0.22);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 12% 4%, rgba(255, 200, 87, 0.55), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(255, 111, 97, 0.28), transparent 28%),
    linear-gradient(135deg, #fffaf1 0%, #fff0dc 45%, #fff8ec 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(184, 50, 95, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 50, 95, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.72), transparent 78%);
}

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

button,
input,
textarea {
  font: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.9rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.15rem, 1.6vw, 1.38rem);
  line-height: 1.18;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  left: -140px;
  top: -140px;
  z-index: -2;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 143, 64, 0.27), transparent 65%);
  transform: translate3d(var(--mouse-x, 50vw), var(--mouse-y, 50vh), 0);
  transition: transform 0.12s ease-out;
}

.floating-leaves {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-leaves span {
  position: absolute;
  top: -80px;
  font-size: clamp(1.4rem, 2.6vw, 2.8rem);
  opacity: 0.42;
  animation: leafFall 15s linear infinite;
}

.floating-leaves span:nth-child(1) { left: 8%; animation-delay: -1s; }
.floating-leaves span:nth-child(2) { left: 23%; animation-delay: -8s; animation-duration: 17s; }
.floating-leaves span:nth-child(3) { left: 42%; animation-delay: -4s; animation-duration: 14s; }
.floating-leaves span:nth-child(4) { left: 62%; animation-delay: -11s; animation-duration: 19s; }
.floating-leaves span:nth-child(5) { left: 76%; animation-delay: -6s; animation-duration: 16s; }
.floating-leaves span:nth-child(6) { left: 91%; animation-delay: -13s; animation-duration: 20s; }

@keyframes leafFall {
  0% { transform: translate3d(0, -80px, 0) rotate(0deg); }
  45% { transform: translate3d(55px, 45vh, 0) rotate(170deg); }
  100% { transform: translate3d(-35px, 110vh, 0) rotate(360deg); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--container), calc(100% - 32px));
  margin: 14px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(140, 65, 31, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.82);
  box-shadow: 0 18px 55px rgba(133, 74, 44, 0.13);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.brand-mark {
  flex: 0 0 auto;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--cranberry), var(--pumpkin), var(--marigold));
  box-shadow: 0 14px 30px rgba(255, 138, 61, 0.35);
}

.brand-text {
  display: grid;
  line-height: 1.1;
  min-width: 0;
}

.brand-text strong {
  white-space: nowrap;
  font-size: 0.96rem;
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  white-space: nowrap;
  font-size: 0.72rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: #513a31;
  font-size: 0.9rem;
  font-weight: 800;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover {
  color: var(--cranberry);
  background: rgba(255, 200, 87, 0.22);
  transform: translateY(-2px);
}

.nav-links .nav-pill {
  color: var(--white);
  background: linear-gradient(135deg, var(--cranberry), var(--pumpkin));
  box-shadow: 0 12px 30px rgba(255, 138, 61, 0.25);
}

.section-shell {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 36px));
  margin-inline: auto;
  padding: clamp(70px, 8vw, 120px) 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.88fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding-top: clamp(52px, 7vw, 110px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--cranberry);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-subtitle,
.section-heading p,
.feature-text p,
.contact-copy p,
.neighborhood-card p {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.hero-actions,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--cranberry), var(--coral), var(--pumpkin));
  box-shadow: 0 18px 40px rgba(255, 111, 97, 0.27);
}

.btn-outline {
  color: var(--plum);
  border-color: rgba(184, 50, 95, 0.2);
  background: rgba(255, 255, 255, 0.7);
}

.btn-whatsapp {
  color: var(--white);
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 16px 35px rgba(37, 211, 102, 0.24);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 34px;
}

.hero-stats div {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 50px rgba(135, 80, 45, 0.1);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: var(--cranberry);
  font-size: clamp(1.7rem, 4vw, 2.25rem);
  line-height: 1;
}

.hero-stats span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.hero-gallery {
  position: relative;
  min-height: 600px;
}

.hero-photo,
.mini-card {
  position: absolute;
  border: 9px solid rgba(255, 255, 255, 0.85);
  border-radius: 34px;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  background: var(--white);
}

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

.hero-photo-main {
  inset: 16px 98px auto 0;
  height: 430px;
}

.hero-photo-side {
  right: 0;
  bottom: 34px;
  width: min(310px, 58%);
  height: 260px;
}

.photo-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
  background: rgba(44, 31, 34, 0.78);
  backdrop-filter: blur(10px);
}

.mini-card {
  display: grid;
  gap: 2px;
  right: 18px;
  top: 66px;
  width: 186px;
  padding: 18px;
  border-width: 1px;
}

.mini-card span {
  font-size: 1.7rem;
}

.mini-card strong,
.mini-card small {
  display: block;
}

.mini-card strong {
  color: var(--plum);
  font-size: 1rem;
}

.mini-card small {
  color: var(--muted);
}

.mini-card-orange {
  left: 28px;
  right: auto;
  top: auto;
  bottom: 20px;
  background: #fff2d8;
}

.float-one { animation: floatOne 6s ease-in-out infinite; }
.float-two { animation: floatTwo 7s ease-in-out infinite; }
.float-three { animation: floatThree 5.8s ease-in-out infinite; }
.float-four { animation: floatFour 6.5s ease-in-out infinite; }

@keyframes floatOne { 50% { transform: translateY(-13px) rotate(-1.5deg); } }
@keyframes floatTwo { 50% { transform: translateY(12px) rotate(2deg); } }
@keyframes floatThree { 50% { transform: translate(10px, -12px) rotate(3deg); } }
@keyframes floatFour { 50% { transform: translate(-8px, 12px) rotate(-3deg); } }

.marquee-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-block: 1px solid rgba(184, 50, 95, 0.12);
  background: rgba(255, 255, 255, 0.52);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  padding: 20px 34px;
  color: var(--cranberry);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.service-grid,
.style-grid,
.process-grid,
.package-grid {
  display: grid;
  gap: 22px;
}

.service-grid,
.process-grid,
.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.style-card,
.process-card,
.package-card,
.contact-card,
.neighborhood-card,
.feature-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.service-card {
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.style-card:hover,
.package-card:hover,
.process-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.service-card img {
  height: 220px;
  object-fit: cover;
}

.service-content {
  padding: 24px;
}

.icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--marigold), var(--peach));
  box-shadow: 0 14px 30px rgba(255, 200, 87, 0.26);
  font-size: 1.45rem;
}

.fall-feature {
  padding-top: 20px;
}

.feature-card,
.neighborhood-card,
.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(24px, 5vw, 56px);
  overflow: hidden;
}

.feature-images {
  position: relative;
  min-height: 480px;
}

.feature-images img {
  position: absolute;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(125, 65, 35, 0.18);
}

.feature-img-large {
  inset: 0 54px 60px 0;
  height: 360px;
}

.feature-img-small {
  width: 42%;
  height: 190px;
}

.feature-img-small.one {
  right: 0;
  top: 36px;
  animation: floatThree 6s ease-in-out infinite;
}

.feature-img-small.two {
  left: 22px;
  bottom: 0;
  animation: floatFour 7s ease-in-out infinite;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--cranberry);
  font-weight: 900;
}

.filter-panel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 28px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.67);
  box-shadow: 0 18px 50px rgba(125, 65, 35, 0.09);
}

.filter-btn {
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: var(--plum);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--cranberry), var(--pumpkin));
  transform: translateY(-2px);
}

.style-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.style-card {
  overflow: hidden;
  min-width: 0;
  transition: transform 0.28s ease, opacity 0.25s ease, box-shadow 0.28s ease;
}

.style-card.hide {
  display: none;
}

.style-card img {
  height: 230px;
  object-fit: cover;
}

.style-card div {
  padding: 22px;
}

.style-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--cranberry);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.style-card h3 {
  margin-bottom: 0;
}

.process {
  padding-top: 40px;
}

.process-card {
  position: relative;
  min-height: 245px;
  padding: 28px;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.process-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 200, 87, 0.28);
}

.process-card span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
  background: linear-gradient(135deg, var(--cranberry), var(--pumpkin));
}

.package-grid {
  align-items: stretch;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.package-card.featured {
  color: var(--white);
  background: linear-gradient(135deg, #6e234f, #c14352, #ff8a3d);
  transform: translateY(-16px);
}

.package-card.featured p,
.package-card.featured li {
  color: rgba(255, 255, 255, 0.88);
}

.package-label,
.popular {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--cranberry);
  background: rgba(255, 200, 87, 0.3);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-card.featured .package-label,
.popular {
  color: var(--ink);
  background: var(--marigold);
}

.popular {
  position: absolute;
  top: 18px;
  right: 18px;
  margin: 0;
}

.price {
  margin: 10px 0 18px;
  color: var(--cranberry);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
}

.package-card.featured .price {
  color: var(--marigold);
}

.package-card ul {
  padding-left: 20px;
  margin: 0 0 24px;
}

.package-card li {
  margin: 10px 0;
  color: var(--muted);
  line-height: 1.5;
}

.package-card .btn {
  margin-top: auto;
}

.neighborhood {
  padding-top: 30px;
}

.bubble-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.bubble-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--plum);
  background: linear-gradient(135deg, #fff, #ffe6bd);
  box-shadow: 0 12px 30px rgba(120, 62, 30, 0.12);
  font-weight: 900;
  animation: bubbleBob 5s ease-in-out infinite;
}

.bubble-cloud span:nth-child(2n) { animation-delay: -1.2s; }
.bubble-cloud span:nth-child(3n) { animation-delay: -2.1s; }

@keyframes bubbleBob {
  50% { transform: translateY(-10px); }
}

.contact {
  padding-top: 30px;
}

.contact-card {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  background:
    radial-gradient(circle at top right, rgba(255, 200, 87, 0.38), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255, 111, 97, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.78);
}

.contact-copy {
  position: sticky;
  top: 112px;
}

.contact-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(184, 50, 95, 0.12);
  border-radius: 999px;
  color: var(--plum);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 230, 189, 0.76));
  box-shadow: 0 12px 26px rgba(120, 62, 30, 0.1);
  font-size: 0.84rem;
  font-weight: 900;
}

.idea-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  min-width: 0;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(140, 65, 31, 0.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 200, 87, 0.42), transparent 34%),
    radial-gradient(circle at bottom left, rgba(184, 50, 95, 0.16), transparent 36%),
    linear-gradient(135deg, rgba(255, 248, 236, 0.98), rgba(255, 255, 255, 0.86));
  box-shadow: 0 24px 70px rgba(155, 75, 26, 0.14);
}

.idea-badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--cranberry), var(--pumpkin));
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.idea-panel h3 {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--plum);
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  line-height: 1.12;
}

.idea-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.idea-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(184, 50, 95, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 35px rgba(120, 62, 30, 0.09);
}

.idea-list li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--cranberry), var(--pumpkin));
  font-weight: 900;
  font-size: 0.82rem;
}

.idea-list strong,
.idea-list small {
  display: block;
}

.idea-list strong {
  color: var(--ink);
  font-size: 1rem;
}

.idea-list small {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.55;
}

.site-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 34px;
  border-top: 1px solid rgba(140, 65, 31, 0.15);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--cranberry);
  font-weight: 900;
}

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

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

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }

@media (max-width: 1100px) {
  .site-header {
    border-radius: 28px;
  }

  .hero,
  .feature-card,
  .neighborhood-card,
  .contact-card {
    grid-template-columns: 1fr;
  }
  .contact-copy {
    position: static;
  }

  .hero {
    min-height: auto;
  }

  .hero-gallery {
    min-height: 560px;
    max-width: 680px;
    width: 100%;
    margin-inline: auto;
  }

  .service-grid,
  .style-grid,
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 820px) {
  .site-header {
    align-items: center;
    width: min(100% - 24px, var(--container));
    margin-top: 10px;
  }

  .brand-text strong {
    font-size: 0.86rem;
  }

  .brand-text small {
    display: none;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .nav-links {
    position: fixed;
    top: 78px;
    left: 12px;
    right: 12px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255, 248, 236, 0.97);
    box-shadow: var(--shadow);
    transform: translateY(-12px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

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

  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .nav-links a {
    justify-content: flex-start;
    min-height: 46px;
    padding: 0 16px;
  }

  .hero-stats,
  .service-grid,
  .style-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    border-radius: 26px;
  }

  .filter-btn {
    flex: 1 1 calc(50% - 10px);
  }
}

@media (max-width: 620px) {
  .section-shell {
    width: min(100% - 28px, var(--container));
    padding: 62px 0;
  }

  .hero {
    padding-top: 44px;
    gap: 28px;
  }

  h1 {
    font-size: clamp(2.65rem, 16vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .hero-actions,
  .contact-buttons {
    display: grid;
  }

  .btn {
    width: 100%;
    min-height: 54px;
    padding-inline: 18px;
  }

  .hero-gallery {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .hero-photo,
  .mini-card {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    border-width: 6px;
    border-radius: 24px;
  }

  .hero-photo img {
    height: 250px;
  }

  .hero-photo-side {
    width: 100%;
  }

  .mini-card {
    padding: 16px;
  }

  .marquee-track span {
    padding: 16px 24px;
    font-size: 0.82rem;
  }

  .service-card img,
  .style-card img {
    height: 205px;
  }

  .feature-card,
  .neighborhood-card,
  .contact-card {
    padding: 20px;
    border-radius: 24px;
  }

  .feature-images {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .feature-images img {
    position: relative;
    inset: auto;
    width: 100%;
    height: 220px;
    border-width: 6px;
  }

  .feature-img-small {
    width: 100%;
  }

  .filter-btn {
    flex-basis: 100%;
  }

  .process-card,
  .package-card {
    padding: 22px;
  }

  .popular {
    position: static;
    align-self: flex-start;
    margin-bottom: 12px;
  }
  .contact-highlights span {
    width: 100%;
    justify-content: center;
  }

  .idea-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .idea-list li {
    grid-template-columns: 1fr;
  }

  .idea-list li > span {
    width: 38px;
    height: 38px;
  }

  .site-footer {
    flex-direction: column;
    width: min(100% - 28px, var(--container));
  }
}

@media (max-width: 390px) {
  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .brand-text strong {
    max-width: 168px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-header {
    padding: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}


/* Alignment fixes for the first website idea section */
main#top {
  margin-top: 0;
}

.hero.section-shell {
  padding-top: clamp(42px, 5.5vw, 82px);
  padding-bottom: clamp(58px, 7vw, 96px);
}

.hero-text {
  max-width: 720px;
  align-self: center;
}

.hero-text .eyebrow {
  margin-bottom: 16px;
}

.hero-text h1 {
  max-width: 760px;
}

.hero-subtitle {
  max-width: 650px;
}

.hero-actions {
  align-items: center;
}

.hero-actions .btn {
  min-width: 230px;
}

.hero-gallery {
  align-self: center;
}

/* Keeps the first moving business-type strip directly under the hero, not above it. */
.hero + .marquee-section {
  margin-top: 0;
}

/* Contact / Free Website Idea section alignment */
.contact-card {
  align-items: stretch;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (max-width: 1100px) {
  .hero.section-shell {
    padding-top: 50px;
  }

  .hero-text {
    max-width: 100%;
    text-align: center;
    margin-inline: auto;
  }

  .hero-subtitle,
  .hero-text h1 {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    margin-inline: auto;
  }
}

@media (max-width: 620px) {
  .hero.section-shell {
    padding-top: 38px;
    padding-bottom: 54px;
  }

  .hero-text {
    text-align: left;
  }

  .hero-subtitle,
  .hero-text h1 {
    margin-inline: 0;
  }

  .hero-actions .btn {
    min-width: 0;
  }
}

.idea-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(184, 50, 95, 0.12);
  border-radius: 18px;
  color: var(--plum);
  background: rgba(255, 248, 236, 0.8);
  font-size: 0.92rem;
  font-weight: 700;
}
