@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Jost:wght@400;500;600&family=Marcellus&display=swap');

/* =========================================================
   HNY NAVIGATION + FOOTER
   Denice Alex editorial design language
   Existing HTML classes and JavaScript hooks are preserved.
========================================================= */

#nav-placeholder,
#footer-placeholder {
  --hny-ui-ink: #241c15;
  --hny-ui-ink-soft: #4a4038;
  --hny-ui-espresso: #211812;
  --hny-ui-espresso-deep: #17110d;
  --hny-ui-forest: #3f4a3a;
  --hny-ui-forest-deep: #313a2d;
  --hny-ui-ivory: #fbf6ec;
  --hny-ui-cream: #f3ecdc;
  --hny-ui-paper: #fffdf8;
  --hny-ui-gold: #c9a15a;
  --hny-ui-gold-deep: #9c7a3b;
  --hny-ui-gold-soft: #ddc38f;
  --hny-ui-line: rgba(36, 28, 21, 0.13);
  --hny-ui-line-gold: rgba(201, 161, 90, 0.48);
  --hny-ui-shadow-sm: 0 8px 24px rgba(36, 28, 21, 0.07);
  --hny-ui-shadow-lg: 0 28px 70px rgba(36, 28, 21, 0.17);
  font-family: "Jost", sans-serif;
}

#nav-placeholder *,
#footer-placeholder * {
  box-sizing: border-box;
}

.hny-skip-link {
  position: fixed;
  left: 14px;
  top: -90px;
  z-index: 10000;
  background: var(--hny-ui-espresso-deep, #17110d);
  color: var(--hny-ui-ivory, #fbf6ec);
  border: 1px solid var(--hny-ui-line-gold, rgba(201, 161, 90, 0.48));
  padding: 11px 16px;
  font: 600 12px/1 "Jost", sans-serif;
  letter-spacing: 0.05em;
  text-decoration: none;
  box-shadow: var(--hny-ui-shadow-sm, 0 8px 24px rgba(36, 28, 21, 0.07));
}

.hny-skip-link:focus {
  top: 14px;
}

/* =========================
   DESKTOP NAVIGATION
========================= */

.hny-nav-shell {
  position: sticky;
  top: 0;
  z-index: 1200;
  isolation: isolate;
  background: rgba(251, 246, 236, 0.94);
  -webkit-backdrop-filter: blur(20px) saturate(125%);
  backdrop-filter: blur(20px) saturate(125%);
  border-top: 2px solid var(--hny-ui-gold, #c9a15a);
  border-bottom: 1px solid var(--hny-ui-line, rgba(36, 28, 21, 0.13));
  box-shadow: 0 12px 34px rgba(36, 28, 21, 0.08);
  font-family: "Marcellus", serif;
}

.hny-nav-shell::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 161, 90, 0.32) 24%,
    rgba(201, 161, 90, 0.56) 50%,
    rgba(201, 161, 90, 0.32) 76%,
    transparent 100%
  );
}

