@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Jost:wght@400;500;600&family=Marcellus&family=Oregano&display=swap');

/* =========================================================
   THE LUXURY AFRICA — DENICE-INSPIRED EDITORIAL DESIGN SYSTEM
   Complete replacement stylesheet for all .hny-* components.
   Scoped to .hny-scope to prevent conflicts with global styles.
========================================================= */

.hny-scope {
  --hny-ink: #241c15;
  --hny-ink-soft: #4a4038;
  --hny-espresso: #2a2119;
  --hny-forest: #3f4a3a;
  --hny-rust: #a6592e;
  --hny-ivory: #fbf6ec;
  --hny-cream: #f3ecdc;
  --hny-cream-soft: #f8f1e5;
  --hny-paper: #ffffff;
  --hny-gold: #c9a15a;
  --hny-gold-light: #dfc58d;
  --hny-gold-dark: #9c7a3b;
  --hny-muted: #756b62;
  --hny-line: rgba(36, 28, 21, 0.14);
  --hny-line-strong: rgba(36, 28, 21, 0.24);
  --hny-line-gold: rgba(201, 161, 90, 0.46);
  --hny-shadow-sm: 0 8px 22px rgba(36, 28, 21, 0.06);
  --hny-shadow-md: 0 18px 44px rgba(36, 28, 21, 0.10);
  --hny-shadow-lg: 0 30px 70px rgba(36, 28, 21, 0.16);
  --hny-radius: 2px;

  position: relative;
  overflow: clip;
  background: var(--hny-ivory);
  color: var(--hny-ink);
  font-family: "Jost", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.hny-scope,
.hny-scope * {
  box-sizing: border-box;
}

.hny-scope img {
  display: block;
  max-width: 100%;
  height: auto;
}

.hny-scope h1,
.hny-scope h2,
.hny-scope h3,
.hny-scope h4 {
  margin: 0;
  color: var(--hny-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
  text-wrap: balance;
}

.hny-scope h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.hny-scope h3 {
  font-size: clamp(1.45rem, 2.2vw, 1.8rem);
}

.hny-scope p {
  margin: 0 0 18px;
  color: var(--hny-ink-soft);
}

.hny-scope a,
.hny-scope button,
.hny-scope input,
.hny-scope select,
.hny-scope textarea {
  font: inherit;
}

.hny-scope a {
  transition: color 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.hny-scope :focus-visible {
  outline: 3px solid var(--hny-gold-light);
  outline-offset: 3px;
}

.hny-container {
  width: min(1160px, calc(100% - 56px));
  margin-inline: auto;
}

.hny-narrow {
  width: min(860px, calc(100% - 56px));
  margin-inline: auto;
}

.hny-section {
  position: relative;
  padding-block: 82px;
}

.hny-section--cream {
  background: var(--hny-cream);
}

.hny-section-heading {
  width: min(760px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.hny-section-heading::after {
  content: "";
  display: block;
  width: 54px;
  height: 1px;
  margin: 22px auto 0;
  background: var(--hny-gold);
}

.hny-kicker {
  display: inline-block;
  color: var(--hny-gold-dark);
  font-family: "Jost", Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

/* Breadcrumbs */
.hny-breadcrumbs {
  width: min(1160px, calc(100% - 56px));
  margin: 0 auto;
  padding-block: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--hny-muted);
  font-size: 0.78rem;
}

.hny-breadcrumbs a {
  color: var(--hny-ink-soft);
  text-decoration: none;
}

.hny-breadcrumbs a:hover {
  color: var(--hny-gold-dark);
}

/* Hero banner */
.hny-banner {
  min-height: 560px;
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  overflow: hidden;
  background-color: var(--hny-espresso);
  background-image:
    linear-gradient(90deg, rgba(36, 28, 21, 0.92) 0%, rgba(36, 28, 21, 0.74) 48%, rgba(36, 28, 21, 0.44) 100%),
    var(--hny-hero-image);
  background-position: center;
  background-size: cover;
}

.hny-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.10;
  background-image: radial-gradient(circle at 1px 1px, var(--hny-gold) 1px, transparent 0);
  background-size: 26px 26px;
  pointer-events: none;
}

.hny-banner::after {
  content: "";
  position: absolute;
  left: max(28px, calc((100% - 1160px) / 2));
  bottom: 46px;
  width: 88px;
  height: 88px;
  border-left: 2px solid var(--hny-gold);
  border-bottom: 2px solid var(--hny-gold);
  opacity: 0.82;
  pointer-events: none;
}

.hny-banner-inner {
  width: min(1160px, calc(100% - 56px));
  margin: auto;
  padding: 110px 0 100px;
  color: var(--hny-ivory);
  text-align: left;
}

.hny-banner-inner > * {
  max-width: 760px;
}

.hny-banner .hny-kicker {
  color: var(--hny-gold);
}

.hny-banner h1 {
  margin: 16px 0 22px;
  color: var(--hny-ivory);
  font-size: clamp(3rem, 6.4vw, 5.35rem);
  line-height: 1.02;
}

.hny-banner p {
  max-width: 650px;
  margin: 0 0 30px;
  color: rgba(251, 246, 236, 0.84);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
}

/* Buttons and calls to action */
.hny-button,
.hny-load-more,
.hny-form button[type="submit"] {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border: 1px solid var(--hny-ink);
  border-radius: var(--hny-radius);
  background: var(--hny-ink);
  color: var(--hny-ivory);
  cursor: pointer;
  font-family: "Jost", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.hny-button:hover,
.hny-load-more:hover,
.hny-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(36, 28, 21, 0.18);
}

.hny-banner .hny-button {
  border-color: var(--hny-gold);
  background: var(--hny-gold);
  color: var(--hny-ink);
}

.hny-button--outline,
.hny-banner .hny-button--outline {
  border-color: var(--hny-line-gold);
  background: transparent;
  color: var(--hny-ivory);
}

.hny-button--outline:hover,
.hny-banner .hny-button--outline:hover {
  background: rgba(201, 161, 90, 0.12);
  box-shadow: none;
}

.hny-cta-row {
  display: flex;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
}

/* Quick answer / highlighted summary */
.hny-quick-answer {
  width: min(900px, calc(100% - 56px));
  margin: 58px auto;
  padding: 34px 38px;
  position: relative;
  background: var(--hny-cream);
  border: 1px solid var(--hny-line);
  border-left: 3px solid var(--hny-gold);
  border-radius: var(--hny-radius);
  box-shadow: var(--hny-shadow-sm);
}

.hny-quick-answer::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  border-top: 1px solid var(--hny-line-gold);
  border-right: 1px solid var(--hny-line-gold);
}

.hny-quick-answer h2 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2.5vw, 1.9rem);
}

.hny-quick-answer p:last-child {
  margin-bottom: 0;
}

/* Editorial image-and-copy sections */
.hny-editorial-split {
  width: min(1160px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(36px, 5vw, 64px);
}

.hny-editorial-split > * {
  min-width: 0;
}

.hny-editorial-split--image-left .hny-editorial-media {
  order: 1;
}

.hny-editorial-split--image-left .hny-editorial-copy {
  order: 2;
}

.hny-editorial-split--image-right .hny-editorial-media {
  order: 2;
}

.hny-editorial-split--image-right .hny-editorial-copy {
  order: 1;
}

.hny-editorial-media {
  position: relative;
  min-width: 0;
}

.hny-editorial-media::before,
.hny-editorial-media::after {
  content: "";
  position: absolute;
  width: 66px;
  height: 66px;
  pointer-events: none;
}

.hny-editorial-media::before {
  top: -14px;
  left: -14px;
  border-top: 2px solid var(--hny-gold);
  border-left: 2px solid var(--hny-gold);
}

.hny-editorial-media::after {
  right: -14px;
  bottom: -14px;
  border-right: 2px solid var(--hny-gold);
  border-bottom: 2px solid var(--hny-gold);
}

.hny-editorial-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--hny-radius);
  box-shadow: var(--hny-shadow-md);
}

