    :root {
      --green: #0B4F4A;
      --green-light: #0e6b64;
      --green-pale: #e6f2f1;
      --gray: #4a4f54;
      --gray-light: #f4f5f6;
      --gray-mid: #d1d5db;
      --white: #ffffff;
      --text: #1e2122;
      --radius: 12px;
      --shadow: 0 4px 20px rgba(0,0,0,0.10);
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Segoe UI', Arial, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--gray-mid);
      padding: 0 1.5rem;
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      text-decoration: none;
    }
    .nav-logo-icon {
      flex-shrink: 0;
    }
    .nav-logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }
    .nav-logo-top {
      font-size: 1.85rem;
      font-weight: 900;
      color: var(--green);
      letter-spacing: -0.5px;
    }
    .nav-logo-bottom {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--green);
      letter-spacing: 1.2px;
      margin-top: 1px;
      opacity: 0.75;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--gray);
      font-size: 1.1rem;
      font-weight: 600;
      transition: color 0.2s;
    }

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

    .nav-cta {
      background: var(--green);
      color: var(--white) !important;
      padding: 0.6rem 1.5rem;
      border-radius: 8px;
      transition: background 0.2s !important;
    }

    .nav-cta:hover { background: var(--green-light) !important; color: var(--white) !important; }

    /* hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--gray);
      border-radius: 2px;
      transition: all 0.3s;
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      background: linear-gradient(135deg, #052e2b 0%, #084440 50%, #0B4F4A 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 6rem 1.5rem 4rem;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .hero-content { position: relative; max-width: 700px; }

    .hero-badge {
      display: inline-block;
      background: rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.9);
      padding: 0.35rem 1rem;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
      border: 1px solid rgba(255,255,255,0.2);
    }

    .hero h1 {
      font-size: clamp(2.2rem, 6vw, 3.8rem);
      font-weight: 900;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 1.2rem;
    }

    .hero h1 span { color: #a8d5a8; }

    .hero p {
      font-size: clamp(1rem, 2.5vw, 1.2rem);
      color: rgba(255,255,255,0.82);
      margin-bottom: 2.5rem;
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-btns {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--white);
      color: var(--green);
      padding: 0.85rem 2rem;
      border-radius: 10px;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    }

    .btn-secondary {
      background: transparent;
      color: var(--white);
      padding: 0.85rem 2rem;
      border-radius: 10px;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      border: 2px solid rgba(255,255,255,0.5);
      transition: border-color 0.2s, background 0.2s;
    }

    .btn-secondary:hover {
      border-color: var(--white);
      background: rgba(255,255,255,0.1);
    }

    .hero-stats {
      display: flex;
      gap: 2.5rem;
      justify-content: center;
      margin-top: 3.5rem;
      flex-wrap: wrap;
    }

    .stat { text-align: center; }

    .stat-number {
      font-size: 1.8rem;
      font-weight: 900;
      color: var(--white);
    }

    .stat-label {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.65);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* ── SECTIONS ── */
    section { padding: 5rem 1.5rem; }

    .container { max-width: 1100px; margin: 0 auto; }

    .section-tag {
      display: inline-block;
      background: var(--green-pale);
      color: var(--green);
      padding: 0.3rem 0.9rem;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 0.8rem;
    }

    .section-title {
      font-size: clamp(1.7rem, 4vw, 2.4rem);
      font-weight: 800;
      color: var(--text);
      margin-bottom: 0.6rem;
      line-height: 1.2;
    }

    .section-sub {
      color: var(--gray);
      font-size: 1rem;
      max-width: 560px;
      margin-bottom: 3rem;
    }

    /* ── PRÍVESY ── */
    #privesy { background: var(--gray-light); }
    .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; border-radius: 12px; overflow: hidden; cursor: pointer; }
    .gallery-grid img { width: 100%; height: 160px; object-fit: cover; display: block; transition: opacity .2s; }
    .gallery-grid img:hover { opacity: .85; }
    .gallery-main { grid-column: 1 / -1; }
    .gallery-main img { height: 280px; }
    .gallery-more { position: relative; }
    .gallery-more img { filter: brightness(.5); }
    .gallery-more-label { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.4rem; font-weight: 800; pointer-events: none; }
    /* Lightbox */
    .lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 1000; align-items: center; justify-content: center; }
    .lightbox.open { display: flex; }
    .lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 8px; object-fit: contain; }
    .lightbox-close { position: absolute; top: 1rem; right: 1.2rem; color: #fff; font-size: 2rem; cursor: pointer; line-height: 1; background: none; border: none; }
    .lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 2.5rem; cursor: pointer; background: none; border: none; padding: .5rem 1rem; }
    .lightbox-prev { left: .5rem; }
    .lightbox-next { right: .5rem; }
    .lightbox-counter { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); font-size: .9rem; }

    .card {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }

    .card-image {
      background: linear-gradient(135deg, #084440, #0e6b64);
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 320px;
      padding: 2rem;
    }

    .card-image svg {
      width: 100%;
      max-width: 300px;
      opacity: 0.9;
    }

    .card-body { padding: 2.5rem; }

    .card-badge {
      display: inline-block;
      background: var(--green-pale);
      color: var(--green);
      padding: 0.25rem 0.8rem;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 1rem;
    }

    .card h3 {
      font-size: 1.5rem;
      font-weight: 800;
      margin-bottom: 0.4rem;
      color: var(--text);
    }

    .card-year {
      color: var(--gray);
      font-size: 0.9rem;
      margin-bottom: 1.2rem;
    }

    .features {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.5rem 1rem;
      margin-bottom: 1.8rem;
    }

    .features li {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.9rem;
      color: var(--gray);
    }

    .features li::before {
      content: '✓';
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 18px;
      height: 18px;
      background: var(--green-pale);
      color: var(--green);
      border-radius: 50%;
      font-size: 0.7rem;
      font-weight: 700;
      flex-shrink: 0;
    }

    .card-price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 1.2rem;
      border-top: 1px solid var(--gray-mid);
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .price-from { font-size: 0.8rem; color: var(--gray); }

    .price-amount {
      font-size: 1.8rem;
      font-weight: 900;
      color: var(--green);
    }

    .price-amount span { font-size: 1rem; font-weight: 500; color: var(--gray); }

    /* ── CENNÍK ── */
    #cennik { background: var(--white); }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
    }

    .pricing-card {
      border: 2px solid var(--gray-mid);
      border-radius: var(--radius);
      padding: 2rem;
      text-align: center;
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
      position: relative;
    }

    .pricing-card:hover {
      border-color: var(--green);
      box-shadow: var(--shadow);
      transform: translateY(-4px);
    }

    .pricing-card.featured {
      border-color: var(--green);
      background: var(--green-pale);
    }

    .pricing-card.featured::before {
      content: 'Najobľúbenejší';
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--green);
      color: white;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 0.3rem 1rem;
      border-radius: 20px;
      white-space: nowrap;
    }

    .pricing-card.promo {
      border-color: #e07b00;
      background: #fff8f0;
    }

    .pricing-card.promo::before {
      content: '🏖️ Vyskúšajte príves';
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: #e07b00;
      color: white;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 0.3rem 1rem;
      border-radius: 20px;
      white-space: nowrap;
    }

    .pricing-icon {
      font-size: 2.2rem;
      margin-bottom: 0.8rem;
    }

    .pricing-type {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 0.3rem;
    }

    .pricing-desc {
      font-size: 0.85rem;
      color: var(--gray);
      margin-bottom: 1.2rem;
    }

    .pricing-price {
      font-size: 2.5rem;
      font-weight: 900;
      color: var(--green);
      line-height: 1;
      margin-bottom: 0.3rem;
    }

    .pricing-price sup { font-size: 1.2rem; }

    .pricing-unit {
      font-size: 0.85rem;
      color: var(--gray);
      margin-bottom: 1.5rem;
    }

    .pricing-includes {
      list-style: none;
      text-align: left;
      font-size: 0.88rem;
      color: var(--gray);
    }

    .pricing-includes li {
      padding: 0.3rem 0;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .pricing-includes li::before {
      content: '✓';
      color: var(--green);
      font-weight: 700;
    }

    .pricing-note {
      background: var(--gray-light);
      border-radius: 10px;
      padding: 1.2rem 1.5rem;
      margin-top: 2rem;
      text-align: center;
      font-size: 0.9rem;
      color: var(--gray);
    }

    .pricing-note strong { color: var(--green); }

    /* ── KONTAKT ── */
    #kontakt { background: var(--gray-light); }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 3rem;
      align-items: start;
    }

    .contact-info h3 {
      font-size: 1.3rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      color: var(--text);
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.2rem;
    }

    .contact-icon {
      width: 44px;
      height: 44px;
      background: var(--green-pale);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .contact-detail-label {
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--gray);
      font-weight: 600;
    }

    .contact-detail-value {
      font-size: 1rem;
      font-weight: 600;
      color: var(--text);
    }

    .contact-detail-value a {
      color: var(--text);
      text-decoration: none;
    }

    .contact-detail-value a:hover { color: var(--green); }

    .form-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 2rem;
      box-shadow: var(--shadow);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .form-group {
      margin-bottom: 1rem;
    }

    .form-group label {
      display: block;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--gray);
      margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 0.75rem 1rem;
      border: 1.5px solid var(--gray-mid);
      border-radius: 8px;
      font-size: 0.95rem;
      font-family: inherit;
      color: var(--text);
      background: var(--white);
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
      -webkit-appearance: none;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(58,107,58,0.12);
    }

    .form-group textarea { resize: vertical; min-height: 110px; }

    .btn-submit {
      width: 100%;
      background: var(--green);
      color: var(--white);
      border: none;
      padding: 0.9rem;
      border-radius: 10px;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
      margin-top: 0.5rem;
    }

    .btn-submit:hover {
      background: var(--green-light);
      transform: translateY(-1px);
    }

    .form-success {
      display: none;
      text-align: center;
      padding: 2rem;
      color: var(--green);
      font-weight: 600;
    }

    /* ── FOOTER ── */
    footer {
      background: #052e2b;
      color: rgba(255,255,255,0.7);
      text-align: center;
      padding: 2rem 1.5rem;
      font-size: 0.88rem;
    }

    footer a { color: #a8d5a8; text-decoration: none; }

    footer strong { color: white; }

    /* ── KALENDÁR ── */
    .cal-selected-display {
      background: var(--gray-light);
      border: 1.5px solid var(--gray-mid);
      border-radius: 8px;
      padding: 0.7rem 1rem;
      font-size: 0.92rem;
      color: var(--gray);
      margin-bottom: 0.8rem;
      min-height: 42px;
    }
    .cal-selected-display.has-dates {
      color: var(--text);
      font-weight: 600;
      border-color: var(--green);
      background: var(--green-pale);
    }
    .calendar-wrap {
      border: 1.5px solid var(--gray-mid);
      border-radius: 10px;
      overflow: hidden;
      background: var(--white);
    }
    .cal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: var(--green);
      padding: 0.75rem 1rem;
    }
    .cal-month-label {
      font-weight: 700;
      font-size: 0.95rem;
      color: white;
      text-transform: capitalize;
    }
    .cal-nav {
      background: rgba(255,255,255,0.15);
      border: none;
      color: white;
      width: 32px;
      height: 32px;
      border-radius: 6px;
      cursor: pointer;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }
    .cal-nav:hover:not(:disabled) { background: rgba(255,255,255,0.3); }
    .cal-nav:disabled { opacity: 0.3; cursor: default; }
    .cal-weekdays {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      background: var(--green-pale);
      border-bottom: 1px solid var(--gray-mid);
    }
    .cal-weekdays span {
      text-align: center;
      padding: 0.5rem 0;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--green);
      text-transform: uppercase;
      letter-spacing: 0.3px;
    }
    .cal-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 0;
      padding: 0.5rem;
    }
    .cal-day {
      text-align: center;
      padding: 0.35rem 0.1rem 0.3rem;
      border-radius: 6px;
      font-size: 0.88rem;
      cursor: pointer;
      transition: background 0.15s, color 0.15s;
      user-select: none;
      margin: 2px;
      line-height: 1.4;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .cal-day-num {
      font-size: 0.88rem;
      line-height: 1.5;
    }
    .cal-day-price {
      font-size: 0.62rem;
      font-weight: 600;
      opacity: 0.72;
      line-height: 1.2;
      white-space: nowrap;
    }
    .cal-day.cal-start .cal-day-price,
    .cal-day.cal-end .cal-day-price {
      opacity: 0.85;
      color: rgba(255,255,255,0.9);
    }
    .cal-day.cal-in-range .cal-day-price {
      color: var(--green);
    }
    .cal-day.cal-past .cal-day-price {
      color: #c0c4c8;
    }
    .cal-day:hover:not(.cal-empty):not(.cal-past):not(.cal-start):not(.cal-end) {
      background: var(--green-pale);
      color: var(--green);
    }
    .cal-day.cal-empty { cursor: default; }
    .cal-day.cal-past {
      color: #c0c4c8;
      cursor: not-allowed;
    }
    .cal-day.cal-today {
      font-weight: 700;
      color: var(--green);
    }
    .cal-day.cal-start, .cal-day.cal-end {
      background: var(--green);
      color: white;
      font-weight: 700;
    }
    .cal-day.cal-in-range {
      background: var(--green-pale);
      color: var(--green);
      border-radius: 0;
    }
    .cal-day.cal-start { border-radius: 6px 0 0 6px; }
    .cal-day.cal-end { border-radius: 0 6px 6px 0; }
    .cal-day.cal-start.cal-end { border-radius: 6px; }
    .cal-day.cal-below-min {
      color: #c0c4c8;
      cursor: not-allowed;
      background: repeating-linear-gradient(135deg, transparent, transparent 3px, rgba(0,0,0,0.04) 3px, rgba(0,0,0,0.04) 6px);
    }
    .cal-day.cal-below-min .cal-day-price { color: #c0c4c8; }
    .cal-day.cal-booked {
      background: #fee2e2;
      color: #b91c1c;
      cursor: not-allowed;
      position: relative;
    }
    .cal-day.cal-booked .cal-day-num {
      text-decoration: line-through;
      opacity: 0.6;
    }
    .cal-day.cal-booked .cal-day-price { color: #f87171; opacity: 0.7; }
    .cal-day.cal-booked-start { border-radius: 6px 0 0 6px; }
    .cal-day.cal-booked-end   { border-radius: 0 6px 6px 0; }
    .cal-day.cal-booked-start.cal-booked-end { border-radius: 6px; }
    .cal-day.cal-blockout { background:#f4f5f6;color:#9ca3af;cursor:not-allowed; }
    .cal-day.cal-blockout .cal-day-num { opacity:.5; }
    .cal-day.cal-blockout .cal-day-price { display:none; }
    .cal-day.cal-blockout-start { border-radius:6px 0 0 6px; }
    .cal-day.cal-blockout-end   { border-radius:0 6px 6px 0; }
    .cal-day.cal-blockout-start.cal-blockout-end { border-radius:6px; }
    /* Víkendový pobyt */
    .cal-day-weekend-badge {
      font-size: 0.5rem;
      font-weight: 800;
      color: #d97706;
      text-transform: uppercase;
      letter-spacing: 0.4px;
      line-height: 1;
      margin-top: 1px;
    }
    .cal-day.cal-start .cal-day-weekend-badge,
    .cal-day.cal-end .cal-day-weekend-badge { color: rgba(255,255,255,0.85); }
    .cal-day.cal-weekend-target {
      box-shadow: inset 0 0 0 2px #d97706;
      color: #d97706;
      font-weight: 700;
    }
    /* Legenda */
    .cal-legend {
      display: flex;
      gap: 1rem;
      padding: 0.5rem 0.8rem;
      background: var(--gray-light);
      border-top: 1px solid var(--gray-mid);
      flex-wrap: wrap;
    }
    .cal-legend-item {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.75rem;
      color: var(--gray);
    }
    .cal-legend-dot {
      width: 12px; height: 12px;
      border-radius: 3px;
      flex-shrink: 0;
    }
    .cal-min-hint {
      margin-top: 0.5rem;
      font-size: 0.8rem;
      color: var(--gray);
      background: #fff8e6;
      border: 1px solid #f0d080;
      border-radius: 6px;
      padding: 0.4rem 0.8rem;
      display: none;
    }
    .cal-min-hint.visible { display: block; }

    /* ── SÚHRN CENY ── */
    .price-summary {
      margin-bottom: 1rem;
      animation: fadeIn 0.3s ease;
    }
    @keyframes fadeIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
    .price-summary-inner {
      border: 1.5px solid var(--green);
      border-radius: 10px;
      overflow: hidden;
    }
    .price-summary-rows {
      padding: 0.75rem 1rem 0.5rem;
      background: var(--green-pale);
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .price-row {
      display: flex;
      justify-content: space-between;
      font-size: 0.88rem;
      color: var(--gray);
    }
    .price-row span:last-child { font-weight: 600; color: var(--text); }
    .price-summary-total {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.75rem 1rem;
      background: var(--green);
      color: white;
      font-weight: 700;
      font-size: 1rem;
    }
    #priceSummaryTotal { font-size: 1.3rem; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .card { grid-template-columns: 1fr; }
      .card-image { min-height: 200px; }
      .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    }

    @media (max-width: 700px) {
      .nav-links { display: none; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0; background: white; padding: 1rem 1.5rem; border-bottom: 1px solid var(--gray-mid); gap: 1rem; }
      .nav-links.open { display: flex; }
      .hamburger { display: flex; }
      .features { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .hero-stats { gap: 1.5rem; }
    }

    @media (max-width: 480px) {
      section { padding: 3.5rem 1.2rem; }
      .card-body { padding: 1.5rem; }
      .form-card { padding: 1.5rem; }
      .gallery-grid { grid-template-columns: 1fr 1fr; }
      .gallery-main img { height: 200px; }
      .cal-day { font-size: 0.75rem; padding: 0.2rem 0; margin: 1px; }
      .cal-day-num { font-size: 0.78rem; }
      .cal-weekdays span { font-size: 0.65rem; }
      .hero-stats { flex-direction: column; gap: 1rem; }
    }
