:root {
  --hxo-brown: #2c1a0e;
  --hxo-brown-2: #4a3020;
  --hxo-cream: #f5f0e8;
  --hxo-gold: #8b6914;
  --hxo-ink: #302a26;
  --hxo-muted: #6c625b;
  --hxo-white: #ffffff;
  --hxo-line: rgba(44, 26, 14, 0.14);
  --hxo-shadow: 0 14px 36px rgba(44, 26, 14, 0.1);
  --hxo-radius: 5px;
  --hxo-shell: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--hxo-ink);
  font-family: "Lato", "Open Sans", Arial, sans-serif;
  line-height: 1.7;
}

body .site-content {
  padding: 0;
}

body #primary {
  margin-block: 0;
}

body .entry-content {
  margin: 0;
}

body .ast-container,
body .site-content > .ast-container {
  max-width: none;
  padding: 0;
}

body .site-header,
body .site-footer,
body.page .entry-header,
body .ast-breadcrumbs-wrapper {
  display: none !important;
}

.hxo-site-header,
.hxo-site-footer,
.hxo-page,
.hxo-page * {
  box-sizing: border-box;
}

.hxo-topbar {
  background: var(--hxo-brown);
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.hxo-topbar__inner,
.hxo-nav__inner,
.hxo-shell,
.hxo-footer__inner {
  width: min(calc(100% - 40px), var(--hxo-shell));
  margin-inline: auto;
}

.hxo-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  gap: 20px;
}

.hxo-topbar a {
  color: var(--hxo-white);
  text-decoration: none;
}

.hxo-nav {
  position: relative;
  z-index: 100;
  background: var(--hxo-white);
  border-bottom: 1px solid var(--hxo-line);
}

.hxo-nav__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.hxo-brand {
  color: var(--hxo-brown);
  display: inline-flex;
  flex-direction: column;
  flex: 0 0 auto;
  text-decoration: none;
  line-height: 1;
}

.hxo-brand__name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.hxo-brand__name span {
  color: var(--hxo-gold);
}

.hxo-brand__tag {
  margin-top: 7px;
  color: var(--hxo-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hxo-main-nav {
  margin-left: auto;
}

.hxo-main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hxo-main-nav > ul {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hxo-main-nav a {
  color: var(--hxo-ink);
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.hxo-main-nav > ul > li > a {
  padding-block: 28px;
}

.hxo-main-nav a:hover,
.hxo-main-nav .current-menu-item > a,
.hxo-main-nav .current-menu-ancestor > a {
  color: var(--hxo-gold);
}

.hxo-main-nav .menu-item-has-children {
  position: relative;
}

.hxo-main-nav .sub-menu {
  position: absolute;
  left: 50%;
  top: calc(100% - 8px);
  width: 610px;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px 18px;
  background: var(--hxo-white);
  border: 1px solid var(--hxo-line);
  box-shadow: var(--hxo-shadow);
  transform: translate(-50%, 8px);
  opacity: 0;
  visibility: hidden;
  transition: 160ms ease;
}

.hxo-main-nav .sub-menu a {
  padding: 9px 8px;
  font-size: 13px;
  font-weight: 600;
}

.hxo-main-nav .menu-item-has-children:hover > .sub-menu,
.hxo-main-nav .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.hxo-nav-cta,
.hxo-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid var(--hxo-gold);
  border-radius: 2px;
  background: var(--hxo-gold);
  color: var(--hxo-white) !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  transition: 160ms ease;
}

.hxo-nav-cta:hover,
.hxo-button:hover {
  background: #73570f;
  border-color: #73570f;
  transform: translateY(-1px);
}

.hxo-button--outline {
  background: transparent;
  color: var(--hxo-brown) !important;
  border-color: rgba(44, 26, 14, 0.42);
}

.hxo-button--outline:hover {
  background: var(--hxo-brown);
  border-color: var(--hxo-brown);
  color: var(--hxo-white) !important;
}

.hxo-button--light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--hxo-white) !important;
}

.hxo-menu-toggle {
  display: none;
  width: 44px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hxo-line);
  background: var(--hxo-white);
  color: var(--hxo-brown);
  font-size: 13px;
  font-weight: 800;
}

