    :root {
      --primary: #2e7d32;
      --primary-light: #4caf50;
      --primary-dark: #1b5e20;
      --accent: #ffb74d;
      --bg: #f5fbf6;
      --text: #263238;
      --muted: #607d8b;
      --card-bg: #ffffff;
      --border-radius-lg: 18px;
      --shadow-soft: 0 14px 35px rgba(0, 0, 0, 0.08);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      scroll-behavior: smooth;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    /* Layout */

    .page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(245, 251, 246, 0.94);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(46, 125, 50, 0.06);
    }

    .nav {
      max-width: 1120px;
      margin: 0 auto;
      padding: 0.6rem 1.25rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-weight: 600;
      font-size: 1.1rem;
      color: var(--primary-dark);
    }

    .logo-icon {
      width: 36px;
      height: 36px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: radial-gradient(circle at 30% 20%, #a5d6a7, var(--primary));
      box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.8), 0 6px 14px rgba(0, 0, 0, 0.15);
      font-size: 1.4rem;
    }

    .logo-sub {
      font-size: 0.75rem;
      font-weight: 400;
      color: var(--muted);
      margin-top: -0.2rem;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1rem;
      font-size: 0.9rem;
    }

    .nav-links a {
      padding: 0.35rem 0.7rem;
      border-radius: 999px;
      transition: background 0.2s ease, color 0.2s ease;
      color: var(--muted);
      font-weight: 500;
    }

    .nav-links a:hover {
      background: rgba(76, 175, 80, 0.08);
      color: var(--primary-dark);
    }

    .nav-links a.nav-cta {
      background: var(--primary);
      color: #fff;
      box-shadow: 0 8px 18px rgba(46, 125, 50, 0.35);
    }

    .nav-links a.nav-cta:hover {
      background: var(--primary-dark);
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.6rem;
      cursor: pointer;
      color: var(--primary);
    }

    main {
      flex: 1;
    }

    section {
      padding: 4rem 1.25rem;
    }

    .section-inner {
      max-width: 1120px;
      margin: 0 auto;
    }

    .section-header {
      margin-bottom: 2.4rem;
      text-align: center;
    }

    .section-kicker {
      text-transform: uppercase;
      letter-spacing: 0.15em;
      font-size: 0.75rem;
      color: var(--primary-light);
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .section-title {
      font-size: 1.9rem;
      margin-bottom: 0.4rem;
      color: var(--primary-dark);
    }

    .section-subtitle {
      color: var(--muted);
      font-size: 0.95rem;
      max-width: 540px;
      margin: 0.25rem auto 0;
    }

    /* Hero */

    .hero {
      padding-top: 4.5rem;
      padding-bottom: 3.5rem;
    }

    .hero-inner {
      max-width: 1120px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
      gap: 3rem;
      align-items: center;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.3rem 0.7rem 0.3rem 0.35rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(76, 175, 80, 0.18);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
      font-size: 0.78rem;
      margin-bottom: 1rem;
    }

    .hero-tag-icon {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      background: rgba(76, 175, 80, 0.14);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
    }

    .hero-title {
      font-size: clamp(2.1rem, 4vw, 2.7rem);
      line-height: 1.2;
      margin-bottom: 0.8rem;
      color: var(--primary-dark);
    }

    .hero-highlight {
      color: var(--primary-light);
      font-weight: 700;
    }

    .hero-text {
      font-size: 0.98rem;
      color: var(--muted);
      max-width: 540px;
      margin-bottom: 1.5rem;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-bottom: 1.5rem;
    }

    .hero-badge {
      font-size: 0.75rem;
      padding: 0.3rem 0.6rem;
      border-radius: 999px;
      background: rgba(76, 175, 80, 0.08);
      color: var(--primary-dark);
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
      align-items: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      padding: 0.65rem 1.2rem;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      font-size: 0.9rem;
      font-weight: 600;
      transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
      color: #fff;
      box-shadow: 0 14px 30px rgba(27, 94, 32, 0.4);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 34px rgba(27, 94, 32, 0.45);
    }

    .btn-ghost {
      background: rgba(255, 255, 255, 0.9);
      color: var(--primary-dark);
      border: 1px dashed rgba(76, 175, 80, 0.45);
    }

    .btn-ghost:hover {
      background: #ffffff;
      transform: translateY(-1px);
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
    }

    .hero-note {
      font-size: 0.8rem;
      color: var(--muted);
      margin-top: 0.4rem;
    }

    .hero-media {
      position: relative;
    }

    .hero-card {
      background: radial-gradient(circle at 0 0, #e8f5e9, #ffffff);
      padding: 1.7rem 1.4rem 1.4rem 1.7rem;
      border-radius: 24px;
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: visible; /* ne vágja le a sarokfotót */
    }

    .hero-card-tag {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 999px;
      padding: 0.45rem 0.8rem;
      font-size: 0.7rem;
      color: var(--primary-dark);
      box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
    }

    .hero-card-header {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      margin-bottom: 0.9rem;
    }

    .hero-avatar {
      width: 48px;
      height: 48px;
      border-radius: 999px;
      background: linear-gradient(135deg, #a5d6a7, #66bb6a);
      background-image: url('images/3L3A9750.jpg');
      background-size: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.7rem;
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.16);
    }

    .hero-name {
      font-weight: 600;
      font-size: 0.98rem;
      color: var(--primary-dark);
    }

    .hero-role {
      font-size: 0.8rem;
      color: var(--muted);
    }

    .hero-pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-bottom: 0.9rem;
    }

    .hero-pill {
      font-size: 0.7rem;
      padding: 0.25rem 0.6rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(76, 175, 80, 0.18);
      color: var(--muted);
    }

    .hero-card-body {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.75rem;
    }

    .hero-mini-card {
      background: rgba(255, 255, 255, 0.96);
      border-radius: 16px;
      padding: 0.8rem;
      font-size: 0.8rem;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .hero-mini-title {
      font-weight: 600;
      color: var(--primary-dark);
      font-size: 0.8rem;
    }

    .hero-mini-text {
      color: var(--muted);
      font-size: 0.75rem;
    }

    .hero-maxi-card {
      background: rgba(255, 255, 255, 0.96);
      grid-column: span 2;
      margin-top: 0.4rem;
      border-radius: 16px;
      padding: 0.8rem;
      font-size: 0.8rem;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
      background-image: url('https://bukkosbeka.hu/wp-content/uploads/2025/02/cropped-IMG_6742-1.jpg');
      background-size:cover;
      height: fit-content;
      filter: grayscale(20%);
      aspect-ratio: 17 / 9;
    }

    .hero-maxi-title {
      font-weight: 600;
      color: var(--bg);
      font-size: 1.2rem;
      text-shadow:
        -1px -1px 0 var(--primary-dark),
         1px -1px 0 var(--primary-dark),
        -1px  1px 0 var(--primary-dark),
         1px  1px 0 var(--primary-dark);
      }
    }

    .hero-maxi-text {
      color: var(--bg);
      font-size: 0.9rem;
    }

    .hero-floating-badge {
      position: absolute;
      bottom: -1.2rem;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      max-width: 400px;
      background: #ffffff;
      border-radius: 20px;
      padding: 0.45rem 0.9rem;
      box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.6rem;
      font-size: 0.78rem;
      color: var(--muted);
    }

    .hero-floating-badge strong {
      color: var(--primary-dark);
      font-weight: 600;
    }

    /* Kis sarokfotó a hero-kártyán */

    .hero-photo {
      position: absolute;
      top: -18px;
      left: -18px;
      width: 88px;
      height: 88px;
      border-radius: 20px;
      overflow: hidden;
      background: #c8e6c9;
      border: 3px solid #ffffff;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
      z-index: 2;
    }

    .hero-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Generic cards & grids */

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.6rem;
    }

    .card {
      background: var(--card-bg);
      border-radius: var(--border-radius-lg);
      box-shadow: var(--shadow-soft);
      padding: 1.4rem 1.3rem;
    }

    .card-header-icon {
      width: 40px;
      height: 40px;
      border-radius: 999px;
      background: rgba(76, 175, 80, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0.7rem;
    }

    .card-title {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.4rem;
      color: var(--primary-dark);
    }

    .card-text {
      font-size: 0.9rem;
      color: var(--muted);
    }

    .card-tagline {
      font-size: 0.8rem;
      margin-top: 0.6rem;
      color: var(--primary);
    }

    .pill-list {
      margin-top: 0.6rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
    }

    .pill {
      font-size: 0.75rem;
      padding: 0.2rem 0.55rem;
      border-radius: 999px;
      background: rgba(76, 175, 80, 0.08);
      color: var(--primary-dark);
    }

    /* Magamról */

    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 2rem;
      align-items: start;
    }

    .about-text p {
      font-size: 0.95rem;
      color: var(--muted);
      margin-bottom: 0.9rem;
    }

    .about-highlight {
      display: inline-block;
      padding: 0.3rem 0.7rem;
      border-radius: 999px;
      background: rgba(255, 183, 77, 0.16);
      font-size: 0.8rem;
      color: #e65100;
      margin-bottom: 0.6rem;
    }
