 :root {
      --cream: #F5F0E8;
      --cream-dark: #EDE6D6;
      --cream-deep: #E4D9C4;
      --saffron: #C4622D;
      --saffron-light: #E07840;
      --gold: #C9963A;
      --gold-light: #D4A843;
      --forest: #1C3A2F;
      --forest-light: #2A5040;
      --ink: #1A1510;
      --muted: #6B5E4E;
      --muted-l: #9A8A78
    }

    *,
    *::before,
    *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box
    }

    html {
      scroll-behavior: smooth
    }

    body {
      background: var(--cream);
      color: var(--ink);
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      overflow-x: hidden
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 999;
      opacity: 0.35
    }

    .lang-bar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 101;
      background: var(--forest);
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding: 0 56px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
      transition: transform 0.4s ease
    }

    .lang-bar.hidden {
      transform: translateY(-100%)
    }

    .lang-toggle {
      display: flex;
      align-items: center;
      gap: 6px
    }

    .lang-btn {
      background: none;
      border: none;
      cursor: pointer;
      font-family: 'DM Sans', sans-serif;
      font-size: 10px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.4);
      padding: 2px 6px;
      transition: color 0.3s;
      font-weight: 400
    }

    .lang-btn.active {
      color: var(--gold-light)
    }

    .lang-sep {
      color: rgba(255, 255, 255, 0.2);
      font-size: 10px
    }

    nav {
      position: fixed;
      top: 28px;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 0 56px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: all 0.5s ease
    }

    nav.scrolled {
      background: rgba(28, 58, 47, 0.97);
      backdrop-filter: blur(12px);
      box-shadow: 0 2px 40px rgba(0, 0, 0, 0.25);
      top: 0
    }

    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 500;
      color: white;
      letter-spacing: 0.05em;
      text-decoration: none
    }

    .nav-logo span {
      color: var(--gold-light)
    }

    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
      align-items: center
    }

    .nav-links a {
      color: rgba(255, 255, 255, 0.82);
      text-decoration: none;
      font-size: 13px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 400;
      transition: color 0.3s
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--gold-light)
    }

    .nav-cta {
      background: var(--saffron) !important;
      color: white !important;
      padding: 10px 22px;
      font-size: 12px !important;
      font-weight: 500 !important;
      white-space: nowrap
    }

    /* PAGE HERO */
    .page-hero {
      padding-top: 160px;
      padding-bottom: 80px;
      background: var(--forest);
      position: relative;
      overflow: hidden
    }

    .page-hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(201, 150, 58, 0.4), transparent)
    }

    .page-hero-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 80px
    }

    .eyebrow {
      font-size: 11px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold-light);
      font-weight: 500;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 12px
    }

    .eyebrow::before {
      content: '';
      width: 24px;
      height: 1px;
      background: var(--gold-light)
    }

    .page-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(44px, 5.5vw, 72px);
      font-weight: 300;
      color: white;
      line-height: 1.05;
      letter-spacing: -0.02em;
      margin-bottom: 20px
    }

    .page-title em {
      font-style: italic;
      color: var(--gold-light)
    }

    .page-desc {
      color: rgba(255, 255, 255, 0.55);
      font-size: 16px;
      line-height: 1.9;
      max-width: 560px
    }

    /* FEATURED */
    .featured {
      padding: 80px 80px 0;
      max-width: 1400px;
      margin: 0 auto
    }

    .featured-card {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      background: var(--ink);
      cursor: pointer;
      text-decoration: none;
      overflow: hidden
    }

    .featured-card:hover .fc-img-inner {
      transform: scale(1.04)
    }

    .fc-img {
      overflow: hidden;
      height: 480px
    }

    .fc-img-inner {
      height: 100%;
      background: url('https://images.unsplash.com/photo-1582510003544-4d00b7f74220?w=900&q=85') center/cover;
      transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    }

    .fc-body {
      padding: 56px 52px;
      display: flex;
      flex-direction: column;
      justify-content: center
    }

    .fc-tag {
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--saffron);
      font-weight: 500;
      margin-bottom: 16px
    }

    .fc-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(28px, 3vw, 40px);
      color: white;
      font-weight: 300;
      line-height: 1.15;
      letter-spacing: -0.01em;
      margin-bottom: 16px
    }

    .fc-title em {
      font-style: italic;
      color: var(--gold-light)
    }

    .fc-excerpt {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.5);
      line-height: 1.85;
      margin-bottom: 28px
    }

    .fc-meta {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 11px;
      color: rgba(255, 255, 255, 0.35);
      letter-spacing: 0.05em
    }

    .fc-read {
      color: var(--gold-light);
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      border-bottom: 1px solid var(--gold-light);
      padding-bottom: 2px;
      font-weight: 500
    }

    /* BLOG GRID */
    .blog-section {
      padding: 80px 80px 100px;
      max-width: 1400px;
      margin: 0 auto
    }

    .blog-filters {
      display: flex;
      gap: 8px;
      margin-bottom: 48px;
      flex-wrap: wrap
    }

    .filter-btn {
      padding: 8px 20px;
      border: 1px solid rgba(0, 0, 0, 0.15);
      background: none;
      font-family: 'DM Sans', sans-serif;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      cursor: pointer;
      transition: all 0.25s;
      font-weight: 400
    }

    .filter-btn.active,
    .filter-btn:hover {
      background: var(--saffron);
      border-color: var(--saffron);
      color: white
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px
    }

    .blog-card {
      cursor: pointer;
      text-decoration: none;
      display: block
    }

    .blog-card:hover .bc-img-inner {
      transform: scale(1.05)
    }

    .bc-img {
      overflow: hidden;
      height: 240px;
      margin-bottom: 20px
    }

    .bc-img-inner {
      height: 100%;
      background-size: cover;
      background-position: center;
      transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    }

    .bc-tag {
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--saffron);
      font-weight: 500;
      margin-bottom: 8px
    }

    .bc-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      color: var(--ink);
      font-weight: 400;
      line-height: 1.25;
      margin-bottom: 10px
    }

    .bc-excerpt {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.75;
      margin-bottom: 14px
    }

    .bc-meta {
      font-size: 11px;
      color: var(--muted-l);
      letter-spacing: 0.05em
    }

    /* FOOTER */
    .fbar {
      background: var(--forest-light);
      padding: 18px 80px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08)
    }

    .fbar-inner {
      display: flex;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap
    }

    .fbar-link {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      font-size: 14px;
      font-family: 'DM Sans', sans-serif;
      transition: color 0.3s
    }

    .fbar-link svg {
      color: var(--gold-light);
      flex-shrink: 0
    }

    .fbar-link:hover {
      color: white
    }

    .fbar-div {
      color: rgba(255, 255, 255, 0.2);
      font-size: 16px
    }

    .fbar-socials {
      display: flex;
      gap: 8px;
      margin-left: auto
    }

    .soc {
      width: 34px;
      height: 34px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.55);
      text-decoration: none;
      transition: all 0.3s
    }

    .soc:hover {
      border-color: var(--gold-light);
      color: var(--gold-light)
    }

    footer {
      background: var(--ink);
      padding: 64px 80px 32px
    }

    .foot-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
      margin-bottom: 28px
    }

    .foot-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 500;
      color: white;
      letter-spacing: 0.05em;
      text-decoration: none;
      display: block;
      margin-bottom: 14px
    }

    .foot-logo span {
      color: var(--gold-light)
    }

    .foot-tag {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.42);
      line-height: 1.85;
      max-width: 260px
    }

    .foot-col-h {
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.3);
      margin-bottom: 18px;
      font-weight: 500
    }

    .foot-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    .foot-links a {
      color: rgba(255, 255, 255, 0.52);
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s
    }

    .foot-links a:hover {
      color: white
    }

    .foot-addr {
      margin-top: 20px;
      font-size: 11px;
      color: rgba(255, 255, 255, 0.22);
      line-height: 1.7
    }

    .foot-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px
    }

    .foot-copy {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.22)
    }

    .foot-legal {
      display: flex;
      gap: 20px
    }

    .foot-legal a {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.22);
      text-decoration: none;
      transition: color 0.3s
    }

    .foot-legal a:hover {
      color: rgba(255, 255, 255, 0.6)
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.8s ease, transform 0.8s ease
    }

    .reveal.on {
      opacity: 1;
      transform: translateY(0)
    }

    .d1 {
      transition-delay: 0.1s
    }

    .d2 {
      transition-delay: 0.2s
    }

    .d3 {
      transition-delay: 0.3s
    }

    /* Hamburger */
    .menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(255, 255, 255, 0.06);
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      border-radius: 10px;
      padding: 0
    }

    .menu-toggle span {
      display: block;
      width: 18px;
      height: 1.5px;
      background: rgba(255, 255, 255, 0.92);
      transition: transform .25s ease, opacity .25s ease
    }

    body.menu-open {
      overflow: hidden
    }

    @media(max-width:960px) {

      nav,
      nav.scrolled {
        padding: 0 24px
      }

      .lang-bar,
      .page-hero-inner,
      .featured,
      .blog-section,
      .fbar {
        padding-left: 24px;
        padding-right: 24px
      }

      .featured-card {
        grid-template-columns: 1fr
      }

      .fc-img {
        height: 280px
      }

      .blog-grid {
        grid-template-columns: 1fr
      }

      footer {
        padding: 48px 24px 32px
      }

      .foot-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px
      }
    }

    @media(max-width:768px) {

      html,
      body {
        overflow-x: hidden !important
      }

      nav,
      nav.scrolled {
        padding: 0 16px !important;
        height: 64px !important
      }

      .lang-bar {
        padding-left: 16px !important;
        padding-right: 16px !important
      }

      .menu-toggle {
        display: flex !important
      }

      .nav-links {
        position: fixed !important;
        top: 64px !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 120 !important;
        display: none !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0 !important;
        max-width: none !important;
        width: 100% !important;
        background: rgba(28, 58, 47, 0.98) !important;
        backdrop-filter: blur(12px);
        padding: 14px 20px 22px !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
        overflow: visible !important
      }

      body.menu-open .nav-links {
        display: flex !important
      }

      .nav-links li {
        width: 100%
      }

      .nav-links a {
        display: block !important;
        width: 100% !important;
        padding: 12px 0 !important;
        font-size: 12px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08)
      }

      .nav-links li:last-child a {
        border-bottom: none
      }

      .nav-cta {
        margin-top: 10px;
        border-bottom: none !important;
        width: auto !important;
        padding: 10px 16px !important
      }

      .page-hero-inner,
      .featured,
      .blog-section,
      .fbar {
        padding-left: 20px !important;
        padding-right: 20px !important
      }

      .page-hero {
        padding-top: 120px;
        padding-bottom: 56px
      }

      footer {
        padding: 48px 20px 32px !important
      }

      .foot-grid {
        grid-template-columns: 1fr !important
      }
    }