.hny-editorial-copy {
  min-width: 0;
}

.hny-editorial-copy h2 {
  margin: 10px 0 20px;
}

.hny-editorial-copy p:last-child {
  margin-bottom: 0;
}

/* Cards */
.hny-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  justify-content: center;
}

.hny-card-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hny-card-grid > * {
  min-width: 0;
}

.hny-card {
  min-width: 0;
  max-width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--hny-paper);
  border: 1px solid var(--hny-line);
  border-radius: var(--hny-radius);
  box-shadow: var(--hny-shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hny-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 3px;
  background: var(--hny-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.hny-card:hover {
  transform: translateY(-5px);
  border-color: var(--hny-line-gold);
  box-shadow: var(--hny-shadow-md);
}

.hny-card:hover::before {
  transform: scaleX(1);
}

.hny-card[hidden] {
  display: none !important;
}

.hny-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hny-card:hover img {
  transform: scale(1.025);
}

.hny-card-body {
  min-height: 100%;
  padding: 24px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.hny-card-meta {
  color: var(--hny-gold-dark);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hny-card h3 {
  margin: 8px 0 11px;
}

.hny-card h3 a {
  color: var(--hny-ink);
  text-decoration: none;
}

.hny-card h3 a:hover {
  color: var(--hny-gold-dark);
}

.hny-card p {
  font-size: 0.92rem;
}

.hny-card-route {
  margin-top: auto;
  padding-top: 14px;
  color: var(--hny-muted);
  font-size: 0.73rem;
  letter-spacing: 0.04em;
}

.hny-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 14px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--hny-line-gold);
  color: var(--hny-gold-dark);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.hny-text-link:hover {
  border-color: var(--hny-gold-dark);
  color: var(--hny-ink);
}

/* Package-card actions
   These selectors are part of the shared system because package pages use
   them directly. Keeping them here prevents buttons from depending on
   page-specific inline CSS. */
.hny-scope .hny-package-actions {
  width: 100%;
  margin-top: auto;
  padding-top: 20px;
  position: relative;
  z-index: 3;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  overflow: visible;
  opacity: 1 !important;
  visibility: visible !important;
}

.hny-scope .hny-package-button {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 12px 14px;
  position: relative;
  z-index: 4;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--hny-ink);
  border-radius: var(--hny-radius);
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  cursor: pointer;
  font-family: "Jost", Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1.35;
  text-align: center;
  text-decoration: none !important;
  text-transform: uppercase;
  white-space: normal;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.hny-scope .hny-package-button i {
  flex: 0 0 auto;
  color: inherit;
  font-size: 0.86em;
  line-height: 1;
}

.hny-scope .hny-package-button--primary {
  border-color: var(--hny-ink);
  background: var(--hny-ink);
  color: var(--hny-ivory) !important;
}

.hny-scope .hny-package-button--primary:hover,
.hny-scope .hny-package-button--primary:focus-visible {
  border-color: var(--hny-gold);
  background: var(--hny-gold);
  color: var(--hny-ink) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(36, 28, 21, 0.16);
}

.hny-scope .hny-package-button--secondary {
  border-color: var(--hny-gold);
  background: var(--hny-paper);
  color: var(--hny-ink) !important;
}

.hny-scope .hny-package-button--secondary:hover,
.hny-scope .hny-package-button--secondary:focus-visible {
  border-color: var(--hny-ink);
  background: var(--hny-cream);
  color: var(--hny-ink) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(36, 28, 21, 0.10);
}

/* Backward-compatible aliases used by older package-card templates. */
.hny-scope .hny-card-actions,
.hny-scope .hny-card-cta {
  width: 100%;
  margin-top: auto;
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

/* Route facts — luggage-tag inspired strip */
.hny-route-facts {
  width: min(1160px, 100%);
  margin: 42px auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  background: var(--hny-forest);
  border: 1px solid rgba(251, 246, 236, 0.10);
  border-radius: var(--hny-radius);
  box-shadow: var(--hny-shadow-md);
}

.hny-route-facts > * {
  min-width: 0;
}

.hny-fact {
  min-height: 112px;
  position: relative;
  padding: 26px 24px 24px 30px;
  border-right: 1px dashed rgba(251, 246, 236, 0.25);
  background: transparent;
}

.hny-fact:last-child {
  border-right: 0;
}

.hny-fact::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--hny-gold);
}

.hny-fact span {
  display: block;
  color: rgba(251, 246, 236, 0.68);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hny-fact strong {
  display: block;
  margin-top: 7px;
  color: var(--hny-ivory);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.15;
}

.hny-route-sequence,
.hny-pill-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px auto;
}

.hny-route-sequence span,
.hny-pill-list a,
.hny-pill-list span {
  padding: 9px 13px;
  border: 1px solid var(--hny-line);
  border-radius: var(--hny-radius);
  background: var(--hny-paper);
  color: var(--hny-ink-soft);
  font-size: 0.76rem;
  text-decoration: none;
}

.hny-pill-list a:hover {
  border-color: var(--hny-gold);
  color: var(--hny-gold-dark);
}

/* Day-by-day itinerary — editorial ledger */
.hny-days {
  width: min(980px, calc(100% - 56px));
  margin: auto;
  border-top: 1px solid var(--hny-line);
}

.hny-day {
  position: relative;
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 30px;
  padding: 34px 0;
  border-bottom: 1px solid var(--hny-line);
}

.hny-day::after {
  content: "";
  position: absolute;
  top: 34px;
  left: 112px;
  bottom: 34px;
  border-left: 1px dashed var(--hny-line-strong);
}

.hny-day-number {
  position: relative;
  padding-top: 4px;
  color: var(--hny-gold-dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hny-day-number::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 10px;
  height: 10px;
  border: 1px solid var(--hny-line-strong);
  border-radius: 50%;
  background: var(--hny-ivory);
}

.hny-day h3 {
  margin-bottom: 10px;
}

.hny-day-accommodation {
  display: inline-block;
  margin-top: 4px;
  color: var(--hny-gold-dark);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

/* Tables */
.hny-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--hny-line);
  border-radius: var(--hny-radius);
  background: var(--hny-paper);
  box-shadow: var(--hny-shadow-sm);
}

.hny-price-table,
.hny-answer-table {
  width: 100%;
  border-collapse: collapse;
}

.hny-price-table {
  min-width: 760px;
}

.hny-price-table th,
.hny-answer-table th {
  padding: 15px 14px;
  background: var(--hny-espresso);
  color: var(--hny-ivory);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.hny-answer-table th {
  text-align: left;
}

.hny-price-table td,
.hny-answer-table td {
  padding: 14px;
  border: 1px solid var(--hny-line);
  background: var(--hny-paper);
  color: var(--hny-ink-soft);
  text-align: center;
  vertical-align: top;
}

.hny-answer-table td {
  text-align: left;
}

.hny-price-table tbody tr:nth-child(even) td,
.hny-answer-table tbody tr:nth-child(even) td {
  background: var(--hny-cream-soft);
}

.hny-price-table td:first-child,
.hny-compare-table td:first-child {
  color: var(--hny-ink);
  font-weight: 600;
  text-align: left;
}

/* Inclusions, exclusions and content boxes */
.hny-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.hny-list-grid > * {
  min-width: 0;
}

.hny-list-box,
.hny-guide-callout {
  position: relative;
  padding: 30px;
  background: var(--hny-paper);
  border: 1px solid var(--hny-line);
  border-radius: var(--hny-radius);
  box-shadow: var(--hny-shadow-sm);
}

.hny-list-box::before,
.hny-guide-callout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--hny-gold);
}

.hny-list-box ul,
.hny-guide-callout ul {
  margin-bottom: 0;
}

.hny-list-box li {
  margin: 9px 0;
  color: var(--hny-ink-soft);
}

.hny-checklist {
  columns: 2;
  column-gap: 36px;
}

.hny-checklist li {
  break-inside: avoid;
  margin: 8px 0;
}

/* FAQ */
.hny-faq-list {
  width: min(820px, calc(100% - 56px));
  margin: auto;
  display: grid;
  gap: 12px;
}

.hny-faq-item {
  overflow: hidden;
  margin: 0;
  padding: 0 22px;
  background: var(--hny-paper);
  border: 1px solid var(--hny-line);
  border-radius: var(--hny-radius);
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.hny-faq-item:hover,
.hny-faq-item[open] {
  border-color: var(--hny-line-gold);
  box-shadow: var(--hny-shadow-sm);
}

.hny-faq-question {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  color: var(--hny-ink);
  cursor: pointer;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
}

.hny-faq-question::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--hny-gold-dark);
  font-family: "Jost", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  transition: transform 0.22s ease;
}

