/* Shared site header — banner, desktop nav with hover dropdowns, mobile slide-down menu. */

.tt-top {
  font-family: "Mulish", sans-serif;
  background: #f5eee4;
}

.tt-banner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 22px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.tt-banner-left {
  display: flex;
  align-items: center;
  gap: 22px;
}
.tt-phone {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #5c3b28;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}
.tt-phone i {
  color: #a4633f;
  font-size: 13px;
}
.tt-socials {
  display: flex;
  gap: 13px;
  font-size: 17px;
}
.tt-socials a {
  color: #a4633f;
  text-decoration: none;
}
.tt-logo-link {
  justify-self: center;
}
.tt-logo-link img {
  height: 96px;
  width: auto;
  display: block;
}
.tt-banner-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
.tt-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #a4633f;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 24px;
  border-radius: 2px;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease;
}
.tt-cta i {
  font-size: 13px;
}
.tt-cta:hover {
  background: var(--tt-clay-hover);
}

#tt-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: none;
  background: transparent;
  color: #5c3b28;
  font-size: 27px;
  cursor: pointer;
  transition: color 0.18s ease;
}
#tt-hamburger:hover {
  color: var(--tt-clay);
}

/* desktop nav */
#tt-desktopNav {
  border-top: 1px solid #ece2d6;
  border-bottom: 1px solid #ece2d6;
  position: relative;
  z-index: 50;
}
.tt-nav-inner {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  gap: 46px;
}
.tt-navleaf {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(164, 99, 63, 0.5);
  font-size: 18px;
  pointer-events: none;
}
.tt-navleaf.tt-navleaf-l {
  left: 40px;
}
.tt-navleaf.tt-navleaf-r {
  right: 40px;
  transform: translateY(-50%) scaleX(-1);
}

.tt-navitem {
  position: relative;
  color: #5c3b28;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 18px 0;
  cursor: pointer;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.tt-navitem::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 13px;
  height: 2px;
  border-radius: 2px;
  background: #a4633f;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.tt-navitem:hover {
  color: #a4633f;
}
.tt-navitem:hover::after {
  transform: scaleX(1);
}
.tt-navitem.tt-active {
  color: #a4633f;
}
.tt-navitem.tt-active::after {
  transform: scaleX(1);
}
.tt-active-m {
  color: #a4633f !important;
}

.tt-navgroup {
  position: relative;
}
.tt-navgroup .fa-caret-down {
  font-size: 11px;
  transition: transform 0.2s;
}
.tt-navgroup:hover .fa-caret-down {
  transform: rotate(180deg);
}
.tt-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 230px;
  background: #fffdfa;
  border: 1px solid #ece2d6;
  border-radius: 4px;
  box-shadow: 0 14px 36px rgba(92, 59, 40, 0.16);
  padding: 10px 0;
  display: none;
}
.tt-navgroup:hover .tt-dropdown {
  display: block;
}
.tt-dropdown a {
  display: block;
  padding: 11px 22px;
  color: #5c3b28;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.tt-dropdown a:hover {
  background: #f6f0e8;
  color: #a4633f;
}

/* mobile menu */
#tt-mobileMenu {
  display: none;
  border-bottom: 1px solid #ece2d6;
  background: #fffdfa;
  position: relative;
  z-index: 40;
}
#tt-mobileMenu.tt-open {
  display: block;
}
.tt-mobile-inner {
  padding: 14px 22px 26px;
  display: flex;
  flex-direction: column;
}
.tt-mobile-inner a {
  padding: 10px 4px;
  color: #5c3b28;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}
.tt-mobile-home {
  padding: 12px 4px;
  color: #a4633f;
  font-weight: 700;
  border-bottom: 1px solid #f0e7db;
}
.tt-mobile-group {
  padding: 16px 4px 6px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a4633f;
  font-weight: 800;
}
.tt-mobile-strong {
  padding: 12px 4px;
  font-weight: 700;
}
.tt-mobile-strong:first-of-type {
  border-top: 1px solid #f0e7db;
  margin-top: 8px;
}
.tt-mobile-cta {
  margin-top: 16px;
  text-align: center;
  background: #a4633f;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 15px 22px;
  border-radius: 2px;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease;
}
.tt-mobile-cta:hover {
  background: var(--tt-clay-hover);
  transform: translateY(-1px);
}

@media (min-width: 981px) {
  #tt-mobileMenu {
    display: none !important;
  }
}
@media (max-width: 980px) {
  #tt-desktopNav {
    display: none !important;
  }
  #tt-hamburger {
    display: inline-flex !important;
  }
}
@media (max-width: 620px) {
  .tt-phone,
  .tt-socials {
    display: none !important;
  }
  .tt-banner {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }
  .tt-cta {
    display: none !important;
  }

  .tt-logo-link img {
    width: 100px;
    height: auto;
  }
}
