  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --bg: #f5f0eb;
      --fg: #2a2520;
      --card: #eee8e0;
      --muted: #8a7f73;
      --primary: #c06030;
      --primary-fg: #f5f0eb;
      --border: #d9d0c5;
      --accent: #5e7a3d;
      --dusty-blue: #9db0c4;
      --golden: #d4a840;
      --olive: #5e7a3d;
      --terracotta: #c06030;
      --lavender: #b09ad0;
    }
    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--fg);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    h1, h2, h3, h4 {
      font-family: 'Playfair Display',
      Georgia, serif;
    }
    a {
      text-decoration: none;
      color: inherit;
    }
    img { max-width: 100%; display: block; }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* NAV */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      background: rgba(245,240,235,0.8);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
    .nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 64px; }
    .nav-logo { height: 40px; }
    .nav-links { display: flex; gap: 32px; }
    .nav-links a { font-size: 13px; letter-spacing: 0.5px; color: var(--muted); transition: color 0.2s; }
    .nav-links a:hover { color: var(--fg); }
    .nav-toggle { display: none; background: none; border: none; cursor: pointer; }
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .nav-toggle { display: block; }
      .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 12px; }
    }

    /* HERO */
    /*.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; }*/
    /*.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }*/
    /*.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(42,37,32,0.7), rgba(42,37,32,0.2), transparent); }*/
    /*.hero-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; padding: 0 24px 80px; color: var(--primary-fg); }*/
    /*.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 500; line-height: 1.1; margin-bottom: 16px; }*/
    /*.hero h1 span { font-style: italic; font-weight: 400; font-size: 0.7em; opacity: 0.8; }*/
    /*.hero p { font-size: 1.1rem; font-weight: 300; opacity: 0.9; }*/
/* HERO */

/* HERO */

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,37,32,0.72), rgba(42,37,32,0.25), transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 100vh;
}