.hxo-section {
  padding: 84px 0;
}

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

.hxo-section--brown {
  background: var(--hxo-brown);
  color: var(--hxo-white);
}

.hxo-section--compact {
  padding: 54px 0;
}

.hxo-eyebrow {
  margin: 0 0 14px;
  color: var(--hxo-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hxo-page h1,
.hxo-page h2,
.hxo-page h3,
.hxo-page h4 {
  color: var(--hxo-brown);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.16;
}

.hxo-page h1 {
  margin: 0 0 22px;
  font-size: clamp(40px, 5vw, 65px);
  letter-spacing: -0.025em;
}

.hxo-page h2 {
  margin: 0 0 18px;
  font-size: clamp(31px, 4vw, 45px);
  letter-spacing: -0.018em;
}

.hxo-page h3 {
  margin: 0 0 10px;
  font-size: 23px;
}

.hxo-page p {
  margin-top: 0;
}

.hxo-lead {
  max-width: 720px;
  color: var(--hxo-muted);
  font-size: 18px;
  line-height: 1.75;
}

.hxo-section--brown h1,
.hxo-section--brown h2,
.hxo-section--brown h3,
.hxo-section--brown .hxo-lead {
  color: var(--hxo-white);
}

.hxo-hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 30%, rgba(139, 105, 20, 0.14), transparent 34%),
    var(--hxo-cream);
  padding: 76px 0;
}

.hxo-hero--photo {
  position: relative;
  min-height: 640px;
  padding: 0;
  display: flex;
  align-items: center;
  background: var(--hxo-cream);
  isolation: isolate;
}

.hxo-hero--photo::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(245, 240, 232, 0.97) 0%,
    rgba(245, 240, 232, 0.88) 31%,
    rgba(245, 240, 232, 0.46) 52%,
    rgba(245, 240, 232, 0) 70%
  );
}

.hxo-hero__background {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hxo-hero__photo-copy {
  width: min(650px, 56%);
  padding: 76px 0;
}

.hxo-hero__photo-copy .hxo-lead {
  color: #57483e;
}

.hxo-hero__micro {
  max-width: 540px;
  margin: 28px 0 0;
  color: #5f5046;
  font-size: 13px;
}

.hxo-hero__micro strong {
  color: var(--hxo-brown);
}

.hxo-hero__grid,
.hxo-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(42px, 7vw, 88px);
}

.hxo-hero__copy {
  position: relative;
  z-index: 2;
}

.hxo-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hxo-hero__media {
  position: relative;
  min-height: 490px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hxo-hero__media::before {
  content: "";
  position: absolute;
  inset: 38px 12px 20px 48px;
  border: 1px solid rgba(139, 105, 20, 0.35);
  background: rgba(255, 255, 255, 0.72);
}

.hxo-hero__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}

.hxo-hero__note {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 4px;
  width: 205px;
  padding: 15px 17px;
  background: var(--hxo-brown);
  color: var(--hxo-white);
  box-shadow: var(--hxo-shadow);
  font-size: 12px;
  line-height: 1.5;
}

.hxo-proof {
  padding: 0;
  background: var(--hxo-brown);
}

.hxo-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hxo-proof__item {
  min-height: 98px;
  padding: 23px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  text-align: center;
}

.hxo-proof__item:last-child {
  border-right: 0;
}

.hxo-proof__item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--hxo-white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}

.hxo-section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.hxo-section-head--center {
  margin-inline: auto;
  text-align: center;
}

.hxo-grid {
  display: grid;
  gap: 22px;
}

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

.hxo-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.hxo-card {
  overflow: hidden;
  background: var(--hxo-white);
  border: 1px solid var(--hxo-line);
  border-radius: var(--hxo-radius);
}

.hxo-card--linked {
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.hxo-card--linked:hover {
  transform: translateY(-3px);
  border-color: rgba(139, 105, 20, 0.42);
  box-shadow: var(--hxo-shadow);
}

.hxo-card--linked:focus-visible {
  outline: 3px solid rgba(139, 105, 20, 0.35);
  outline-offset: 3px;
}

.hxo-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f7f5f1;
}