.hny-faq-item[open] .hny-faq-question::after,
.hny-faq-item.is-open .hny-faq-question::after {
  transform: rotate(45deg);
}

.hny-faq-answer {
  padding: 0 0 21px;
}

.hny-faq-answer p:last-child {
  margin-bottom: 0;
}

/* Compact Denice author card */
.hny-author-card {
  width: min(600px, 100%);
  margin: 38px auto;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 17px;
  position: relative;
  padding: 18px 20px;
  background: var(--hny-paper);
  border: 1px solid var(--hny-line);
  border-left: 3px solid var(--hny-gold);
  border-radius: var(--hny-radius);
  box-shadow: var(--hny-shadow-sm);
}

.hny-author-card::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 10px;
  width: 18px;
  height: 18px;
  border-top: 1px solid var(--hny-line-gold);
  border-right: 1px solid var(--hny-line-gold);
}

.hny-author-avatar {
  width: 64px;
  height: 64px;
  border: 2px solid var(--hny-cream);
  border-radius: 50%;
  object-fit: cover;
}

.hny-author-name {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.05;
}

.hny-author-role {
  display: block;
  margin-top: 2px;
  color: var(--hny-gold-dark);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hny-author-copy {
  margin: 6px 0;
  font-size: 0.8rem;
  line-height: 1.55;
}

.hny-author-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hny-author-actions a {
  color: var(--hny-ink);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.hny-author-actions a:hover {
  color: var(--hny-gold-dark);
}

/* Enquiry form */
.hny-enquiry {
  width: min(1040px, calc(100% - 56px));
  margin: 82px auto;
  padding: 48px;
  position: relative;
  background: var(--hny-cream);
  border: 1px solid var(--hny-line);
  border-radius: var(--hny-radius);
  box-shadow: var(--hny-shadow-sm);
}

.hny-enquiry::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  width: 52px;
  height: 52px;
  border-top: 2px solid var(--hny-gold);
  border-left: 2px solid var(--hny-gold);
}

.hny-enquiry-intro {
  width: min(680px, 100%);
  margin: auto;
  text-align: center;
}

.hny-form-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 24px;
}