.hero-logo {
  position: absolute;
  left: 45%;
  top: 51%;
  transform: translate(-50%, -50%);
  width: 3000px;
  height: 450px;
  pointer-events: none;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-bottom-line {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  align-items: center;
  gap: 12px;
  color: var(--primary-fg);
  font-size: clamp(1rem, 2.4vw, 1.7rem);
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.5px;
  opacity: 0.98;
  white-space: nowrap;
  overflow: hidden;
    font-family: 'Playfair Display',
      Georgia, serif;;
}

.hero-bottom-line span {
  white-space: nowrap;
}

.hero-dot {
  opacity: 0.85;
}

  @media (max-width: 1300px) {
      .hero-logo {
          width: 200px;
          height: 350px;
          top: 50%;
      }
  }



@media (max-width: 900px) {
  .hero-logo {
    width: 150px;
    height: 200px;
    top: 50%;
  }

  .hero-bottom-line {
    bottom: 20px;
    font-size: 1.2rem;
    gap: 8px;
    white-space: normal;
    flex-wrap: wrap;
  }
}




/* HERO */
/*.hero {*/
/*  position: relative;*/
/*  min-height: 100vh;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  overflow: hidden;*/
/*}*/
/*.hero-img {*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  object-fit: cover;*/
/*}*/
/*.hero-overlay {*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  background: linear-gradient(to top, rgba(42,37,32,0.7), rgba(42,37,32,0.2), transparent);*/
/*}*/
/*.hero-content {*/
/*  position: relative;*/
/*  z-index: 2;*/
/*  text-align: center;*/
/*  max-width: 800px;*/
/*  margin: 120px auto 0;*/
/*  padding: 0 25px;*/
/*  color: var(--primary-fg);*/
/*}*/
/*.hero-logo {*/
/*  position: absolute;*/
/*  left: 50%;*/
/*  top: 1%;*/
/*  transform: translate(-50%, -50%);*/
/*  width: 160px;*/
/*  height: 200px;*/
/*  z-index: -1;*/
/*  pointer-events: none;*/
/*}*/
/*.hero-logo img {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  object-fit: contain;*/
/*}*/
/*.hero h1 {*/
/*  font-size: clamp(2.5rem, 6vw, 4.5rem);*/
/*  font-weight: 500;*/
/*  line-height: 1.1;*/
/*  margin-bottom: 16px;*/
/*  word-spacing: 140px;*/
/*  letter-spacing: 1px;*/
/*  position: relative;*/
/*}*/
/*.hero .hero-subtitle,*/
/*.hero .hero-subtitle2,*/
/*.hero .hero-location {*/
/*    font-size: clamp(2rem, 8vw, 4rem);*/
/*    font-weight: 300;*/
/*    opacity: 0.9;*/
/*    margin-bottom: 4px;*/
/*    font-family: 'Playfair Display',*/
/*      Georgia, serif;*/
/*}*/

/*.hero .hero-tagline {*/
/*  font-size: clamp(0.9rem, 3vw, 1.1rem);*/
/*  font-weight: 300;*/
/*  opacity: 0.9;*/
/*  text-align: right;*/
/*  line-height: 1.6;*/
/*}*/

/*@media (max-width: 768px) {*/
/*  .hero-logo {*/
/*    width: 100px;*/
/*    height: 150px;*/
/*  }*/
/*  .hero h1 {*/
/*    word-spacing: 100px;*/
/*  }*/
/*  .hero .hero-subtitle,*/
/*  .hero .hero-subtitle2,*/
/*  .hero .hero-location {*/
/*    font-size: clamp(1.5rem, 7vw, 2.5rem);*/
/*  }*/
/*}*/
    /* PHILOSOPHY */
    .philosophy { padding: 96px 24px; text-align: center; }
    /*.philosophy .logo { height: 10px; margin: 0 auto 40px; opacity: 0.7; }*/
    .philosophy .sub { font-size: 1.1rem; font-weight: 300; color: var(--muted); margin-bottom: 24px; }
    .philosophy h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-style: italic; line-height: 1.3; margin-bottom: 32px; }
    .philosophy .lines { max-width: 500px; margin: 0 auto; }
    .philosophy .lines p { font-size: 1rem; font-weight: 300; color: var(--muted); margin-bottom: 12px; }
    .philosophy .divider { width: 48px; height: 1px; background: var(--primary); margin: 40px auto 24px; }
    .philosophy .tagline { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--primary); }
