  :root {
    --drawer-w: 300px;
  }

/* ════════════════════════════════════════
     NAV
  ════════════════════════════════════════ */
  nav {
    position: sticky; top: 0; z-index: 200;
    background: rgba(253,250,246,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 0 5vw;
    display: flex; align-items: center; justify-content: space-between;
    height: 120px;
  }
  .nav-logo {
    font-family: var(--font-display);
    font-size: 1.2rem; color: var(--teal-dark);
    font-weight: 600; letter-spacing: -0.01em;
    line-height: 1.2; max-width: 240px;
    text-decoration: none; display: block;
  }
  .nav-logo span {
    display: block; font-size: 0.65rem; font-family: var(--font-body);
    font-weight: 300; color: var(--text-muted);
    letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px;
  }
  .nav-logo img {
	  height:100px;
  }
  .nav-links { display: flex; gap: 2rem; align-items: center; }
  .nav-menu-item { position: relative; }
  .nav-links a {
    text-decoration: none; color: var(--text-mid);
    font-size: 0.88rem; font-weight: 400;
    transition: color 0.2s; white-space: nowrap;
  }
  .nav-links a:hover { color: var(--teal-dark); }
  .nav-submenu {
    display: none;
    background: var(--warm-white);
    border: 1px solid var(--border);
    box-shadow: 0 18px 44px rgba(26,37,32,0.13);
  }
  .nav-links .has-submenu:hover .nav-submenu,
  .nav-links .has-submenu:focus-within .nav-submenu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 50%;
    transform: translateX(-50%);
    width: 285px;
    padding: 0.45rem 0;
    z-index: 250;
  }
  .nav-links .nav-submenu::before {
    content: "";
    position: absolute;
    top: -0.75rem;
    left: 0;
    right: 0;
    height: 0.75rem;
  }
  .nav-links .nav-submenu a {
    display: block;
    padding: 0.68rem 1rem;
    white-space: normal;
    line-height: 1.25;
  }
  .nav-links .nav-submenu a:hover {
    background: var(--teal-pale);
  }
  .nav-cta {
    background: var(--teal-dark); color: #fff !important;
    padding: 0.5rem 1.2rem; border-radius: 999px;
    font-weight: 500 !important; font-size: 0.85rem !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--teal-mid) !important; }

  /* ── Hamburger button ── */
  .hamburger {
    display: none;
    flex-direction: column; justify-content: center; align-items: center;
    gap: 5px; width: 42px; height: 42px;
    background: none; border: none; cursor: pointer;
    padding: 8px; border-radius: var(--radius);
    transition: all 0.2s;
	
	position:fixed;
	z-index:1000;
	right:20px;
	top:10px;
  }
  .hamburger:hover { background: var(--teal-light); }
  .hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--teal-dark); border-radius: 2px;
    transition: transform 0.3s, opacity 0.2s, width 0.2s;
    transform-origin: center;
  }
  .hamburger.open {right: calc(100vw - 300px + 2px);}
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── Overlay ── */
  .drawer-overlay {
    position: fixed; inset: 0; z-index: 300;
    background: rgba(26,37,32,0.48);
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
  }
  .drawer-overlay.open { opacity: 1; pointer-events: all; }

  /* ── Side drawer ── */
  .drawer {
    position: fixed; top: 0; left: 0; z-index: 400;
    width: var(--drawer-w); height: 100dvh;
    background: var(--warm-white);
    border-right: 1px solid var(--border);
    display: flex; flex-direction: column;
    transform: translateX(calc(-1 * var(--drawer-w)));
    transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
	max-width:350px;
  }
  .drawer.open { transform: translateX(0); }

  .drawer-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 1.5rem; height: 90px;
    border-bottom: 1px solid var(--border); flex-shrink: 0;
  }
  .drawer-logo {
    font-family: var(--font-display);
    font-size: 1rem; color: var(--teal-dark);
    font-weight: 600; line-height: 1.25;
  }
  .drawer-logo img{
	width:100%;
	box-sizing:border-box;
	padding:25px 20px 20px 0px;  
  }
  .drawer-close {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--cream); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1rem; color: var(--text-muted);
    transition: background 0.2s, color 0.2s; flex-shrink: 0;
    font-family: var(--font-body);
  }
  .drawer-close:hover { background: var(--teal-light); color: var(--teal-dark); }

  .drawer-nav { flex: 1; padding: 1rem 0; display: flex; flex-direction: column; align-items: baseline; justify-content: normal; overflow-y: scroll; }
  .drawer-nav a {
    display: flex; align-items: center; gap: 12px;
    padding: 0.85rem 1.5rem;
    text-decoration: none; color: var(--text-mid);
    font-size: 0.96rem; font-weight: 400;
    border-left: 3px solid transparent;
    transition: color 0.2s, background 0.2s, border-color 0.2s;
  }
  .drawer-nav a:hover {
    color: var(--teal-dark); background: var(--teal-pale);
    border-left-color: var(--teal-mid);
  }
  .drawer-nav .nav-menu-item {
    width: 100%;
  }
  .drawer-nav .nav-parent::after {
    content: "+";
    margin-left: auto;
    color: var(--teal-mid);
    font-size: 1.15rem;
    line-height: 1;
  }
  .drawer-nav .has-submenu.open .nav-parent::after {
    content: "-";
  }
  .drawer-nav .nav-submenu {
    width: 100%;
    border: 0;
    box-shadow: none;
    background: var(--teal-pale);
  }
  .drawer-nav .has-submenu.open .nav-submenu {
    display: flex;
    flex-direction: column;
  }
  .drawer-nav .nav-submenu a {
    padding: 0.72rem 1.5rem 0.72rem 2.25rem;
    font-size: 0.88rem;
    line-height: 1.25;
    white-space: normal;
    background: transparent;
  }
  .drawer-nav a svg { width: 16px; height: 16px; fill: var(--text-muted); flex-shrink: 0; transition: fill 0.2s; }
  .drawer-nav a:hover svg { fill: var(--teal-mid); }
  .drawer-divider { height: 1px; background: var(--border); margin: 0.6rem 1.5rem; }

  .drawer-footer {
    padding: 1.4rem 1.5rem;
    border-top: 1px solid var(--border); flex-shrink: 0;
  }
  .drawer-cta {
    display: block; text-align: center;
    background: var(--teal-dark); color: #fff;
    padding: 0.85rem; border-radius: 999px;
    font-weight: 500; font-size: 0.95rem;
    text-decoration: none; transition: background 0.2s;
  }
  .drawer-cta:link { color:#fff; }
  .drawer-cta:visited { color:#fff; }
  .drawer-cta:active { color:#fff; }
  .drawer-cta:hover { background: var(--teal-mid); }
  .drawer-contact { margin-top: 1.1rem; display: flex; flex-direction: column; gap: 0.5rem; }
  .drawer-contact a {
    font-size: 0.82rem; color: var(--text-muted);
    text-decoration: none; display: flex; align-items: center; gap: 8px;
    transition: color 0.2s;
  }
  .drawer-contact a:hover { color: var(--teal-dark); }
  .drawer-contact svg { width: 14px; height: 14px; fill: var(--text-muted); }

  @media (max-width: 1170px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
	 nav {height:90px;}
	.nav-logo img { height:70px; }
  }
  
  @media (max-height: 400px) {
    .drawer-footer { display: none; }
  }
