    /* ─── TOKENS ─── */
    :root {
      --green-deep: #2D4A1E;
      --green-mid: #3D6129;
      --green-light: #5A7F3F;
      --cream: #F5ECD7;
      --cream-dark: #EAD9BB;
      --cream-soft: #FBF6ED;
      --gold: #C9963A;
      --gold-light: #E2B96A;
      --gold-dark: #A67828;
      --text-dark: #1C2A12;
      --text-mid: #4A5C38;
      --text-light: #7A8C6A;
      --white: #FEFCF8;
      --serif: 'Fraunces', 'Georgia', serif;
      --sans: 'DM Sans', system-ui, sans-serif;
      --radius-card: 18px;
      --shadow-card: 0 4px 24px rgba(45, 74, 30, 0.12);
      --shadow-lift: 0 8px 40px rgba(45, 74, 30, 0.18);
    }

    /* ─── RESET ─── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--sans);
      background: var(--cream-soft);
      color: var(--text-dark);
      max-width: 480px;
      margin: 0 auto;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* Helper class for desktop content centering — used inside sections */
    .desktop-wrap { max-width: 1240px; margin-left: auto; margin-right: auto; }

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

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

    /* ─── SCROLL REVEAL ─── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

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

    .reveal-delay-1 {
      transition-delay: 0.1s;
    }

    .reveal-delay-2 {
      transition-delay: 0.2s;
    }

    .reveal-delay-3 {
      transition-delay: 0.3s;
    }

    .reveal-delay-4 {
      transition-delay: 0.4s;
    }

    /* ══════════════════════════════════
     NAV
  ══════════════════════════════════ */
    .nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(45, 74, 30, 0.96);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      padding: 8px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid rgba(201, 150, 58, 0.25);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .nav-logo img {
      height: 60px;
      width: auto;
      display: block;
    }

    .nav-cta {
      background: var(--gold);
      color: var(--white);
      font-size: 13px;
      font-weight: 600;
      padding: 9px 16px;
      border-radius: 24px;
      letter-spacing: 0.3px;
    }

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

    .nav-link {
      color: var(--cream);
      font-size: 12.5px;
      font-weight: 500;
      padding: 7px 11px;
      border-radius: 20px;
      transition: background .2s ease, color .2s ease;
    }

    .nav-link:hover { background: rgba(245, 236, 215, 0.10); }

    .nav-link.active {
      background: rgba(201, 150, 58, 0.20);
      color: var(--gold-light);
    }

    /* ══════════════════════════════════
     HERO
  ══════════════════════════════════ */
    .hero {
      position: relative;
      background: var(--green-deep);
      overflow: hidden;
      min-height: 620px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 0 0 90px;
    }

    /* Cinematic gradient overlay over image */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 140% 80% at 50% 0%, rgba(201, 150, 58, 0.18) 0%, transparent 55%),
        linear-gradient(180deg, rgba(28, 42, 18, 0.35) 0%, rgba(28, 42, 18, 0.55) 45%, rgba(28, 42, 18, 0.92) 100%);
      z-index: 2;
      pointer-events: none;
    }

    /* Grain texture */
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
      z-index: 3;
      pointer-events: none;
      mix-blend-mode: overlay;
    }

    .hero-image-wrap {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }

    .hero-bg-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 40%;
      animation: kenBurns 18s ease-in-out infinite alternate;
      filter: brightness(0.85) saturate(1.05);
    }

    @keyframes kenBurns {
      0% {
        transform: scale(1.02) translate(0, 0);
      }

      100% {
        transform: scale(1.15) translate(-1%, -2%);
      }
    }

    /* Floating particles */
    .hero-particles {
      position: absolute;
      inset: 0;
      z-index: 4;
      pointer-events: none;
      overflow: hidden;
    }

    .particle {
      position: absolute;
      width: 4px;
      height: 4px;
      background: var(--gold-light);
      border-radius: 50%;
      opacity: 0;
      box-shadow: 0 0 8px rgba(226, 185, 106, 0.8);
      animation: floatUp 8s ease-in infinite;
    }

    .particle:nth-child(1) {
      left: 10%;
      animation-delay: 0s;
      animation-duration: 9s;
    }

    .particle:nth-child(2) {
      left: 28%;
      animation-delay: 2s;
      animation-duration: 11s;
    }

    .particle:nth-child(3) {
      left: 48%;
      animation-delay: 4s;
      animation-duration: 8s;
    }

    .particle:nth-child(4) {
      left: 68%;
      animation-delay: 1.5s;
      animation-duration: 10s;
    }

    .particle:nth-child(5) {
      left: 85%;
      animation-delay: 3.5s;
      animation-duration: 9.5s;
    }

    .particle:nth-child(6) {
      left: 38%;
      animation-delay: 6s;
      animation-duration: 12s;
      width: 3px;
      height: 3px;
    }

    .particle:nth-child(7) {
      left: 78%;
      animation-delay: 5s;
      animation-duration: 10.5s;
      width: 3px;
      height: 3px;
    }

    @keyframes floatUp {
      0% {
        bottom: -10px;
        opacity: 0;
        transform: translateX(0);
      }

      10% {
        opacity: 0.7;
      }

      50% {
        transform: translateX(20px);
        opacity: 0.9;
      }

      90% {
        opacity: 0.4;
      }

      100% {
        bottom: 100%;
        opacity: 0;
        transform: translateX(-10px);
      }
    }

    /* Floating badge with halo */
    .hero-badge {
      position: absolute;
      top: 76px;
      right: 20px;
      z-index: 10;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
      color: var(--white);
      font-family: var(--serif);
      font-size: 13px;
      font-weight: 700;
      padding: 9px 16px;
      border-radius: 50px;
      letter-spacing: 0.5px;
      box-shadow: 0 4px 20px rgba(201, 150, 58, 0.55);
      animation: floatBadge 3s ease-in-out infinite, badgeIn 0.8s 0.2s backwards cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .hero-badge::before {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50px;
      background: radial-gradient(circle, rgba(226, 185, 106, 0.5) 0%, transparent 70%);
      z-index: -1;
      animation: haloPulse 2.5s ease-in-out infinite;
    }

    @keyframes floatBadge {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-5px);
      }
    }

    @keyframes haloPulse {

      0%,
      100% {
        opacity: 0.4;
        transform: scale(1);
      }

      50% {
        opacity: 0.9;
        transform: scale(1.15);
      }
    }

    @keyframes badgeIn {
      from {
        opacity: 0;
        transform: translateY(-20px) scale(0.7);
      }

      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    /* Hero ornament (decorative gold flourish) */
    .hero-ornament {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 16px;
      opacity: 0;
      animation: heroFadeUp 0.8s 0.3s forwards ease-out;
    }

    .hero-ornament-line {
      flex: 0 0 36px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold-light));
    }

    .hero-ornament svg {
      flex-shrink: 0;
    }

    /* Staggered reveal */
    .hero-content>* {
      opacity: 0;
    }

    .hero-tag {
      animation: heroFadeUp 0.7s 0.4s forwards ease-out;
    }

    .hero-title {
      animation: heroFadeUp 0.9s 0.55s forwards cubic-bezier(0.22, 1, 0.36, 1);
    }

    .hero-farm {
      animation: heroFadeUp 0.7s 0.85s forwards ease-out;
    }

    .hero-slogan {
      animation: heroFadeUp 0.7s 1.0s forwards ease-out;
    }

    .hero-actions {
      animation: heroFadeUp 0.7s 1.15s forwards ease-out;
    }

    .hero-stats {
      animation: heroFadeUp 0.8s 1.35s forwards ease-out;
    }

    @keyframes heroFadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Scroll indicator */
    .hero-scroll {
      position: absolute;
      bottom: 22px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: rgba(245, 236, 215, 0.55);
      font-size: 9px;
      letter-spacing: 2px;
      font-weight: 600;
      text-transform: uppercase;
      animation: heroFadeUp 0.7s 1.6s backwards ease-out;
    }

    .hero-scroll-line {
      width: 1px;
      height: 26px;
      background: linear-gradient(180deg, rgba(226, 185, 106, 0.7), transparent);
      animation: scrollHint 2s ease-in-out infinite;
    }

    @keyframes scrollHint {

      0%,
      100% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 0.4;
      }

      50% {
        transform: scaleY(1.4);
        opacity: 1;
      }
    }

    .hero-content {
      position: relative;
      z-index: 10;
      padding: 0 24px;
    }

    .hero-tag {
      display: inline-block;
      background: rgba(201, 150, 58, 0.2);
      border: 1px solid rgba(201, 150, 58, 0.4);
      color: var(--gold-light);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 4px;
      margin-bottom: 14px;
    }

    .hero-title {
      font-family: var(--serif);
      font-size: 64px;
      font-weight: 900;
      color: var(--cream);
      line-height: 0.95;
      margin-bottom: 10px;
      letter-spacing: -2px;
      text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    }

    .hero-title .gold {
      background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-light) 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: var(--gold-light);
      animation: shimmer 4s linear infinite;
      display: inline-block;
    }

    @keyframes shimmer {
      to {
        background-position: 200% center;
      }
    }

    .hero-farm {
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 600;
      color: rgba(245, 236, 215, 0.85);
      margin-bottom: 12px;
      letter-spacing: 0.2px;
    }

    .hero-slogan {
      font-size: 14px;
      color: rgba(245, 236, 215, 0.65);
      line-height: 1.6;
      max-width: 300px;
      margin-bottom: 28px;
      font-weight: 300;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--white);
      font-size: 15px;
      font-weight: 600;
      padding: 14px 24px;
      border-radius: 50px;
      min-height: 50px;
      display: flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 20px rgba(201, 150, 58, 0.4);
      letter-spacing: 0.2px;
      transition: transform 0.2s, box-shadow 0.2s;
      -webkit-tap-highlight-color: transparent;
    }

    .btn-primary:active {
      transform: scale(0.97);
    }

    .btn-secondary {
      background: rgba(245, 236, 215, 0.1);
      color: var(--cream);
      border: 1px solid rgba(245, 236, 215, 0.3);
      font-size: 14px;
      font-weight: 500;
      padding: 14px 20px;
      border-radius: 50px;
      min-height: 50px;
      display: flex;
      align-items: center;
      -webkit-tap-highlight-color: transparent;
    }

    .hero-stats {
      display: flex;
      gap: 0;
      margin-top: 32px;
      background: linear-gradient(135deg, rgba(245, 236, 215, 0.08), rgba(245, 236, 215, 0.03));
      border: 1px solid rgba(226, 185, 106, 0.18);
      border-radius: 16px;
      overflow: hidden;
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }

    .hero-stat {
      flex: 1;
      padding: 16px 8px;
      text-align: center;
      border-right: 1px solid rgba(245, 236, 215, 0.12);
      position: relative;
    }

    .hero-stat:last-child {
      border-right: none;
    }

    .hero-stat::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 40px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(226, 185, 106, 0.4), transparent);
      transform: translate(-50%, 24px);
    }

    .hero-stat-num {
      font-family: var(--serif);
      font-size: 28px;
      font-weight: 800;
      color: var(--gold-light);
      display: block;
      letter-spacing: -0.5px;
      text-shadow: 0 2px 12px rgba(201, 150, 58, 0.3);
    }

    .hero-stat-label {
      font-size: 10px;
      color: rgba(245, 236, 215, 0.7);
      letter-spacing: 0.8px;
      margin-top: 4px;
      display: block;
      font-weight: 500;
      text-transform: uppercase;
    }

    /* ══════════════════════════════════
     SECTION HEADER
  ══════════════════════════════════ */
    .section-header {
      padding: 40px 24px 8px;
    }

    .section-eyebrow {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gold-dark);
      margin-bottom: 6px;
    }

    .section-title {
      font-family: var(--serif);
      font-size: 28px;
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.2;
    }

    .section-divider {
      width: 40px;
      height: 3px;
      background: var(--gold);
      border-radius: 2px;
      margin-top: 10px;
    }

    /* ══════════════════════════════════
     CATEGORY TABS
  ══════════════════════════════════ */
    .category-tabs {
      display: flex;
      gap: 8px;
      padding: 20px 24px 4px;
      overflow-x: auto;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .category-tabs::-webkit-scrollbar {
      display: none;
    }

    .tab-btn {
      flex-shrink: 0;
      padding: 10px 20px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      min-height: 40px;
      transition: all 0.2s;
      -webkit-tap-highlight-color: transparent;
      font-family: var(--sans);
    }

    .tab-btn.active {
      background: var(--green-deep);
      color: var(--cream);
    }

    .tab-btn:not(.active) {
      background: var(--cream-dark);
      color: var(--text-mid);
    }

    /* ══════════════════════════════════
     ANIMAL CARDS
  ══════════════════════════════════ */
    .cards-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      padding: 16px 16px 8px;
    }

    .animal-card {
      background: var(--white);
      border-radius: var(--radius-card);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      -webkit-tap-highlight-color: transparent;
      cursor: pointer;
    }

    .animal-card:active {
      transform: scale(0.97);
      box-shadow: var(--shadow-card);
    }

    .card-image {
      position: relative;
      aspect-ratio: 1 / 1;
      background: var(--cream-dark);
      overflow: hidden;
    }

    .card-photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .animal-card:hover .card-photo {
      transform: scale(1.04);
    }

    .card-image-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background:
        repeating-linear-gradient(45deg,
          transparent,
          transparent 12px,
          rgba(45, 74, 30, 0.04) 12px,
          rgba(45, 74, 30, 0.04) 24px),
        var(--cream-dark);
    }

    .card-image-placeholder .animal-icon {
      font-size: 36px;
      margin-bottom: 4px;
      filter: grayscale(0.3);
    }

    .card-image-placeholder .ph-text {
      font-family: monospace;
      font-size: 9px;
      color: rgba(74, 92, 56, 0.45);
      letter-spacing: 1px;
      text-align: center;
      padding: 0 8px;
    }

    .card-badge {
      position: absolute;
      top: 8px;
      left: 8px;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 4px 8px;
      border-radius: 4px;
      color: var(--white);
    }

    .badge-buyukbas {
      background: var(--green-mid);
    }

    .badge-kucukbas {
      background: #7B5E3A;
    }

    .card-status-overlay {
      position: absolute;
      bottom: 8px;
      left: 8px;
      right: 8px;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 6px;
      pointer-events: none;
    }

    .card-shares {
      background: rgba(255, 255, 255, 0.95);
      color: var(--green-deep);
      font-size: 10px;
      font-weight: 700;
      padding: 4px 9px;
      border-radius: 999px;
      letter-spacing: 0.5px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    .card-shares::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #3D9B53;
    }

    .card-shares.sold {
      background: #C0392B;
      color: #fff;
    }

    .card-shares.sold::before {
      background: #fff;
    }

    .card-shares.partial {
      background: rgba(255, 255, 255, 0.95);
      color: var(--gold-dark);
    }

    .card-shares.partial::before {
      background: var(--gold);
    }

    /* SATILDI durumu */
    .animal-card.is-sold .card-photo {
      filter: grayscale(0.85) brightness(0.7);
    }

    .animal-card.is-sold:hover .card-photo {
      transform: none;
    }

    .animal-card.is-sold {
      cursor: pointer;
    }

    .sold-stamp {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(-12deg);
      background: rgba(192, 57, 43, 0.95);
      color: #fff;
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 900;
      letter-spacing: 4px;
      padding: 8px 18px;
      border: 3px solid #fff;
      border-radius: 6px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
      text-transform: uppercase;
      pointer-events: none;
      z-index: 2;
      white-space: nowrap;
    }

    .badge-hot {
      position: absolute;
      top: 8px;
      right: 8px;
      background: #C0392B;
      color: white;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 0.5px;
      padding: 3px 7px;
      border-radius: 4px;
    }

    .card-body {
      padding: 12px 12px 14px;
    }

    .card-type {
      font-size: 10px;
      font-weight: 600;
      color: var(--text-light);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 3px;
    }

    .card-name {
      font-family: var(--serif);
      font-size: 17px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 6px;
      line-height: 1.2;
    }

    .card-meta {
      display: flex;
      align-items: center;
      gap: 4px;
      margin-bottom: 2px;
    }

    .card-meta-icon {
      width: 14px;
      height: 14px;
      opacity: 0.5;
      flex-shrink: 0;
    }

    .card-weight {
      font-size: 12px;
      color: var(--text-mid);
      font-weight: 500;
    }

    .card-price {
      font-family: var(--serif);
      font-size: 16px;
      font-weight: 700;
      color: var(--gold-dark);
      margin-top: 8px;
    }

    .card-info {
      display: flex;
      flex-direction: column;
      gap: 3px;
      margin-top: 6px;
      padding-top: 6px;
      border-top: 1px solid rgba(45, 74, 30, 0.08);
    }

    .card-info-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 6px;
    }

    .card-info-label {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      color: var(--text-light);
    }

    .card-info-value {
      font-size: 12px;
      font-weight: 600;
      color: var(--text-dark);
      font-variant-numeric: tabular-nums;
      letter-spacing: -0.2px;
      text-align: right;
    }

    .card-info-value.price {
      color: var(--gold-dark);
      font-weight: 700;
    }

    .animal-card.is-sold .card-info-value.price {
      color: var(--text-light);
      text-decoration: line-through;
    }

    .card-price-sub {
      font-size: 10px;
      color: var(--text-light);
      font-weight: 400;
      font-family: var(--sans);
    }

    .card-whatsapp {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      margin-top: 10px;
      background: #E8F5E9;
      color: #2E7D32;
      font-size: 11px;
      font-weight: 600;
      padding: 7px 10px;
      border-radius: 8px;
      min-height: 32px;
    }

    /* ══════════════════════════════════
     HAKKIMIZDA / ABOUT
  ══════════════════════════════════ */
    .about-section {
      margin: 32px 16px;
      background: var(--green-deep);
      border-radius: 20px;
      overflow: hidden;
      position: relative;
    }

    .about-section::before {
      content: '';
      position: absolute;
      top: -40px;
      right: -40px;
      width: 160px;
      height: 160px;
      background: radial-gradient(circle, rgba(201, 150, 58, 0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    .about-top {
      padding: 28px 24px 20px;
    }

    .about-eyebrow {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 8px;
    }

    .about-title {
      font-family: var(--serif);
      font-size: 26px;
      font-weight: 700;
      color: var(--cream);
      line-height: 1.25;
      margin-bottom: 12px;
    }

    .about-text {
      font-size: 14px;
      color: rgba(245, 236, 215, 0.7);
      line-height: 1.7;
      font-weight: 300;
    }

    .cert-row {
      display: flex;
      gap: 10px;
      padding: 20px 24px;
      border-top: 1px solid rgba(245, 236, 215, 0.1);
      flex-wrap: wrap;
    }

    .cert-badge {
      display: flex;
      align-items: center;
      gap: 7px;
      background: rgba(245, 236, 215, 0.08);
      border: 1px solid rgba(245, 236, 215, 0.15);
      padding: 8px 12px;
      border-radius: 10px;
      font-size: 11px;
      color: rgba(245, 236, 215, 0.8);
      font-weight: 500;
      flex-shrink: 0;
    }

    .cert-badge svg {
      flex-shrink: 0;
    }

    .about-milestones {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 0;
      border-top: 1px solid rgba(245, 236, 215, 0.15);
    }

    .milestone {
      padding: 22px 12px;
      border-right: 1px solid rgba(245, 236, 215, 0.15);
      text-align: center;
    }

    .milestone:last-child {
      border-right: none;
    }

    .milestone-num {
      font-family: var(--serif);
      font-size: 38px;
      font-weight: 900;
      color: var(--gold-light);
      line-height: 1;
      margin-bottom: 6px;
      letter-spacing: -0.5px;
    }

    .milestone-label {
      font-size: 12px;
      color: rgba(245, 236, 215, 0.85);
      font-weight: 600;
      letter-spacing: 0.3px;
    }

    /* ══════════════════════════════════
     ADRES / LOCATION
  ══════════════════════════════════ */
    .location-section {
      padding: 8px 16px 8px;
    }

    .location-card {
      background: var(--white);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-card);
    }

    .map-embed {
      height: 220px;
      width: 100%;
      border: 0;
      display: block;
    }

    .location-info {
      padding: 20px;
    }

    .location-name {
      font-family: var(--serif);
      font-size: 18px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 6px;
    }

    .location-address {
      font-size: 13px;
      color: var(--text-mid);
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .btn-maps {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: var(--green-deep);
      color: var(--cream);
      font-size: 14px;
      font-weight: 600;
      padding: 14px;
      border-radius: 12px;
      min-height: 50px;
      width: 100%;
      -webkit-tap-highlight-color: transparent;
    }

    /* ══════════════════════════════════
     İLETİŞİM / CONTACT
  ══════════════════════════════════ */
    .contact-section {
      padding: 8px 16px 8px;
    }

    .contact-card {
      background: var(--white);
      border-radius: 20px;
      padding: 24px;
      box-shadow: var(--shadow-card);
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 14px 0;
      border-bottom: 1px solid var(--cream-dark);
    }

    .contact-item:last-of-type {
      border-bottom: none;
    }

    .contact-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .ci-green {
      background: #E8F5E9;
    }

    .ci-gold {
      background: #FFF8E7;
    }

    .ci-blue {
      background: #E3F2FD;
    }

    .contact-label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--text-light);
      margin-bottom: 3px;
    }

    .contact-value {
      font-size: 16px;
      font-weight: 600;
      color: var(--text-dark);
    }

    .contact-sub {
      font-size: 12px;
      color: var(--text-light);
      margin-top: 2px;
    }

    .contact-arrow {
      margin-left: auto;
      color: var(--text-light);
      flex-shrink: 0;
    }

    .btn-whatsapp-big {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: #25D366;
      color: var(--white);
      font-size: 16px;
      font-weight: 700;
      padding: 16px;
      border-radius: 14px;
      min-height: 56px;
      width: 100%;
      margin-top: 20px;
      box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
      -webkit-tap-highlight-color: transparent;
      letter-spacing: 0.3px;
    }

    .btn-phone {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: var(--green-deep);
      color: var(--cream);
      font-size: 16px;
      font-weight: 700;
      padding: 16px;
      border-radius: 14px;
      min-height: 56px;
      width: 100%;
      margin-top: 10px;
      -webkit-tap-highlight-color: transparent;
    }

    .hours-box {
      background: var(--cream-soft);
      border-radius: 12px;
      padding: 16px;
      margin-top: 20px;
    }

    .hours-title {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--text-light);
      margin-bottom: 10px;
    }

    .hours-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      padding: 5px 0;
      border-bottom: 1px solid var(--cream-dark);
    }

    .hours-row:last-child {
      border-bottom: none;
    }

    .hours-day {
      color: var(--text-mid);
      font-weight: 500;
    }

    .hours-time {
      color: var(--text-dark);
      font-weight: 600;
    }

    .hours-badge {
      font-size: 9px;
      background: #E8F5E9;
      color: #2E7D32;
      padding: 2px 6px;
      border-radius: 4px;
      font-weight: 700;
      letter-spacing: 0.5px;
    }

    /* ══════════════════════════════════
     FOOTER
  ══════════════════════════════════ */
    footer {
      background: var(--green-deep);
      padding: 36px 24px 28px;
      margin-top: 32px;
      text-align: center;
    }

    .footer-logo {
      display: flex;
      justify-content: center;
      margin-bottom: 6px;
    }

    .footer-logo img {
      height: 72px;
      width: auto;
      display: block;
    }

    .footer-slogan {
      font-size: 12px;
      color: rgba(245, 236, 215, 0.5);
      margin-bottom: 24px;
    }

    .social-row {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-bottom: 28px;
    }

    .social-btn {
      width: 44px;
      height: 44px;
      background: rgba(245, 236, 215, 0.08);
      border: 1px solid rgba(245, 236, 215, 0.15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      -webkit-tap-highlight-color: transparent;
    }

    .footer-divider {
      width: 100%;
      height: 1px;
      background: rgba(245, 236, 215, 0.1);
      margin-bottom: 20px;
    }

    .footer-copy {
      font-size: 11px;
      color: rgba(245, 236, 215, 0.35);
      line-height: 1.6;
    }

    .footer-copy a {
      color: rgba(245, 236, 215, 0.5);
    }

    /* ══════════════════════════════════
     STICKY WHATSAPP
  ══════════════════════════════════ */
    .sticky-wa {
      position: fixed;
      bottom: 24px;
      right: 20px;
      z-index: 999;
      width: 58px;
      height: 58px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
      -webkit-tap-highlight-color: transparent;
    }

    .sticky-wa::before {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      border: 2px solid #25D366;
      animation: waPulse 2s ease-out infinite;
    }

    .sticky-wa::after {
      content: '';
      position: absolute;
      inset: -8px;
      border-radius: 50%;
      border: 2px solid rgba(37, 211, 102, 0.3);
      animation: waPulse 2s ease-out 0.4s infinite;
    }

    @keyframes waPulse {
      0% {
        transform: scale(1);
        opacity: 0.8;
      }

      100% {
        transform: scale(1.6);
        opacity: 0;
      }
    }

    /* ══════════════════════════════════
     ANIMAL TABS (show/hide)
  ══════════════════════════════════ */
    .animal-section[data-cat] {
      display: none;
    }

    .animal-section.active {
      display: block;
    }

    /* section spacing */
    section+.section-header {
      margin-top: 8px;
    }



    /* ══════════════════════════════════
     ANIMAL DETAIL MODAL
  ══════════════════════════════════ */
    body.modal-open {
      overflow: hidden;
    }

    .animal-modal {
      position: fixed;
      inset: 0;
      background: rgba(15, 22, 8, 0.85);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      z-index: 9999;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 16px;
      overflow-y: auto;
      overscroll-behavior: contain;
      animation: modalFade .25s ease;
    }

    .animal-modal.open {
      display: flex;
    }

    .modal-sheet {
      width: 100%;
      max-width: 420px;
      background: var(--cream-soft);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
      margin: auto;
      display: flex;
      flex-direction: column;
      animation: sheetIn .32s cubic-bezier(.22, .8, .36, 1);
    }

    @keyframes sheetIn {
      from {
        transform: translateY(20px) scale(0.96);
        opacity: 0;
      }

      to {
        transform: none;
        opacity: 1;
      }
    }

    @keyframes modalFade {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    .modal-close {
      position: absolute;
      top: 8px;
      right: 8px;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.45);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      -webkit-tap-highlight-color: transparent;
    }

    .modal-close svg {
      display: block;
    }

    .modal-gallery {
      position: relative;
      width: 100%;
      aspect-ratio: 4 / 5;
      max-height: 50vh;
      background: #1a1a1a;
      overflow: hidden;
      flex-shrink: 0;
    }

    .modal-track {
      display: flex;
      height: 100%;
      transition: transform 0.34s cubic-bezier(.22, .8, .36, 1);
      will-change: transform;
    }

    .modal-track.dragging {
      transition: none;
    }

    .modal-slide {
      flex: 0 0 100%;
      height: 100%;
      overflow: hidden;
    }

    .modal-slide img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      user-select: none;
      -webkit-user-drag: none;
      pointer-events: none;
    }

    .modal-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.85);
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 3;
      transition: opacity .2s;
      -webkit-tap-highlight-color: transparent;
    }

    .modal-arrow:disabled {
      opacity: 0.35;
      cursor: default;
    }

    .modal-arrow.prev {
      left: 10px;
    }

    .modal-arrow.next {
      right: 10px;
    }

    .modal-counter {
      position: absolute;
      top: 12px;
      left: 12px;
      background: rgba(0, 0, 0, 0.5);
      color: #fff;
      font-size: 11px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 999px;
      z-index: 3;
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }

    .modal-dots {
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 6px;
      z-index: 3;
    }

    .modal-dots span {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.45);
      transition: all .25s ease;
    }

    .modal-dots span.active {
      background: #fff;
      width: 18px;
      border-radius: 4px;
    }

    .modal-body {
      background: var(--cream-soft);
      padding: 16px 16px 18px;
      position: relative;
    }

    .modal-eyebrow {
      font-size: 9px;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: var(--gold-dark);
      margin-bottom: 4px;
    }

    .modal-title {
      font-family: var(--serif);
      font-size: 20px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 12px;
      line-height: 1.2;
    }

    .modal-price {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 10px;
      background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
      color: var(--cream);
      padding: 11px 14px;
      border-radius: 12px;
      margin-bottom: 12px;
    }

    .modal-price-label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: var(--gold-light);
    }

    .modal-price-value {
      font-family: var(--sans);
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0;
      font-variant-numeric: tabular-nums;
    }

    .modal-status-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
      flex-wrap: wrap;
    }

    .status-pill {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1px;
      padding: 5px 10px;
      border-radius: 999px;
      text-transform: uppercase;
      flex-shrink: 0;
    }

    .status-available {
      background: #E8F5E9;
      color: #2E7D32;
    }

    .status-sold {
      background: #FFEBEE;
      color: #C0392B;
    }

    .shares-block {
      flex: 1;
      min-width: 140px;
    }

    .shares-label {
      display: flex;
      justify-content: space-between;
      font-size: 11px;
      font-weight: 600;
      color: var(--text-mid);
      margin-bottom: 5px;
    }

    .shares-label strong {
      color: var(--text-dark);
      font-weight: 700;
      font-variant-numeric: tabular-nums;
    }

    .shares-track {
      height: 8px;
      background: var(--cream-dark);
      border-radius: 999px;
      overflow: hidden;
    }

    .shares-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
      border-radius: 999px;
      transition: width .5s ease;
    }

    .shares-fill.full {
      background: linear-gradient(90deg, #C0392B 0%, #E74C3C 100%);
    }

    .modal-specs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      margin-bottom: 14px;
    }

    .spec-item {
      background: var(--white);
      border: 1px solid rgba(45, 74, 30, 0.08);
      border-radius: 10px;
      padding: 8px 10px;
    }

    .spec-label {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--text-light);
      margin-bottom: 2px;
    }

    .spec-value {
      font-size: 15px;
      font-weight: 600;
      color: var(--text-dark);
      font-family: var(--sans);
      font-variant-numeric: tabular-nums;
      letter-spacing: -0.2px;
    }

    .modal-actions {
      display: flex;
      gap: 8px;
    }

    .modal-btn {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 11px 8px;
      border-radius: 10px;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      -webkit-tap-highlight-color: transparent;
    }

    .modal-btn-wa {
      background: #25D366;
      color: #fff;
    }

    .modal-btn-call {
      background: var(--green-deep);
      color: var(--cream);
    }

    .modal-btn:active {
      transform: scale(0.98);
    }

    .modal-swipe-hint {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      color: rgba(255, 255, 255, 0.7);
      font-size: 10px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      pointer-events: none;
      opacity: 0;
      transition: opacity .3s;
    }

    .animal-modal.open .modal-swipe-hint {
      opacity: 1;
      animation: hintFade 2.5s ease forwards;
    }

    @keyframes hintFade {
      0% {
        opacity: 0;
      }

      20% {
        opacity: 1;
      }

      80% {
        opacity: 1;
      }

      100% {
        opacity: 0;
      }
    }

    /* ══════════════════════════════════
       COUNTDOWN
    ══════════════════════════════════ */
    .countdown-section {
      padding: 24px 16px 8px;
    }
    .countdown-card {
      background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
      border-radius: 20px;
      padding: 24px 20px 22px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 6px 28px rgba(45,74,30,0.25);
    }
    .countdown-card::before {
      content: '';
      position: absolute;
      top: -30px; right: -30px;
      width: 120px; height: 120px;
      background: radial-gradient(circle, rgba(226,185,106,0.18) 0%, transparent 70%);
      pointer-events: none;
    }
    .countdown-card::after {
      content: '';
      position: absolute;
      bottom: -20px; left: -20px;
      width: 80px; height: 80px;
      background: radial-gradient(circle, rgba(226,185,106,0.1) 0%, transparent 70%);
      pointer-events: none;
    }
    .countdown-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
    }
    .countdown-icon {
      width: 38px; height: 38px;
      background: rgba(226,185,106,0.2);
      border: 1px solid rgba(226,185,106,0.35);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 18px;
    }
    .countdown-title {
      font-family: var(--serif);
      font-size: 17px;
      font-weight: 700;
      color: var(--cream);
      line-height: 1.2;
    }
    .countdown-subtitle {
      font-size: 11px;
      color: rgba(245,236,215,0.6);
      font-weight: 500;
      margin-top: 2px;
    }
    .countdown-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 8px;
    }
    .countdown-unit {
      background: rgba(245,236,215,0.08);
      border: 1px solid rgba(245,236,215,0.12);
      border-radius: 14px;
      padding: 14px 6px 12px;
      text-align: center;
      position: relative;
    }
    .countdown-num {
      font-family: var(--serif);
      font-size: 32px;
      font-weight: 900;
      color: var(--gold-light);
      line-height: 1;
      letter-spacing: -1px;
      display: block;
      text-shadow: 0 2px 12px rgba(201,150,58,0.35);
      font-variant-numeric: tabular-nums;
    }
    .countdown-label {
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(245,236,215,0.65);
      margin-top: 6px;
      display: block;
    }
    .countdown-done {
      text-align: center;
      padding: 8px 0;
    }
    .countdown-done-text {
      font-family: var(--serif);
      font-size: 22px;
      font-weight: 800;
      color: var(--gold-light);
    }

    /* ══════════════════════════════════
       FAQ / SSS
    ══════════════════════════════════ */
    .faq-section {
      padding: 0 16px 16px;
    }
    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .faq-item {
      background: var(--white);
      border: 1px solid rgba(45,74,30,0.1);
      border-radius: 14px;
      overflow: hidden;
      transition: box-shadow .25s ease;
    }
    .faq-item:hover {
      box-shadow: 0 2px 12px rgba(45,74,30,0.08);
    }
    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      width: 100%;
      padding: 14px 16px;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      font-family: var(--sans);
      font-size: 14px;
      font-weight: 600;
      color: var(--text-dark);
      line-height: 1.4;
      -webkit-tap-highlight-color: transparent;
    }
    .faq-question::after {
      content: '+';
      font-size: 20px;
      font-weight: 300;
      color: var(--gold);
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform .3s ease;
    }
    .faq-item.open .faq-question::after {
      content: '−';
      transform: rotate(180deg);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease, padding .35s ease;
    }
    .faq-item.open .faq-answer {
      max-height: 300px;
    }
    .faq-answer-inner {
      padding: 0 16px 14px;
      font-size: 13px;
      line-height: 1.65;
      color: var(--text-mid);
    }

    /* ═══════════════════════════════════════════════════════════════
       DESKTOP RESPONSIVE OVERRIDES
       Mobile design (<=767px) preserved as-is above.
       Tablet (768+) and desktop (1100+) overrides below.
    ═══════════════════════════════════════════════════════════════ */

    @media (min-width: 768px) {
      body { max-width: none; }

      /* NAV */
      .nav { padding: 12px max(24px, calc((100vw - 1240px) / 2)); }
      .nav-logo img { height: 64px; }
      .nav-link { font-size: 14px; padding: 8px 14px; }
      .nav-cta { font-size: 14px; padding: 11px 22px; }

      /* HERO — full-width bg, centered content */
      .hero {
        min-height: 760px;
        padding: 0 max(32px, calc((100vw - 1100px) / 2)) 110px;
        align-items: center;
      }
      .hero-content {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        width: 100%;
      }
      .hero-tag, .hero-ornament { justify-content: center; }
      .hero-title { font-size: clamp(72px, 8.5vw, 128px); line-height: 1; }
      .hero-farm { font-size: 22px; margin-top: 14px; }
      .hero-slogan {
        font-size: 17px;
        max-width: 580px;
        margin: 18px auto 28px;
        line-height: 1.65;
      }
      .hero-actions { justify-content: center; gap: 14px; }
      .hero-stats { justify-content: center; gap: 64px; padding-top: 12px; }
      .hero-stat-num { font-size: 36px; }
      .hero-stat-label { font-size: 12px; }
      .hero-badge { top: 100px; right: 50%; transform: translateX(50%); }
      .hero-scroll { left: 50%; transform: translateX(-50%); }

      /* COUNTDOWN */
      .countdown-section {
        padding: 56px max(24px, calc((100vw - 1100px) / 2)) 24px;
      }
      .countdown-card { max-width: 780px; margin: 0 auto; padding: 32px 36px; }
      .countdown-num { font-size: 48px; }
      .countdown-label { font-size: 11px; }

      /* SECTIONS */
      #hayvanlar, #nasil-calisir, #hakkimizda, #adres, #iletisim, .faq-section {
        padding-left: max(24px, calc((100vw - 1240px) / 2));
        padding-right: max(24px, calc((100vw - 1240px) / 2));
        padding-top: 88px;
        padding-bottom: 88px;
      }

      .section-header {
        text-align: center;
        max-width: 720px;
        margin: 0 auto 48px;
      }
      .section-title { font-size: clamp(36px, 4vw, 50px) !important; line-height: 1.1; }
      .section-eyebrow { font-size: 12px; letter-spacing: 3px; }
      .section-sub { font-size: 16px; max-width: 600px; margin-left: auto; margin-right: auto; }

      /* ANIMAL CARDS — 2 → 3 cols */
      .cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        padding: 0;
        max-width: 1200px;
        margin: 0 auto;
      }

      /* ANIMAL MODAL — centered, capped */
      .animal-modal { align-items: center !important; padding: 24px !important; }
      .modal-sheet {
        max-width: 720px !important;
        border-radius: 24px !important;
        max-height: 88vh !important;
      }

      /* HOW IT WORKS / ABOUT / ADDRESS / CONTACT — centered narrow content */
      #nasil-calisir > *:not(.section-header),
      #hakkimizda > *:not(.section-header),
      #adres > *:not(.section-header),
      #iletisim > *:not(.section-header) {
        max-width: 920px;
        margin-left: auto;
        margin-right: auto;
      }

      /* FAQ */
      .faq-list { max-width: 780px; margin: 0 auto; }
      .faq-question { font-size: 15px; padding: 18px 22px; }

      /* FOOTER */
      footer { padding: 56px max(24px, calc((100vw - 1240px) / 2)) 40px; }
      .footer-logo img { height: 72px; }
      .footer-slogan { font-size: 16px; }

      /* STICKY WA */
      .sticky-wa {
        width: 64px !important;
        height: 64px !important;
        bottom: 28px !important;
        right: 28px !important;
      }
    }

    @media (min-width: 1100px) {
      .cards-grid { grid-template-columns: repeat(4, 1fr); gap: 28px; }
      .hero { min-height: 820px; }
      .hero-title { font-size: clamp(96px, 9vw, 144px); }
      .countdown-card { padding: 40px 48px; }
      .countdown-num { font-size: 56px; }
    }

    @media (min-width: 1400px) {
      .cards-grid { max-width: 1300px; }
    }