.philosophy-logo{
  width: 15%;
  min-width: 100px;
  max-width: 200px;
  padding: 5px;
  margin: 0 auto 10px;
}
    /* CATEGORY */
    .category {
      padding: 80px 24px;
    }
    .category-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }
    .category.reverse .cat-image { order: 2; }
    .category.reverse .cat-content { order: 1; }
    @media (max-width: 900px) {
      .category-grid { grid-template-columns: 1fr; gap: 32px; }
      .category.reverse .cat-image, .category.reverse .cat-content { order: unset; }
    }
    .cat-image { border-radius: 2px; overflow: hidden; aspect-ratio: 3/2; }
    .cat-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s;
    }
    .cat-image:hover img { transform: scale(1.05); }
    .cat-bar { width: 40px; height: 4px; border-radius: 2px; margin-bottom: 20px; }
    .cat-subtitle { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 8px; }
    .cat-content h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 32px; }

    .activity-item { border-bottom: 1px solid var(--border); padding-bottom: 16px; margin-bottom: 16px; cursor: pointer; transition: padding-left 0.2s; }
    .activity-item:hover { padding-left: 8px; }
    .activity-item:last-child { border-bottom: none; }
    .activity-item h3 { font-size: 1.1rem; font-weight: 500; margin-bottom: 4px; transition: color 0.2s; display: flex; justify-content: space-between; align-items: center; }
    .activity-item:hover h3 { color: var(--primary); }
    .activity-item p { font-size: 0.85rem; font-weight: 300; color: var(--muted); }
    .activity-item .arrow { font-size: 14px; color: var(--muted); }

    .cat-footer {
      margin-top: 24px;
      display: flex;
      align-items: center;
      gap: 12px; }
    .cat-footer img { height: 32px; opacity: 0.5; }
    .cat-footer a { font-size: 13px; letter-spacing: 0.5px; transition: opacity 0.2s; }
    .cat-footer a:hover { opacity: 0.7; }

    .section-divider { max-width: 800px; margin: 0 auto; padding: 0 24px; }
    .section-divider hr { border: none; height: 1px; background: var(--border); }

    /* MODAL (BIGGER + RESPONSIVE + CAROUSEL, NO SCROLL IN BODY) */
    .modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 100;
      background: rgba(42,37,32,0.55);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 16px;
    }
    .modal-overlay.open { display: flex; }

    .modal {
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 10px;
      width: min(980px, 96vw);
      max-height: 99vh;
        overflow-y: auto;
      /*overflow: hidden;*/
      box-shadow: 0 24px 80px rgba(0,0,0,0.22);
      display: flex;
        flex-direction: column;

      /*grid-template-rows: auto auto 1fr;*/
    }

    .modal-header {
      display: flex;
      justify-content: space-between;
      align-items: start;
      padding: 18px 20px 0;
          flex-shrink: 0;

    }
    .modal-bar { width: 44px; height: 4px; border-radius: 2px; }
    .modal-close {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--muted);
      font-size: 18px;
      transition: color 0.2s;
    }
    .modal-close:hover { color: var(--fg); }

    /* Carousel area */
    .modal-carousel {
      position: relative;
      margin: 14px 20px 0;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: #00000008;
    }
    .carousel-track {
      display: flex;
      transition: transform 350ms ease;
      will-change: transform;
    }
    /*!* shorter carousel so text fits *!*/
    /*.carousel-slide {*/
    /*  min-width: 100%;*/
    /*  aspect-ratio: 21 / 9;*/
    /*  background: #00000008;*/
    /*  position: relative;*/
    /*}*/
    /*.carousel-slide img {*/
    /*  width: 100%;*/
    /*  height: 100%;*/
    /*  object-fit: cover;*/
    /*  display: block;*/
    /*}*/
.carousel-slide {
  min-width: 100%;
  aspect-ratio: 5 / 4;
  background: #00000008;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: rgba(245,240,235,0.85);
      backdrop-filter: blur(10px);
      cursor: pointer;
      font-size: 26px;
      line-height: 1;
      color: var(--fg);
      display: grid;
      place-items: center;
      transition: opacity 0.2s, transform 0.2s;
      user-select: none;
    }
    .carousel-btn:hover { opacity: 0.9; transform: translateY(-50%) scale(1.03); }
    .carousel-btn.prev { left: 12px; }
    .carousel-btn.next { right: 12px; }

    .carousel-dots {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 10px;
      display: flex;
      justify-content: center;
      gap: 8px;
      padding: 0 14px;
    }
    .carousel-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      border: 1px solid rgba(42,37,32,0.25);
      background: rgba(245,240,235,0.65);
      cursor: pointer;
      transition: transform 0.2s, opacity 0.2s, background 0.2s;
    }
    .carousel-dot.active {
      background: rgba(245,240,235,0.95);
      transform: scale(1.2);
    }

    /* Body (no inner scroll) */
    .modal-body {
      padding: 16px 20px 20px;
      overflow: hidden;
    }
    .modal h3 { font-size: 1.8rem; margin-bottom: 10px; }
    .modal .desc { font-size: 0.95rem; color: var(--muted); margin-bottom: 10px; }

    /* clamp long text so it always fits (no scrolling) */
    .modal .full {
      font-size: 0.95rem;
      color: var(--muted);
      font-style: italic;
      font-weight: 300;
      margin-bottom: 18px;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 4;
      overflow: hidden;
    }

    .modal-actions { display: flex; gap: 12px; }
    .modal .cta-btn {
      display: inline-block;
      padding: 12px 22px;
      font-size: 13px;
      letter-spacing: 0.5px;
      color: white;
      border-radius: 8px;
      transition: opacity 0.2s;
    }
    .modal .cta-btn:hover { opacity: 0.88; }

    /* Mobile: near full-screen */
    @media (max-width: 768px) {
      .modal-overlay { padding: 10px; }
      .modal {
        width: 100%;
        max-height: 92vh;
        border-radius: 12px;
      }
      .modal-carousel { margin: 12px 12px 0; }
      .modal-body { padding: 14px 12px 16px; }
      .modal h3 { font-size: 1.5rem; }
      .carousel-btn { width: 40px; height: 40px; font-size: 24px; }
      .carousel-slide { aspect-ratio: 16 / 10; }
      .modal .full { -webkit-line-clamp: 3; }
    }

    /* CONTACT */

