    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ DESIGN TOKENS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    :root {
      /* Colors â€” Karadeniz palette */
      --forest: #0F2A1D;
      --forest-deep: #061A11;
      --forest-soft: #1B3A28;
      --sage: #2D5A3D;
      --moss: #5C7E62;
      --moss-light: #8FA593;

      --gold: #C9A961;
      --gold-light: #E5CB8E;
      --gold-deep: #9C7E3F;

      --paper: #FAF7EF;
      --cream: #F4EFE3;
      --bone: #EBE3CF;
      --mist: rgba(244, 239, 227, 0.85);

      --ink: #0A1410;
      --ink-soft: #2A3530;
      --ink-mute: #6B7670;

      /* Typography */
      --font-display: 'Fraunces', 'Times New Roman', serif;
      --font-body: 'DM Sans', system-ui, sans-serif;
      --font-hand: var(--font-display);

      /* Layout */
      --container: 1440px;
      --gutter: clamp(1.25rem, 4vw, 3rem);
      --radius-sm: 6px;
      --radius: 12px;
      --radius-lg: 20px;

      /* Motion */
      --ease: cubic-bezier(0.4, 0, 0.2, 1);
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
      --t-fast: 0.25s var(--ease);
      --t: 0.45s var(--ease);
      --t-slow: 0.7s var(--ease-out);

      /* Topography */
      --topo: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 800' fill='none' stroke='%23C9A961' stroke-width='0.6' opacity='0.5'><path d='M0 200 Q 200 100 400 200 T 800 200'/><path d='M0 280 Q 200 180 400 280 T 800 280'/><path d='M0 360 Q 200 260 400 360 T 800 360'/><path d='M0 440 Q 200 340 400 440 T 800 440'/><path d='M0 520 Q 200 420 400 520 T 800 520'/><path d='M0 600 Q 200 500 400 600 T 800 600'/><circle cx='400' cy='400' r='40' /><circle cx='400' cy='400' r='80' /><circle cx='400' cy='400' r='130' /></svg>");
    }

    /* ────────────────────────── RESET ────────────────────────── */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
      height: 100%;
      overflow-x: hidden;
    }

    body {
      font-family: var(--font-body);
      background: var(--paper);
      color: var(--ink);
      line-height: 1.55;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      overflow-x: hidden;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      margin: 0;
    }

    #page,
    .site {
      max-width: none;
      width: 100%;
      display: flex;
      flex-direction: column;
      flex: 1 0 auto;
    }

    #primary.site-main {
      flex: 1 0 auto;
    }

    em {
      font-family: var(--font-hand);
      font-style: italic;
      font-weight: 400;
      font-variation-settings: "SOFT" 100, "WONK" 1;
      letter-spacing: -0.01em;
    }

    img,
    svg {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font: inherit;
      color: inherit;
      background: none;
      border: 0;
      cursor: pointer;
    }

    ul {
      list-style: none;
    }

    input,
    textarea {
      font: inherit;
      color: inherit;
    }

    /* Container */
    .wrap {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 var(--gutter);
    }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   HEADER
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

    /* Topbar â€” small announcement strip */
    .topbar {
      background: var(--forest-deep);
      color: var(--bone);
      font-size: 0.78rem;
      letter-spacing: 0.04em;
      border-bottom: 1px solid rgba(201, 169, 97, 0.15);
      position: relative;
      z-index: 60;
    }

    .topbar__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 38px;
      gap: 1.5rem;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 var(--gutter);
    }

    .topbar__left {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      overflow: hidden;
      min-width: 0;
    }

    .topbar__pill {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      color: var(--gold-light);
    }

    .topbar__pill svg {
      width: 13px;
      height: 13px;
    }

    .topbar__sep {
      width: 1px;
      height: 14px;
      background: rgba(201, 169, 97, 0.3);
    }

    .topbar__right {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      flex-shrink: 0;
    }

    .topbar__right a {
      color: var(--bone);
      opacity: 0.7;
      transition: opacity var(--t-fast);
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      white-space: nowrap;
    }

    .topbar__right a:hover {
      opacity: 1;
      color: var(--gold-light);
    }

    .topbar__lang {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      cursor: pointer;
      padding: 4px 8px;
      border: 1px solid rgba(201, 169, 97, 0.25);
      border-radius: 100px;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      transition: all var(--t-fast);
    }

    .topbar__lang:hover {
      border-color: var(--gold);
      color: var(--gold-light);
    }

    /* Main header */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: var(--paper);
      border-bottom: 1px solid transparent;
      transition: border-color var(--t), backdrop-filter var(--t);
    }

    .site-header.scrolled {
      background: rgba(250, 247, 239, 0.92);
      backdrop-filter: blur(18px) saturate(1.2);
      -webkit-backdrop-filter: blur(18px) saturate(1.2);
      border-bottom-color: rgba(15, 42, 29, 0.08);
    }

    .header__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 86px;
      gap: 2rem;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 var(--gutter);
      transition: height var(--t);
    }

    .header__inner > nav {
      flex: 1;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .site-header.scrolled .header__inner {
      height: 72px;
    }

    /* Logo */
    .logo {
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
      text-decoration: none;
    }

    .logo--image-only {
      display: inline-flex;
      align-items: center;
      line-height: 0;
    }

    .logo__img {
      display: block;
      width: auto;
      height: 70px;
      object-fit: contain;
      filter: saturate(1.08) contrast(1.08) drop-shadow(0 2px 8px rgba(6, 26, 17, 0.22));
    }

    .site-header .logo__img {
      height: 78px;
    }

    .site-header.scrolled .logo__img {
      height: 68px;
    }

    .logo__mark {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      background: var(--forest);
      border-radius: 50%;
      color: var(--gold-light);
      flex-shrink: 0;
      transition: transform var(--t);
    }

    .logo:hover .logo__mark {
      transform: rotate(-12deg);
    }

    .logo__mark svg {
      width: 20px;
      height: 20px;
    }

    .logo__type {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }

    .logo__name {
      font-family: var(--font-display);
      font-weight: 500;
      font-variation-settings: "opsz" 144, "SOFT" 50;
      font-size: 1.6rem;
      letter-spacing: -0.02em;
      color: var(--forest);
    }

    .logo__sub {
      font-size: 0.62rem;
      letter-spacing: 0.32em;
      color: var(--moss);
      margin-top: 4px;
      font-weight: 500;
      text-transform: uppercase;
    }

    /* Primary nav */
    .nav-primary {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.25rem;
      height: 100%;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .nav-primary > li {
      position: static;
      display: flex;
      align-items: center;
      height: 100%;
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0 1rem;
      height: 100%;
      font-size: 0.92rem;
      font-weight: 500;
      color: var(--ink);
      letter-spacing: -0.005em;
      position: relative;
      transition: color var(--t-fast);
      cursor: pointer;
      white-space: nowrap;
      line-height: 1;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      left: 1.1rem;
      right: 1.1rem;
      bottom: 30%;
      height: 1px;
      background: currentColor;
      transform: scaleX(0);
      transform-origin: right;
      transition: transform var(--t);
    }

    .nav-link:hover {
      color: var(--sage);
    }

    .nav-link:hover::after,
    .has-mega.is-open .nav-link::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    .nav-link svg {
      width: 11px;
      height: 11px;
      transition: transform var(--t-fast);
      opacity: 0.6;
    }

    .has-mega.is-open .nav-link svg {
      transform: rotate(180deg);
    }

    /* Header actions */
    .header-actions {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .icon-btn {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: var(--forest);
      transition: background var(--t-fast), color var(--t-fast);
      position: relative;
    }

    .icon-btn:hover {
      background: var(--cream);
    }

    .icon-btn svg {
      width: 18px;
      height: 18px;
    }
    .icon-btn--search {
      width: 52px;
      height: 52px;
      background: var(--cream);
      border: 1px solid rgba(15, 42, 29, 0.08);
    }
    .icon-btn--search svg {
      width: 22px;
      height: 22px;
      stroke-width: 2.2;
    }
    .search-overlay {
      position: absolute;
      left: 0;
      right: 0;
      top: 100%;
      background: rgba(250, 250, 250, 0.98);
      backdrop-filter: blur(6px);
      border-bottom: 1px solid rgba(15, 42, 29, 0.08);
      padding: 22px var(--gutter) 26px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-8px);
      transition: opacity var(--t), transform var(--t), visibility var(--t);
      z-index: 45;
    }
    .search-overlay.open,
    .search-overlay.is-open {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .search-form {
      max-width: 820px;
      margin: 0 auto;
    }
    .search-form__row {
      display: flex;
      align-items: center;
      gap: 12px;
      border-bottom: 2px solid rgba(15, 42, 29, 0.75);
      padding-bottom: 10px;
    }
    .search-form__icon {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      color: #161616;
      opacity: 0.9;
    }
    .header-search-input {
      flex: 1;
      border: 0;
      background: transparent;
      font-size: clamp(1.15rem, 2vw, 2.15rem);
      color: var(--forest);
      padding: 6px 0;
      min-width: 0;
    }
    .header-search-input::placeholder {
      color: rgba(0, 0, 0, 0.35);
    }
    .header-search-input:focus {
      outline: none;
      box-shadow: none;
    }
    .search-close {
      background: transparent;
      border: 0;
      width: 36px;
      height: 36px;
      display: grid;
      place-items: center;
      font-size: 1.75rem;
      line-height: 1;
      cursor: pointer;
      color: #161616;
      opacity: 0.8;
      flex-shrink: 0;
    }
    .search-suggest {
      margin-top: 20px;
    }
    .search-suggest__title {
      display: block;
      margin-bottom: 10px;
      font-size: 0.74rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(15, 42, 29, 0.65);
      font-weight: 600;
    }
    .search-suggest__chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .search-chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(15, 42, 29, 0.2);
      border-radius: 999px;
      padding: 8px 14px;
      font-size: 0.9rem;
      color: var(--ink);
      background: rgba(255, 255, 255, 0.7);
      transition: all var(--t-fast);
    }
    .search-chip:hover {
      border-color: var(--forest);
      color: var(--forest);
      background: #fff;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.78rem 1.4rem;
      font-size: 0.86rem;
      font-weight: 500;
      letter-spacing: 0.01em;
      border-radius: 100px;
      transition: all var(--t);
      cursor: pointer;
      white-space: nowrap;
    }

    .btn--primary {
      background: var(--forest);
      color: var(--paper);
    }

    .btn--primary:hover {
      background: var(--forest-deep);
      transform: translateY(-1px);
      box-shadow: 0 10px 24px -8px rgba(15, 42, 29, 0.4);
    }

    .btn--whats {
      background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
      color: white;
    }

    .btn--whats:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 24px -8px rgba(37, 211, 102, 0.5);
    }

    .btn--ghost {
      background: transparent;
      color: var(--forest);
      border: 1px solid rgba(15, 42, 29, 0.18);
    }

    .btn--ghost:hover {
      background: var(--forest);
      color: var(--paper);
      border-color: var(--forest);
    }

    .btn svg {
      width: 14px;
      height: 14px;
    }

    /* Hamburger (mobile) */
    .hamburger {
      display: none;
      width: 44px;
      height: 44px;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      color: var(--forest);
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: currentColor;
      border-radius: 2px;
      transition: transform var(--t), opacity var(--t-fast);
    }

    .hamburger.active span:nth-child(1) {
      transform: translateY(6.5px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: translateY(-6.5px) rotate(-45deg);
    }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ MEGA MENU â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .mega {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--paper);
      border-top: 1px solid rgba(15, 42, 29, 0.08);
      border-bottom: 1px solid rgba(15, 42, 29, 0.08);
      box-shadow: 0 30px 60px -30px rgba(15, 42, 29, 0.18);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-12px);
      transition: opacity var(--t), transform var(--t), visibility var(--t);
      z-index: 40;
      overflow: hidden;
    }

    .mega.is-open {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .mega__bg {
      position: absolute;
      inset: 0;
      background-image: var(--topo);
      background-size: 700px;
      background-position: 100% 50%;
      background-repeat: no-repeat;
      opacity: 0.5;
      pointer-events: none;
    }

    .mega__inner {
      max-width: var(--container);
      margin: 0 auto;
      padding: 3rem var(--gutter);
      position: relative;
      z-index: 1;
    }

    /* Destinations mega */
    .mega--destinations .mega__inner {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 4rem;
      align-items: start;
    }

    .mega__head .eyebrow {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.28em;
      color: var(--gold-deep);
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .mega__head h3 {
      font-family: var(--font-display);
      font-weight: 400;
      font-variation-settings: "opsz" 144, "SOFT" 30;
      font-size: 2.4rem;
      line-height: 1.05;
      letter-spacing: -0.025em;
      color: var(--forest);
      margin-bottom: 1.2rem;
    }

    .mega__head h3 em {
      font-style: italic;
      color: var(--sage);
    }

    .mega__head p {
      font-size: 0.92rem;
      color: var(--ink-mute);
      line-height: 1.6;
      margin-bottom: 1.5rem;
      max-width: 280px;
    }

    .mega__cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--forest);
      padding-bottom: 4px;
      border-bottom: 1px solid var(--forest);
      transition: gap var(--t-fast);
    }

    .mega__cta:hover {
      gap: 0.8rem;
      color: var(--gold-deep);
      border-color: var(--gold-deep);
    }

    .dest-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
    }

    .dest-card {
      display: block;
      position: relative;
      aspect-ratio: 3/4;
      border-radius: var(--radius);
      overflow: hidden;
      isolation: isolate;
      cursor: pointer;
      transition: transform var(--t);
    }

    .dest-card:hover {
      transform: translateY(-4px);
    }

    .dest-card__img {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 1.2s var(--ease-out);
    }

    .dest-card:hover .dest-card__img {
      transform: scale(1.08);
    }

    .dest-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg,
          rgba(15, 42, 29, 0) 30%,
          rgba(15, 42, 29, 0.85) 100%);
      z-index: 1;
    }

    .dest-card__body {
      position: absolute;
      inset: auto 0 0 0;
      padding: 1rem 1.1rem 1.1rem;
      z-index: 2;
      color: var(--paper);
    }

    .dest-card__name {
      font-family: var(--font-display);
      font-weight: 500;
      font-variation-settings: "opsz" 144, "SOFT" 50;
      font-size: 1.15rem;
      line-height: 1.1;
      letter-spacing: -0.01em;
      margin-bottom: 0.2rem;
    }

    .dest-card__meta {
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      opacity: 0.85;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .dest-card__meta::before {
      content: '';
      width: 16px;
      height: 1px;
      background: var(--gold-light);
      display: inline-block;
    }

    /* Hizmetler mega */
    .mega--services .mega__inner {
      display: grid;
      grid-template-columns: 1fr 1fr 320px;
      gap: 3rem;
      align-items: start;
    }

    .svc-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem 2rem;
      grid-column: span 2;
    }

    .svc {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 1rem;
      padding: 0.5rem;
      border-radius: var(--radius);
      transition: background var(--t-fast);
    }

    .svc:hover {
      background: var(--cream);
    }

    .svc__icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      background: var(--forest);
      color: var(--gold-light);
      border-radius: 10px;
      flex-shrink: 0;
    }

    .svc__icon svg {
      width: 20px;
      height: 20px;
    }

    .svc__title {
      font-family: var(--font-display);
      font-weight: 500;
      font-variation-settings: "opsz" 30, "SOFT" 40;
      font-size: 1.05rem;
      color: var(--forest);
      margin-bottom: 0.2rem;
      letter-spacing: -0.01em;
    }

    .svc__desc {
      font-size: 0.8rem;
      color: var(--ink-mute);
      line-height: 1.5;
    }

    .svc-feature {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      aspect-ratio: 4/5;
      isolation: isolate;
    }

    .svc-feature__img {
      position: absolute;
      inset: 0;
      background: url('./images/pokut-plateau-aerial.png') center/cover;
    }

    .svc-feature::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg,
          rgba(15, 42, 29, 0.1) 0%,
          rgba(15, 42, 29, 0.92) 100%);
    }

    .svc-feature__body {
      position: absolute;
      inset: auto 0 0 0;
      padding: 1.5rem;
      color: var(--paper);
      z-index: 1;
    }

    .svc-feature__tag {
      display: inline-block;
      font-size: 0.66rem;
      font-weight: 600;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 0.7rem;
      padding: 5px 10px;
      border: 1px solid rgba(229, 203, 142, 0.4);
      border-radius: 100px;
    }

    .svc-feature__title {
      font-family: var(--font-display);
      font-weight: 400;
      font-variation-settings: "opsz" 144, "SOFT" 50;
      font-style: italic;
      font-size: 1.5rem;
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin-bottom: 0.3rem;
    }

    .svc-feature__sub {
      font-size: 0.82rem;
      opacity: 0.85;
      line-height: 1.5;
    }

    /* Mega backdrop */
    .mega-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(10, 20, 16, 0.35);
      backdrop-filter: blur(2px);
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--t), visibility var(--t);
      z-index: 30;
    }

    .mega-backdrop.is-active {
      opacity: 1;
      visibility: visible;
    }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   HERO SECTION
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .hero {
      padding: 1.5rem var(--gutter) 2rem;
      position: relative;
    }

    .hero__grid {
      max-width: var(--container);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.05fr;
      gap: 1.25rem;
    }

    /* Left text card */
    .hero__text {
      background: var(--cream);
      border-radius: 28px;
      padding: clamp(2rem, 4vw, 3.5rem);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 2rem;
      position: relative;
      overflow: hidden;
      isolation: isolate;
      min-height: 480px;
    }

    .hero__text::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: var(--topo);
      background-size: 600px;
      background-position: -100px -50px;
      opacity: 0.55;
      pointer-events: none;
      z-index: -1;
    }

    .hero__pill {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      padding: 0.55rem 1rem;
      background: var(--paper);
      border: 1px solid rgba(15, 42, 29, 0.1);
      border-radius: 100px;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      color: var(--forest);
      width: max-content;
    }

    .hero__pill::before {
      content: '';
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #25D366;
      box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.2);
      animation: pulse 2.4s var(--ease) infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.2);
      }

      50% {
        box-shadow: 0 0 0 6px rgba(37, 211, 102, 0.05);
      }
    }

    .hero__title {
      font-family: var(--font-display);
      font-weight: 300;
      font-variation-settings: "opsz" 144, "SOFT" 25;
      font-size: clamp(2.2rem, 4.6vw, 3.85rem);
      line-height: 1;
      letter-spacing: -0.035em;
      color: var(--forest);
      margin: 0.5rem 0 1.2rem;
    }

    .hero__title em {
      font-family: var(--font-hand);
      font-style: italic;
      font-weight: 400;
      color: var(--sage);
      font-size: 1.1em;
      vertical-align: baseline;
    }

    .hero__title .ornament {
      display: inline-block;
      width: 0.55em;
      height: 0.55em;
      border: 1px solid var(--gold);
      border-radius: 50%;
      margin: 0 0.1em 0.15em 0;
      vertical-align: middle;
      position: relative;
    }

    .hero__title .ornament::after {
      content: '';
      position: absolute;
      inset: 25%;
      background: var(--gold);
      border-radius: 50%;
    }

    .hero__lede {
      font-size: clamp(0.98rem, 1.05vw, 1.08rem);
      color: var(--ink-soft);
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    .hero__actions {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .hero__actions .btn {
      padding: 0.95rem 1.6rem;
      font-size: 0.9rem;
    }

    .hero__meta {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(15, 42, 29, 0.1);
    }

    .hero__meta-stack {
      display: flex;
      margin-right: 0.3rem;
    }

    .hero__meta-avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 2.5px solid var(--cream);
      background-size: cover;
      background-position: center;
      margin-left: -10px;
    }

    .hero__meta-avatar:first-child {
      margin-left: 0;
    }

    .hero__meta-rating {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 1.05rem;
      color: var(--forest);
    }

    .hero__meta-rating em {
      font-style: normal;
      color: var(--gold-deep);
    }

    .hero__meta-text {
      font-size: 0.78rem;
      color: var(--ink-mute);
      line-height: 1.3;
      letter-spacing: 0.01em;
    }

    /* Right image card with arc text */
    .hero__visual {
      position: relative;
      border-radius: 28px;
      overflow: hidden;
      min-height: 480px;
      background: var(--forest);
      isolation: isolate;
    }

    .hero__visual-img {
      position: absolute;
      inset: 0;
      background-image: url('./images/ayder-yaylasi-hero.png');
      background-size: cover;
      background-position: center;
      z-index: 0;
    }

    .hero__visual::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg,
          rgba(15, 42, 29, 0.15) 0%,
          rgba(15, 42, 29, 0) 40%,
          rgba(15, 42, 29, 0) 60%,
          rgba(15, 42, 29, 0.55) 100%);
      z-index: 1;
    }

    .hero__arc {
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
    }

    .hero__arc svg {
      width: 100%;
      height: 100%;
      display: block;
    }

    .hero__floating-tag {
      position: absolute;
      bottom: 24px;
      left: 24px;
      z-index: 3;
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.7rem 1rem;
      background: rgba(244, 247, 239, 0.9);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 100px;
      font-size: 0.78rem;
      color: var(--forest);
      font-weight: 500;
      letter-spacing: 0.01em;
    }

    .hero__floating-tag svg {
      width: 14px;
      height: 14px;
      color: var(--gold-deep);
    }

    .hero__weather {
      position: absolute;
      top: 24px;
      right: 24px;
      z-index: 3;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.7rem 1rem 0.7rem 0.7rem;
      background: rgba(15, 42, 29, 0.45);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-radius: 100px;
      color: var(--paper);
      font-size: 0.85rem;
      font-weight: 500;
    }

    .hero__weather svg {
      width: 22px;
      height: 22px;
      color: var(--gold-light);
    }

    .hero__weather small {
      font-size: 0.68rem;
      opacity: 0.8;
      letter-spacing: 0.05em;
      display: block;
      text-transform: uppercase;
    }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   TOUR SLIDER
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .slider-section {
      padding: 1.5rem var(--gutter) 4rem;
    }

    .slider-section__inner {
      max-width: var(--container);
      margin: 0 auto;
    }

    .slider__head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 1.5rem;
      gap: 2rem;
    }

    .slider__head-left .eyebrow {
      font-size: 0.72rem;
      letter-spacing: 0.32em;
      color: var(--gold-deep);
      text-transform: uppercase;
      font-weight: 600;
      margin-bottom: 0.7rem;
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
    }

    .slider__head-left .eyebrow::before {
      content: '';
      width: 28px;
      height: 1px;
      background: var(--gold);
    }

    .slider__head h2 {
      font-family: var(--font-display);
      font-weight: 300;
      font-variation-settings: "opsz" 144, "SOFT" 30;
      font-size: clamp(1.7rem, 3vw, 2.4rem);
      line-height: 1.05;
      letter-spacing: -0.028em;
      color: var(--forest);
      max-width: 580px;
    }

    .slider__head h2 em {
      font-style: italic;
      color: var(--sage);
    }

    .slider__controls {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-shrink: 0;
    }

    .slider__count {
      font-family: var(--font-display);
      font-weight: 400;
      font-size: 1.1rem;
      color: var(--ink-soft);
      letter-spacing: 0.04em;
      font-variant-numeric: tabular-nums;
      min-width: 80px;
      text-align: right;
    }

    .slider__count em {
      font-style: normal;
      color: var(--ink-mute);
      font-size: 0.85em;
    }

    .slider__btn {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      border: 1px solid rgba(15, 42, 29, 0.18);
      color: var(--forest);
      transition: all var(--t);
    }

    .slider__btn:hover {
      background: var(--forest);
      color: var(--paper);
      border-color: var(--forest);
    }

    .slider__btn:disabled {
      opacity: 0.3;
      cursor: not-allowed;
      background: transparent;
      color: var(--forest);
      border-color: rgba(15, 42, 29, 0.18);
    }

    .slider__btn svg {
      width: 16px;
      height: 16px;
    }

    .slider__viewport {
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      scrollbar-width: none;
      -ms-overflow-style: none;
      margin: 0 calc(var(--gutter) * -1);
      padding: 0.5rem var(--gutter);
    }

    .slider__viewport::-webkit-scrollbar {
      display: none;
    }

    .slider__track {
      display: flex;
      gap: 1.25rem;
    }

    /* Tour cards */
    .tour-card {
      flex: 0 0 calc((100% - 2.5rem) / 3);
      scroll-snap-align: start;
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      aspect-ratio: 4/5.2;
      isolation: isolate;
      cursor: pointer;
      transition: transform var(--t);
      background: var(--forest);
    }

    .tour-card:hover {
      transform: translateY(-6px);
    }

    .tour-card__img {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 1.4s var(--ease-out);
    }

    .tour-card:hover .tour-card__img {
      transform: scale(1.08);
    }

    .tour-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg,
          rgba(15, 42, 29, 0) 0%,
          rgba(15, 42, 29, 0) 35%,
          rgba(15, 42, 29, 0.85) 100%);
      z-index: 1;
    }

    .tour-card__top {
      position: absolute;
      top: 18px;
      left: 18px;
      right: 18px;
      z-index: 2;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 1rem;
    }

    .tour-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 0.85rem;
      background: rgba(244, 247, 239, 0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 100px;
      font-size: 0.74rem;
      font-weight: 500;
      color: var(--forest);
      letter-spacing: 0.01em;
    }

    .tour-badge svg {
      width: 12px;
      height: 12px;
    }

    .tour-badge--video::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #d63031;
      animation: pulse-red 1.8s var(--ease) infinite;
    }

    @keyframes pulse-red {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(214, 48, 49, 0.5);
      }

      50% {
        box-shadow: 0 0 0 4px rgba(214, 48, 49, 0);
      }
    }

    .tour-arrow {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      background: rgba(244, 247, 239, 0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 50%;
      color: var(--forest);
      transition: transform var(--t);
    }

    .tour-card:hover .tour-arrow {
      transform: rotate(-45deg);
      background: var(--gold);
    }

    .tour-arrow svg {
      width: 14px;
      height: 14px;
    }

    .tour-card__body {
      position: absolute;
      inset: auto 0 0 0;
      padding: 1.4rem 1.5rem 1.5rem;
      z-index: 2;
      color: var(--paper);
    }

    .tour-card__title {
      font-family: var(--font-display);
      font-weight: 500;
      font-variation-settings: "opsz" 144, "SOFT" 50;
      font-size: 1.5rem;
      line-height: 1.05;
      letter-spacing: -0.018em;
      margin-bottom: 0.7rem;
    }

    .tour-card__meta {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      font-size: 0.78rem;
      letter-spacing: 0.02em;
      opacity: 0.92;
    }

    .tour-card__meta-item {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
    }

    .tour-card__meta-item svg {
      width: 13px;
      height: 13px;
      color: var(--gold-light);
    }

    .tour-card__meta-divider {
      width: 1px;
      height: 12px;
      background: rgba(244, 247, 239, 0.3);
    }

    .tour-card__price {
      position: absolute;
      bottom: 1.5rem;
      right: 1.5rem;
      z-index: 2;
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 1.15rem;
      color: var(--gold-light);
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      line-height: 1;
    }

    .tour-card__price small {
      font-family: var(--font-body);
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      color: var(--paper);
      opacity: 0.7;
      text-transform: uppercase;
      margin-bottom: 4px;
      font-weight: 400;
    }

    /* Special CTA card (form-style) */
    .tour-card--cta {
      background: var(--forest);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 1.8rem;
      cursor: default;
    }

    .tour-card--cta::after {
      display: none;
    }

    .tour-card--cta:hover {
      transform: translateY(-6px);
    }

    .tour-card--cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: var(--topo);
      background-size: 500px;
      opacity: 0.2;
      pointer-events: none;
    }

    .tour-card--cta>* {
      position: relative;
      z-index: 1;
    }

    .tour-card--cta .tour-badge {
      background: rgba(201, 169, 97, 0.18);
      color: var(--gold-light);
      border: 1px solid rgba(201, 169, 97, 0.35);
      align-self: flex-start;
    }

    .tour-card--cta__title {
      font-family: var(--font-display);
      font-weight: 300;
      font-variation-settings: "opsz" 144, "SOFT" 30;
      font-size: 1.85rem;
      line-height: 1.05;
      letter-spacing: -0.025em;
      color: var(--paper);
      margin: 1rem 0 0.5rem;
    }

    .tour-card--cta__title em {
      font-style: italic;
      color: var(--gold-light);
      font-weight: 400;
    }

    .tour-card--cta p {
      font-size: 0.85rem;
      color: var(--moss-light);
      line-height: 1.5;
      margin-bottom: 1.5rem;
    }

    .tour-card--cta__form {
      display: flex;
      background: rgba(244, 247, 239, 0.06);
      border: 1px solid rgba(201, 169, 97, 0.28);
      border-radius: 100px;
      padding: 4px;
      margin-top: auto;
    }

    .tour-card--cta__form input {
      flex: 1;
      background: transparent;
      border: 0;
      outline: 0;
      padding: 0.7rem 1rem;
      color: var(--paper);
      font-size: 0.85rem;
      min-width: 0;
    }

    .tour-card--cta__form input::placeholder {
      color: rgba(244, 247, 239, 0.45);
    }

    .tour-card--cta__form button,
    .tour-card--cta__form .cta-btn-link {
      background: var(--gold);
      color: var(--forest-deep);
      border-radius: 100px;
      padding: 0.7rem 1.1rem;
      font-weight: 600;
      font-size: 0.78rem;
      letter-spacing: 0.02em;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      transition: background var(--t-fast);
      flex-shrink: 0;
      text-decoration: none;
      border: 0;
      cursor: pointer;
    }

    .tour-card--cta__form button:hover,
    .tour-card--cta__form .cta-btn-link:hover {
      background: var(--gold-light);
    }

    /* Slider drag indicator */
    .slider__hint {
      display: none;
    }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   FOOTER
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .site-footer {
      background: var(--forest);
      color: var(--cream);
      position: relative;
      overflow: hidden;
      margin-top: 0;
      flex-shrink: 0; /* Added for sticky footer */
    }

    .site-footer::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: var(--topo);
      background-size: 1100px;
      background-position: 50% 0%;
      opacity: 0.18;
      pointer-events: none;
    }

    /* Newsletter band */
    .newsletter {
      position: relative;
      padding: 4.5rem var(--gutter) 3.5rem;
      border-bottom: 1px solid rgba(201, 169, 97, 0.16);
    }

    .newsletter__inner {
      max-width: var(--container);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .newsletter__head .eyebrow {
      font-size: 0.7rem;
      letter-spacing: 0.32em;
      color: var(--gold-light);
      text-transform: uppercase;
      font-weight: 600;
      margin-bottom: 0.9rem;
    }

    .newsletter__head h2 {
      font-family: var(--font-display);
      font-weight: 300;
      font-variation-settings: "opsz" 144, "SOFT" 30;
      font-size: clamp(1.8rem, 3.5vw, 2.7rem);
      line-height: 1.05;
      letter-spacing: -0.03em;
      color: var(--paper);
    }

    .newsletter__head h2 em {
      font-style: italic;
      color: var(--gold-light);
      font-weight: 400;
    }

    .newsletter__head p {
      margin-top: 0.8rem;
      color: var(--moss-light);
      font-size: 0.95rem;
      line-height: 1.6;
      max-width: 460px;
    }

    .newsletter__form {
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
    }

    .newsletter__field {
      display: flex;
      background: rgba(244, 239, 227, 0.06);
      border: 1px solid rgba(201, 169, 97, 0.2);
      border-radius: 100px;
      padding: 5px;
      transition: border-color var(--t-fast);
    }

    .newsletter__field:focus-within {
      border-color: var(--gold-light);
    }

    .newsletter__field input {
      flex: 1;
      background: transparent;
      border: 0;
      outline: 0;
      padding: 0.85rem 1.3rem;
      color: var(--paper);
      font-size: 0.95rem;
    }

    .newsletter__field input::placeholder {
      color: rgba(244, 239, 227, 0.45);
    }

    .newsletter__field button {
      background: var(--gold);
      color: var(--forest-deep);
      border-radius: 100px;
      padding: 0.85rem 1.6rem;
      font-weight: 600;
      font-size: 0.85rem;
      letter-spacing: 0.02em;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      transition: background var(--t-fast);
    }

    .newsletter__field button:hover {
      background: var(--gold-light);
    }

    .newsletter__note {
      font-size: 0.75rem;
      color: var(--moss-light);
      letter-spacing: 0.03em;
      padding-left: 1.3rem;
    }

    /* Main footer grid */
    .footer-main {
      position: relative;
      padding: 4.5rem var(--gutter) 3rem;
    }

    .footer-main__inner {
      max-width: var(--container);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.6fr repeat(3, 1fr) 1.3fr;
      gap: 3rem;
    }

    .footer-brand .logo__name {
      color: var(--paper);
    }

    .footer-brand .logo__sub {
      color: var(--gold-light);
    }

    .footer-brand .logo__mark {
      background: var(--gold);
      color: var(--forest-deep);
    }

    /* AÃ§Ä±k krem â€œkartâ€ â€” footer ve mobil menÃ¼ logosu */
    .footer-logo-card {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.6rem 1.35rem;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(244, 239, 227, 0.98), rgba(235, 227, 207, 0.95));
      border: 1px solid rgba(201, 169, 97, 0.35);
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }

    .footer-brand .logo__img {
      height: 82px;
    }

    .footer-brand p {
      margin-top: 1.5rem;
      font-size: 0.9rem;
      color: var(--moss-light);
      line-height: 1.65;
      max-width: 320px;
    }

    .footer-brand .signature {
      margin-top: 1.8rem;
      font-family: var(--font-display);
      font-style: italic;
      font-size: 1.05rem;
      font-weight: 300;
      color: var(--gold-light);
      display: flex;
      align-items: center;
      gap: 0.7rem;
    }

    .footer-brand .signature::before {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--gold);
    }

    .footer-col h4 {
      font-family: var(--font-display);
      font-weight: 500;
      font-variation-settings: "opsz" 30, "SOFT" 40;
      font-size: 1.05rem;
      color: var(--paper);
      margin-bottom: 1.3rem;
      letter-spacing: -0.005em;
      position: relative;
      padding-bottom: 0.7rem;
    }

    .footer-col h4::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 22px;
      height: 1px;
      background: var(--gold);
    }

    .footer-col ul {
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .footer-col li {
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .footer-col a {
      font-size: 0.88rem;
      color: var(--moss-light);
      transition: color var(--t-fast), padding-left var(--t-fast);
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding-left: 0;
      margin-left: 0;
    }

    .footer-col a:hover {
      color: var(--gold-light);
      padding-left: 6px;
    }

    /* Contact column */
    .footer-contact ul {
      gap: 1.1rem;
    }

    .footer-contact li {
      display: grid;
      grid-template-columns: 18px 1fr;
      gap: 0.7rem;
      font-size: 0.86rem;
      color: var(--moss-light);
      line-height: 1.5;
    }

    .footer-contact svg {
      width: 16px;
      height: 16px;
      color: var(--gold-light);
      margin-top: 3px;
    }

    .footer-contact a:hover {
      color: var(--gold-light);
      padding-left: 0;
    }

    .footer-contact strong {
      color: var(--paper);
      font-weight: 500;
      letter-spacing: 0.01em;
      display: block;
      margin-bottom: 2px;
      font-size: 0.83rem;
    }

    /* Socials */
    .socials {
      display: flex;
      gap: 0.5rem;
      margin-top: 1.5rem;
    }

    .socials a {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(201, 169, 97, 0.25);
      border-radius: 50%;
      color: var(--gold-light);
      transition: all var(--t-fast);
    }

    .socials a:hover {
      background: var(--gold);
      color: var(--forest-deep);
      border-color: var(--gold);
      transform: translateY(-2px);
    }

    .socials svg {
      width: 15px;
      height: 15px;
    }

    /* Footer bottom bar */
    .footer-bar {
      position: relative;
      border-top: 1px solid rgba(201, 169, 97, 0.16);
      padding: 1.4rem var(--gutter);
      font-size: 0.78rem;
      color: var(--moss-light);
    }

    .footer-bar__inner {
      max-width: var(--container);
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .footer-bar__legal {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;
    }

    .footer-bar__legal a {
      transition: color var(--t-fast);
    }

    .footer-bar__legal a:hover {
      color: var(--gold-light);
    }

    .footer-bar__copy {
      letter-spacing: 0.03em;
    }

    .footer-bar__copy strong {
      color: var(--paper);
      font-weight: 500;
    }

    .footer-bar__pay {
      display: flex;
      gap: 0.4rem;
      align-items: center;
    }

    .pay-chip {
      padding: 4px 10px;
      border: 1px solid rgba(201, 169, 97, 0.2);
      border-radius: 4px;
      font-size: 0.66rem;
      letter-spacing: 0.1em;
      color: var(--moss-light);
      font-weight: 600;
    }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   MOBILE BOTTOM NAV
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .bottom-nav {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 80;
      background: var(--forest);
      padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
      box-shadow: 0 -10px 30px -10px rgba(15, 42, 29, 0.3);
    }

    .bottom-nav__list {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      align-items: end;
      position: relative;
      width: 100%;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .bottom-nav__item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      padding: 8px 4px;
      color: var(--moss-light);
      font-size: 0.66rem;
      letter-spacing: 0.04em;
      font-weight: 500;
      transition: color var(--t-fast);
      position: relative;
      text-align: center;
    }

    .bottom-nav__item.active {
      color: var(--gold-light);
    }

    .bottom-nav__item.active::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 18px;
      height: 2px;
      background: var(--gold);
      border-radius: 2px;
    }

    .bottom-nav__item svg {
      width: 20px;
      height: 20px;
    }

    .bottom-nav__fab {
      display: grid;
      place-items: center;
      position: relative;
      margin-top: -34px;
    }

    .bottom-nav__fab a {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
      color: white;
      box-shadow:
        0 0 0 4px var(--forest),
        0 10px 24px -6px rgba(37, 211, 102, 0.5);
      transition: transform var(--t);
    }

    .bottom-nav__fab a:hover {
      transform: scale(1.05) rotate(-5deg);
    }

    .bottom-nav__fab a svg {
      width: 26px;
      height: 26px;
    }

    .bottom-nav__fab span {
      font-size: 0.62rem;
      letter-spacing: 0.06em;
      color: var(--gold-light);
      font-weight: 600;
      margin-top: 6px;
      text-transform: uppercase;
    }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   MOBILE SLIDE-OUT MENU
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    .mobile-panel {
      position: fixed;
      inset: 0;
      background: var(--forest);
      z-index: 90;
      transform: translateX(100%);
      transition: transform var(--t-slow);
      overflow-y: auto;
      display: flex;
      flex-direction: column;
    }

    .mobile-panel.open {
      transform: translateX(0);
    }

    .mobile-panel::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: var(--topo);
      background-size: 700px;
      opacity: 0.15;
      pointer-events: none;
    }

    .mobile-panel__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.2rem var(--gutter);
      border-bottom: 1px solid rgba(201, 169, 97, 0.18);
      position: relative;
      z-index: 1;
    }

    .mobile-panel__head .logo__name {
      color: var(--paper);
    }

    .mobile-panel__head .logo__sub {
      color: var(--gold-light);
    }

    .mobile-panel__head .logo__mark {
      background: var(--gold);
      color: var(--forest-deep);
    }

    .mobile-panel__head .footer-logo-card {
      padding: 0.45rem 0.9rem;
    }

    .mobile-panel__head .footer-logo-card .logo__img {
      height: 44px;
      width: auto;
      max-width: 180px;
      object-fit: contain;
      filter: none;
    }

    .mobile-panel__close {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      border: 1px solid rgba(201, 169, 97, 0.25);
      color: var(--paper);
    }

    .mobile-panel__nav {
      padding: 1.5rem var(--gutter);
      position: relative;
      z-index: 1;
      flex: 1;
    }

    .m-nav-item {
      border-bottom: 1px solid rgba(201, 169, 97, 0.12);
    }

    .m-nav-toggle {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.15rem 0;
      font-family: var(--font-display);
      font-weight: 400;
      font-variation-settings: "opsz" 32, "SOFT" 20;
      font-size: 1.6rem;
      color: var(--paper) !important;
      letter-spacing: -0.025em;
      transition: color var(--t-fast);
      text-decoration: none !important;
    }

    .m-nav-toggle svg {
      width: 20px;
      height: 20px;
      color: var(--gold-light);
      transition: transform var(--t);
      opacity: 0.8;
    }

    .m-nav-item.open .m-nav-toggle {
      color: var(--gold-light) !important;
    }

    .m-nav-item.open .m-nav-toggle svg {
      transform: rotate(45deg);
      opacity: 1;
    }

    .m-nav-sub {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows var(--t);
    }

    .m-nav-item.open .m-nav-sub {
      grid-template-rows: 1fr;
    }

    .m-nav-sub>div {
      overflow: hidden;
    }

    .m-nav-sub ul {
      padding: 0 0 1.2rem 0.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .m-nav-sub a {
      font-size: 1.05rem;
      color: var(--moss-light);
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.4rem 0;
      transition: color var(--t-fast);
      text-decoration: none !important;
    }

    .m-nav-sub a:hover {
      color: var(--paper);
    }

    .m-nav-sub a::before {
      content: '';
      width: 12px;
      height: 1px;
      background: var(--gold);
    }

    .mobile-panel__foot {
      padding: 1.5rem var(--gutter) 2rem;
      border-top: 1px solid rgba(201, 169, 97, 0.18);
      position: relative;
      z-index: 1;
    }

    .mobile-panel__foot .btn {
      width: 100%;
      justify-content: center;
      margin-bottom: 0.7rem;
    }

    .mobile-panel__contact {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 1.2rem;
      font-size: 0.82rem;
      color: var(--moss-light);
    }

    .mobile-panel__contact a {
      color: var(--gold-light);
    }

    /* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€
   RESPONSIVE
   â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
    @media (max-width: 1180px) {
      .nav-link {
        padding: 0 0.7rem;
        font-size: 0.86rem;
        height: 100%;
      }

      .header-actions .btn--ghost {
        display: none;
      }
    }

    @media (max-width: 1024px) {

      /* Hide desktop nav, show hamburger and bottom nav */
      .nav-primary {
        display: none;
      }

      .header-actions {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .bottom-nav {
        display: block;
      }

      .topbar__left > * {
        display: none;
      }

      .topbar__left > .topbar__pill:nth-child(3) {
        display: flex;
      }

      body {
        padding-bottom: 0; /* Changed from 78px to remove white space */
      }

      /* Hero */
      .hero__grid {
        grid-template-columns: 1fr;
      }

      .hero__visual {
        min-height: 400px;
      }

      .hero__text {
        min-height: auto;
      }

      /* Slider â€” 2 cards visible */
      .tour-card {
        flex-basis: calc((100% - 1.25rem) / 2);
      }

      /* Footer */
      .footer-main__inner {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 2rem;
      }

      .footer-brand {
        grid-column: 1 / -1;
      }

      .newsletter__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
      }
    }

    @media (max-width: 768px) {
      .topbar__inner {
        font-size: 0.68rem;
        gap: 0.6rem;
      }

      .topbar__left {
        gap: 0.5rem;
      }

      .topbar__right {
        gap: 0.5rem;
      }

      .topbar__pill span {
        display: inline;
      }

      .topbar__right>a span {
        display: inline;
      }

      .topbar__left .topbar__sep,
      .topbar__left .topbar__pill:not(:first-child) {
        display: none;
      }

      .header__inner {
        height: 70px;
        gap: 1rem;
      }

      .site-header.scrolled .header__inner {
        height: 62px;
      }

      .site-header .logo__img {
        height: 58px;
      }

      .site-header.scrolled .logo__img {
        height: 52px;
      }

      .footer-brand .logo__img {
        height: 68px;
      }

      .logo__sub {
        display: none;
      }

      .logo__name {
        font-size: 1.4rem;
      }

      .icon-btn {
        display: none;
      }

      /* Hero */
      .hero {
        padding: 1rem var(--gutter) 1.5rem;
      }

      .hero__text {
        padding: 2rem 1.75rem;
        min-height: auto;
      }

      .hero__visual {
        min-height: 340px;
      }

      .hero__weather small {
        display: none;
      }

      /* Slider â€” 1.15 cards visible */
      .slider__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
      }

      .slider__controls {
        align-self: flex-end;
      }

      .tour-card {
        flex-basis: 86%;
      }

      .slider__hint {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-top: 1rem;
        font-size: 0.75rem;
        color: var(--ink-mute);
        letter-spacing: 0.04em;
      }

      .slider__hint svg {
        width: 16px;
        height: 16px;
      }

      .footer-main__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .footer-bar__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        text-align: left;
      }
    }

    @media (max-width: 480px) {
      .topbar__left {
        display: none;
      }

      .topbar__inner {
        justify-content: flex-end;
      }

      .topbar__right .topbar__lang {
        display: none;
      }

      .footer-bar__pay {
        display: none;
      }
    }

    /* â”€â”€â”€â”€â”€ Reduced motion â”€â”€â”€â”€â”€ */
    @media (prefers-reduced-motion: reduce) {

      *,
      *::before,
      *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
      }
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TOKENS â€” Ana sitenizin :root deÄŸiÅŸkenlerinden almakta.
   Dosyaya entegre ederken bu blok zaten varsa atlayÄ±n.
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    :root {
      --forest: #0F2A1D;
      --forest-deep: #061A11;
      --sage: #2D5A3D;
      --moss: #5C7E62;
      --moss-light: #8FA593;
      --gold: #C9A961;
      --gold-light: #E5CB8E;
      --gold-deep: #9C7E3F;
      --rose: #B8826B;
      --rose-light: #D4A88F;
      --rose-soft: #F0DDD2;
      --paper: #FAF7EF;
      --cream: #F4EFE3;
      --bone: #EBE3CF;
      --warm: #F2E8D5;
      --ink: #0A1410;
      --ink-soft: #2A3530;
      --ink-mute: #6B7670;
      --font-display: 'Fraunces', serif;
      --font-body: 'DM Sans', system-ui, sans-serif;
      --font-hand: var(--font-display);
      --container: 1440px;
      --gutter: clamp(1.25rem, 4vw, 3rem);
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
      --t: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
      --t-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);

      --topo: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 800' fill='none' stroke='%23C9A961' stroke-width='0.6' opacity='0.5'><path d='M0 200 Q 200 100 400 200 T 800 200'/><path d='M0 280 Q 200 180 400 280 T 800 280'/><path d='M0 360 Q 200 260 400 360 T 800 360'/><path d='M0 440 Q 200 340 400 440 T 800 440'/><path d='M0 520 Q 200 420 400 520 T 800 520'/><path d='M0 600 Q 200 500 400 600 T 800 600'/><circle cx='400' cy='400' r='40'/><circle cx='400' cy='400' r='80'/><circle cx='400' cy='400' r='130'/></svg>");
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: var(--font-body);
      background: var(--paper);
      color: var(--ink);
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
    }

    img,
    svg {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font: inherit;
      color: inherit;
      background: none;
      border: 0;
      cursor: pointer;
    }

    ul {
      list-style: none;
    }

    /* Shared button (zaten ana CSS'te varsa ekleme) */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.95rem 1.6rem;
      font-size: 0.88rem;
      font-weight: 500;
      letter-spacing: 0.01em;
      border-radius: 100px;
      transition: all var(--t);
      cursor: pointer;
      white-space: nowrap;
    }

    .btn--dark {
      background: var(--forest);
      color: var(--paper);
    }

    .btn--dark:hover {
      background: var(--forest-deep);
      transform: translateY(-1px);
      box-shadow: 0 10px 24px -8px rgba(15, 42, 29, 0.4);
    }

    .btn--gold {
      background: var(--gold);
      color: var(--forest-deep);
    }

    .btn--gold:hover {
      background: var(--gold-light);
      transform: translateY(-1px);
      box-shadow: 0 10px 24px -8px rgba(201, 169, 97, 0.5);
    }

    .btn--rose {
      background: var(--rose);
      color: var(--paper);
    }

    .btn--rose:hover {
      background: var(--gold-deep);
      transform: translateY(-1px);
    }

    .btn--whats {
      background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
      color: white;
    }

    .btn--whats:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 24px -8px rgba(37, 211, 102, 0.5);
    }

    .btn--ghost-light {
      background: transparent;
      color: var(--paper);
      border: 1px solid rgba(244, 247, 239, 0.25);
    }

    .btn--ghost-light:hover {
      background: var(--paper);
      color: var(--forest);
    }

    .btn svg {
      width: 14px;
      height: 14px;
    }

    .eyebrow {
      font-size: 0.72rem;
      letter-spacing: 0.32em;
      color: var(--gold-deep);
      text-transform: uppercase;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
    }

    .eyebrow::before {
      content: '';
      width: 28px;
      height: 1px;
      background: var(--gold);
    }


    /* â•”â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•—
   â•‘                                                              â•‘
   â•‘       SECTION 1  Â·  BUNGALOV â€” EDITORIAL SPREAD              â•‘
   â•‘                                                              â•‘
   â•šâ•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

    .bn {
      padding: 6rem var(--gutter) 5rem;
      background: var(--paper);
      position: relative;
    }

    .bn__inner {
      max-width: var(--container);
      margin: 0 auto;
    }

    /* HEADER */
    .bn__head {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 3rem;
      align-items: end;
      margin-bottom: 2.5rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid rgba(15, 42, 29, 0.1);
    }

    .bn__head-text h2 {
      font-family: var(--font-display);
      font-weight: 300;
      font-variation-settings: "opsz" 144, "SOFT" 25;
      font-size: clamp(2.2rem, 4.8vw, 3.8rem);
      line-height: 0.98;
      letter-spacing: -0.035em;
      color: var(--forest);
      margin-top: 1rem;
      max-width: 700px;
    }

    .bn__head-text h2 em {
      font-style: italic;
      color: var(--sage);
      font-weight: 400;
      font-variation-settings: "opsz" 144, "SOFT" 80;
    }

    .bn__head-text p {
      font-size: 1rem;
      color: var(--ink-soft);
      line-height: 1.6;
      max-width: 520px;
      margin-top: 1.2rem;
    }

    /* RIGHT INDEX */
    .bn__index {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      align-items: flex-end;
    }

    .bn__index-label {
      font-family: var(--font-display);
      font-style: italic;
      font-size: 0.85rem;
      color: var(--ink-mute);
      letter-spacing: 0.02em;
    }

    .bn__index-current {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: clamp(2.5rem, 4vw, 3.5rem);
      line-height: 1;
      letter-spacing: -0.04em;
      color: var(--forest);
      font-variant-numeric: tabular-nums;
    }

    .bn__index-current em {
      font-style: italic;
      font-size: 0.5em;
      color: var(--gold-deep);
      font-weight: 400;
    }

    /* TAB STRIP â€” pill style */
    .bn__tabs {
      display: flex;
      gap: 0.5rem;
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }

    .bn-tab {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.65rem 1.1rem;
      border-radius: 100px;
      border: 1px solid rgba(15, 42, 29, 0.15);
      font-size: 0.85rem;
      color: var(--ink-mute);
      transition: all var(--t-fast);
    }

    .bn-tab span {
      font-family: var(--font-display);
      font-style: italic;
      color: var(--gold-deep);
      font-size: 0.78rem;
      letter-spacing: 0.04em;
    }

    .bn-tab:hover {
      color: var(--forest);
      border-color: var(--forest);
    }

    .bn-tab.active {
      background: var(--forest);
      color: var(--paper);
      border-color: var(--forest);
    }

    .bn-tab.active span {
      color: var(--gold-light);
    }

    /* MAIN SPREAD GRID */
    .bn__spread {
      display: grid;
      grid-template-columns: 1.6fr 1fr;
      grid-template-rows: 1fr 1fr;
      gap: 16px;
      height: 700px;
      margin-bottom: 1.5rem;
    }

    /* Hero (large left, spans 2 rows) */
    .bn-hero {
      grid-column: 1;
      grid-row: 1 / 3;
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      isolation: isolate;
      cursor: pointer;
      background: var(--forest);
    }

    .bn-hero__img {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 1.4s var(--ease-out);
    }

    .bn-hero:hover .bn-hero__img {
      transform: scale(1.05);
    }

    .bn-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg,
          rgba(15, 42, 29, 0.15) 0%,
          rgba(15, 42, 29, 0) 40%,
          rgba(15, 42, 29, 0.85) 100%);
      z-index: 1;
    }

    .bn-hero__top {
      position: absolute;
      top: 24px;
      left: 24px;
      right: 24px;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
      z-index: 2;
    }

    .bn-hero__chip {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.55rem 0.95rem;
      background: rgba(244, 247, 239, 0.92);
      backdrop-filter: blur(20px);
      border-radius: 100px;
      font-size: 0.74rem;
      color: var(--forest);
      font-weight: 500;
    }

    .bn-hero__chip svg {
      width: 12px;
      height: 12px;
      color: var(--gold-deep);
    }

    .bn-hero__chip--dark {
      background: rgba(15, 42, 29, 0.55);
      color: var(--paper);
    }

    .bn-hero__chip--dark svg {
      color: var(--gold-light);
    }

    .bn-hero__bottom {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 32px;
      z-index: 2;
      color: var(--paper);
    }

    .bn-hero__loc {
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold-light);
      margin-bottom: 0.7rem;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
    }

    .bn-hero__loc::before {
      content: '';
      width: 22px;
      height: 1px;
      background: var(--gold);
    }

    .bn-hero__name {
      font-family: var(--font-display);
      font-weight: 300;
      font-variation-settings: "opsz" 144, "SOFT" 30;
      font-size: clamp(2rem, 4vw, 3.4rem);
      line-height: 0.98;
      letter-spacing: -0.03em;
      color: var(--paper);
      margin-bottom: 0.3rem;
    }

    .bn-hero__name em {
      font-style: italic;
      color: var(--gold-light);
      font-weight: 400;
      font-variation-settings: "opsz" 144, "SOFT" 80;
    }

    .bn-hero__sub {
      font-size: 0.95rem;
      color: var(--bone);
      font-style: italic;
      font-family: var(--font-display);
      font-weight: 300;
      max-width: 380px;
      line-height: 1.4;
    }

    /* Right column - 2 detail images */
    .bn-detail {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      isolation: isolate;
      cursor: pointer;
      background: var(--cream);
    }

    .bn-detail__img {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 1.4s var(--ease-out);
    }

    .bn-detail:hover .bn-detail__img {
      transform: scale(1.07);
    }

    .bn-detail::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(15, 42, 29, 0) 50%, rgba(15, 42, 29, 0.65) 100%);
      z-index: 1;
    }

    .bn-detail__cap {
      position: absolute;
      bottom: 16px;
      left: 16px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.45rem 0.85rem;
      background: rgba(244, 247, 239, 0.95);
      backdrop-filter: blur(20px);
      border-radius: 100px;
      font-size: 0.72rem;
      color: var(--forest);
      font-weight: 500;
    }

    .bn-detail__cap svg {
      width: 11px;
      height: 11px;
      color: var(--gold-deep);
    }

    .bn-detail__zoom {
      position: absolute;
      top: 14px;
      right: 14px;
      z-index: 2;
      width: 32px;
      height: 32px;
      display: grid;
      place-items: center;
      background: rgba(244, 247, 239, 0.92);
      backdrop-filter: blur(20px);
      border-radius: 50%;
      color: var(--forest);
      transition: all var(--t-fast);
    }

    .bn-detail:hover .bn-detail__zoom {
      background: var(--gold);
      transform: rotate(-45deg);
    }

    .bn-detail__zoom svg {
      width: 12px;
      height: 12px;
    }

    /* SPEC RIBBON â€” full-width info bar */
    .bn__ribbon {
      display: grid;
      grid-template-columns: 220px 1fr auto;
      align-items: center;
      gap: 2.5rem;
      padding: 1.5rem 2rem;
      background: var(--cream);
      border: 1px solid rgba(15, 42, 29, 0.08);
      border-radius: 22px;
      position: relative;
      overflow: hidden;
    }

    .bn__ribbon::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: var(--topo);
      background-size: 500px;
      background-position: 100% 50%;
      opacity: 0.35;
      pointer-events: none;
    }

    .bn__ribbon>* {
      position: relative;
      z-index: 1;
    }

    .bn-ribbon__price {
      display: flex;
      flex-direction: column;
    }

    .bn-ribbon__price-from {
      font-size: 0.66rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--ink-mute);
      margin-bottom: 4px;
      font-weight: 500;
    }

    .bn-ribbon__price-amt {
      font-family: var(--font-display);
      font-weight: 400;
      font-size: 2rem;
      line-height: 1;
      letter-spacing: -0.025em;
      color: var(--forest);
    }

    .bn-ribbon__price-amt em {
      font-style: italic;
      font-weight: 300;
      color: var(--gold-deep);
      font-size: 0.55em;
      margin-left: 0.3em;
      letter-spacing: 0;
    }

    .bn-ribbon__specs {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }

    .bn-spec {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .bn-spec__label {
      font-size: 0.66rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--ink-mute);
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }

    .bn-spec__label svg {
      width: 12px;
      height: 12px;
      color: var(--gold-deep);
    }

    .bn-spec__value {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 1.05rem;
      font-variation-settings: "opsz" 30, "SOFT" 40;
      letter-spacing: -0.005em;
      color: var(--forest);
    }

    .bn-spec__value em {
      font-style: italic;
      font-weight: 300;
      color: var(--ink-mute);
      font-size: 0.85em;
      margin-left: 2px;
    }

    .bn-ribbon__cta {
      display: flex;
      gap: 0.6rem;
    }

    /* Showcase variants â€” only active is displayed */
    .bn-showcase {
      display: none;
    }

    .bn-showcase.active {
      display: block;
      animation: fadeIn 0.5s var(--ease-out);
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }


    /* â•”â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•—
   â•‘                                                              â•‘
   â•‘       SECTION 2  Â·  BALAYI â€” LOVE LETTER STYLE              â•‘
   â•‘                                                              â•‘
   â•šâ•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

    .bly {
      padding: 6rem var(--gutter);
      background: linear-gradient(180deg, var(--rose-soft) 0%, var(--warm) 60%, var(--rose-soft) 100%);
      position: relative;
      overflow: hidden;
    }

    .bly::before {
      content: '';
      position: absolute;
      top: -150px;
      right: -100px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(184, 130, 107, 0.18), transparent 65%);
      pointer-events: none;
    }

    .bly::after {
      content: '';
      position: absolute;
      bottom: -100px;
      left: -80px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(201, 169, 97, 0.12), transparent 65%);
      pointer-events: none;
    }

    .bly__inner {
      max-width: var(--container);
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    /* HEADER â€” centered editorial */
    .bly__head {
      text-align: center;
      margin-bottom: 4rem;
      position: relative;
    }

    .bly__hand-top {
      font-family: var(--font-hand);
      font-size: 1.6rem;
      color: var(--rose);
      font-weight: 300;
      font-style: italic;
      display: block;
      margin-bottom: 0.5rem;
      transform: rotate(-2deg);
      letter-spacing: 0.01em;
    }

    .bly__title {
      font-family: var(--font-display);
      font-weight: 200;
      font-variation-settings: "opsz" 144, "SOFT" 30;
      font-size: clamp(2.5rem, 6vw, 4.8rem);
      line-height: 0.95;
      letter-spacing: -0.04em;
      color: var(--forest);
      max-width: 900px;
      margin: 0 auto 1rem;
    }

    .bly__title em {
      font-style: italic;
      color: var(--rose);
      font-weight: 300;
      font-variation-settings: "opsz" 144, "SOFT" 80;
    }

    .bly__title-deco {
      display: inline-block;
      margin: 0 0.5rem;
      vertical-align: middle;
    }

    .bly__title-deco svg {
      width: 60px;
      height: 24px;
      color: var(--gold);
    }

    .bly__intro {
      font-size: 1.05rem;
      color: var(--ink-soft);
      max-width: 580px;
      margin: 0 auto;
      line-height: 1.65;
      font-family: var(--font-display);
      font-weight: 300;
      font-style: italic;
    }

    /* MAIN SPREAD: Polaroid + Timeline */
    .bly__spread {
      display: grid;
      grid-template-columns: 1fr 1.05fr;
      gap: 4rem;
      align-items: start;
    }

    /* POLAROID STACK */
    .bly__polaroids {
      position: relative;
      padding: 2rem 0;
    }

    .polaroid {
      background: var(--paper);
      padding: 14px 14px 60px 14px;
      box-shadow:
        0 1px 1px rgba(0, 0, 0, 0.04),
        0 12px 30px -10px rgba(15, 42, 29, 0.18);
      position: relative;
      border-radius: 4px;
    }

    .polaroid__img {
      width: 100%;
      aspect-ratio: 4/5;
      background-size: cover;
      background-position: center;
      border-radius: 2px;
    }

    .polaroid__cap {
      position: absolute;
      bottom: 18px;
      left: 0;
      right: 0;
      text-align: center;
      font-family: var(--font-hand);
      font-size: 1.35rem;
      color: var(--ink-soft);
      font-weight: 400;
      font-style: italic;
    }

    .polaroid--main {
      width: 78%;
      transform: rotate(-3deg);
      position: relative;
      z-index: 2;
    }

    .polaroid--accent {
      width: 38%;
      position: absolute;
      bottom: -1rem;
      right: 0;
      transform: rotate(6deg);
      z-index: 3;
    }

    /* tape pieces */
    .polaroid--main::before {
      content: '';
      position: absolute;
      top: -10px;
      left: 50%;
      transform: translateX(-50%) rotate(-2deg);
      width: 90px;
      height: 22px;
      background: rgba(201, 169, 97, 0.35);
      border-left: 1px dashed rgba(201, 169, 97, 0.5);
      border-right: 1px dashed rgba(201, 169, 97, 0.5);
      z-index: 5;
    }

    /* Heart stamp */
    .bly__stamp {
      position: absolute;
      top: 1rem;
      left: 0;
      z-index: 4;
      width: 92px;
      height: 92px;
      background: var(--rose);
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--paper);
      font-family: var(--font-display);
      font-style: italic;
      font-size: 0.7rem;
      text-align: center;
      line-height: 1.1;
      letter-spacing: 0.04em;
      transform: rotate(-15deg);
      box-shadow: 0 8px 20px -6px rgba(184, 130, 107, 0.5);
      padding: 0.5rem;
    }

    .bly__stamp::before {
      content: '';
      position: absolute;
      inset: 6px;
      border: 1px dashed rgba(244, 247, 239, 0.5);
      border-radius: 50%;
    }

    .bly__stamp svg {
      width: 18px;
      height: 18px;
      color: var(--paper);
      margin-bottom: 4px;
    }

    .bly__stamp strong {
      display: block;
      font-style: normal;
      font-weight: 600;
      font-size: 0.55rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 2px;
      color: var(--rose-soft);
    }

    /* TIMELINE */
    .bly__timeline {
      display: flex;
      flex-direction: column;
    }

    .bly__timeline-head {
      margin-bottom: 1.8rem;
    }

    .bly__pkg-name {
      font-family: var(--font-display);
      font-weight: 400;
      font-variation-settings: "opsz" 144, "SOFT" 50;
      font-size: 1.85rem;
      line-height: 1.05;
      letter-spacing: -0.02em;
      color: var(--forest);
      margin-bottom: 0.5rem;
    }

    .bly__pkg-name em {
      font-style: italic;
      color: var(--rose);
    }

    .bly__pkg-meta {
      display: flex;
      align-items: center;
      gap: 1rem;
      font-size: 0.82rem;
      color: var(--ink-mute);
      letter-spacing: 0.02em;
    }

    .bly__pkg-meta-item {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }

    .bly__pkg-meta-item svg {
      width: 13px;
      height: 13px;
      color: var(--rose);
    }

    .bly__pkg-meta-divider {
      width: 1px;
      height: 12px;
      background: rgba(15, 42, 29, 0.2);
    }

    /* Day list */
    .bly__days {
      list-style: none; /* <ol> varsayÄ±lan 1,2,3,4 artÄ±k gÃ¶zÃ¼kmez; Ã§izgi+daire ile Ã§akÄ±ÅŸmayÄ± engeller */
      display: flex;
      flex-direction: column;
      position: relative;
      margin: 0;
      padding-left: 28px;
    }

    .bly__days::before {
      content: '';
      position: absolute;
      left: 7px;
      top: 12px;
      bottom: 12px;
      width: 1px;
      background: linear-gradient(180deg,
          transparent 0%,
          var(--rose) 5%,
          var(--rose) 95%,
          transparent 100%);
      opacity: 0.4;
    }

    .day {
      position: relative;
      padding: 0.95rem 0 1rem 0;
    }

    .day:not(:last-child) {
      border-bottom: 1px dashed rgba(184, 130, 107, 0.25);
    }

    .day::before {
      content: '';
      position: absolute;
      left: -28px;
      top: 1.25rem;
      width: 15px;
      height: 15px;
      background: var(--paper);
      border: 2px solid var(--rose);
      border-radius: 50%;
      z-index: 1;
    }

    .day::after {
      content: '';
      position: absolute;
      left: -22.5px;
      top: calc(1.4rem + 2.5px);
      width: 4px;
      height: 4px;
      background: var(--rose);
      border-radius: 50%;
      z-index: 2;
    }

    .day__head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: start;
      column-gap: 1rem;
      row-gap: 0.25rem;
      margin-bottom: 0.65rem;
    }

    .day__num {
      font-family: var(--font-display);
      font-style: italic;
      font-weight: 400;
      font-size: 0.8rem;
      color: var(--rose);
      letter-spacing: 0.18em;
      text-transform: uppercase;
      line-height: 1.4;
      display: block;
    }

    .day__title {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 1.1rem;
      color: var(--forest);
      letter-spacing: -0.01em;
      flex: 1;
      line-height: 1.3;
    }

    .day__title em {
      font-style: italic;
      color: var(--rose);
      font-weight: 400;
    }

    .day__time {
      font-size: 0.74rem;
      color: var(--ink-mute);
      letter-spacing: 0.02em;
      font-variant-numeric: tabular-nums;
      white-space: nowrap;
      margin-left: auto;
      line-height: 1.3;
    }

    .day__items {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      padding-left: 0;
      margin-top: 0.35rem;
    }

    @media (max-width: 920px) {
      .day__head {
        grid-template-columns: 1fr;
      }

      .day__time {
        margin-left: 0;
      }

      .day__num {
        letter-spacing: 0.14em;
      }
    }

    .day__item {
      display: grid;
      grid-template-columns: 16px 1fr;
      gap: 0.6rem;
      font-size: 0.88rem;
      color: var(--ink-soft);
      line-height: 1.5;
    }

    .day__item svg {
      width: 14px;
      height: 14px;
      color: var(--gold-deep);
      margin-top: 4px;
    }

    /* Price card at bottom */
    .bly__pricecard {
      margin-top: 2rem;
      background: var(--forest);
      color: var(--paper);
      border-radius: 22px;
      padding: 1.75rem 1.85rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      flex-wrap: wrap;
      position: relative;
      overflow: hidden;
    }

    .bly__pricecard::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: var(--topo);
      background-size: 500px;
      opacity: 0.18;
      pointer-events: none;
    }

    .bly__pricecard>* {
      position: relative;
      z-index: 1;
    }

    .bly__pricecard-left {
      display: flex;
      flex-direction: column;
    }

    .bly__pricecard-from {
      font-size: 0.66rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--rose-light);
      margin-bottom: 6px;
      font-weight: 500;
    }

    .bly__pricecard-amt {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: 2.2rem;
      line-height: 1;
      letter-spacing: -0.03em;
      color: var(--paper);
    }

    .bly__pricecard-amt em {
      font-style: italic;
      font-size: 0.55em;
      color: var(--gold-light);
      margin-left: 0.3em;
    }

    .bly__pricecard-note {
      font-size: 0.78rem;
      color: var(--moss-light);
      margin-top: 5px;
    }

    .bly__pricecard-cta {
      display: flex;
      gap: 0.6rem;
      flex-wrap: wrap;
    }


    /* â•”â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•—
   â•‘                                                              â•‘
   â•‘       SECTION 3  Â·  NEDEN LAZHEM â€” MANIFEST/INDEX            â•‘
   â•‘                                                              â•‘
   â•šâ•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

    .nd {
      padding: 6rem var(--gutter) 5rem;
      background: var(--paper);
      position: relative;
    }

    .nd__inner {
      max-width: var(--container);
      margin: 0 auto;
    }

    /* MANIFESTO HEADER */
    .nd__head {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 3rem;
      align-items: end;
      padding-bottom: 2.5rem;
      margin-bottom: 0;
      border-bottom: 1px solid rgba(15, 42, 29, 0.12);
    }

    .nd__head-left {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .nd__manifest-num {
      font-family: var(--font-display);
      font-style: italic;
      font-weight: 300;
      font-size: 4rem;
      line-height: 1;
      letter-spacing: -0.04em;
      color: var(--gold-deep);
    }

    .nd__manifest-num em {
      font-style: normal;
      color: var(--ink-mute);
      font-size: 0.5em;
      font-weight: 300;
    }

    .nd__manifest-tag {
      font-size: 0.7rem;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--ink-mute);
      font-weight: 600;
    }

    .nd__statement {
      font-family: var(--font-display);
      font-weight: 300;
      font-variation-settings: "opsz" 144, "SOFT" 30;
      font-size: clamp(2rem, 4vw, 3.4rem);
      line-height: 0.98;
      letter-spacing: -0.035em;
      color: var(--forest);
      max-width: 880px;
    }

    .nd__statement em {
      font-style: italic;
      color: var(--sage);
      font-weight: 400;
      font-variation-settings: "opsz" 144, "SOFT" 80;
    }

    .nd__statement-deco {
      display: inline-block;
      width: 0.45em;
      height: 0.45em;
      border-radius: 50%;
      background: var(--gold);
      margin: 0 0.15em 0.2em 0;
      vertical-align: middle;
    }

    /* MANIFEST LIST */
    .nd__list {
      display: flex;
      flex-direction: column;
    }

    .principle {
      display: grid;
      grid-template-columns: 90px 1fr 280px 60px;
      gap: 2.5rem;
      padding: 2.5rem 0;
      align-items: center;
      border-bottom: 1px solid rgba(15, 42, 29, 0.08);
      position: relative;
      transition: padding var(--t);
    }

    .principle::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      right: 0;
      background: var(--cream);
      z-index: -1;
      border-radius: 16px;
      opacity: 0;
      transform: scale(0.98);
      transition: opacity var(--t), transform var(--t);
    }

    .principle:hover {
      padding-left: 1rem;
      padding-right: 1rem;
    }

    .principle:hover::before {
      opacity: 1;
      transform: scale(1);
    }

    .principle__num {
      font-family: var(--font-display);
      font-weight: 300;
      font-style: italic;
      font-size: 4.5rem;
      line-height: 1;
      letter-spacing: -0.05em;
      color: var(--gold);
      font-variant-numeric: tabular-nums;
      transition: color var(--t-fast);
    }

    .principle:hover .principle__num {
      color: var(--gold-deep);
    }

    .principle__body {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .principle__title {
      font-family: var(--font-display);
      font-weight: 400;
      font-variation-settings: "opsz" 144, "SOFT" 50;
      font-size: clamp(1.5rem, 2.5vw, 2.1rem);
      line-height: 1.05;
      letter-spacing: -0.025em;
      color: var(--forest);
    }

    .principle__title em {
      font-style: italic;
      color: var(--sage);
      font-variation-settings: "opsz" 144, "SOFT" 80;
    }

    .principle__lede {
      font-size: 0.95rem;
      color: var(--ink-soft);
      line-height: 1.6;
      max-width: 540px;
    }

    .principle__meta {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      padding-left: 1.5rem;
      border-left: 1px solid rgba(15, 42, 29, 0.12);
    }

    .principle__meta-label {
      font-size: 0.66rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--ink-mute);
      font-weight: 600;
    }

    .principle__meta-value {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 1.5rem;
      line-height: 1;
      letter-spacing: -0.02em;
      color: var(--forest);
      font-variant-numeric: tabular-nums;
    }

    .principle__meta-value em {
      font-style: italic;
      color: var(--gold-deep);
      font-size: 0.55em;
      font-weight: 400;
      margin-left: 0.2em;
    }

    .principle__meta-note {
      font-size: 0.78rem;
      color: var(--ink-mute);
      letter-spacing: 0.02em;
      font-style: italic;
      font-family: var(--font-display);
    }

    .principle__icon {
      width: 50px;
      height: 50px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--paper);
      border: 1px solid rgba(15, 42, 29, 0.12);
      color: var(--forest);
      transition: all var(--t-fast);
    }

    .principle:hover .principle__icon {
      background: var(--forest);
      color: var(--gold-light);
      border-color: var(--forest);
      transform: rotate(15deg);
    }

    .principle__icon svg {
      width: 22px;
      height: 22px;
    }

    /* CTA â€” final manifesto closer */
    .nd__cta {
      margin-top: 3rem;
      padding: 2.5rem 2.75rem;
      background: var(--forest);
      color: var(--paper);
      border-radius: 24px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 2rem;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .nd__cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: var(--topo);
      background-size: 800px;
      opacity: 0.18;
      pointer-events: none;
    }

    .nd__cta>* {
      position: relative;
      z-index: 1;
    }

    .nd__cta-left {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .nd__cta-eyebrow {
      font-size: 0.7rem;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--gold-light);
      font-weight: 600;
    }

    .nd__cta-title {
      font-family: var(--font-display);
      font-weight: 300;
      font-style: italic;
      font-size: clamp(1.4rem, 2.3vw, 1.85rem);
      line-height: 1.1;
      color: var(--paper);
      letter-spacing: -0.02em;
      max-width: 620px;
    }

    .nd__cta-title strong {
      font-style: normal;
      font-weight: 400;
      color: var(--gold-light);
    }

    .nd__cta-buttons {
      display: flex;
      gap: 0.6rem;
      flex-wrap: wrap;
    }


    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

    @media (max-width: 1024px) {

      /* BUNGALOV */
      .bn__head {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .bn__index {
        align-items: flex-start;
        flex-direction: row;
        gap: 1rem;
        align-items: baseline;
      }

      .bn__spread {
        grid-template-columns: 1fr;
        grid-template-rows: 480px 280px 280px;
        height: auto;
      }

      .bn-hero {
        grid-row: 1;
      }

      .bn-detail:nth-of-type(2) {
        grid-row: 2;
      }

      .bn-detail:nth-of-type(3) {
        grid-row: 3;
      }

      .bn__ribbon {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .bn-ribbon__cta {
        width: 100%;
      }

      /* BALAYI */
      .bly__spread {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .bly__polaroids {
        padding: 1rem 0;
        max-width: 480px;
        margin: 2rem auto 0 auto;
      }

      .bly__stamp {
        display: none;
      }

      .polaroid--accent {
        bottom: -2.5rem;
        right: -0.5rem;
      }

      /* NEDEN */
      .principle {
        grid-template-columns: 70px 1fr 50px;
        gap: 1.5rem;
        padding: 2rem 0;
      }

      .principle__meta {
        grid-column: 1 / -1;
        border-left: 0;
        padding-left: 70px;
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
        margin-top: 0.5rem;
      }

      .principle__num {
        font-size: 3.5rem;
      }

      .nd__cta {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 720px) {
      .bn {
        padding: 4rem var(--gutter) 3rem;
      }

      .bn__spread {
        grid-template-rows: 380px 220px 220px;
      }

      .bn-ribbon__specs {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
      }

      .bly {
        padding: 4rem var(--gutter);
      }

      .bly__hand-top {
        font-size: 1.3rem;
      }

      .nd {
        padding: 4rem var(--gutter) 3rem;
      }

      .nd__head {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      .principle {
        grid-template-columns: 56px 1fr;
        gap: 1.25rem;
      }

      .principle__icon {
        display: none;
      }

      .principle__num {
        font-size: 2.8rem;
      }

      .principle__title {
        font-size: 1.35rem;
      }

      .principle__meta {
        grid-column: 1 / -1;
        padding-left: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(15, 42, 29, 0.1);
      }

      .nd__cta {
        padding: 1.75rem;
      }

      .nd__cta-buttons {
        width: 100%;
      }

      .nd__cta-buttons .btn {
        flex: 1;
        justify-content: center;
      }
    }

    @media (prefers-reduced-motion: reduce) {

      *,
      *::before,
      *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
      }
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TOKENS â€” Ana sitede zaten varsa atlayÄ±n
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    :root {
      --forest: #0F2A1D;
      --forest-deep: #061A11;
      --sage: #2D5A3D;
      --moss: #5C7E62;
      --moss-light: #8FA593;
      --gold: #C9A961;
      --gold-light: #E5CB8E;
      --gold-deep: #9C7E3F;
      --rose: #B8826B;
      --paper: #FAF7EF;
      --cream: #F4EFE3;
      --bone: #EBE3CF;
      --warm: #F2E8D5;
      --ink: #0A1410;
      --ink-soft: #2A3530;
      --ink-mute: #6B7670;
      --line: rgba(15, 42, 29, 0.1);
      --line-strong: rgba(15, 42, 29, 0.2);
      --font-display: 'Fraunces', serif;
      --font-body: 'DM Sans', system-ui, sans-serif;
      --container: 1440px;
      --gutter: clamp(1.25rem, 4vw, 3rem);
      --t: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
      --t-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

      --topo: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 800' fill='none' stroke='%23C9A961' stroke-width='0.6' opacity='0.5'><path d='M0 200 Q 200 100 400 200 T 800 200'/><path d='M0 280 Q 200 180 400 280 T 800 280'/><path d='M0 360 Q 200 260 400 360 T 800 360'/><path d='M0 440 Q 200 340 400 440 T 800 440'/><path d='M0 520 Q 200 420 400 520 T 800 520'/><path d='M0 600 Q 200 500 400 600 T 800 600'/><circle cx='400' cy='400' r='40'/><circle cx='400' cy='400' r='80'/><circle cx='400' cy='400' r='130'/></svg>");
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: var(--font-body);
      background: var(--paper);
      color: var(--ink);
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
    }

    img,
    svg {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font: inherit;
      color: inherit;
      background: none;
      border: 0;
      cursor: pointer;
    }

    ul {
      list-style: none;
    }

    input,
    select {
      font: inherit;
      color: inherit;
      outline: none;
      border: 0;
      background: transparent;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.85rem 1.4rem;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.01em;
      border-radius: 100px;
      transition: all var(--t);
      cursor: pointer;
      white-space: nowrap;
    }

    .btn--dark {
      background: var(--forest);
      color: var(--paper);
    }

    .btn--dark:hover {
      background: var(--forest-deep);
      transform: translateY(-1px);
      box-shadow: 0 10px 24px -8px rgba(15, 42, 29, 0.4);
    }

    .btn--gold {
      background: var(--gold);
      color: var(--forest-deep);
    }

    .btn--gold:hover {
      background: var(--gold-light);
      transform: translateY(-1px);
      box-shadow: 0 10px 24px -8px rgba(201, 169, 97, 0.5);
    }

    .btn--whats {
      background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
      color: white;
    }

    .btn--whats:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 24px -8px rgba(37, 211, 102, 0.5);
    }

    .btn--ghost-light {
      background: transparent;
      color: var(--paper);
      border: 1px solid rgba(244, 247, 239, 0.25);
    }

    .btn--ghost-light:hover {
      background: var(--paper);
      color: var(--forest);
    }

    .btn svg {
      width: 14px;
      height: 14px;
    }

    .eyebrow {
      font-size: 0.72rem;
      letter-spacing: 0.32em;
      color: var(--gold-deep);
      text-transform: uppercase;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
    }

    .eyebrow::before {
      content: '';
      width: 28px;
      height: 1px;
      background: var(--gold);
    }


    /* â•”â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•—
   â•‘                                                              â•‘
   â•‘     SECTION 1  Â·  TRAVEL LIST  ( Yacht-style )              â•‘
   â•‘                                                              â•‘
   â•šâ•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

    .tl {
      padding: 3.5rem var(--gutter) 5rem;
      background: var(--paper);
      position: relative;
    }

    .tl__inner {
      max-width: var(--container);
      margin: 0 auto;
    }

    /* â”€â”€â”€ 1. Search Bar â”€â”€â”€ */
    .tl-search {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr auto;
      align-items: center;
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: 100px;
      padding: 8px 8px 8px 12px;
      box-shadow:
        0 1px 1px rgba(15, 42, 29, 0.04),
        0 12px 30px -16px rgba(15, 42, 29, 0.18);
      margin-bottom: 2.5rem;
    }

    .tl-search__cell {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      padding: 0.55rem 1rem;
      position: relative;
      cursor: pointer;
      border-radius: 100px;
      transition: background var(--t-fast);
    }

    .tl-search__cell:hover {
      background: var(--cream);
    }

    .tl-search__cell:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 22%;
      bottom: 22%;
      width: 1px;
      background: var(--line);
    }

    .tl-search__cell:hover::after,
    .tl-search__cell+.tl-search__cell:hover::before {
      opacity: 0;
    }

    .tl-search__icon {
      width: 36px;
      height: 36px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--cream);
      color: var(--forest);
      flex-shrink: 0;
    }

    .tl-search__cell:hover .tl-search__icon {
      background: var(--paper);
    }

    .tl-search__icon svg {
      width: 16px;
      height: 16px;
    }

    .tl-search__field {
      display: flex;
      flex-direction: column;
      min-width: 0;
    }

    .tl-search__label {
      font-size: 0.66rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--ink-mute);
      font-weight: 600;
      margin-bottom: 2px;
    }

    .tl-search__value {
      font-size: 0.92rem;
      font-weight: 500;
      color: var(--forest);
      letter-spacing: -0.005em;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .tl-search__value svg {
      width: 11px;
      height: 11px;
      color: var(--ink-mute);
      opacity: 0.7;
    }

    .tl-search__btn {
      background: var(--forest);
      color: var(--paper);
      padding: 0.95rem 1.6rem;
      border-radius: 100px;
      font-size: 0.88rem;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all var(--t);
    }

    .tl-search__btn:hover {
      background: var(--forest-deep);
      box-shadow: 0 10px 24px -8px rgba(15, 42, 29, 0.4);
    }

    .tl-search__btn svg {
      width: 15px;
      height: 15px;
    }

    .tl-search__btn--mobile {
      display: none;
    }

    /* â”€â”€â”€ 2. Breadcrumb + Header â”€â”€â”€ */
    .tl-crumb {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.78rem;
      color: var(--ink-mute);
      margin-bottom: 0.7rem;
      letter-spacing: 0.02em;
    }

    .tl-crumb a {
      transition: color var(--t-fast);
    }

    .tl-crumb a:hover {
      color: var(--forest);
    }

    .tl-crumb svg {
      width: 10px;
      height: 10px;
      opacity: 0.5;
    }

    .tl-crumb__current {
      color: var(--forest);
      font-weight: 500;
    }

    .tl-title {
      font-family: var(--font-display);
      font-weight: 300;
      font-variation-settings: "opsz" 144, "SOFT" 30;
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 1;
      letter-spacing: -0.035em;
      color: var(--forest);
      margin-bottom: 2rem;
    }

    .tl-title em {
      font-style: italic;
      color: var(--sage);
      font-weight: 400;
    }

    .tl-title__num {
      font-family: var(--font-display);
      font-style: italic;
      color: var(--gold-deep);
      font-weight: 500;
    }

    .tl-title__num::before {
      content: '';
    }

    .tl-title__num::after {
      content: '';
    }

    /* ——— 3. Layout Split: Filters | Results ——— */
    .tl-layout {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 2rem;
      align-items: start;
    }

    /* â”€â”€â”€ 4. Filters Panel â”€â”€â”€ */
    .filters {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 1.5rem;
      position: sticky;
      top: 1.5rem;
    }

    .filters__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.5rem;
      padding-bottom: 1.25rem;
      border-bottom: 1px solid var(--line);
    }

    .filters__title {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 1.2rem;
      color: var(--forest);
      letter-spacing: -0.015em;
      font-variation-settings: "opsz" 30, "SOFT" 50;
    }

    .filters__reset {
      font-size: 0.78rem;
      color: var(--gold-deep);
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      letter-spacing: 0.01em;
      transition: color var(--t-fast);
    }

    .filters__reset:hover {
      color: var(--forest);
    }

    .filters__reset svg {
      width: 11px;
      height: 11px;
    }

    .fgroup {
      padding: 1.2rem 0;
      border-bottom: 1px solid var(--line);
    }

    .fgroup:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .fgroup:first-of-type {
      padding-top: 0;
    }

    .fgroup__label {
      display: block;
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--ink-soft);
      font-weight: 600;
      margin-bottom: 0.85rem;
    }

    /* Select dropdown */
    .fselect {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.75rem 1rem;
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: 12px;
      font-size: 0.88rem;
      color: var(--ink-soft);
      transition: all var(--t-fast);
      cursor: pointer;
    }

    .fselect:hover {
      border-color: var(--forest);
    }

    .fselect svg {
      width: 12px;
      height: 12px;
      color: var(--ink-mute);
      transition: transform var(--t-fast);
    }

    .fselect:hover svg {
      transform: rotate(180deg);
    }

    /* Chips multi-select */
    .fchips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
    }

    .fchip {
      padding: 0.45rem 0.85rem;
      border: 1px solid var(--line);
      border-radius: 100px;
      font-size: 0.8rem;
      color: var(--ink-soft);
      cursor: pointer;
      transition: all var(--t-fast);
      background: var(--paper);
    }

    .fchip:hover {
      border-color: var(--forest);
      color: var(--forest);
    }

    .fchip.active {
      background: var(--forest);
      color: var(--paper);
      border-color: var(--forest);
    }

    /* Price slider */
    .fprice {
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
    }

    .fprice__hist {
      height: 50px;
      display: flex;
      align-items: flex-end;
      gap: 2px;
      margin-bottom: 4px;
    }

    .fprice__bar {
      flex: 1;
      background: var(--gold);
      border-radius: 2px 2px 0 0;
      opacity: 0.55;
      transition: opacity var(--t-fast);
    }

    .fprice__bar.in-range {
      opacity: 1;
    }

    .fprice__track {
      position: relative;
      height: 4px;
      background: var(--line);
      border-radius: 100px;
    }

    .fprice__fill {
      position: absolute;
      height: 100%;
      background: var(--forest);
      border-radius: 100px;
      left: 15%;
      right: 25%;
    }

    .fprice__handle {
      position: absolute;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 18px;
      height: 18px;
      background: var(--paper);
      border: 2px solid var(--forest);
      border-radius: 50%;
      cursor: pointer;
      box-shadow: 0 2px 6px rgba(15, 42, 29, 0.18);
    }

    .fprice__handle--lo {
      left: 15%;
    }

    .fprice__handle--hi {
      left: 75%;
    }

    .fprice__inputs {
      display: grid;
      grid-template-columns: 1fr 16px 1fr;
      gap: 0.5rem;
      align-items: center;
    }

    .fprice__input {
      padding: 0.55rem 0.7rem;
      border: 1px solid var(--line);
      border-radius: 10px;
      font-size: 0.8rem;
      font-weight: 500;
      text-align: center;
      color: var(--forest);
      background: var(--paper);
    }

    .fprice__inputs>span {
      text-align: center;
      font-size: 0.78rem;
      color: var(--ink-mute);
    }

    /* Toggle switch */
    .ftoggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.45rem 0;
      cursor: pointer;
    }

    .ftoggle__label {
      font-size: 0.85rem;
      color: var(--ink-soft);
      font-weight: 500;
    }

    .ftoggle__switch {
      width: 36px;
      height: 20px;
      background: var(--bone);
      border-radius: 100px;
      position: relative;
      transition: background var(--t);
      flex-shrink: 0;
    }

    .ftoggle__switch::before {
      content: '';
      position: absolute;
      top: 2px;
      left: 2px;
      width: 16px;
      height: 16px;
      background: var(--paper);
      border-radius: 50%;
      transition: transform var(--t), background var(--t);
      box-shadow: 0 1px 3px rgba(15, 42, 29, 0.2);
    }

    .ftoggle.active .ftoggle__switch {
      background: var(--gold);
    }

    .ftoggle.active .ftoggle__switch::before {
      transform: translateX(16px);
    }

    .ftoggle:not(:last-child) {
      margin-bottom: 0.4rem;
    }

    /* Filter help/CTA */
    .fhelp {
      margin-top: 1.5rem;
      padding: 1.1rem 1rem;
      background: var(--forest);
      color: var(--paper);
      border-radius: 14px;
      position: relative;
      overflow: hidden;
    }

    .fhelp::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: var(--topo);
      background-size: 300px;
      opacity: 0.18;
    }

    .fhelp>* {
      position: relative;
      z-index: 1;
    }

    .fhelp__title {
      font-family: var(--font-display);
      font-weight: 400;
      font-style: italic;
      font-size: 1rem;
      color: var(--paper);
      margin-bottom: 4px;
      letter-spacing: -0.01em;
      font-variation-settings: "opsz" 30, "SOFT" 50;
    }

    .fhelp__desc {
      font-size: 0.78rem;
      color: var(--moss-light);
      line-height: 1.45;
      margin-bottom: 0.8rem;
    }

    .fhelp .btn {
      width: 100%;
      justify-content: center;
      padding: 0.65rem 1rem;
      font-size: 0.78rem;
    }

    /* â”€â”€â”€ 5. Results Panel â”€â”€â”€ */
    .results {
      min-width: 0;
    }

    .results__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 1.25rem;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .results__head-left {
      display: flex;
      align-items: center;
      gap: 0.85rem;
    }

    .results__pill {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.55rem 1rem;
      background: var(--cream);
      border-radius: 100px;
      font-size: 0.78rem;
      color: var(--forest);
      font-weight: 500;
    }

    .results__pill svg {
      width: 12px;
      height: 12px;
      color: var(--gold-deep);
    }

    .results__pill--featured {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
      color: var(--forest-deep);
    }

    .results__nav {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .results__nav-btn {
      width: 36px;
      height: 36px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      border: 1px solid var(--line);
      color: var(--forest);
      transition: all var(--t-fast);
    }

    .results__nav-btn:hover {
      background: var(--forest);
      color: var(--paper);
      border-color: var(--forest);
    }

    .results__nav-btn svg {
      width: 14px;
      height: 14px;
    }

    /* â”€â”€â”€ 6. Tour Cards Grid â”€â”€â”€ */
    .tcards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.1rem;
      margin-bottom: 2.5rem;
    }

    .tcard {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 0.55rem;
      transition: transform var(--t), box-shadow var(--t), border-color var(--t);
      cursor: pointer;
      display: flex;
      flex-direction: column;
    }

    .tcard:hover {
      transform: translateY(-4px);
      border-color: transparent;
      box-shadow: 0 24px 40px -20px rgba(15, 42, 29, 0.18);
    }

    .tcard__media {
      position: relative;
      aspect-ratio: 4/2.7;
      border-radius: 14px;
      overflow: hidden;
      isolation: isolate;
      margin-bottom: 0.85rem;
    }

    .tcard__img {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 1.4s var(--ease-out);
    }

    .tcard:hover .tcard__img {
      transform: scale(1.06);
    }

    .tcard__badge {
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.4rem 0.75rem;
      border-radius: 100px;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.01em;
    }

    .tcard__badge--new {
      background: var(--forest);
      color: var(--gold-light);
    }

    .tcard__badge--off {
      background: var(--gold);
      color: var(--forest-deep);
    }

    .tcard__badge--popular {
      background: var(--rose);
      color: var(--paper);
    }

    .tcard__badge svg {
      width: 11px;
      height: 11px;
    }

    .tcard__rate {
      position: absolute;
      top: 12px;
      right: 56px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
      padding: 0.4rem 0.7rem;
      background: rgba(244, 247, 239, 0.94);
      backdrop-filter: blur(20px);
      border-radius: 100px;
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--forest);
    }

    .tcard__rate svg {
      width: 11px;
      height: 11px;
      color: var(--gold-deep);
    }

    .tcard__fav {
      position: absolute;
      top: 10px;
      right: 10px;
      z-index: 2;
      width: 36px;
      height: 36px;
      display: grid;
      place-items: center;
      background: rgba(244, 247, 239, 0.94);
      backdrop-filter: blur(20px);
      border-radius: 50%;
      color: var(--forest);
      transition: all var(--t-fast);
    }

    .tcard__fav:hover {
      background: var(--rose);
      color: var(--paper);
    }

    .tcard__fav.active {
      background: var(--rose);
      color: var(--paper);
    }

    .tcard__fav.active svg {
      fill: currentColor;
    }

    .tcard__fav svg {
      width: 14px;
      height: 14px;
    }

    .tcard__body {
      padding: 0 0.5rem 0.6rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .tcard__title {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 1.15rem;
      line-height: 1.15;
      letter-spacing: -0.015em;
      color: var(--forest);
      margin-bottom: 0.65rem;
      font-variation-settings: "opsz" 30, "SOFT" 50;
    }

    .tcard__title em {
      font-style: italic;
      color: var(--sage);
    }

    .tcard__loc {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.74rem;
      color: var(--ink-mute);
      margin-bottom: 0.85rem;
      letter-spacing: 0.01em;
    }

    .tcard__loc svg {
      width: 11px;
      height: 11px;
      color: var(--gold-deep);
    }

    .tcard__features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.4rem 0.7rem;
      margin-bottom: 0.85rem;
      padding-bottom: 0.85rem;
      border-bottom: 1px dashed var(--line);
    }

    .tfeat {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.74rem;
      color: var(--ink-soft);
      font-weight: 500;
      letter-spacing: 0.005em;
    }

    .tfeat svg {
      width: 12px;
      height: 12px;
      color: var(--gold-deep);
      flex-shrink: 0;
    }

    .tcard__foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      margin-top: auto;
    }

    .tcard__price {
      display: flex;
      flex-direction: column;
      line-height: 1;
    }

    .tcard__price-amt {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 1.5rem;
      color: var(--forest);
      letter-spacing: -0.025em;
    }

    .tcard__price-amt em {
      font-style: normal;
      font-size: 0.55em;
      color: var(--ink-mute);
      font-weight: 400;
      margin-left: 0.2em;
      letter-spacing: 0.04em;
    }

    .tcard__price-from {
      font-size: 0.66rem;
      color: var(--ink-mute);
      letter-spacing: 0.06em;
      margin-bottom: 4px;
      font-weight: 500;
    }

    .tcard__price-old {
      font-size: 0.74rem;
      color: var(--ink-mute);
      text-decoration: line-through;
      margin-top: 2px;
    }

    .tcard__cta {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.65rem 1.1rem;
      background: var(--forest);
      color: var(--paper);
      border-radius: 100px;
      font-size: 0.78rem;
      font-weight: 500;
      transition: all var(--t-fast);
    }

    .tcard:hover .tcard__cta {
      background: var(--gold);
      color: var(--forest-deep);
    }

    .tcard__cta svg {
      width: 11px;
      height: 11px;
    }

    .tcard__actions {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 0.45rem;
    }

    .tcard__link-wa {
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--moss);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .tcard__link-wa:hover {
      color: var(--sage);
    }

    /* â”€â”€â”€ 7. Sub-results Header (More tours) â”€â”€â”€ */
    .results__sub-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin: 2rem 0 1.25rem;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .results__sub-title {
      font-family: var(--font-display);
      font-weight: 400;
      font-size: 1.5rem;
      letter-spacing: -0.02em;
      color: var(--forest);
      font-variation-settings: "opsz" 30, "SOFT" 50;
    }

    .results__sub-title em {
      font-style: italic;
      color: var(--sage);
    }

    .results__controls {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      font-size: 0.82rem;
      color: var(--ink-mute);
    }

    .results__sort {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.5rem 0.9rem;
      border: 1px solid var(--line);
      border-radius: 100px;
      font-weight: 500;
      color: var(--ink-soft);
      cursor: pointer;
      transition: border-color var(--t-fast);
      background: var(--paper);
    }

    .results__sort:hover {
      border-color: var(--forest);
    }

    .results__sort svg {
      width: 11px;
      height: 11px;
    }

    .results__sort-label {
      color: var(--ink-mute);
      font-weight: 400;
    }

    .results__more {
      text-align: center;
      margin-top: 2rem;
    }


    /* â•”â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•—
   â•‘                                                              â•‘
   â•‘     SECTION 2  Â·  CTA BAND  (Cinematic)                     â•‘
   â•‘                                                              â•‘
   â•šâ•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

    .cta-band {
      padding: 0 var(--gutter);
      margin: 4rem auto 4rem;
      max-width: var(--container);
    }

    .cta {
      position: relative;
      border-radius: 32px;
      overflow: hidden;
      isolation: isolate;
      min-height: 540px;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 0;
      background: var(--forest);
      color: var(--paper);
    }

    .cta__bg {
      position: absolute;
      inset: 0;
      background-image: url('./images/ayder-yaylasi-hero.png');
      background-size: cover;
      background-position: center;
      z-index: 0;
    }

    .cta::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(115deg,
          rgba(6, 26, 17, 0.95) 0%,
          rgba(6, 26, 17, 0.85) 30%,
          rgba(6, 26, 17, 0.5) 60%,
          rgba(6, 26, 17, 0.15) 100%);
      z-index: 1;
    }

    .cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: var(--topo);
      background-size: 800px;
      background-position: 100% 50%;
      opacity: 0.18;
      z-index: 1;
      pointer-events: none;
    }

    .cta__content {
      position: relative;
      z-index: 2;
      padding: clamp(2.5rem, 5vw, 4rem);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 2rem;
    }

    .cta__head {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .cta__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.65rem;
      font-size: 0.7rem;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--gold-light);
      font-weight: 600;
      width: max-content;
    }

    .cta__eyebrow::before {
      content: '';
      width: 28px;
      height: 1px;
      background: var(--gold);
    }

    .cta__eyebrow-pulse {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #25D366;
      margin-left: 0.5rem;
      box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.2);
      animation: ctaPulse 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    }

    @keyframes ctaPulse {

      0%,
      100% {
        box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.2);
      }

      50% {
        box-shadow: 0 0 0 8px rgba(37, 211, 102, 0.04);
      }
    }

    .cta__title {
      font-family: var(--font-display);
      font-weight: 200;
      font-variation-settings: "opsz" 144, "SOFT" 30;
      font-size: clamp(2.5rem, 5.5vw, 4.5rem);
      line-height: 0.96;
      letter-spacing: -0.04em;
      color: var(--paper);
      max-width: 580px;
    }

    .cta__title em {
      font-style: italic;
      color: var(--gold-light);
      font-weight: 300;
      font-variation-settings: "opsz" 144, "SOFT" 80;
    }

    .cta__title-ornament {
      display: inline-block;
      width: 0.4em;
      height: 0.4em;
      border: 1px solid var(--gold);
      border-radius: 50%;
      margin: 0 0.1em 0.15em 0;
      vertical-align: middle;
      position: relative;
    }

    .cta__title-ornament::after {
      content: '';
      position: absolute;
      inset: 25%;
      background: var(--gold);
      border-radius: 50%;
    }

    .cta__lede {
      font-size: clamp(1rem, 1.1vw, 1.1rem);
      line-height: 1.6;
      color: var(--moss-light);
      max-width: 480px;
    }

    .cta__actions {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      flex-wrap: wrap;
    }

    .cta__actions .btn {
      padding: 1rem 1.7rem;
      font-size: 0.9rem;
    }

    .cta__foot {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      padding-top: 1.75rem;
      border-top: 1px solid rgba(201, 169, 97, 0.2);
      flex-wrap: wrap;
    }

    .cta__avatars {
      display: flex;
    }

    .cta__avatar {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 2px solid var(--forest);
      background-size: cover;
      background-position: center;
      margin-left: -10px;
    }

    .cta__avatar:first-child {
      margin-left: 0;
    }

    .cta__avatar--more {
      background: var(--gold);
      color: var(--forest-deep);
      display: grid;
      place-items: center;
      font-size: 0.66rem;
      font-weight: 700;
      letter-spacing: 0.02em;
    }

    .cta__foot-text {
      font-size: 0.85rem;
      color: var(--moss-light);
      line-height: 1.4;
    }

    .cta__foot-text strong {
      display: block;
      color: var(--gold-light);
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 1rem;
      font-style: italic;
      letter-spacing: 0.02em;
      margin-bottom: 2px;
    }

    /* CTA Right column - vertical info cards */
    .cta__side {
      position: relative;
      z-index: 2;
      padding: clamp(2rem, 4vw, 3rem);
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 0.8rem;
    }

    .cta-stat {
      background: rgba(244, 247, 239, 0.08);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(201, 169, 97, 0.18);
      border-radius: 18px;
      padding: 1.2rem 1.4rem;
      display: grid;
      grid-template-columns: 44px 1fr auto;
      align-items: center;
      gap: 1rem;
      transition: all var(--t);
    }

    .cta-stat:hover {
      background: rgba(244, 247, 239, 0.12);
      transform: translateX(-4px);
    }

    .cta-stat__icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      background: var(--gold);
      color: var(--forest-deep);
      border-radius: 12px;
    }

    .cta-stat__icon svg {
      width: 18px;
      height: 18px;
    }

    .cta-stat__body {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .cta-stat__num {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 1.3rem;
      color: var(--paper);
      letter-spacing: -0.02em;
      line-height: 1;
    }

    .cta-stat__num em {
      font-style: italic;
      color: var(--gold-light);
      font-weight: 400;
      font-size: 0.7em;
    }

    .cta-stat__label {
      font-size: 0.74rem;
      color: var(--moss-light);
      letter-spacing: 0.06em;
    }

    .cta-stat__arrow {
      color: var(--gold-light);
      opacity: 0.6;
      transition: opacity var(--t-fast), transform var(--t-fast);
    }

    .cta-stat:hover .cta-stat__arrow {
      opacity: 1;
      transform: translateX(2px);
    }

    .cta-stat__arrow svg {
      width: 14px;
      height: 14px;
    }


    /* â•”â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•—
   â•‘                                                              â•‘
   â•‘     SECTION 3  Â·  FEATURED BLOG                              â•‘
   â•‘                                                              â•‘
   â•šâ•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

    .blog {
      padding: 5rem var(--gutter) 6rem;
      background: var(--paper);
      position: relative;
    }

    .blog__inner {
      max-width: var(--container);
      margin: 0 auto;
    }

    .blog__head {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 2rem;
      align-items: end;
      margin-bottom: 3rem;
      padding-bottom: 2rem;
      border-bottom: 1px solid var(--line);
    }

    .blog__head-text h2 {
      font-family: var(--font-display);
      font-weight: 300;
      font-variation-settings: "opsz" 144, "SOFT" 30;
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 1;
      letter-spacing: -0.035em;
      color: var(--forest);
      margin-top: 1rem;
      max-width: 660px;
    }

    .blog__head-text h2 em {
      font-style: italic;
      color: var(--sage);
      font-weight: 400;
    }

    .blog__head-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--forest);
      padding-bottom: 4px;
      border-bottom: 1px solid var(--forest);
      transition: gap var(--t-fast), color var(--t-fast);
    }

    .blog__head-link:hover {
      gap: 0.8rem;
      color: var(--gold-deep);
      border-color: var(--gold-deep);
    }

    .blog__head-link svg {
      width: 13px;
      height: 13px;
    }

    .blog__grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 1.5rem;
    }

    /* Featured (large) card */
    .blog-feat {
      display: flex;
      flex-direction: column;
      cursor: pointer;
      border-radius: 24px;
      overflow: hidden;
      background: var(--paper);
      transition: transform var(--t);
      position: relative;
    }

    .blog-feat:hover {
      transform: translateY(-4px);
    }

    .blog-feat__media {
      position: relative;
      aspect-ratio: 16/10;
      overflow: hidden;
      isolation: isolate;
      border-radius: 24px;
    }

    .blog-feat__img {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 1.4s var(--ease-out);
    }

    .blog-feat:hover .blog-feat__img {
      transform: scale(1.06);
    }

    .blog-feat__media::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(15, 42, 29, 0.85) 100%);
      z-index: 1;
    }

    .blog-feat__category {
      position: absolute;
      top: 18px;
      left: 18px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.5rem 0.95rem;
      background: rgba(244, 247, 239, 0.94);
      backdrop-filter: blur(20px);
      border-radius: 100px;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--forest);
    }

    .blog-feat__category svg {
      width: 11px;
      height: 11px;
      color: var(--gold-deep);
    }

    .blog-feat__read {
      position: absolute;
      top: 18px;
      right: 18px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.5rem 0.85rem;
      background: rgba(15, 42, 29, 0.55);
      backdrop-filter: blur(20px);
      border-radius: 100px;
      font-size: 0.72rem;
      color: var(--paper);
      font-weight: 500;
    }

    .blog-feat__read svg {
      width: 11px;
      height: 11px;
      color: var(--gold-light);
    }

    .blog-feat__meta {
      position: absolute;
      bottom: 24px;
      left: 24px;
      right: 24px;
      z-index: 2;
      color: var(--paper);
    }

    .blog-feat__date {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.74rem;
      color: var(--gold-light);
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 500;
      margin-bottom: 0.85rem;
    }

    .blog-feat__date::before {
      content: '';
      width: 22px;
      height: 1px;
      background: var(--gold);
    }

    .blog-feat__title {
      font-family: var(--font-display);
      font-weight: 400;
      font-variation-settings: "opsz" 144, "SOFT" 50;
      font-size: clamp(1.6rem, 2.8vw, 2.4rem);
      line-height: 1.05;
      letter-spacing: -0.025em;
      color: var(--paper);
      margin-bottom: 0.75rem;
      max-width: 560px;
    }

    .blog-feat__title em {
      font-style: italic;
      color: var(--gold-light);
    }

    .blog-feat__excerpt {
      font-size: 0.9rem;
      color: var(--bone);
      line-height: 1.55;
      max-width: 480px;
      opacity: 0.92;
    }

    /* Side stack of 3 small cards */
    .blog__side {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      height: 100%;
    }

    .blog-mini {
      display: grid;
      grid-template-columns: 130px 1fr;
      gap: 1rem;
      padding: 0.65rem;
      border: 1px solid var(--line);
      border-radius: 18px;
      cursor: pointer;
      transition: all var(--t);
      background: var(--paper);
      flex: 1;
      align-items: center;
    }

    .blog-mini:hover {
      border-color: transparent;
      background: var(--cream);
      transform: translateX(4px);
    }

    .blog-mini__media {
      position: relative;
      aspect-ratio: 1;
      border-radius: 12px;
      overflow: hidden;
      isolation: isolate;
      height: 100%;
    }

    .blog-mini__img {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 1.4s var(--ease-out);
    }

    .blog-mini:hover .blog-mini__img {
      transform: scale(1.08);
    }

    .blog-mini__body {
      padding: 0.4rem 0.4rem 0.4rem 0;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .blog-mini__cat {
      font-size: 0.66rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold-deep);
      font-weight: 600;
    }

    .blog-mini__title {
      font-family: var(--font-display);
      font-weight: 500;
      font-size: 1.08rem;
      line-height: 1.15;
      letter-spacing: -0.015em;
      color: var(--forest);
      font-variation-settings: "opsz" 30, "SOFT" 50;
    }

    .blog-mini__title em {
      font-style: italic;
      color: var(--sage);
    }

    .blog-mini__meta {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.72rem;
      color: var(--ink-mute);
      letter-spacing: 0.02em;
      margin-top: auto;
    }

    .blog-mini__meta svg {
      width: 10px;
      height: 10px;
      opacity: 0.7;
    }

    .blog-mini__meta-divider {
      width: 1px;
      height: 10px;
      background: var(--line-strong);
    }


    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

    @media (max-width: 1180px) {
      .tcards {
        grid-template-columns: repeat(2, 1fr);
      }

      .tl-search {
        grid-template-columns: 1.4fr 1fr 1fr auto;
      }

      .tl-search__cell:nth-child(4) {
        display: none;
      }
    }

    @media (max-width: 1024px) {
      .tl-layout {
        grid-template-columns: 1fr;
      }

      .filters {
        position: static;
      }

      .tl-search {
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 8px;
        border-radius: 22px;
      }

      .tl-search__cell {
        padding: 0.7rem 0.85rem;
        border-radius: 14px;
      }

      .tl-search__cell::after {
        display: none;
      }

      .tl-search__btn {
        display: none;
      }

      .tl-search__btn--mobile {
        display: inline-flex;
        grid-column: 1 / -1;
        width: 100%;
        justify-content: center;
        padding: 0.95rem 1.4rem;
        margin-top: 0.4rem;
      }

      .cta {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .cta__side {
        padding: 0 clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
      }

      .blog__grid {
        grid-template-columns: 1fr;
      }

      .blog__head {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
    }

    @media (max-width: 720px) {
      .tl {
        padding: 2.5rem var(--gutter) 4rem;
      }

      .tcards {
        grid-template-columns: 1fr;
      }

      .tl-search {
        grid-template-columns: 1fr;
      }

      .results__head {
        flex-direction: column;
        align-items: flex-start;
      }

      .results__sub-head {
        flex-direction: column;
        align-items: flex-start;
      }

      .tcard__features {
        grid-template-columns: 1fr 1fr;
      }

      .cta__title {
        font-size: clamp(2rem, 9vw, 2.8rem);
      }

      .cta__foot {
        gap: 1rem;
      }

      .cta__actions .btn {
        flex: 1;
        justify-content: center;
      }

      .blog {
        padding: 3rem var(--gutter) 4rem;
      }

      .blog-mini {
        grid-template-columns: 100px 1fr;
        gap: 0.75rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {

      *,
      *::before,
      *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
      }
    }

    /* ────────────────────────── CONTACT PAGE ────────────────────────── */

    .contact-page {
      padding-bottom: 0;
    }

    .contact-hero { background: var(--paper); padding: clamp(80px, 10vw, 120px) 0 50px;
      text-align: center;
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .contact-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: var(--topo);
      background-size: 800px;
      background-position: center;
      opacity: 0.15;
      pointer-events: none;
    }

    .contact-hero__inner {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .contact-breadcrumb { font-family: var(--font-body); font-size: 0.8rem; color: var(--ink); opacity: 0.65; margin-bottom: 1.5rem; display: block; }

    .contact-breadcrumb a {
      color: var(--sage);
      transition: color var(--t-fast);
    }

    .contact-breadcrumb a:hover {
      color: var(--gold-deep);
    }

    .contact-breadcrumb__sep {
      opacity: 0.4;
    }

    .contact-hero__eyebrow { display: block; margin-bottom: 1rem; color: var(--gold-deep); font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; }

    .contact-hero__title { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 4rem); color: var(--forest); line-height: 1.05; letter-spacing: -0.03em; margin: 0; }

    .contact-hero__title em {
      font-style: italic;
      color: var(--sage);
    }

    .contact-hero__lede { margin: 1.75rem auto 0; max-width: 640px; font-size: 1.15rem; line-height: 1.65; color: var(--ink); opacity: 0.85; }

    .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; max-width: var(--container); margin: 0 auto; padding: 50px var(--gutter) 80px;
      align-items: start;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }

    .contact-info__item h3 {
      font-family: var(--font-display);
      font-size: 1.6rem;
      color: var(--forest);
      margin-bottom: 1rem;
      font-variation-settings: "opsz" 30, "SOFT" 60;
    }

    .contact-info__item p, 
    .contact-info__item a {
      font-size: 1.05rem;
      line-height: 1.7;
      color: var(--ink-soft);
      display: block;
      margin-bottom: 0.5rem;
    }

    .contact-info__item a:hover {
      color: var(--sage);
    }

    .contact-socials {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }

    .contact-socials a {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      background: var(--cream);
      color: var(--forest);
      border-radius: 50%;
      transition: all var(--t-fast);
    }

    .contact-socials a:hover {
      background: var(--forest);
      color: var(--paper);
      transform: translateY(-3px);
    }

    .contact-form-card {
      background: #fff;
      padding: 3.5rem;
      border-radius: var(--radius-lg);
      box-shadow: 0 40px 100px -20px rgba(15, 42, 29, 0.1);
      border: 1px solid rgba(15, 42, 29, 0.05);
    }

    .contact-form-card h2 {
      font-family: var(--font-display);
      font-size: 2.2rem;
      color: var(--forest);
      margin-bottom: 2.5rem;
      letter-spacing: -0.02em;
    }

    .contact-form__group {
      margin-bottom: 1.8rem;
    }

    .contact-form__group label {
      display: block;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 0.6rem;
      letter-spacing: 0.02em;
    }

    .contact-form__group input,
    .contact-form__group textarea {
      width: 100%;
      background: var(--paper);
      border: 1px solid rgba(15, 42, 29, 0.08);
      border-radius: var(--radius);
      padding: 1rem 1.2rem;
      font-size: 1rem;
      color: var(--ink);
      transition: all var(--t-fast);
    }

    .contact-form__group input:focus,
    .contact-form__group textarea:focus {
      outline: none;
      border-color: var(--gold);
      background: #fff;
      box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.1);
    }

    .contact-form__group input::placeholder,
    .contact-form__group textarea::placeholder {
      color: var(--ink-mute);
      opacity: 0.5;
    }

    /* RESPONSIVE CONTACT */
    @media (max-width: 1024px) {
      .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
      }
      .contact-info {
        text-align: center;
        align-items: center;
      }
      .contact-socials {
        justify-content: center;
      }
      .contact-form-card {
        padding: 2.5rem 1.5rem;
      }
    }

    .contact-map {
      height: 500px;
      position: relative;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
    }

    .contact-map__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(15, 42, 29, 0.4) 0%, rgba(15, 42, 29, 0.8) 100%);
      z-index: 1;
    }

    .contact-map__content {
      position: relative;
      z-index: 2;
      padding: var(--gutter);
    }

    .contact-map__icon {
      font-size: 3rem;
      color: var(--gold);
      margin-bottom: 1.5rem;
      filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    }

    .contact-map__content h2 {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 500;
      letter-spacing: -0.02em;
      text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    }
\




    .contact-page em {
      font-style: italic;
      color: var(--sage);
      font-variation-settings: "opsz" 144, "SOFT" 80;
    }

    /* Final layout fix to ensure sticky footer and remove white space */
    html {
      height: 100% !important;
    }
    body {
      display: flex !important;
      flex-direction: column !important;
      min-height: 100vh !important;
      margin: 0 !important;
    }
    #page, .site {
      flex: 1 0 auto !important;
      display: flex !important;
      flex-direction: column !important;
    }
    #primary.site-main {
      flex: 1 0 auto !important;
    }
    .site-footer {
      flex-shrink: 0 !important;
    }