.about-photo {
  margin: 1rem 0 1.2rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.about-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

    .about-meta {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.7rem;
      margin-top: 0.8rem;
    }

    .about-meta-item {
      font-size: 0.78rem;
      color: var(--muted);
    }

    .about-meta-item strong {
      display: block;
      font-size: 0.85rem;
      color: var(--primary-dark);
    }

    .about-aside {
      background: var(--card-bg);
      border-radius: var(--border-radius-lg);
      padding: 1.2rem 1.1rem;
      box-shadow: var(--shadow-soft);
      font-size: 0.86rem;
      color: var(--muted);
    }

    .about-aside-title {
      font-weight: 600;
      color: var(--primary-dark);
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
    }

    .about-aside ul {
      margin: 0.2rem 0 0;
      padding-left: 1rem;
    }

    .about-aside li {
      margin-bottom: 0.3rem;
    }

    /* Foglalkozások */

    .services-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(0, 1.05fr);
      gap: 2rem;
      align-items: start;
    }

    .services-list {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 1.1rem;
    }

    .service-card {
      background: var(--card-bg);
      border-radius: var(--border-radius-lg);
      padding: 1.2rem 1.1rem;
      box-shadow: var(--shadow-soft);
      font-size: 0.9rem;
      color: var(--muted);
    }

    .service-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--primary-light);
      margin-bottom: 0.2rem;
      font-weight: 600;
    }

    .service-title {
      font-size: 1rem;
      color: var(--primary-dark);
      font-weight: 600;
      margin-bottom: 0.4rem;
    }

    .service-subtitle {
      font-size: 0.85rem;
      color: var(--primary);
      margin-bottom: 0.6rem;
    }

    .service-tags {
      margin-top: 0.8rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
    }

    .service-tags span {
      font-size: 0.75rem;
      padding: 0.25rem 0.55rem;
      border-radius: 999px;
      background: rgba(76, 175, 80, 0.08);
      color: var(--primary-dark);
    }

    .services-note {
      font-size: 0.82rem;
      color: var(--muted);
      margin-top: 1rem;
    }

    .services-aside {
      background: linear-gradient(145deg, rgba(76, 175, 80, 0.06), rgba(255, 255, 255, 0.96));
      border-radius: var(--border-radius-lg);
      padding: 1.2rem 1.1rem;
      box-shadow: var(--shadow-soft);
      font-size: 0.86rem;
      color: var(--muted);
    }

    .services-aside img{
      border-radius: 14px
    }

    .services-aside h3 {
      font-size: 0.95rem;
      color: var(--primary-dark);
      margin-bottom: 0.5rem;
    }

    .services-aside h4 {
      font-size: 0.86rem;
      margin-top: 0.7rem;
      margin-bottom: 0.25rem;
      color: var(--primary);
    }

    .services-aside ul {
      padding-left: 1rem;
      margin: 0;
    }

    .services-aside li {
      margin-bottom: 0.3rem;
    }

    /* Általános tudnivalók */

    .faq-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
      gap: 2rem;
      align-items: flex-start;
    }

    .faq-item {
      margin-bottom: 1.1rem;
    }

    .faq-question {
      font-weight: 600;
      font-size: 0.95rem;
      margin-bottom: 0.25rem;
      color: var(--primary-dark);
    }

    .faq-answer {
      font-size: 0.9rem;
      color: var(--muted);
    }

    .faq-answer ul {
      padding-left: 1.1rem;
      margin-top: 0.25rem;
    }

    .faq-answer li {
      margin-bottom: 0.25rem;
    }

    .info-box {
      background: var(--card-bg);
      border-radius: var(--border-radius-lg);
      padding: 1.2rem 1.1rem;
      box-shadow: var(--shadow-soft);
      font-size: 0.86rem;
      color: var(--muted);
    }

    .info-box h3 {
      font-size: 0.93rem;
      color: var(--primary-dark);
      margin-bottom: 0.4rem;
    }

    /* Galéria */

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.7rem;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 16px;
      background: #c8e6c9;
      cursor: pointer;
      aspect-ratio: 4 / 3;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.35s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.05);
    }

    .gallery-item::after {
      content: "🐸";
      position: absolute;
      right: 0.4rem;
      bottom: 0.25rem;
      font-size: 1.1rem;
      opacity: 0.9;
    }

    .gallery-note {
      font-size: 0.8rem;
      color: var(--muted);
      margin-top: 0.6rem;
      text-align: center;
    }

    /* Árlista */

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.4rem;
    }

    .price-card {
      background: var(--card-bg);
      border-radius: var(--border-radius-lg);
      padding: 1.3rem 1.2rem;
      box-shadow: var(--shadow-soft);
      font-size: 0.9rem;
      color: var(--muted);
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }

    .price-label {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--primary-light);
    }

    .price-title {
      font-size: 1rem;
      color: var(--primary-dark);
      font-weight: 600;
    }

    .price-amount {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--primary-dark);
      margin-top: 0.2rem;
    }

    .price-badge {
      font-size: 0.75rem;
      padding: 0.25rem 0.6rem;
      border-radius: 999px;
      background: rgba(255, 183, 77, 0.2);
      color: #e65100;
      align-self: flex-start;
      margin-top: 0.2rem;
    }

    .pricing-note {
      margin-top: 1rem;
      font-size: 0.82rem;
      color: var(--muted);
    }

    .pricing-note strong {
      color: var(--primary-dark);
    }

    /* Kapcsolat */

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
      gap: 2rem;
      align-items: start;
    }

    .contact-card {
      background: var(--card-bg);
      border-radius: var(--border-radius-lg);
      padding: 1.4rem 1.3rem;
      box-shadow: var(--shadow-soft);
      font-size: 0.9rem;
      color: var(--muted);
    }

    .contact-row {
      margin-bottom: 0.6rem;
    }

    .contact-row strong {
      display: block;
      font-size: 0.85rem;
      color: var(--primary-dark);
      margin-bottom: 0.1rem;
    }

    .contact-row a {
      color: var(--primary);
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-underline-offset: 3px;
    }

    .contact-extra {
      font-size: 0.83rem;
      color: var(--muted);
      margin-top: 0.7rem;
    }

    .map-placeholder {
      border-radius: var(--border-radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      background: linear-gradient(135deg, #a5d6a7, #e8f5e9);
      position: relative;
      min-height: 260px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .map-placeholder iframe{
        width:100%;
        height:100%;
        min-height: 260px;
    }


    .map-circle {
      position: absolute;
      border-radius: 999px;
      border: 2px solid rgba(255, 255, 255, 0.8);
      width: 140px;
      height: 140px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 0, 0, 0.08);
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
    }

    .map-circle-inner {
      width: 100px;
      height: 100px;
      border-radius: 999px;
      background: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.15rem;
      font-size: 0.8rem;
      text-align: center;
      padding: 0.4rem;
    }

    .map-circle-inner span {
      font-size: 1.3rem;
    }

    .map-tag {
      position: absolute;
      bottom: 1rem;
      right: 1rem;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 999px;
      padding: 0.3rem 0.7rem;
      font-size: 0.75rem;
      color: var(--primary-dark);
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
    }

    .map-tag-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--accent);
    }

    /* Footer */

    footer {
      border-top: 1px solid rgba(46, 125, 50, 0.06);
      padding: 1.3rem 1.25rem;
      font-size: 0.78rem;
      color: var(--muted);
      background: #f7fbf8;
    }

    .footer-inner {
      max-width: 1120px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 0.7rem;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
    }

    .footer-links a {
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-underline-offset: 2px;
    }

    /* Responsive */

    @media (max-width: 960px) {
      .hero-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.5rem;
      }

      /* NINCS order: -1; – így a cím marad elöl mobilon is */
      /* .hero-media { order: -1; } */
      .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .about-grid,
      .services-layout,
      .faq-grid,
      .contact-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 768px) {
      .nav {
        padding-block: 0.4rem;
      }

      .nav-links {
        position: fixed;
        inset-inline: 0;
        top: 56px;
        background: rgba(245, 251, 246, 0.98);
        flex-direction: column;
        padding: 0.7rem 1.25rem 0.1rem;
        border-bottom: 1px solid rgba(46, 125, 50, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.2s ease;
      }

      .nav-links.open {
        max-height: 260px;
      }

      .menu-toggle {
        display: block;
      }

      .hero {
        padding-top: 3.6rem;
      }

      .cards-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .pricing-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      section {
        padding-inline: 1rem;
      }

      .hero-floating-badge {
        width: 92%;
      }

      .hero-photo {
        top: -12px;
        left: -12px;
        width: 76px;
        height: 76px;
      }
    }
