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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    background: var(--white);
    color: var(--espresso);
    font-weight: 300;
    overflow-x: hidden;
  }

.tgolden{
  color: var(--caramel); 
}

.hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--cream);
}

.section-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--caramel);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--caramel);
}

  .cd-drawer {
    display: none;
    position: fixed; inset: 0; z-index: 999;
    background: var(--white, #FAFAF8);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .cd-drawer.open {
    display: flex;
    opacity: 1;
  }
  .cd-drawer a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 300;
    color: var(--espresso, #1A1208);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s;
  }
  .cd-drawer a:hover { color: var(--caramel, #8C6240); }
  .cd-drawer-cta {
    margin-top: 8px;
    padding: 14px 44px;
    border: 1px solid var(--espresso, #1A1208);
    background: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--espresso, #1A1208);
    cursor: pointer;
    transition: all 0.25s;
  }
  .cd-drawer-cta:hover {
    background: var(--espresso, #1A1208);
    color: var(--white, #FAFAF8);
  }
  .cd-drawer-close {
    position: absolute;
    top: 24px; right: 24px;
    background: none; border: none;
    cursor: pointer;
    font-size: 28px;
    color: var(--muted, #7A6E63);
    line-height: 1;
  }