/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/* Remove standard HubSpot padding */
body {
  margin: 0;
  padding: 0;
}

.dnd-section,
.dnd-column,
.widget-type-custom_widget {
  padding: 0 !important;
  margin: 0 !important;
}


/* ── HEADER ───────────────────────────────────────────────────────────────── */
.dr-header {
  background: var(--ep-warm-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.dr-header__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 96px;
  display: flex;
  align-items: center;
  gap: 0;
}
.dr-header__logo img { 
  display: block;
  height: 64px;
}
.dr-header__nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.dr-header__nav a {
  color: #411A11;
  text-decoration: none;
  font-family: var(--ep-font-body); !important
  font-size: 1.05rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0.88;
  transition: opacity 0.2s ease, border-color 0.2s ease;
  display: inline-block;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}

.dr-header__nav a:hover {
  opacity: 1;
  border-bottom: 2px solid var(--ep-orange);
}

.dr-header__cta {
  color: #411A11;
  text-decoration: none;
  font-family: var(--ep-font-body) !important;
  font-weight: 700;
  font-size: 1.05rem;
  white-space: nowrap;
  margin-left: 32px;
}

.dr-header__cta:hover {
  color: var(--ep-orange);
}

.dr-header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.dr-header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #411A11;
  border-radius: 2px;
}
.dr-header__mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--ep-warm-white);
  padding: 16px 24px 24px;
}
.dr-header__mobile-nav a {
  color: #411A11;
  text-decoration: none;
  font-family: var(--ep-font-body) !important;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.dr-header__mobile-nav a:last-child { border-bottom: none; }
.dr-header__mobile-nav.is-open { display: flex; }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.dr-footer {
  background: var(--ep-brown-heading);
  color: #fff;
  padding: 64px 0 48px;
}
.dr-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.dr-footer__columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.dr-footer__col { display: flex; flex-direction: column; gap: 8px; }
.dr-footer__col-title {
  font-family: var(--ep-font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  margin: 0 0 8px;
}
.dr-footer__col a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-family: var(--ep-font-body);
  font-size: 0.9rem;
}
.dr-footer__col a:hover { color: #fff; }
.dr-footer__socials {
  text-align: center;
  margin-bottom: 40px;
}
.dr-footer__social-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 12px;
}
.dr-footer__social-icons a {
  opacity: 0.8;
  transition: opacity 0.2s;
}
.dr-footer__social-icons a:hover { opacity: 1; }
.dr-footer__logo {
  display: flex;
  justify-content: center;
}

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .dr-header__nav { display: none; }
  .dr-header__cta { display: none; }
  .dr-header__hamburger { display: flex; }
  .dr-footer__columns { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .dr-footer__columns { grid-template-columns: 1fr; }
}