.hxo-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 240ms ease;
}

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

.hxo-card__body {
  padding: 24px;
}

.hxo-product-code {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 11px;
  padding: 5px 8px;
  border: 1px solid rgba(139, 105, 20, 0.24);
  border-radius: 2px;
  background: rgba(139, 105, 20, 0.09);
  color: var(--hxo-gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hxo-product-code--hero {
  margin: 0;
}

.hxo-card__body p {
  color: var(--hxo-muted);
  font-size: 14px;
}

.hxo-card__link {
  color: var(--hxo-gold);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.hxo-card__link::after {
  content: " →";
}

.hxo-card--upcoming {
  border-style: dashed;
}

.hxo-card__image--upcoming {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(139, 105, 20, 0.08), rgba(44, 26, 14, 0.06)),
    var(--hxo-cream);
}

.hxo-card__image--upcoming span {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid rgba(139, 105, 20, 0.35);
  border-radius: 50%;
  color: var(--hxo-gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 47px;
  font-weight: 600;
  line-height: 1;
}

.hxo-fact-card,
.hxo-step,
.hxo-value {
  padding: 28px;
  background: var(--hxo-white);
  border: 1px solid var(--hxo-line);
  border-top: 3px solid var(--hxo-gold);
}

.hxo-fact-card strong,
.hxo-step__number {
  display: block;
  margin-bottom: 8px;
  color: var(--hxo-gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hxo-fact-card p,
.hxo-step p,
.hxo-value p {
  margin-bottom: 0;
  color: var(--hxo-muted);
  font-size: 14px;
}

.hxo-media-frame {
  position: relative;
}

.hxo-media-frame::before {
  content: "";
  position: absolute;
  inset: -14px 22px 20px -14px;
  border: 1px solid rgba(139, 105, 20, 0.35);
}

.hxo-media-frame img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.hxo-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hxo-list li {
  position: relative;
  margin: 0 0 12px;
  padding-left: 24px;
}

.hxo-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--hxo-gold);
  font-weight: 900;
}

.hxo-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--hxo-line);
}

.hxo-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--hxo-white);
  font-size: 14px;
}

.hxo-table th,
.hxo-table td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--hxo-line);
  text-align: left;
  vertical-align: top;
}

.hxo-table th {
  width: 32%;
  background: var(--hxo-cream);
  color: var(--hxo-brown);
  font-weight: 800;
}

.hxo-table tr:last-child th,
.hxo-table tr:last-child td {
  border-bottom: 0;
}

.hxo-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hxo-gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  background: var(--hxo-cream);
}

.hxo-gallery--product img {
  object-fit: contain;
}

.hxo-faq {
  max-width: 850px;
  margin-inline: auto;
}

.hxo-faq details {
  border-bottom: 1px solid var(--hxo-line);
  background: var(--hxo-white);
}

.hxo-faq summary {
  position: relative;
  padding: 20px 44px 20px 0;
  color: var(--hxo-brown);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.hxo-faq summary::-webkit-details-marker {
  display: none;
}

.hxo-faq summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 18px;
  color: var(--hxo-gold);
  font-size: 22px;
}

.hxo-faq details[open] summary::after {
  content: "−";
}

.hxo-faq details p {
  padding: 0 44px 20px 0;
  color: var(--hxo-muted);
}

.hxo-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hxo-cta__copy {
  max-width: 720px;
}

.hxo-cta h2 {
  margin-bottom: 10px;
}

.hxo-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.hxo-breadcrumbs {
  margin-bottom: 18px;
  color: var(--hxo-muted);
  font-size: 12px;
}

.hxo-breadcrumbs a {
  color: var(--hxo-gold);
  text-decoration: none;
}

.hxo-page-hero {
  padding: 72px 0 62px;
  background: var(--hxo-cream);
}

.hxo-page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  align-items: center;
  gap: 65px;
}

.hxo-page-hero__image,
.hxo-page-hero__grid img {
  display: block;
  max-height: 390px;
  max-width: 100%;
  width: 100%;
  object-fit: contain;
}