/* CONTACT */
.contact { padding: 80px 24px; background: var(--card); }
.contact-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border); border-radius: 2px; overflow: hidden; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-logo { display: flex; align-items: center; justify-content: center; padding: 48px; background: #e8e0d6; }
.contact-logo img { width: 100%; max-width: 360px; }
.contact-form { padding: 40px; background: var(--bg); }
.contact-form h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 8px; }
.contact-form .sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 28px; }

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  margin-bottom: 16px;
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 8px;
}

.contact-list strong {
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--fg);
}

.contact-list a {
  color: var(--primary);
  transition: opacity 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.9rem;
}

.contact-list a:hover {
  opacity: 0.7;
}

/*@media (max-width: 480px) {*/
/*  .contact-list li {*/
/*    flex-direction: column;*/
/*    gap: 4px;*/
/*    align-items: flex-start;*/
/*  }*/
/*}*/

    .form-group { margin-bottom: 16px; }
    .form-group label { display: block; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
    .form-group input, .form-group textarea { width: 100%; padding: 12px 16px; font-family: 'Inter', sans-serif; font-size: 14px; background: var(--card); border: 1px solid var(--border); border-radius: 2px; color: var(--fg); outline: none; transition: border-color 0.2s; }
    .form-group input:focus, .form-group textarea:focus { border-color: var(--primary); }
    .form-group textarea { resize: none; height: 100px; }
    .submit-btn { width: 100%; padding: 14px; font-family: 'Inter', sans-serif; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; background: var(--primary); color: white; border: none; border-radius: 2px; cursor: pointer; transition: opacity 0.2s; }
    .submit-btn:hover { opacity: 0.9; }
    .form-success { text-align: center; padding: 32px; }
    .form-success h3 { color: var(--accent); margin-bottom: 8px; }
    .form-success p { font-size: 0.85rem; color: var(--muted); }

    /* SOCIAL */
    .social { padding: 64px 24px; text-align: center; }
    .social h3 { font-size: 1.5rem; margin-bottom: 16px; }
    .social .sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 28px; }
    .social-icons { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
    .social-icon { display: flex; flex-direction: column; align-items: center; gap: 8px; }
    .social-icon .circle { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
    .social-icon span { font-size: 11px; color: var(--muted); transition: color 0.2s; }
    .social-icon:hover span { color: var(--fg); }

    /* FOOTER */
    .footer { border-top: 1px solid var(--border); padding: 64px 24px; text-align: center; }
    .footer-logo { height: 80px; margin: 0 auto 20px; opacity: 0.6; }
    .footer .quote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.1rem; color: var(--muted); margin-bottom: 16px; }
    .footer-links { display: flex; justify-content: center; gap: 20px; font-size: 12px; color: var(--muted); margin-bottom: 16px; flex-wrap: wrap; }
    .footer-links a:hover { color: var(--fg); }
    .footer .copy { font-size: 11px; color: #b0a898; }

    html { scroll-behavior: smooth; }