.hny-form-grid > * {
  min-width: 0;
}

.hny-form label {
  display: grid;
  gap: 8px;
  color: var(--hny-ink-soft);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.hny-form input,
.hny-form select,
.hny-form textarea,
.hny-filter-bar input,
.hny-filter-bar select {
  width: 100%;
  min-height: 47px;
  padding: 12px 14px;
  border: 1px solid var(--hny-line-strong);
  border-radius: var(--hny-radius);
  background: var(--hny-paper);
  color: var(--hny-ink);
  font-family: "Jost", Arial, sans-serif;
  font-size: 0.92rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hny-form textarea {
  min-height: 140px;
  resize: vertical;
}

.hny-form input:focus,
.hny-form select:focus,
.hny-form textarea:focus,
.hny-filter-bar input:focus,
.hny-filter-bar select:focus {
  outline: none;
  border-color: var(--hny-gold);
  box-shadow: 0 0 0 3px rgba(201, 161, 90, 0.18);
}

.hny-form-wide {
  grid-column: 1 / -1;
}

.hny-form button[type="submit"] {
  width: 100%;
  margin-top: 24px;
  border-color: var(--hny-gold);
  background: var(--hny-gold);
  color: var(--hny-ink);
}

.hny-honey {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Filters, pagination and archives */
.hny-filter-bar {
  margin: 30px 0;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  background: var(--hny-cream);
  border: 1px solid var(--hny-line);
}

.hny-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.hny-pagination button {
  min-width: 42px;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid var(--hny-line);
  border-radius: var(--hny-radius);
  background: var(--hny-paper);
  color: var(--hny-ink);
  cursor: pointer;
}

.hny-pagination button:hover,
.hny-pagination button[aria-current="page"] {
  border-color: var(--hny-ink);
  background: var(--hny-ink);
  color: var(--hny-ivory);
}

.hny-load-more {
  margin: 30px auto 0;
  background: transparent;
  color: var(--hny-ink);
}

.hny-search-results {
  margin-top: 34px;
}

.hny-empty {
  padding: 48px 28px;
  background: var(--hny-cream);
  border: 1px solid var(--hny-line);
  text-align: center;
}

/* Article layout */
.hny-toc {
  width: min(820px, 100%);
  margin: 30px auto;
  padding: 26px 28px;
  background: var(--hny-cream);
  border: 1px solid var(--hny-line);
  border-left: 3px solid var(--hny-gold);
}

.hny-toc a {
  display: block;
  width: fit-content;
  margin: 8px 0;
  color: var(--hny-ink-soft);
  text-decoration: none;
}

.hny-toc a:hover {
  color: var(--hny-gold-dark);
}

.hny-article-body {
  width: min(900px, calc(100% - 56px));
  margin: auto;
}

.hny-article-body > p:first-of-type {
  font-size: 1.08rem;
}

.hny-article-body .hny-editorial-split {
  width: min(1160px, calc(100vw - 56px));
  margin-left: 50%;
  transform: translateX(-50%);
}

.hny-note {
  margin: 28px 0;
  padding: 22px 24px;
  background: var(--hny-cream);
  border: 1px solid var(--hny-line);
  border-left: 3px solid var(--hny-gold);
}

.hny-note p:last-child,
.hny-guide-callout p:last-child {
  margin-bottom: 0;
}

.hny-last-reviewed,
.hny-source-title {
  color: var(--hny-muted);
  font-size: 0.72rem;
}

.hny-last-reviewed {
  text-align: center;
}

/* Responsive containment */
.hny-card,
.hny-editorial-media,
.hny-editorial-copy,
.hny-table-wrap {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 1050px) {
  .hny-card-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hny-route-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hny-fact:nth-child(2) {
    border-right: 0;
  }

  .hny-fact:nth-child(-n + 2) {
    border-bottom: 1px dashed rgba(251, 246, 236, 0.25);
  }
}

@media (max-width: 860px) {
  .hny-container,
  .hny-narrow,
  .hny-breadcrumbs,
  .hny-banner-inner,
  .hny-quick-answer,
  .hny-days,
  .hny-faq-list,
  .hny-enquiry,
  .hny-article-body {
    width: min(100% - 40px, 1160px);
  }

  .hny-section {
    padding-block: 64px;
  }

  .hny-banner {
    min-height: 500px;
    background-image:
      linear-gradient(180deg, rgba(36, 28, 21, 0.76) 0%, rgba(36, 28, 21, 0.86) 100%),
      var(--hny-hero-image);
  }

  .hny-banner-inner {
    padding: 84px 0 74px;
    text-align: center;
  }

  .hny-banner-inner > * {
    margin-inline: auto;
  }

  .hny-banner::after {
    left: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
  }

  .hny-cta-row {
    justify-content: center;
  }

  .hny-editorial-split {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }

  .hny-editorial-split .hny-editorial-media,
  .hny-editorial-split .hny-editorial-copy {
    order: initial;
  }

  .hny-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hny-list-grid,
  .hny-form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hny-form-wide {
    grid-column: auto;
  }

  .hny-filter-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hny-enquiry {
    padding: 40px 28px;
  }
}

@media (max-width: 575px) {
  .hny-container,
  .hny-narrow,
  .hny-breadcrumbs,
  .hny-banner-inner,
  .hny-quick-answer,
  .hny-days,
  .hny-faq-list,
  .hny-enquiry,
  .hny-article-body {
    width: min(100% - 28px, 1160px);
  }

  .hny-scope {
    font-size: 15px;
  }

  .hny-section {
    padding-block: 48px;
  }

  .hny-section-heading {
    margin-bottom: 30px;
  }

  .hny-banner {
    min-height: 455px;
  }

  .hny-banner-inner {
    padding: 72px 0 64px;
  }

  .hny-banner h1 {
    font-size: clamp(2.65rem, 13vw, 3.65rem);
  }

  .hny-banner p {
    font-size: 0.96rem;
  }

  .hny-button {
    width: 100%;
  }

  .hny-cta-row {
    width: 100%;
    flex-direction: column;
  }

  .hny-quick-answer {
    margin-block: 38px;
    padding: 28px 24px;
  }

  .hny-editorial-media::before {
    top: -8px;
    left: -8px;
  }

  .hny-editorial-media::after {
    right: -8px;
    bottom: -8px;
  }

  .hny-card-grid,
  .hny-card-grid--four,
  .hny-list-grid,
  .hny-form-grid,
  .hny-filter-bar {
    grid-template-columns: minmax(0, 1fr);
  }

  .hny-scope .hny-package-actions,
  .hny-scope .hny-card-actions,
  .hny-scope .hny-card-cta {
    grid-template-columns: minmax(0, 1fr);
  }

  .hny-scope .hny-package-button {
    min-height: 48px;
    padding-inline: 12px;
  }

  .hny-route-facts {
    grid-template-columns: minmax(0, 1fr);
  }

  .hny-fact,
  .hny-fact:nth-child(2) {
    border-right: 0;
    border-bottom: 1px dashed rgba(251, 246, 236, 0.25);
  }

  .hny-fact:last-child {
    border-bottom: 0;
  }

  .hny-day {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    padding: 26px 0;
  }

  .hny-day::after,
  .hny-day-number::after {
    display: none;
  }

  .hny-day-number {
    padding-top: 0;
  }

  .hny-list-box,
  .hny-guide-callout {
    padding: 24px 22px;
  }

  .hny-checklist {
    columns: 1;
  }

  .hny-faq-item {
    padding-inline: 18px;
  }

  .hny-faq-question {
    font-size: 1.12rem;
  }

  .hny-author-card {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    padding: 16px;
  }

  .hny-author-avatar {
    width: 54px;
    height: 54px;
  }

  .hny-author-name {
    font-size: 1.25rem;
  }

  .hny-enquiry {
    margin-block: 52px;
    padding: 34px 18px 24px;
  }

  .hny-enquiry::before {
    top: 10px;
    left: 10px;
    width: 36px;
    height: 36px;
  }

  .hny-toc {
    padding: 22px 20px;
  }

  .hny-article-body .hny-editorial-split {
    width: min(100vw - 28px, 1160px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hny-scope *,
  .hny-scope *::before,
  .hny-scope *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =========================================================
   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;
  }
}