/* ============================================================
   ROGGENBUCK LANDSCAPE & DESIGN CO. — CHROME
   Header, overlay menu, footer, sticky mobile CTA.
   Tokens and utility classes (.roggenbuck-btn, .roggenbuck-chip,
   .roggenbuck-ico, .roggenbuck-brand, .roggenbuck-container)
   are defined in base.css — not duplicated here.
   ============================================================ */

/* ============================================================
   HEADER
   ============================================================ */
.roggenbuck-header{
  position:sticky;top:0;z-index:60;
  background:var(--forest);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.roggenbuck-header__inner{
  display:flex;align-items:center;justify-content:space-between;
  height:68px;
}

/* Brand lockup */
.roggenbuck-brand{display:flex;align-items:center;gap:11px;color:var(--cream-on-dark);text-decoration:none;}
.roggenbuck-brand:hover{color:#fff;}
.roggenbuck-brand img{width:44px;height:44px;border-radius:50%;background:var(--cream);object-fit:cover;}
.roggenbuck-brand__name{display:block;font-family:var(--display);font-weight:700;font-size:18px;line-height:1;letter-spacing:.01em;}
.roggenbuck-brand__sub{display:block;font-family:var(--body);font-size:11px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--gold);margin-top:2px;}

/* Desktop nav (hidden on mobile) */
.roggenbuck-nav{display:none;}
.roggenbuck-nav a{color:var(--cream-on-dark);font-weight:600;font-size:15px;white-space:nowrap;text-decoration:none;}
.roggenbuck-nav a:hover{color:#fff;}
.roggenbuck-nav a[aria-current="page"]{color:#fff;border-bottom:2px solid var(--olive);padding-bottom:2px;}

/* Desktop CTA (hidden on mobile) */
.roggenbuck-header__cta{display:none;align-items:center;gap:18px;}
.roggenbuck-header__cta .roggenbuck-btn{min-height:46px;font-size:15px;padding:0 22px;}

/* Single phone link (Quote button → phone number w/ phone + text icons) */
.roggenbuck-header__phone{
  display:inline-flex;align-items:center;gap:8px;
  color:var(--cream-on-dark);font-weight:700;font-size:15px;
  text-decoration:none;line-height:1;white-space:nowrap;
  padding:8px 4px;border-radius:8px;
  transition:color var(--dur) var(--ease);
}
.roggenbuck-header__phone:hover{color:#fff;}
.roggenbuck-header__phone .roggenbuck-ico{
  width:18px;height:18px;color:var(--olive);
  transition:color var(--dur) var(--ease);
}
.roggenbuck-header__phone:hover .roggenbuck-ico{color:var(--gold);}
.roggenbuck-header__phone span{margin-left:2px;}

/* Hamburger button */
.roggenbuck-burger{
  display:inline-flex;align-items:center;gap:8px;
  min-height:44px;padding:0 12px;border-radius:12px;
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.16);
  color:var(--cream-on-dark);font-weight:700;font-size:14px;
}
.roggenbuck-burger .roggenbuck-ico{width:22px;height:22px;}

/* ============================================================
   FULL-SCREEN OVERLAY MENU
   ============================================================ */
.roggenbuck-overlay{
  position:fixed;inset:0;z-index:80;
  background:var(--forest);
  display:flex;flex-direction:column;
  padding:18px 20px calc(28px + env(safe-area-inset-bottom));
  transform:translateY(-8px);opacity:0;visibility:hidden;
  transition:opacity var(--dur) var(--ease),transform var(--dur) var(--ease),visibility var(--dur);
  overflow-y:auto;
}
.roggenbuck-overlay.is-open{opacity:1;visibility:visible;transform:translateY(0);}

.roggenbuck-overlay__top{
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom:18px;
}

.roggenbuck-overlay__close{
  width:44px;height:44px;
  display:inline-flex;align-items:center;justify-content:center;
  border-radius:12px;
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.16);
  color:#fff;
}
.roggenbuck-overlay__close .roggenbuck-ico{width:24px;height:24px;}

.roggenbuck-overlay__links{
  display:flex;flex-direction:column;
  list-style:none;margin:0;padding:0;
}
.roggenbuck-overlay__links a{
  display:flex;align-items:center;gap:14px;
  min-height:58px;padding:0 6px;
  color:var(--cream-on-dark);
  font-family:var(--display);font-weight:600;font-size:24px;
  border-bottom:1px solid rgba(255,255,255,.09);
  text-decoration:none;
}
.roggenbuck-overlay__links a:hover{color:#fff;}
.roggenbuck-overlay__links a[aria-current="page"]{color:#fff;}
.roggenbuck-overlay__links .roggenbuck-ico{width:22px;height:22px;color:var(--olive);}

.roggenbuck-overlay__actions{
  margin-top:auto;padding-top:26px;
  display:flex;flex-direction:column;gap:12px;
}
.roggenbuck-overlay__phonerow{display:flex;gap:12px;}
.roggenbuck-overlay__phonerow .roggenbuck-btn{flex:1;}

/* ============================================================
   FOOTER
   ============================================================ */
.roggenbuck-footer{background:var(--forest-900);color:var(--cream-on-dark);}
.roggenbuck-footer__inner{
  padding-block:48px 32px;
  display:flex;flex-direction:column;gap:34px;
}

/* Brand block in footer */
.roggenbuck-footer__brand .roggenbuck-brand__name{font-size:20px;}
.roggenbuck-footer__brand p{
  color:rgba(243,234,214,.7);font-size:15px;
  margin-top:14px;max-width:34ch;
}

/* NAP links */
.roggenbuck-footer__nap{
  margin-top:18px;
  display:flex;flex-direction:column;gap:8px;
  font-size:15px;
}
.roggenbuck-footer__nap a,
.roggenbuck-footer__nap span{
  display:flex;align-items:center;gap:10px;
  color:var(--cream-on-dark);
  text-decoration:none;
}
.roggenbuck-footer__nap a:hover{color:#fff;}
.roggenbuck-footer__nap .roggenbuck-ico{width:17px;height:17px;color:var(--olive);flex:none;}

/* Column headings + links */
.roggenbuck-footer__col h4{
  color:var(--olive);
  font-size:14px;font-family:var(--body);font-weight:700;
  letter-spacing:.12em;text-transform:uppercase;
  margin:0 0 14px;
}
.roggenbuck-footer__col ul{
  list-style:none;margin:0;padding:0;
  display:flex;flex-direction:column;gap:10px;
}
.roggenbuck-footer__col a{
  color:rgba(243,234,214,.82);
  font-size:15px;text-decoration:none;
}
.roggenbuck-footer__col a:hover{color:#fff;}

/* Fine-print row */
.roggenbuck-footer__bottom{
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:22px;
  display:flex;flex-direction:column;gap:10px;
  font-size:13px;color:rgba(243,234,214,.55);
}
.roggenbuck-footer__bottom a{color:rgba(243,234,214,.7);text-decoration:none;}
.roggenbuck-footer__bottom a:hover{color:#fff;}

/* ============================================================
   STICKY MOBILE CTA BAR
   ============================================================ */
.roggenbuck-sticky{
  position:fixed;left:0;right:0;bottom:0;z-index:70;
  display:flex;gap:10px;
  padding:10px 14px calc(10px + env(safe-area-inset-bottom));
  background:var(--paper);
  box-shadow:0 -2px 8px rgba(30,24,16,.08);
  border-top:1px solid var(--sand);
  transform:translateY(120%);
  transition:transform 240ms var(--ease);
}
.roggenbuck-sticky.is-visible{transform:translateY(0);}
.roggenbuck-sticky .roggenbuck-btn{flex:1;min-height:54px;font-size:17px;padding:0 16px;}

/* ============================================================
   RESPONSIVE — TABLET ≥768px
   ============================================================ */
@media(min-width:768px){
  .roggenbuck-footer__inner{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr;
    gap:40px;
  }
  .roggenbuck-footer__bottom{
    grid-column:1 / -1;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
  }
}

/* ============================================================
   RESPONSIVE — DESKTOP ≥1024px
   ============================================================ */
@media(min-width:1024px){
  .roggenbuck-nav{display:flex;align-items:center;gap:30px;}
  .roggenbuck-header__cta{display:inline-flex;}
  .roggenbuck-burger{display:none;}
  .roggenbuck-sticky{display:none;}
  /* At 1024px the header is tight — hide the phone link, only the Quote button shows. */
  .roggenbuck-header__phone{display:none;}
}
/* Phone link only appears once we have room for it. */
@media(min-width:1160px){
  .roggenbuck-header__phone{display:inline-flex;}
}
