﻿:root {
      --ink: #251815;
      --clay: #7b2d3e;
      --clay-dark: #5f2030;
      --amber: #c48a38;
      --moss: #526642;
      --leaf: #73864e;
      --wine: #8c334a;
      --cream: #fbf5ea;
      --paper: #fffaf2;
      --line: rgba(37, 24, 21, 0.14);
      --muted: #775f55;
      --shadow: 0 20px 60px rgba(37, 24, 21, 0.14);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      min-width: 320px;
      background:
        linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(246, 235, 216, 0.82) 48%, rgba(255, 250, 242, 0.95)),
        var(--cream);
      color: var(--ink);
      font-family: "Nunito", Arial, sans-serif;
      line-height: 1.65;
      overflow-x: hidden;
    }

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

    a {
      color: inherit;
    }

    .page-shell {
      overflow: hidden;
    }

    .site-header {
      position: fixed;
      inset: 0 0 auto;
      z-index: 20;
      border-bottom: 1px solid rgba(255, 250, 242, 0.18);
      background: rgba(37, 24, 21, 0.7);
      color: #fffaf2;
      backdrop-filter: blur(16px);
    }

    .nav {
      width: min(1160px, calc(100% - 32px));
      margin: 0 auto;
      min-height: 74px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .brand-logo {
      width: 50px;
      height: 50px;
      border: 1px solid rgba(255, 250, 242, 0.48);
      border-radius: 50%;
      object-fit: cover;
      background: #fffaf2;
    }

    .brand-text {
      display: grid;
      gap: 0;
    }

    .brand strong {
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: 1.65rem;
      line-height: 1;
      letter-spacing: 0.02em;
    }

    .brand-subtitle {
      color: rgba(255, 250, 242, 0.78);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .nav-links {
      list-style: none;
      display: flex;
      align-items: center;
      gap: clamp(14px, 2vw, 24px);
      font-size: 0.79rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .nav-links a {
      text-decoration: none;
      color: rgba(255, 250, 242, 0.84);
      transition: color 0.2s ease;
    }

    .nav-links a:hover {
      color: #fff;
    }

    .nav-links .nav-cta {
      min-height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 16px;
      border: 1px solid rgba(240, 198, 111, 0.7);
      border-radius: 999px;
      background: #f0c66f;
      color: var(--clay-dark);
      box-shadow: 0 10px 22px rgba(37, 24, 21, 0.22);
    }

    .nav-links .nav-cta:hover {
      background: #fffaf2;
      color: var(--clay-dark);
    }

    .language-switcher {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      border: 1px solid rgba(255, 250, 242, 0.28);
      border-radius: 999px;
      padding: 4px;
      background: rgba(255, 250, 242, 0.1);
    }

    .language-switcher button {
      min-height: 32px;
      width: auto;
      padding: 0 10px;
      border-radius: 999px;
      background: transparent;
      color: rgba(255, 250, 242, 0.74);
      box-shadow: none;
      font-size: 0.74rem;
      letter-spacing: 0.08em;
    }

    .language-switcher button[aria-pressed="true"] {
      background: #fffaf2;
      color: var(--clay-dark);
    }

    .language-switcher button:hover {
      box-shadow: none;
      transform: none;
    }

    .button,
    button {
      border: 0;
      border-radius: 999px;
      background: var(--clay);
      color: #fff;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 24px;
      font: inherit;
      font-weight: 800;
      text-decoration: none;
      box-shadow: 0 10px 24px rgba(95, 32, 48, 0.16);
      transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }

    .button:hover,
    button:hover {
      background: var(--clay-dark);
      box-shadow: 0 14px 30px rgba(95, 32, 48, 0.25);
      transform: translateY(-2px);
    }

    .button.secondary {
      background: rgba(255, 250, 242, 0.15);
      border: 1px solid rgba(255, 250, 242, 0.4);
      box-shadow: none;
    }

    .hero {
      min-height: 96vh;
      display: grid;
      align-items: end;
      padding: 140px 0 72px;
      position: relative;
      color: #fff;
      background:
        linear-gradient(180deg, rgba(20, 13, 11, 0.45), rgba(20, 13, 11, 0.64)),
        url("https://images.unsplash.com/photo-1506377247377-2a5b3b417ebb?auto=format&fit=crop&w=1800&q=85") center / cover;
    }

    .hero-content {
      width: min(1160px, calc(100% - 32px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.55fr);
      gap: 46px;
      align-items: end;
    }

    .eyebrow {
      color: #f0c66f;
      font-size: 0.78rem;
      font-weight: 900;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .eyebrow::after {
      content: "";
      display: block;
      width: 56px;
      height: 2px;
      margin-top: 10px;
      background: currentColor;
      opacity: 0.75;
    }

    h1,
    h2,
    h3 {
      font-family: "Cormorant Garamond", Georgia, serif;
      line-height: 0.98;
      color: inherit;
    }

    h1 {
      max-width: 780px;
      font-size: clamp(3.7rem, 10vw, 8.4rem);
      letter-spacing: 0;
      margin-bottom: 22px;
    }

    .hero p {
      max-width: 670px;
      color: rgba(255, 250, 242, 0.88);
      font-size: clamp(1.05rem, 2vw, 1.28rem);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .hero-panel {
      border: 1px solid rgba(255, 250, 242, 0.32);
      border-radius: 8px;
      background: rgba(37, 24, 21, 0.42);
      padding: 24px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
    }

    .hero-panel strong {
      display: block;
      color: #fff;
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: 1.7rem;
      line-height: 1.1;
      margin-bottom: 10px;
    }

    .hero-panel p {
      font-size: 0.98rem;
      margin: 0;
    }

    section {
      padding: 88px 0;
      scroll-margin-top: 96px;
    }

    .section-inner {
      width: min(1160px, calc(100% - 32px));
      margin: 0 auto;
    }

    .section-heading {
      display: grid;
      grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.55fr);
      gap: 40px;
      align-items: end;
      margin-bottom: 38px;
    }

    h2 {
      color: var(--clay-dark);
      font-size: clamp(2.4rem, 6vw, 4.7rem);
    }

    .lead {
      color: var(--muted);
      font-size: 1.08rem;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 34px;
      align-items: center;
    }

    .about-photo {
      min-height: 520px;
      border-radius: 8px;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(37, 24, 21, 0.02), rgba(37, 24, 21, 0.16)),
        url("assets/about-wine-glass.jpeg") center / cover;
      box-shadow: var(--shadow);
    }

    .about-copy {
      display: grid;
      gap: 18px;
      padding: 18px 0;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 20px;
    }

    .stat {
      border-top: 1px solid var(--line);
      padding-top: 16px;
    }

    .stat strong {
      display: block;
      color: var(--clay);
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: 2rem;
      line-height: 1;
    }

    .stat span {
      color: var(--muted);
      font-size: 0.9rem;
    }

    .tours {
      background:
        linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(244, 232, 209, 0.76));
      border-block: 1px solid var(--line);
    }

    .tour-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 18px;
    }

    .tour-card {
      min-height: 100%;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--paper);
      overflow: hidden;
      box-shadow: 0 16px 38px rgba(37, 24, 21, 0.08);
      transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    }

    .tour-card:hover {
      border-color: rgba(196, 138, 56, 0.45);
      box-shadow: 0 22px 54px rgba(37, 24, 21, 0.15);
      transform: translateY(-6px);
    }

    .tour-card-featured {
      background: linear-gradient(145deg, var(--clay-dark), #3f4d32);
      color: #fffaf2;
    }

    .tour-card-featured h3,
    .tour-card-featured .tour-meta,
    .tour-card-featured .tour-price strong {
      color: #fff;
    }

    .tour-card-featured p,
    .tour-card-featured dd,
    .tour-card-featured .tour-includes {
      color: rgba(255, 250, 242, 0.82);
    }

    .tour-image {
      height: 230px;
      background-size: cover;
      background-position: center;
      background-image: url("https://images.unsplash.com/photo-1568213816046-0ee1c42bd559?auto=format&fit=crop&w=900&q=85");
    }

    .tour-body {
      display: grid;
      gap: 14px;
      padding: 24px;
    }

    h3 {
      color: var(--clay-dark);
      font-size: 2rem;
    }

    .tour-meta {
      color: var(--moss);
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: 0.76rem;
    }

    .tour-card ul,
    .included-list {
      list-style: none;
      display: grid;
      gap: 10px;
      color: var(--muted);
    }

    .tour-card li,
    .included-list li {
      position: relative;
      padding-left: 18px;
    }

    .tour-card li::before,
    .included-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.75em;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--amber);
    }

    .tour-facts {
      display: grid;
      gap: 8px;
      margin: 4px 0;
    }

    .tour-facts div {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      border-top: 1px solid var(--line);
      padding-top: 8px;
    }

    .tour-card-featured .tour-facts div {
      border-color: rgba(255, 250, 242, 0.18);
    }

    .tour-facts dt {
      color: var(--moss);
      font-size: 0.74rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .tour-card-featured .tour-facts dt {
      color: #f0c66f;
    }

    .tour-facts dd {
      color: var(--muted);
      font-weight: 800;
      text-align: right;
    }

    .tour-price {
      display: flex;
      align-items: baseline;
      gap: 6px;
    }

    .tour-price strong {
      color: var(--clay-dark);
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: 2.25rem;
      line-height: 1;
    }

    .tour-price span {
      color: var(--muted);
      font-weight: 800;
    }

    .tour-includes {
      color: var(--muted);
    }

    .tour-includes summary {
      cursor: pointer;
      color: var(--clay-dark);
      font-weight: 900;
    }

    .tour-card-featured .tour-includes summary {
      color: #f0c66f;
    }

    .tour-includes ul {
      margin-top: 12px;
    }

    .tour-booking {
      width: 100%;
      margin-top: 4px;
    }

    .gallery {
      background: var(--paper);
      border-bottom: 1px solid var(--line);
    }

    .gallery-grid {
      display: grid;
      grid-auto-flow: dense;
      grid-auto-rows: 190px;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .gallery-item {
      position: relative;
      min-height: 190px;
      margin: 0;
      border-radius: 8px;
      overflow: hidden;
      background: rgba(37, 24, 21, 0.08);
      box-shadow: 0 16px 34px rgba(37, 24, 21, 0.09);
      transition: box-shadow 0.24s ease, transform 0.24s ease;
    }

    .gallery-item::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(37, 24, 21, 0), rgba(37, 24, 21, 0.14));
      pointer-events: none;
    }

    .gallery-item:hover {
      box-shadow: 0 24px 54px rgba(37, 24, 21, 0.16);
      transform: translateY(-4px);
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.34s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.04);
    }

    .gallery-item-wide {
      grid-column: span 2;
    }

    .gallery-item-tall {
      grid-row: span 2;
    }

    .gallery-item-hosts {
      grid-column: span 3;
      grid-row: span 3;
      background: #f3eadc;
    }

    .gallery-item-hosts img {
      object-fit: contain;
      object-position: center;
    }

    .experience-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.55fr);
      gap: 40px;
      align-items: start;
    }

    .timeline {
      display: grid;
      gap: 20px;
      counter-reset: steps;
    }

    .step {
      position: relative;
      display: grid;
      grid-template-columns: 58px 1fr;
      gap: 18px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--line);
    }

    .step::before {
      counter-increment: steps;
      content: counter(steps, decimal-leading-zero);
      width: 58px;
      height: 58px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--clay);
      color: #fff;
      font-weight: 900;
    }

    .included {
      border-radius: 8px;
      background: linear-gradient(145deg, var(--moss), #38492f);
      color: #fffaf2;
      padding: 30px;
      box-shadow: var(--shadow);
    }

    .included h3 {
      color: #fff;
      margin-bottom: 18px;
    }

    .included-list {
      color: rgba(255, 250, 242, 0.84);
    }

    .included-list li::before {
      background: #f0c66f;
    }

    .register {
      background:
        linear-gradient(90deg, rgba(37, 24, 21, 0.78), rgba(37, 24, 21, 0.54)),
        linear-gradient(180deg, rgba(82, 102, 66, 0.12), rgba(95, 32, 48, 0.2)),
        url("https://cdn.pixabay.com/photo/2016/10/05/08/05/grapes-1716192_1280.jpg") center / cover;
      color: #fff;
    }

    .register-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.7fr) minmax(320px, 0.8fr);
      gap: 46px;
      align-items: start;
    }

    .register h2 {
      color: #fff;
    }

    .register .lead {
      color: rgba(255, 250, 242, 0.82);
      margin-top: 18px;
    }

    .contact-list {
      list-style: none;
      display: grid;
      gap: 12px;
      margin-top: 28px;
      color: rgba(255, 250, 242, 0.88);
    }

    .contact-list li {
      border-left: 3px solid rgba(240, 198, 111, 0.78);
      padding-left: 12px;
    }

    .contact-list a {
      color: #fffaf2;
      font-weight: 800;
      text-decoration-thickness: 1px;
      text-underline-offset: 4px;
    }

    form {
      border: 1px solid rgba(255, 250, 242, 0.22);
      border-radius: 8px;
      background: rgba(255, 250, 242, 0.9);
      color: var(--ink);
      padding: 28px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(12px);
    }

    .netlify-hidden {
      display: none;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .field {
      display: grid;
      gap: 7px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    label {
      color: var(--clay-dark);
      font-size: 0.8rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    label span {
      color: var(--muted);
      font-size: 0.72rem;
      letter-spacing: 0.04em;
      text-transform: none;
    }

    input,
    select,
    textarea {
      width: 100%;
      min-height: 48px;
      border: 1px solid rgba(37, 24, 21, 0.18);
      border-radius: 6px;
      background: #fff;
      color: var(--ink);
      font: inherit;
      padding: 11px 13px;
      transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    }

    textarea {
      min-height: 118px;
      resize: vertical;
    }

    input:focus,
    select:focus,
    textarea:focus {
      outline: 3px solid rgba(196, 138, 56, 0.28);
      border-color: var(--amber);
      box-shadow: 0 10px 24px rgba(37, 24, 21, 0.08);
      transform: translateY(-1px);
    }

    .form-note {
      color: var(--muted);
      font-size: 0.9rem;
      margin: 16px 0;
    }

    .footer {
      background: linear-gradient(135deg, var(--ink), #3f2a24);
      color: rgba(255, 250, 242, 0.74);
      padding: 34px 0;
    }

    @media (prefers-reduced-motion: no-preference) {
      .hero-content,
      .section-heading,
      .about-grid,
      .experience-grid,
      .gallery-grid,
      .register-grid {
        animation: rise-in 0.7s ease both;
      }

      .tour-card:nth-child(2) {
        animation-delay: 0.08s;
      }

      .tour-card:nth-child(3) {
        animation-delay: 0.16s;
      }

      .tour-card:nth-child(4) {
        animation-delay: 0.24s;
      }

      .tour-card {
        animation: rise-in 0.55s ease both;
      }

      @keyframes rise-in {
        from {
          opacity: 0;
          transform: translateY(18px);
        }

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

    .footer-inner {
      width: min(1160px, calc(100% - 32px));
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    .footer strong {
      color: #fff;
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: 1.4rem;
    }

    .thanks-page {
      min-height: 100vh;
      background: var(--ink);
      color: #fffaf2;
    }

    .thanks-hero {
      min-height: 100vh;
      display: grid;
      align-items: center;
      padding: 80px 0;
      background:
        linear-gradient(90deg, rgba(37, 24, 21, 0.82), rgba(37, 24, 21, 0.48)),
        url("https://cdn.pixabay.com/photo/2016/10/05/08/05/grapes-1716192_1280.jpg") center / cover;
    }

    .thanks-content {
      width: min(760px, calc(100% - 32px));
      margin: 0 auto;
    }

    .thanks-language {
      margin-bottom: 28px;
    }

    .thanks-content h1 {
      color: #fff;
    }

    .thanks-content p {
      max-width: 620px;
      color: rgba(255, 250, 242, 0.88);
      font-size: 1.12rem;
    }

    @media (max-width: 900px) {
      .nav {
        min-height: 68px;
        flex-wrap: wrap;
        gap: 10px 16px;
        padding: 10px 0;
      }

      .nav-links {
        order: 3;
        width: 100%;
        gap: 16px;
        overflow-x: auto;
        padding: 2px 0 4px;
        scrollbar-width: none;
        white-space: nowrap;
      }

      .nav-links::-webkit-scrollbar {
        display: none;
      }

      .language-switcher {
        margin-left: auto;
      }

      .hero {
        min-height: auto;
        padding: 154px 0 54px;
      }

      section {
        scroll-margin-top: 126px;
      }

      .hero-content,
      .section-heading,
      .about-grid,
      .experience-grid,
      .register-grid {
        grid-template-columns: 1fr;
      }

      .hero-panel {
        max-width: 520px;
      }

      .about-photo {
        min-height: 360px;
      }

      .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 180px;
      }

      .gallery-item-hosts {
        grid-column: span 2;
        grid-row: span 2;
      }

      .tour-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 620px) {
      section {
        padding: 64px 0;
        scroll-margin-top: 136px;
      }

      .brand strong {
        font-size: 1.35rem;
      }

      .brand-subtitle {
        display: none;
      }

      .brand-logo {
        width: 44px;
        height: 44px;
      }

      .nav {
        width: min(100% - 24px, 1160px);
      }

      .nav-links {
        font-size: 0.72rem;
        letter-spacing: 0.08em;
      }

      h1 {
        font-size: 3.4rem;
      }

      .hero-actions {
        align-items: stretch;
        flex-direction: column;
      }

      .button,
      button {
        width: 100%;
      }

      .language-switcher button {
        width: auto;
      }

      .stats,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
      }

      .gallery-item,
      .gallery-item-wide,
      .gallery-item-hosts,
      .gallery-item-tall {
        grid-column: auto;
        grid-row: auto;
      }

      .gallery-item-hosts {
        min-height: 300px;
      }

      form {
        padding: 20px;
      }
    }

