    /* =============================================
       CSS RESET & VARIABLES
    ============================================= */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    :root {
      --green-dark:   #2d5a27;
      --green-mid:    #3d7a35;
      --green-light:  #4e9e44;
      --tan:          #e8dcc8;
      --tan-dark:     #c9b99a;
      --tan-mid:      #d4c9b0;
      --cream:        #f5f0e8;
      --cream-dark:   #ede6d6;
      --brown:        #5c3d1e;
      --brown-dark:   #3b2410;
      --brown-mid:    #7a5230;
      --text-dark:    #1a1a1a;
      --text-body:    #3a3a3a;
      --white:        #ffffff;
      --font-display: 'Playfair Display', Georgia, serif;
      --font-body:    'Source Sans 3', sans-serif;
    }

    body {
      font-family: var(--font-body);
      color: var(--text-dark);
      background: var(--cream);
      overflow-x: hidden;
    }

    /* =============================================
       NOISE TEXTURE OVERLAY UTILITY
    ============================================= */
    .noise::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      opacity: .5;
    }


    .btn-nav-ghost {
      color: var(--tan);
      border: 1.5px solid rgba(232,220,200,.5);
      background: transparent;
      border-radius: 3px;
      padding: 7px 16px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: all .2s;
      font-family: var(--font-body);
    }
    .btn-nav-ghost:hover { background: rgba(232,220,200,.12); border-color: var(--tan); }

    .btn-nav-solid {
      background: var(--tan);
      color: var(--green-dark);
      border: 1.5px solid var(--tan);
      border-radius: 3px;
      padding: 7px 16px;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      transition: all .2s;
      font-family: var(--font-body);
    }
    .btn-nav-solid:hover { background: var(--white); border-color: var(--white); }

    /* =============================================
       HERO
    ============================================= */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    .hero__bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(20,38,15,.88) 38%, rgba(20,38,15,.3) 100%),
        linear-gradient(to bottom, rgba(0,0,0,.2) 0%, transparent 30%);
      background-color: #2a4a22;
      background-image:url('https://ontour.thehandsthatfeedus.ca/content/images/2026/03/robert-tractor.jpg');
    }

    /* Tractor silhouette pattern */
    .hero__pattern {
      position: absolute;
      inset: 0;
      opacity: .06;
      background-image: repeating-linear-gradient(
        45deg,
        rgba(255,255,255,.3) 0px,
        rgba(255,255,255,.3) 1px,
        transparent 1px,
        transparent 60px
      );
    }

    /* Grain */
    .hero__grain {
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.07'/%3E%3C/svg%3E");
      pointer-events: none;
    }

    /* Decorative wheat stalk right side */
    .hero__deco {
      position: absolute;
      right: 8%;
      bottom: 0;
      width: 180px;
      opacity: .12;
    }

    .hero__content {
      position: relative;
      z-index: 2;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 110px 80px 60px 80px;
      max-width: 800px;
    }

    .hero__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--tan-dark);
      margin-bottom: 20px;
    }
    .hero__eyebrow::before {
      content: '';
      display: block;
      width: 24px;
      height: 2px;
      background: var(--tan-dark);
    }

    .hero__heading {
      font-family: var(--font-display);
      font-size: clamp(42px, 5.5vw, 76px);
      font-weight: 900;
      color: var(--white);
      line-height: 1.03;
      margin-bottom: 26px;
      letter-spacing: -.02em;
    }
    .hero__heading em {
      font-style: italic;
      color: var(--tan);
    }

    .hero__body {
      color: rgba(255,255,255,.78);
      font-size: 17px;
      line-height: 1.75;
      max-width: 520px;
      margin-bottom: 40px;
    }

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

    .btn-primary {
      display: inline-block;
      background: var(--green-light);
      color: var(--white);
      border: none;
      border-radius: 3px;
      padding: 15px 36px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      transition: background .2s, transform .15s;
      font-family: var(--font-body);
      letter-spacing: .02em;
    }
    .btn-primary:hover { background: var(--green-mid); transform: translateY(-1px); }

    .btn-secondary {
      display: inline-block;
      background: transparent;
      color: var(--white);
      border: 2px solid rgba(255,255,255,.55);
      border-radius: 3px;
      padding: 15px 36px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: all .2s;
      font-family: var(--font-body);
    }
    .btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

    /* Hero email strip */
    .hero__strip {
      position: relative;
      z-index: 2;
      background: rgba(0,0,0,.5);
      border-top: 1px solid rgba(255,255,255,.1);
      padding: 16px 80px;
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }
    .hero__strip-label {
      color: rgba(255,255,255,.7);
      font-size: 14px;
      font-weight: 500;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .hero__strip form {
      display: flex;
      gap: 8px;
      flex: 1;
      max-width: 440px;
    }
    .hero__strip input[type="email"] {
      flex: 1;
      padding: 10px 16px;
      border: 1px solid rgba(255,255,255,.25);
      background: rgba(255,255,255,.1);
      color: var(--white);
      border-radius: 3px;
      font-size: 14px;
      font-family: var(--font-body);
      transition: border-color .2s;
    }
    .hero__strip input[type="email"]:focus { outline: none; border-color: rgba(255,255,255,.5); }
    .hero__strip input[type="email"]::placeholder { color: rgba(255,255,255,.4); }
    .hero__strip button {
      background: var(--tan);
      color: var(--brown-dark);
      border: none;
      border-radius: 3px;
      padding: 10px 24px;
      font-weight: 700;
      font-size: 14px;
      cursor: pointer;
      transition: background .2s;
      font-family: var(--font-body);
    }
    .hero__strip button:hover { background: var(--white); }

    /* =============================================
       SECTION SHARED
    ============================================= */
    .section { padding: 90px 80px; }

    .section-eyebrow {
      text-align: center;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--green-mid);
      margin-bottom: 14px;
    }

    .section-heading {
      font-family: var(--font-display);
      font-size: clamp(30px, 3.5vw, 50px);
      font-weight: 900;
      text-align: center;
      color: var(--brown-dark);
      line-height: 1.1;
      margin-bottom: 18px;
      letter-spacing: -.02em;
    }

    .section-body {
      text-align: center;
      color: var(--text-body);
      font-size: 16px;
      line-height: 1.8;
      max-width: 640px;
      margin: 0 auto 56px;
    }

    /* =============================================
       WORKSHOP THEMES
    ============================================= */
    .themes { background: var(--cream); }

    .themes__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      max-width: 1060px;
      margin: 0 auto;
    }

    .theme-card {
      background: var(--white);
      border: 1px solid var(--tan-mid);
      border-radius: 6px;
      padding: 40px 32px;
      text-align: center;
      transition: box-shadow .25s, transform .25s;
    }
    .theme-card:hover {
      box-shadow: 0 12px 40px rgba(45,90,39,.12);
      transform: translateY(-3px);
    }

    .theme-card__icon {
      width: 52px; height: 52px;
      margin: 0 auto 20px;
      color: var(--green-mid);
    }
    .theme-card__icon svg, span { width: 100%; height: 100%; }

    .theme-card h3 {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 700;
      color: var(--brown-dark);
      margin-bottom: 14px;
    }
    .theme-card p { font-size: 15px; color: var(--text-body); line-height: 1.7; }

    /* =============================================
       TOUR DATES
    ============================================= */
    .tour {
      background: var(--brown);
      position: relative;
      overflow: hidden;
    }
    .tour::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(92,61,30,.8) 0%, transparent 70%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6'%3E%3Crect width='6' height='6' fill='%233b2410'/%3E%3Ccircle cx='3' cy='3' r='1' fill='%235c3d1e' opacity='.5'/%3E%3C/svg%3E");
      background-image:url('https://ontour.thehandsthatfeedus.ca/content/images/2026/03/landing-tour-dates.jpg');
      background-position: center;
      background-blend-mode: multiply;
      background-size: cover;

    }
    .tour .section-eyebrow { color: var(--tan-dark); }
    .tour .section-heading { color: var(--tan); }
    .tour .section-body { color: rgba(232,220,200,.7); }

    .tour__wrapper {
      position: relative;
      z-index: 1;
      max-width: 1100px;
      margin: 0 auto;
    }

    .tour__row {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      position: relative;
      padding: 16px 0;
    }
    .tour__row + .tour__row {
      margin-top: 8px;
      border-top: 1px solid rgba(201,185,154,.15);
      padding-top: 20px;
    }

    /* Connecting line */
    .tour__row::before {
      content: '';
      position: absolute;
      top: 30px;
      left: 8%;
      right: 8%;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(201,185,154,.4) 20%, rgba(201,185,154,.4) 80%, transparent);
      pointer-events: none;
    }

    .tour-stop {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 8px 4px;
      cursor: default;
    }
    .tour-stop__dot {
      width: 12px; height: 12px;
      background: var(--tan);
      border-radius: 50%;
      border: 2px solid var(--brown);
      outline: 2px solid rgba(201,185,154,.5);
      margin-bottom: 12px;
      transition: transform .2s, outline-color .2s;
      position: relative;
      z-index: 1;
    }
    .tour-stop:hover .tour-stop__dot {
      transform: scale(1.5);
      outline-color: var(--tan);
    }
    .tour-stop__date {
      font-size: 13px;
      font-weight: 700;
      color: var(--tan);
      letter-spacing: .04em;
      margin-bottom: 4px;
    }
    .tour-stop__city {
      font-size: 12px;
      color: rgba(232,220,200,.6);
      text-align: center;
      line-height: 1.3;
    }

    /* =============================================
       FORMS
    ============================================= */
    .forms { background: var(--cream-dark); }

    .forms__inner { max-width: 820px; margin: 0 auto; }

    /* ON TOUR badge */
    .on-tour {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--green-dark);
      color: var(--tan);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      border-radius: 3px;
      padding: 6px 14px;
      margin-bottom: 28px;
    }
    .on-tour__dot {
      width: 8px; height: 8px;
      background: var(--tan);
      border-radius: 50%;
      animation: blink 1.6s ease-in-out infinite;
    }
    @keyframes blink {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: .4; transform: scale(1.3); }
    }

    /* Tabs */
    .tabs { display: flex; border-bottom: 2px solid var(--tan-mid); margin-bottom: 40px; }
    .tab {
      padding: 12px 30px;
      font-size: 16px;
      font-weight: 600;
      color: var(--text-body);
      border: none;
      background: none;
      cursor: pointer;
      border-bottom: 3px solid transparent;
      margin-bottom: -2px;
      transition: all .2s;
      font-family: var(--font-body);
    }
    .tab.active { color: var(--green-dark); border-bottom-color: var(--green-dark); }
    .tab:hover:not(.active) { color: var(--green-mid); }

    .tab-panel { display: none; animation: fadeUp .3s ease; }
    .tab-panel.active { display: block; }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(8px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .tab-panel h2 {
      font-family: var(--font-display);
      font-size: 30px;
      font-weight: 700;
      color: var(--brown-dark);
      margin-bottom: 8px;
    }
    .tab-panel > p {
      color: var(--text-body);
      font-size: 15px;
      line-height: 1.65;
      margin-bottom: 32px;
      max-width: 560px;
    }

    /* Form grid */
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .fg { display: flex; flex-direction: column; gap: 6px; }
    .fg.wide { grid-column: 1 / -1; }

    .fg label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--brown-mid);
    }

    .fg input,
    .fg textarea,
    .fg select {
      padding: 11px 14px;
      border: 1px solid var(--tan-mid);
      border-radius: 3px;
      font-size: 15px;
      font-family: var(--font-body);
      color: var(--text-dark);
      background: var(--white);
      transition: border-color .2s, box-shadow .2s;
    }
    .fg input:focus,
    .fg textarea:focus,
    .fg select:focus {
      outline: none;
      border-color: var(--green-mid);
      box-shadow: 0 0 0 3px rgba(61,122,53,.1);
    }
    .fg textarea { resize: vertical; min-height: 96px; }

    .radio-row { display: flex; gap: 8px; flex-wrap: wrap; }
    .radio-row label {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 14px;
      font-weight: 500;
      text-transform: none;
      letter-spacing: 0;
      color: var(--text-body);
      background: var(--white);
      border: 1px solid var(--tan-mid);
      border-radius: 3px;
      padding: 8px 14px;
      cursor: pointer;
      transition: all .15s;
    }
    .radio-row label:hover { border-color: var(--green-mid); color: var(--green-dark); }
    .radio-row input { accent-color: var(--green-mid); }

    .btn-submit {
      margin-top: 28px;
      background: var(--green-dark);
      color: var(--white);
      border: none;
      border-radius: 3px;
      padding: 14px 40px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      font-family: var(--font-body);
      letter-spacing: .03em;
      transition: background .2s, transform .15s;
    }
    .btn-submit:hover { background: var(--green-mid); transform: translateY(-1px); }

    /* =============================================
       JOIN US / PHOTO GRID
    ============================================= */
    .join {
      background: #026837;
      padding: 90px 80px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .join::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(78,158,68,.3), transparent 70%);
    }
    .join .section-eyebrow { color: rgba(201,185,154,.7); }
    .join .section-heading { color: var(--tan); }
    .join .section-body { color: rgba(232,220,200,.75); }

    .join__subscribe {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 10px;
      position: relative;
      z-index: 1;
    }
    .join__subscribe input {
      padding: 13px 20px;
      border: 1px solid rgba(255,255,255,.25);
      background: rgba(255,255,255,.1);
      color: var(--white);
      border-radius: 3px;
      font-size: 15px;
      font-family: var(--font-body);
      width: 300px;
      transition: border-color .2s;
    }
    .join__subscribe input:focus { outline: none; border-color: rgba(255,255,255,.5); }
    .join__subscribe input::placeholder { color: rgba(255,255,255,.4); }
    .join__subscribe button {
      background: var(--tan);
      color: var(--brown-dark);
      border: none;
      border-radius: 3px;
      padding: 13px 30px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      transition: background .2s;
      font-family: var(--font-body);
    }
    .join__subscribe button:hover { background: var(--white); }
    .join__legal {
      font-size: 12px;
      color: rgba(232,220,200,.4);
      margin-bottom: 56px;
      position: relative;
      z-index: 1;
    }