.hxo-page-hero h1 {
  font-size: clamp(38px, 4.5vw, 58px);
}

.hxo-kicker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hxo-kicker {
  padding: 7px 10px;
  background: rgba(139, 105, 20, 0.1);
  border: 1px solid rgba(139, 105, 20, 0.2);
  color: var(--hxo-brown);
  font-size: 11px;
  font-weight: 800;
}

.hxo-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: start;
  gap: 50px;
}

.hxo-form-card {
  padding: 34px;
  background: var(--hxo-white);
  border: 1px solid var(--hxo-line);
  box-shadow: var(--hxo-shadow);
}

.hxo-form-card .wpforms-submit {
  background: var(--hxo-gold) !important;
  border-color: var(--hxo-gold) !important;
  color: var(--hxo-white) !important;
}

.hxo-contact-card {
  padding: 28px;
  margin-bottom: 18px;
  background: var(--hxo-cream);
  border-left: 3px solid var(--hxo-gold);
}

.hxo-contact-card h3 {
  font-size: 19px;
}

.hxo-contact-card a {
  color: var(--hxo-brown);
}

.hxo-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.hxo-blog-card {
  overflow: hidden;
  background: var(--hxo-white);
  border: 1px solid var(--hxo-line);
  border-radius: var(--hxo-radius);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.hxo-blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--hxo-shadow);
}

.hxo-blog-card__media {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--hxo-cream);
  color: var(--hxo-gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 19px;
  text-decoration: none;
}

.hxo-blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.hxo-blog-card:hover .hxo-blog-card__media img {
  transform: scale(1.025);
}

.hxo-blog-card__body {
  padding: 25px;
}

.hxo-blog-card time {
  color: var(--hxo-gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hxo-blog-card h2 {
  margin: 9px 0 12px;
  font-size: 26px;
}

.hxo-blog-card h2 a {
  color: var(--hxo-brown);
  text-decoration: none;
}

.hxo-blog-card p {
  color: var(--hxo-muted);
  font-size: 14px;
}

.hxo-blog-empty {
  max-width: 760px;
  padding: 46px;
  background: var(--hxo-cream);
  border-left: 4px solid var(--hxo-gold);
}

.hxo-pagination {
  margin-top: 44px;
}

.hxo-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hxo-pagination a,
.hxo-pagination span {
  min-width: 42px;
  min-height: 42px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hxo-line);
  color: var(--hxo-brown);
  text-decoration: none;
}

.hxo-pagination .current {
  background: var(--hxo-gold);
  border-color: var(--hxo-gold);
  color: var(--hxo-white);
}

.single-post #primary {
  width: min(calc(100% - 40px), 880px);
  margin-inline: auto;
  padding: 74px 0;
}

.single-post .entry-header {
  display: block !important;
  margin-bottom: 32px;
}

.single-post .entry-title {
  color: var(--hxo-brown);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.12;
}

.single-post .entry-meta {
  color: var(--hxo-muted);
  font-size: 13px;
}

.single-post .post-thumb img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.single-post .entry-content {
  color: var(--hxo-ink);
  font-size: 17px;
}

.single-post .entry-content h2,
.single-post .entry-content h3 {
  color: var(--hxo-brown);
  font-family: "Playfair Display", Georgia, serif;
}

.single-post .entry-content h2 {
  margin-top: 44px;
  font-size: 34px;
}

.single-post .entry-content h3 {
  margin-top: 34px;
  font-size: 25px;
}

.single-post .entry-content a {
  color: var(--hxo-gold);
}

.hxo-site-footer {
  background: #201208;
  color: rgba(255, 255, 255, 0.67);
}

.hxo-footer__inner {
  padding: 62px 0 36px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.1fr;
  gap: 44px;
}