.hny-nav-inner {
  width: min(1440px, calc(100% - 44px));
  min-height: 84px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(190px, 230px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.hny-nav-logo {
  min-width: 0;
  display: inline-flex;
  flex-direction: column;
  justify-self: start;
  color: var(--hny-ui-ink, #241c15);
  text-decoration: none;
  line-height: 1;
}

.hny-nav-logo-main {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(20px, 1.55vw, 25px);
  font-weight: 600;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.hny-nav-logo-sub {
  margin-top: 6px;
  color: var(--hny-ui-gold-deep, #9c7a3b);
  font: 500 9px/1 "Jost", sans-serif;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hny-nav-menu {
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: clamp(13px, 1.5vw, 25px);
}

.hny-nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.hny-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: var(--hny-ui-ink, #241c15);
  padding: 31px 0 29px;
  font: 400 clamp(11px, 0.9vw, 13px)/1 "Marcellus", serif;
  letter-spacing: 0.015em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.hny-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 22px;
  height: 1px;
  background: var(--hny-ui-gold, #c9a15a);
  transition: right 0.24s ease;
}

.hny-nav-link:hover,
.hny-nav-link:focus-visible,
.hny-nav-item[data-open="true"] > .hny-nav-link {
  color: var(--hny-ui-gold-deep, #9c7a3b);
}

.hny-nav-link:hover::after,
.hny-nav-link:focus-visible::after,
.hny-nav-item[data-open="true"] > .hny-nav-link::after {
  right: 0;
}

.hny-nav-link i,
.hny-nav-language-toggle i,
.hny-nav-toggle i,
.hny-nav-drawer-close i {
  font-size: 0.72em;
  line-height: 1;
}

.hny-nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 9px);
  left: 50%;
  width: 284px;
  padding: 12px;
  z-index: 1220;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
  background: var(--hny-ui-paper, #fffdf8);
  border: 1px solid var(--hny-ui-line, rgba(36, 28, 21, 0.13));
  border-top: 2px solid var(--hny-ui-gold, #c9a15a);
  box-shadow: var(--hny-ui-shadow-lg, 0 28px 70px rgba(36, 28, 21, 0.17));
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.hny-nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  width: 16px;
  height: 16px;
  background: var(--hny-ui-paper, #fffdf8);
  border-top: 1px solid var(--hny-ui-line, rgba(36, 28, 21, 0.13));
  border-left: 1px solid var(--hny-ui-line, rgba(36, 28, 21, 0.13));
  transform: translateX(-50%) rotate(45deg);
}

.hny-nav-item[data-open="true"] .hny-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.hny-nav-dropdown-menu a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px 10px 18px;
  color: var(--hny-ui-ink-soft, #4a4038);
  border-bottom: 1px solid rgba(36, 28, 21, 0.07);
  font: 400 12px/1.45 "Jost", sans-serif;
  letter-spacing: 0.015em;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
}

.hny-nav-dropdown-menu a::before {
  content: "";
  position: absolute;
  left: 4px;
  width: 5px;
  height: 5px;
  border: 1px solid var(--hny-ui-gold-deep, #9c7a3b);
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.hny-nav-dropdown-menu a:last-child {
  border-bottom: 0;
}

.hny-nav-dropdown-menu a:hover,
.hny-nav-dropdown-menu a:focus-visible {
  padding-left: 22px;
  color: var(--hny-ui-ink, #241c15);
  background: var(--hny-ui-cream, #f3ecdc);
}

.hny-nav-dropdown-menu a:hover::before,
.hny-nav-dropdown-menu a:focus-visible::before {
  opacity: 1;
}

.hny-nav-actions,
.hny-nav-mobile-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 11px;
}

.hny-nav-mobile-actions {
  display: none;
}

.hny-nav-enquire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  padding: 12px 18px;
  color: var(--hny-ui-ivory, #fbf6ec);
  background: var(--hny-ui-espresso, #211812);
  border: 1px solid var(--hny-ui-espresso, #211812);
  font: 500 11px/1 "Jost", sans-serif;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.hny-nav-enquire:hover,
.hny-nav-enquire:focus-visible {
  color: var(--hny-ui-ink, #241c15);
  background: var(--hny-ui-gold, #c9a15a);
  border-color: var(--hny-ui-gold, #c9a15a);
  transform: translateY(-1px);
}

/* =========================
   LANGUAGE SELECTOR
========================= */

.hny-nav-language {
  position: relative;
}

.hny-nav-language-toggle {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  color: var(--hny-ui-ink, #241c15);
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid var(--hny-ui-line, rgba(36, 28, 21, 0.13));
  font: 400 11px/1 "Jost", sans-serif;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.hny-nav-language-toggle:hover,
.hny-nav-language-toggle:focus-visible,
.hny-nav-language[data-open="true"] .hny-nav-language-toggle {
  background: var(--hny-ui-paper, #fffdf8);
  border-color: var(--hny-ui-gold, #c9a15a);
}

.hny-nav-language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 190px;
  padding: 7px;
  z-index: 1300;
  background: var(--hny-ui-paper, #fffdf8);
  border: 1px solid var(--hny-ui-line, rgba(36, 28, 21, 0.13));
  border-top: 2px solid var(--hny-ui-gold, #c9a15a);
  box-shadow: var(--hny-ui-shadow-lg, 0 28px 70px rgba(36, 28, 21, 0.17));
}

.hny-nav-language-menu[hidden] {
  display: none !important;
}

.hny-nav-language-menu button {
  display: block;
  width: 100%;
  min-height: 38px;
  padding: 9px 11px;
  color: var(--hny-ui-ink-soft, #4a4038);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(36, 28, 21, 0.07);
  font: 400 12px/1.25 "Jost", sans-serif;
  text-align: left;
  cursor: pointer;
}

.hny-nav-language-menu button:last-child {
  border-bottom: 0;
}

.hny-nav-language-menu button:hover,
.hny-nav-language-menu button:focus-visible {
  color: var(--hny-ui-ink, #241c15);
  background: var(--hny-ui-cream, #f3ecdc);
}

.hny-google-translate-engine {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon {
  display: none !important;
}

body {
  top: 0 !important;
}

/* =========================
   MOBILE NAVIGATION
========================= */

.hny-nav-toggle,
.hny-nav-drawer-close {
  width: 43px;
  height: 43px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--hny-ui-ink, #241c15);
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--hny-ui-line, rgba(36, 28, 21, 0.13));
  font-size: 15px;
  cursor: pointer;
}

.hny-nav-toggle:hover,
.hny-nav-toggle:focus-visible,
.hny-nav-drawer-close:hover,
.hny-nav-drawer-close:focus-visible {
  border-color: var(--hny-ui-gold, #c9a15a);
  background: var(--hny-ui-cream, #f3ecdc);
}

.hny-nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 1250;
  display: block;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 22px clamp(20px, 5vw, 34px) 38px;
  background:
    radial-gradient(circle at 1px 1px, rgba(201, 161, 90, 0.09) 1px, transparent 0) 0 0 / 26px 26px,
    var(--hny-ui-ivory, #fbf6ec);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.34s ease, opacity 0.24s ease, visibility 0.34s ease;
}

.hny-nav-drawer::before {
  content: "";
  position: fixed;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(
    180deg,
    var(--hny-ui-gold, #c9a15a) 0%,
    var(--hny-ui-forest, #3f4a3a) 58%,
    var(--hny-ui-espresso, #211812) 100%
  );
}

.hny-nav-drawer[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.hny-nav-drawer-head {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--hny-ui-line, rgba(36, 28, 21, 0.13));
}

.hny-nav-drawer-head .hny-nav-logo-main {
  font-size: 23px;
}

.hny-nav-mobile {
  display: grid;
  padding-top: 23px;
}

.hny-nav-mobile a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 53px;
  padding: 14px 4px;
  color: var(--hny-ui-ink, #241c15);
  border-bottom: 1px solid var(--hny-ui-line, rgba(36, 28, 21, 0.13));
  font: 500 clamp(18px, 5vw, 23px)/1.2 "Cormorant Garamond", serif;
  text-decoration: none;
}

.hny-nav-mobile a::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 18px;
  border-top: 1px solid var(--hny-ui-gold-deep, #9c7a3b);
  border-right: 1px solid var(--hny-ui-gold-deep, #9c7a3b);
  transform: rotate(45deg);
}

.hny-nav-mobile a:hover,
.hny-nav-mobile a:focus-visible {
  color: var(--hny-ui-gold-deep, #9c7a3b);
  padding-left: 8px;
}

.hny-nav-mobile-cta {
  justify-content: center !important;
  min-height: 52px !important;
  margin-top: 25px;
  padding: 15px 20px !important;
  color: var(--hny-ui-ivory, #fbf6ec) !important;
  background: var(--hny-ui-espresso, #211812) !important;
  border: 1px solid var(--hny-ui-espresso, #211812) !important;
  font: 500 12px/1 "Jost", sans-serif !important;
  letter-spacing: 0.11em;
  text-align: center;
  text-transform: uppercase;
}

.hny-nav-mobile-cta::after {
  display: none;
}

.hny-nav-mobile-cta:hover,
.hny-nav-mobile-cta:focus-visible {
  color: var(--hny-ui-ink, #241c15) !important;
  background: var(--hny-ui-gold, #c9a15a) !important;
  border-color: var(--hny-ui-gold, #c9a15a) !important;
  padding-left: 20px !important;
}

body.hny-nav-open {
  overflow: hidden;
}

/* =========================
   FOOTER
========================= */

.hny-footer-shell {
  position: relative;
  overflow: hidden;
  color: rgba(251, 246, 236, 0.88);
  background:
    radial-gradient(circle at 12% 12%, rgba(201, 161, 90, 0.08), transparent 28%),
    linear-gradient(180deg, var(--hny-ui-espresso, #211812) 0%, var(--hny-ui-espresso-deep, #17110d) 100%);
}

.hny-footer-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: radial-gradient(circle at 1px 1px, var(--hny-ui-gold, #c9a15a) 1px, transparent 0);
  background-size: 30px 30px;
}

.hny-footer-topline {
  position: relative;
  z-index: 1;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--hny-ui-forest, #3f4a3a) 0 22%,
    var(--hny-ui-gold, #c9a15a) 22% 78%,
    var(--hny-ui-forest, #3f4a3a) 78% 100%
  );
}

.hny-footer-wrap {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 44px));
  margin-inline: auto;
  padding: 58px 0 24px;
}

.hny-footer-trust {
  display: grid;
  grid-template-columns: minmax(220px, 1.05fr) minmax(260px, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(251, 246, 236, 0.14);
}

.hny-footer-main-logo {
  display: inline-flex;
  flex-direction: column;
  width: fit-content;
  max-width: 220px;
  color: var(--hny-ui-ivory, #fbf6ec);
  font: 600 clamp(25px, 2.3vw, 34px)/0.95 "Cormorant Garamond", serif;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.hny-footer-main-logo img {
  display: block;
  width: 148px;
  max-width: 100%;
  height: auto;
}

.hny-footer-main-logo span {
  display: block;
  margin-top: 9px;
  color: var(--hny-ui-gold-soft, #ddc38f);
  font: 500 9px/1.25 "Jost", sans-serif;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hny-footer-logos p {
  max-width: 440px;
  margin: 0;
  color: rgba(251, 246, 236, 0.66);
  font: 500 clamp(17px, 1.7vw, 22px)/1.45 "Cormorant Garamond", serif;
}

.hny-footer-review {
  min-width: 210px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(251, 246, 236, 0.035);
  border: 1px solid rgba(251, 246, 236, 0.13);
}

.hny-footer-review span {
  display: block;
  color: rgba(251, 246, 236, 0.63);
  font: 400 10px/1.55 "Jost", sans-serif;
  letter-spacing: 0.025em;
}

.hny-footer-stars {
  color: var(--hny-ui-gold-soft, #ddc38f);
  font-size: 12px;
  letter-spacing: 0.11em;
  white-space: nowrap;
}

.hny-footer-score {
  margin-right: 8px;
  color: var(--hny-ui-ivory, #fbf6ec);
  font: 600 27px/1 "Cormorant Garamond", serif;
}

.hny-footer-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  color: var(--hny-ui-ivory, #fbf6ec);
  background: transparent;
  border: 1px solid var(--hny-ui-gold, #c9a15a);
  font: 500 11px/1 "Jost", sans-serif;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.hny-footer-cta:hover,
.hny-footer-cta:focus-visible {
  color: var(--hny-ui-ink, #241c15);
  background: var(--hny-ui-gold, #c9a15a);
  transform: translateY(-1px);
}

.hny-footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.1fr;
  gap: clamp(26px, 4vw, 52px);
  padding: 47px 0 43px;
}

.hny-footer-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.hny-footer-column h2 {
  position: relative;
  margin: 0 0 15px;
  padding-bottom: 11px;
  color: var(--hny-ui-gold-soft, #ddc38f);
  font: 600 19px/1.1 "Cormorant Garamond", serif;
}

.hny-footer-column h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 1px;
  background: var(--hny-ui-gold, #c9a15a);
}

.hny-footer-column a,
.hny-footer-column span {
  color: rgba(251, 246, 236, 0.7);
  font: 400 12px/1.65 "Jost", sans-serif;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.hny-footer-column a:hover,
.hny-footer-column a:focus-visible {
  color: var(--hny-ui-gold-soft, #ddc38f);
  transform: translateX(3px);
}

.hny-footer-contact {
  display: grid;
  gap: 9px;
}

.hny-footer-contact a,
.hny-footer-contact span {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.hny-footer-contact i {
  width: 14px;
  margin-top: 5px;
  color: var(--hny-ui-gold, #c9a15a);
  font-size: 11px;
  text-align: center;
}

.hny-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 13px;
}

.hny-footer-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--hny-ui-ivory, #fbf6ec);
  border: 1px solid rgba(251, 246, 236, 0.2);
  transform: none;
}

.hny-footer-social a:hover,
.hny-footer-social a:focus-visible {
  color: var(--hny-ui-ink, #241c15);
  background: var(--hny-ui-gold, #c9a15a);
  border-color: var(--hny-ui-gold, #c9a15a);
  transform: translateY(-2px);
}

.hny-footer-social i {
  font-size: 12px;
  line-height: 1;
}

.hny-footer-payment,
.hny-footer-bottom {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 19px 0;
  color: rgba(251, 246, 236, 0.54);
  border-top: 1px solid rgba(251, 246, 236, 0.12);
  font: 400 10px/1.55 "Jost", sans-serif;
  letter-spacing: 0.025em;
}

.hny-footer-payment {
  min-height: 60px;
  flex-wrap: wrap;
}

.hny-footer-payment img {
  display: block;
  max-height: 27px;
  width: auto;
  opacity: 0.82;
}

.hny-footer-bottom {
  justify-content: space-between;
  padding-bottom: 0;
}

.hny-footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hny-footer-bottom a {
  color: rgba(251, 246, 236, 0.54);
  text-decoration: none;
}

.hny-footer-bottom a:hover,
.hny-footer-bottom a:focus-visible {
  color: var(--hny-ui-gold-soft, #ddc38f);
}

/* =========================
   FOCUS + ACCESSIBILITY
========================= */

#nav-placeholder :focus-visible,
#footer-placeholder :focus-visible {
  outline: 2px solid var(--hny-ui-gold, #c9a15a);
  outline-offset: 3px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1180px) {
  .hny-nav-inner {
    grid-template-columns: 180px minmax(0, 1fr) auto;
    gap: 17px;
  }

  .hny-nav-menu {
    gap: 12px;
  }

  .hny-nav-link {
    font-size: 11px;
  }

  .hny-nav-enquire {
    padding-inline: 14px;
  }

  .hny-footer-trust {
    grid-template-columns: 1fr 1fr;
  }

  .hny-footer-cta {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 991.98px) {
  .hny-nav-shell {
    border-top-width: 2px;
  }

  .hny-nav-inner {
    min-height: 72px;
    width: min(100% - 30px, 1440px);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
  }

  .hny-nav-desktop,
  .hny-nav-actions {
    display: none !important;
  }

  .hny-nav-mobile-actions {
    display: flex;
  }

  .hny-nav-logo-main {
    font-size: 21px;
  }

  .hny-nav-logo-sub {
    font-size: 8px;
  }

  .hny-footer-trust {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hny-footer-review {
    width: min(100%, 340px);
  }

  .hny-footer-cta {
    grid-column: auto;
  }

  .hny-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .hny-nav-drawer,
  .hny-nav-drawer[aria-hidden="false"] {
    display: none !important;
  }
}

@media (max-width: 575.98px) {
  .hny-nav-inner {
    width: min(100% - 22px, 1440px);
  }

  .hny-nav-logo-main {
    max-width: 180px;
    overflow: hidden;
    font-size: 19px;
    text-overflow: ellipsis;
  }

  .hny-nav-logo-sub {
    max-width: 175px;
    overflow: hidden;
    letter-spacing: 0.2em;
    text-overflow: ellipsis;
  }

  .hny-nav-language-toggle {
    width: 42px;
    padding-inline: 0;
  }

  .hny-nav-language-toggle span {
    display: none;
  }

  .hny-nav-language-menu {
    right: -48px;
  }

  .hny-nav-drawer {
    padding-inline: 20px;
  }

  .hny-footer-wrap {
    width: min(100% - 28px, 1240px);
    padding-top: 46px;
  }

  .hny-footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
    padding-block: 38px;
  }

  .hny-footer-main-logo img {
    width: 128px;
  }

  .hny-footer-main-logo {
    font-size: 28px;
  }

  .hny-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .hny-footer-bottom div {
    gap: 12px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  #nav-placeholder *,
  #nav-placeholder *::before,
  #nav-placeholder *::after,
  #footer-placeholder *,
  #footer-placeholder *::before,
  #footer-placeholder *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}