/* Photo mosaic */
    .photo-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: 200px 200px;
      gap: 4px;
      position: relative;
      z-index: 1;
    }

    /* Each cell has a distinct earthy green tone */
    .photo-cell {
      overflow: hidden;
      position: relative;
    }
    .photo-cell img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      filter: brightness(.85) saturate(.9);
      transition: filter .4s, transform .5s;
    }
    .photo-cell:hover img { filter: brightness(1) saturate(1.05); transform: scale(1.04); }

    /* Placeholder color backgrounds when no images */
    .photo-cell:nth-child(1) { background: #3a6232; }
    .photo-cell:nth-child(2) { background: #2e5128; }
    .photo-cell:nth-child(3) { background: #4a7040; }
    .photo-cell:nth-child(4) { background: #355c2d; }
    .photo-cell:nth-child(5) { background: #264920; }
    .photo-cell:nth-child(6) { background: #3f6836; }
    .photo-cell:nth-child(7) { background: #2b5225; }
    .photo-cell:nth-child(8) { background: #446638; }

    /* SVG placeholder icons inside cells */
    .photo-cell__placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: .25;
    }
    .photo-cell__placeholder svg { width: 48px; height: 48px; color: white; }


    /* =============================================
       TRAILER / WATCH
    ============================================= */
    .trailer {
      background: var(--tan);
      padding: 90px 80px;
      position: relative;
    }
    .trailer::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 4px;
      background: linear-gradient(to bottom, var(--green-dark), var(--green-light));
    }

    .trailer__inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }

    .trailer__video {
      position: relative;
      aspect-ratio: 16/9;
      border-radius: 6px;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 24px 60px rgba(59,36,16,.25);
    }
    .trailer__thumb {
      width: 100%; height: 100%;
      background: linear-gradient(135deg, var(--green-dark) 0%, #1a3510 50%, #0e2008 100%);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    /* Stylized film-strip lines */
    .trailer__thumb::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 18px,
        rgba(255,255,255,.03) 18px,
        rgba(255,255,255,.03) 20px
      );
    }

    .trailer__play-wrap {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .trailer__play-btn {
      width: 72px; height: 72px;
      background: rgba(255,255,255,.92);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform .2s, background .2s, box-shadow .2s;
      box-shadow: 0 4px 24px rgba(0,0,0,.3);
    }
    .trailer__play-btn:hover {
      transform: scale(1.1);
      background: var(--white);
      box-shadow: 0 8px 32px rgba(0,0,0,.4);
    }
    .trailer__play-btn svg { width: 28px; height: 28px; fill: var(--green-dark); margin-left: 5px; }

    .trailer__text h2 {
      font-family: var(--font-display);
      font-size: clamp(28px, 3vw, 42px);
      font-weight: 900;
      color: var(--brown-dark);
      line-height: 1.1;
      margin-bottom: 18px;
      letter-spacing: -.02em;
    }
    .trailer__text p {
      color: var(--text-body);
      font-size: 16px;
      line-height: 1.75;
      margin-bottom: 28px;
    }

    .trailer__links { display: flex; flex-direction: column; gap: 12px; }
    .trailer__link {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--green-dark);
      text-decoration: none;
      font-size: 15px;
      font-weight: 600;
      padding: 12px 16px;
      border: 1px solid rgba(45,90,39,.2);
      border-radius: 4px;
      background: rgba(45,90,39,.04);
      transition: all .2s;
    }
    .trailer__link:hover {
      background: rgba(45,90,39,.1);
      border-color: var(--green-mid);
      padding-left: 20px;
    }
    .trailer__link svg { width: 18px; height: 18px; flex-shrink: 0; }
    .trailer__link-arrow { margin-left: auto; width: 16px !important; }

    /* =============================================
       NEWSLETTER STRIP
    ============================================= */
    .newsletter {
      background: var(--cream);
      padding: 60px 80px;
      text-align: center;
      border-top: 1px solid var(--tan-mid);
    }
    .newsletter p { color: var(--text-body); font-size: 15px; margin-bottom: 18px; }
    .newsletter form { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
    .newsletter input {
      padding: 12px 18px;
      border: 1px solid var(--tan-mid);
      border-radius: 3px;
      font-size: 15px;
      font-family: var(--font-body);
      width: 300px;
    }
    .newsletter input:focus { outline: none; border-color: var(--green-mid); }
    .newsletter button {
      background: var(--green-dark);
      color: var(--white);
      border: none;
      border-radius: 3px;
      padding: 12px 30px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      font-family: var(--font-body);
      transition: background .2s;
    }
    .newsletter button:hover { background: var(--green-mid); }
    .newsletter__legal { font-size: 12px; color: #999; margin-top: 12px; }
    .newsletter__legal a { color: #777; }

    /* =============================================
       TRAILER MODAL
    ============================================= */
    .modal {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.92);
      z-index: 500;
      align-items: center;
      justify-content: center;
    }
    .modal.open { display: flex; }
    .modal__box {
      width: min(900px, 90vw);
      aspect-ratio: 16/9;
      position: relative;
    }
    .modal__box iframe {
      width: 100%; height: 100%;
      border: none;
      border-radius: 6px;
    }
    .modal__close {
      position: absolute;
      top: -44px;
      right: 0;
      background: none;
      border: none;
      color: rgba(255,255,255,.7);
      font-size: 32px;
      cursor: pointer;
      line-height: 1;
      transition: color .2s;
    }
    .modal__close:hover { color: var(--white); }



    /* =============================================
       RESPONSIVE
    ============================================= */
    @media (max-width: 1024px) {
      .section, .join, .trailer, .newsletter, .footer { padding-left: 40px; padding-right: 40px; }
      .hero__content, .hero__strip { padding-left: 40px; padding-right: 40px; }
      .themes__grid { grid-template-columns: 1fr 1fr; }
      .trailer__inner { grid-template-columns: 1fr; gap: 48px; }
      .footer__inner { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .nav { padding: 0 20px; }
      .nav__links { display: none; }
      .section, .join, .trailer, .newsletter, .footer { padding-left: 24px; padding-right: 24px; }
      .hero__content { padding: 90px 24px 40px; }
      .hero__strip { padding: 14px 24px; }
      .themes__grid { grid-template-columns: 1fr; }
      .tour__row { grid-template-columns: repeat(3, 1fr); }
      .form-grid { grid-template-columns: 1fr; }
      .fg.wide { grid-column: 1; }
      .photo-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 160px); }
      .footer__inner { grid-template-columns: 1fr; gap: 32px; }
    }
    @media (max-width: 480px) {
      .hero__btns { flex-direction: column; }
      .btn-primary, .btn-secondary { text-align: center; }
      .tour__row { grid-template-columns: repeat(2, 1fr); }
      .tabs { overflow-x: auto; }
      .photo-grid { grid-template-columns: 1fr 1fr; }
    }