.hxo-footer__brand {
  color: var(--hxo-white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 27px;
  font-weight: 700;
}

.hxo-site-footer h2 {
  margin: 2px 0 17px;
  color: var(--hxo-white);
  font-family: "Lato", Arial, sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hxo-site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hxo-site-footer li {
  margin-bottom: 9px;
}

.hxo-site-footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-decoration: none;
}

.hxo-site-footer a:hover {
  color: var(--hxo-white);
}

.hxo-footer__bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

.hxo-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 110;
  min-height: 48px;
  padding: 12px 17px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: #176b42;
  color: var(--hxo-white) !important;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none !important;
}

.hxo-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1020px) {
  .hxo-hero--photo {
    min-height: 610px;
  }

  .hxo-hero--photo::before {
    background: linear-gradient(
      90deg,
      rgba(245, 240, 232, 0.98) 0%,
      rgba(245, 240, 232, 0.91) 42%,
      rgba(245, 240, 232, 0.38) 72%,
      rgba(245, 240, 232, 0.12) 100%
    );
  }

  .hxo-hero__photo-copy {
    width: min(650px, 68%);
  }

  .hxo-menu-toggle {
    display: inline-flex;
  }

  .hxo-nav-cta {
    display: none;
  }

  .hxo-main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    background: var(--hxo-white);
    border-top: 1px solid var(--hxo-line);
    box-shadow: var(--hxo-shadow);
  }

  .hxo-main-nav.is-open {
    display: block;
  }

  .hxo-main-nav > ul {
    width: min(calc(100% - 40px), var(--hxo-shell));
    margin-inline: auto;
    padding: 12px 0 22px;
    display: block;
  }

  .hxo-main-nav > ul > li > a {
    padding: 12px 6px;
    border-bottom: 1px solid var(--hxo-line);
  }

  .hxo-main-nav .sub-menu {
    position: static;
    width: auto;
    padding: 7px 0 12px 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .hxo-main-nav .sub-menu a {
    padding: 7px;
  }

  .hxo-hero__grid,
  .hxo-split,
  .hxo-page-hero__grid,
  .hxo-form-layout {
    grid-template-columns: 1fr;
  }

  .hxo-hero__media {
    min-height: 390px;
  }

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

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

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

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

@media (max-width: 680px) {
  .hxo-hero--photo {
    min-height: 650px;
  }

  .hxo-hero--photo::before {
    background: rgba(245, 240, 232, 0.88);
  }

  .hxo-hero__background {
    object-position: 68% center;
  }

  .hxo-hero__photo-copy {
    width: 100%;
    padding: 58px 0 48px;
  }

  .hxo-hero__micro {
    max-width: 92%;
  }

  .hxo-topbar__inner {
    justify-content: center;
    text-align: center;
  }

  .hxo-topbar__contact {
    display: none;
  }

  .hxo-nav__inner {
    min-height: 68px;
  }

  .hxo-brand__name {
    font-size: 24px;
  }

  .hxo-brand__tag {
    font-size: 8px;
  }

  .hxo-section {
    padding: 62px 0;
  }

  .hxo-hero {
    padding: 58px 0 46px;
  }

  .hxo-page h1 {
    font-size: 39px;
  }

  .hxo-page h2 {
    font-size: 31px;
  }

  .hxo-lead {
    font-size: 16px;
  }

  .hxo-hero__media {
    min-height: 300px;
  }

  .hxo-hero__note {
    width: 180px;
    font-size: 11px;
  }

  .hxo-proof__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hxo-proof__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .hxo-grid--2,
  .hxo-grid--3,
  .hxo-grid--4,
  .hxo-gallery,
  .hxo-blog-grid,
  .hxo-footer__inner {
    grid-template-columns: 1fr;
  }

  .hxo-gallery img {
    height: auto;
    max-height: 440px;
  }

  .hxo-cta {
    display: block;
  }

  .hxo-cta .hxo-button {
    margin-top: 24px;
  }

  .hxo-main-nav .sub-menu {
    grid-template-columns: 1fr;
  }

  .hxo-form-card {
    padding: 24px 18px;
  }

  .hxo-blog-empty {
    padding: 32px 24px;
  }

  .single-post #primary {
    padding: 52px 0;
  }

  .hxo-whatsapp {
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hxo-card__image img,
  .hxo-button,
  .hxo-main-nav .sub-menu {
    transition: none;
  }
}
