:root {
  --anp-forest-deep: #123b32;
  --anp-forest: #245244;
  --anp-sage: #667e62;
  --anp-gold: #c99b45;
  --anp-gold-soft: #dec386;
  --anp-cream: #f8f5ec;
  --anp-cream-warm: #f1ede4;
  --anp-graphite: #3d3d3d;
  --anp-white: #fff;
  --anp-shadow: 0 18px 46px -26px rgba(18, 59, 50, 0.42);
  --anp-header-height: 96px;
  --anp-display: "Playfair Display", Georgia, serif;
  --anp-sans: Montserrat, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--anp-cream);
  color: var(--anp-graphite);
  font-family: var(--anp-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.anp-menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--anp-forest-deep);
  font-family: var(--anp-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.16;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.screen-reader-text,
.anp-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.anp-skip-link {
  position: fixed;
  z-index: 99999;
  top: -100px;
  left: 1rem;
  padding: 0.75rem 1rem;
  background: var(--anp-gold);
  color: var(--anp-forest-deep);
  font-weight: 600;
}

.anp-skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 3px solid var(--anp-gold);
  outline-offset: 3px;
}

.anp-container {
  width: min(100% - 3rem, 1200px);
  margin-inline: auto;
}

.anp-container--narrow {
  width: min(100% - 3rem, 790px);
}

.anp-section {
  padding-block: 7rem;
  background: var(--anp-cream);
}

.anp-section--compact-top {
  padding-top: 2.5rem;
}

.anp-section--white {
  background: var(--anp-white);
}

.anp-section--warm,
.anp-page-main--warm {
  background: var(--anp-cream-warm);
}

.anp-section--forest {
  background: var(--anp-forest);
  color: rgba(248, 245, 236, 0.9);
}

.anp-eyebrow {
  display: inline-block;
  color: var(--anp-gold);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  line-height: 1.5;
  text-transform: uppercase;
}

.anp-divider {
  display: block;
  width: 60px;
  height: 2px;
  margin: 1rem auto;
  background: var(--anp-gold);
}

.anp-divider--left {
  margin-right: 0;
  margin-left: 0;
}

.anp-title-xl {
  margin-top: 0.75rem;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
}

.anp-center {
  text-align: center;
}

.anp-icon {
  width: 1em;
  height: 1em;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.anp-icon-circle {
  display: inline-flex;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 155, 69, 0.62);
  border-radius: 999px;
  color: var(--anp-gold);
}

.anp-icon-circle .anp-icon {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.anp-icon-circle--large {
  width: 66px;
  height: 66px;
  margin-bottom: 2rem;
}

.anp-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.anp-button--gold {
  border-color: var(--anp-gold);
  background: var(--anp-gold);
  color: var(--anp-forest-deep);
}

.anp-button--gold:hover {
  border-color: var(--anp-gold-soft);
  background: var(--anp-gold-soft);
}

.anp-button--outline {
  border-color: var(--anp-gold);
  background: transparent;
  color: var(--anp-gold);
}

.anp-button--outline:hover {
  background: var(--anp-gold);
  color: var(--anp-forest-deep);
}

.anp-button--forest {
  border-color: var(--anp-forest);
  background: var(--anp-forest);
  color: var(--anp-cream);
}

.anp-button--forest:hover {
  border-color: var(--anp-gold);
  background: var(--anp-gold);
  color: var(--anp-forest-deep);
}

.anp-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--anp-forest-deep);
  font-family: var(--anp-display);
  font-size: 1.1rem;
  transition: color 180ms ease, gap 180ms ease;
}

.anp-text-link .anp-icon {
  width: 1rem;
  height: 1rem;
}

.anp-text-link:hover {
  gap: 0.75rem;
  color: var(--anp-gold);
}

.anp-text-link--gold {
  color: var(--anp-gold);
  font-family: var(--anp-sans);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.anp-section-heading h2 {
  margin-top: 1rem;
  font-size: clamp(2rem, 4.5vw, 3rem);
}

.anp-section-heading h3 {
  margin-top: 0.75rem;
  color: inherit;
  font-size: clamp(1.65rem, 4vw, 2rem);
}

.anp-section-heading p {
  margin-top: 1.5rem;
  color: rgba(61, 61, 61, 0.78);
  font-size: 1.05rem;
  line-height: 1.75;
}

.anp-section--forest .anp-section-heading h2 {
  color: var(--anp-gold);
}

.anp-section--forest .anp-section-heading h3 {
  color: var(--anp-cream);
}

.anp-section--forest .anp-section-heading p {
  color: rgba(248, 245, 236, 0.88);
  font-style: italic;
  font-weight: 300;
}

.anp-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

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

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

.anp-grid--narrow {
  width: min(100%, 1024px);
  margin-inline: auto;
}

/* Header */
.anp-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--anp-header-height);
  border-bottom: 1px solid transparent;
  background: var(--anp-forest-deep);
  color: var(--anp-cream);
  transition: box-shadow 240ms ease, border-color 240ms ease, background-color 240ms ease;
}

.admin-bar .anp-header {
  top: 32px;
}

.anp-header.is-scrolled {
  border-bottom-color: rgba(201, 155, 69, 0.2);
  background: rgba(18, 59, 50, 0.97);
  box-shadow: 0 6px 24px -12px rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(12px);
}

.anp-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 1.25rem;
}

.anp-logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.anp-logo--nav {
  height: 88px;
}

.anp-logo--nav .anp-logo__image {
  width: auto;
  height: 88px;
  object-fit: contain;
}

.anp-logo--footer .anp-logo__image {
  width: auto;
  height: 96px;
}

.anp-nav--desktop {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  justify-content: center;
}

.anp-menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.8vw, 1.75rem);
  list-style: none;
}

.anp-menu > li {
  position: relative;
}

.anp-menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding-block: 1rem;
  color: rgba(248, 245, 236, 0.88);
  font-size: clamp(0.66rem, 0.7vw, 0.75rem);
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 180ms ease;
}

.anp-menu > li > a:hover,
.anp-menu > li > a:focus-visible {
  color: var(--anp-gold);
}

.anp-menu > li > a .anp-icon {
  width: 0.8rem;
  height: 0.8rem;
}

.anp-menu > .menu-item-has-children > a::after {
  width: 0.34rem;
  height: 0.34rem;
  flex: 0 0 auto;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: translateY(-0.1rem) rotate(45deg);
  transform-origin: center;
  transition: transform 180ms ease;
}

.anp-menu > .menu-item-has-children:hover > a::after,
.anp-menu > .menu-item-has-children:focus-within > a::after {
  transform: translateY(0.1rem) rotate(225deg);
}

.anp-menu .sub-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% - 0.25rem);
  left: 50%;
  width: 264px;
  margin: 0;
  padding: 0.55rem 0;
  visibility: hidden;
  border: 1px solid rgba(201, 155, 69, 0.3);
  background: rgba(18, 59, 50, 0.99);
  box-shadow: 0 16px 40px -16px rgba(0, 0, 0, 0.65);
  list-style: none;
  opacity: 0;
  transform: translate(-50%, 7px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
}

.anp-menu li:hover > .sub-menu,
.anp-menu li:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.anp-menu .sub-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: rgba(248, 245, 236, 0.9);
  font-size: 0.84rem;
  line-height: 1.35;
  transition: color 180ms ease, background-color 180ms ease;
}

.anp-menu .sub-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--anp-gold);
}

.anp-header__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.75rem;
}

.anp-header__phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: rgba(248, 245, 236, 0.9);
  font-size: 0.82rem;
  white-space: nowrap;
}

.anp-header__phone .anp-icon {
  width: 1rem;
  height: 1rem;
  color: var(--anp-gold);
}

.anp-header__cta {
  padding-inline: 1rem;
  font-size: 0.66rem;
}

.anp-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--anp-cream);
}

.anp-menu-toggle .anp-icon {
  width: 24px;
  height: 24px;
}

.anp-menu-toggle__close {
  display: none;
}

.anp-menu-toggle[aria-expanded="true"] .anp-menu-toggle__open {
  display: none;
}

.anp-menu-toggle[aria-expanded="true"] .anp-menu-toggle__close {
  display: inline-flex;
}

.anp-nav--mobile {
  border-top: 1px solid rgba(201, 155, 69, 0.2);
  background: var(--anp-forest-deep);
}

.anp-nav--mobile[hidden] {
  display: none;
}

/* Hero */
.anp-hero {
  position: relative;
  height: 100svh;
  min-height: 720px;
  overflow: hidden;
  color: var(--anp-cream);
}

.anp-hero__image,
.anp-hero__overlay,
.anp-hero__fade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.anp-hero__image {
  object-fit: cover;
}

.anp-hero__overlay {
  background: linear-gradient(180deg, rgba(18, 59, 50, 0.86) 0%, rgba(18, 59, 50, 0.79) 56%, rgba(18, 59, 50, 0.58) 82%, rgba(18, 59, 50, 0.32) 100%);
}

.anp-hero__fade {
  top: auto;
  bottom: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent 0%, rgba(248, 245, 236, 0.08) 42%, rgba(248, 245, 236, 0.32) 78%, var(--anp-cream) 100%);
}

.anp-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: var(--anp-header-height);
  padding-bottom: 4rem;
  text-align: center;
  animation: anp-hero-in 1.05s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.anp-hero h1 {
  max-width: 960px;
  margin-top: 1.5rem;
  color: var(--anp-cream);
  font-size: clamp(2.6rem, 6.2vw, 4.8rem);
  line-height: 1.08;
}

.anp-hero h1 em {
  color: var(--anp-gold);
  font-style: normal;
}

.anp-hero__lead {
  max-width: 720px;
  margin-top: 1.5rem;
  color: rgba(248, 245, 236, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  font-weight: 300;
}

.anp-hero__locations {
  margin-top: 0.8rem;
  color: rgba(201, 155, 69, 0.94);
  font-size: clamp(0.72rem, 1.4vw, 0.9rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.anp-hero__body {
  max-width: 760px;
  margin-top: 1rem;
  color: rgba(248, 245, 236, 0.92);
  font-size: clamp(0.92rem, 1.8vw, 1.08rem);
  font-weight: 300;
  line-height: 1.72;
}

.anp-hero__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.75rem;
}

.anp-hero__buttons .anp-button {
  min-width: 185px;
  padding-block: 1rem;
  font-size: 0.8rem;
}

.anp-hero__scroll {
  position: absolute;
  z-index: 3;
  bottom: 2rem;
  left: 50%;
  color: rgba(248, 245, 236, 0.72);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

@keyframes anp-hero-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Homepage blocks */
.anp-focus {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgba(201, 155, 69, 0.15);
  background: var(--anp-cream);
}

.anp-focus__grid {
  display: grid;
  min-height: 190px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
  padding-block: 3.5rem;
}

.anp-focus__item {
  padding-inline: 0.5rem;
  text-align: center;
}

.anp-focus__item h2 {
  margin-top: 1rem;
  font-family: var(--anp-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.anp-focus__item p {
  max-width: 225px;
  margin: 0.5rem auto 0;
  color: rgba(61, 61, 61, 0.76);
  font-size: 0.86rem;
  line-height: 1.6;
}

.anp-about-preview {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(3rem, 7vw, 5rem);
  align-items: center;
}

.anp-framed-image {
  position: relative;
  max-width: 390px;
  margin-inline: auto;
}

.anp-framed-image::before {
  position: absolute;
  z-index: 0;
  top: -1rem;
  right: 1rem;
  bottom: 1rem;
  left: -1rem;
  border: 1px solid rgba(201, 155, 69, 0.5);
  content: "";
}

.anp-framed-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
}

.anp-gold-copy {
  margin-top: 1rem;
  color: var(--anp-gold);
  font-size: 0.94rem;
  letter-spacing: 0.03em;
}

.anp-about-preview__tagline {
  color: var(--anp-sage);
  font-family: var(--anp-display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-style: italic;
  line-height: 1.35;
}

.anp-about-preview > div:last-child > p:not(.anp-gold-copy, .anp-about-preview__tagline) {
  margin-top: 1.35rem;
  color: rgba(61, 61, 61, 0.84);
  font-size: 1.02rem;
  line-height: 1.8;
}

.anp-about-preview .anp-text-link {
  margin-top: 2.25rem;
}

.anp-tile {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid rgba(201, 155, 69, 0.34);
  background: var(--anp-forest-deep);
  color: rgba(248, 245, 236, 0.82);
  isolation: isolate;
  transition: transform 550ms cubic-bezier(0.22, 0.61, 0.36, 1), border-color 300ms ease, box-shadow 550ms ease;
}

.anp-tile::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--anp-white);
  content: "";
  opacity: 0;
  transition: opacity 550ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.anp-tile:hover {
  border-color: var(--anp-gold);
  box-shadow: var(--anp-shadow);
  transform: translateY(-3px);
}

.anp-tile:hover::before {
  opacity: 1;
}

.anp-tile h3 {
  margin-top: 1.5rem;
  color: var(--anp-cream);
  font-size: 1.23rem;
  line-height: 1.3;
  transition: color 500ms ease;
}

.anp-tile p {
  margin-top: 0.75rem;
  color: rgba(248, 245, 236, 0.82);
  font-size: 0.88rem;
  line-height: 1.72;
  transition: color 500ms ease;
}

.anp-tile:hover h3 {
  color: var(--anp-forest-deep);
}

.anp-tile:hover p {
  color: rgba(61, 61, 61, 0.78);
}

.anp-tile__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.anp-tile__icon {
  width: 40px;
  height: 40px;
  color: var(--anp-gold);
  stroke-width: 1.4;
}

.anp-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.27rem 0.55rem;
  border: 1px solid rgba(201, 155, 69, 0.5);
  color: var(--anp-gold);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  line-height: 1.3;
  text-transform: uppercase;
}

.anp-tile--link > a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 1.5rem;
  color: var(--anp-gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.anp-tile--link > a .anp-icon {
  width: 0.9rem;
  height: 0.9rem;
}

.anp-help-card p {
  margin-top: 1.5rem;
  font-size: 1.02rem;
}

.anp-help-summary {
  width: min(100%, 720px);
  margin: 3.5rem auto 0;
  text-align: center;
}

.anp-help-summary p {
  color: rgba(61, 61, 61, 0.78);
  font-size: 1.08rem;
  line-height: 1.8;
}

.anp-help-summary p + p {
  margin-top: 1rem;
  color: var(--anp-sage);
  font-family: var(--anp-display);
  font-style: italic;
}

.anp-help-summary a {
  color: var(--anp-gold);
  font-family: var(--anp-sans);
  font-style: normal;
}

.anp-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 5rem;
  list-style: none;
}

.anp-process::before {
  position: absolute;
  top: 32px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: rgba(201, 155, 69, 0.4);
  content: "";
}

.anp-process li {
  position: relative;
  text-align: center;
}

.anp-process__number {
  position: relative;
  z-index: 1;
  display: flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  border: 1px solid var(--anp-gold);
  border-radius: 999px;
  background: var(--anp-cream);
  box-shadow: 0 0 0 6px var(--anp-cream);
  color: var(--anp-forest-deep);
  font-family: var(--anp-display);
  font-size: 1.2rem;
}

.anp-process h3 {
  margin-top: 1.5rem;
  font-size: 1.18rem;
}

.anp-process p {
  max-width: 190px;
  margin: 0.55rem auto 0;
  color: rgba(61, 61, 61, 0.76);
  font-size: 0.84rem;
  line-height: 1.65;
}

.anp-materials {
  margin-top: 5rem;
}

.anp-material-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(201, 155, 69, 0.34);
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 300ms ease;
}

.anp-material-card:hover {
  border-color: var(--anp-gold);
}

.anp-material-card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.anp-material-card__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(36, 82, 68, 0.82) 100%);
  content: "";
}

.anp-material-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) sepia(10%);
  transition: transform 650ms ease;
}

.anp-material-card:hover img {
  transform: scale(1.05);
}

.anp-material-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 2rem;
}

.anp-material-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--anp-gold);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.anp-material-card__tag .anp-icon {
  width: 0.9rem;
  height: 0.9rem;
}

.anp-material-card h3 {
  margin-top: 1rem;
  color: var(--anp-cream);
  font-size: 1.25rem;
}

.anp-material-card p {
  margin-top: 0.75rem;
  color: rgba(248, 245, 236, 0.82);
  font-size: 0.87rem;
  line-height: 1.7;
}

.anp-toolbox {
  padding-top: 6rem;
  scroll-margin-top: calc(var(--anp-header-height) + 20px);
}

.anp-product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid rgba(201, 155, 69, 0.34);
  background: rgba(255, 255, 255, 0.035);
}

.anp-product-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.anp-product-card h4 {
  margin-top: 1.5rem;
  color: var(--anp-cream);
  font-size: 1.25rem;
}

.anp-product-card p {
  margin-top: 0.75rem;
  color: rgba(248, 245, 236, 0.82);
  font-size: 0.88rem;
  line-height: 1.7;
}

.anp-newsletter {
  width: min(100%, 900px);
  margin: 4rem auto 0;
  padding: 2.5rem;
  border: 1px solid rgba(201, 155, 69, 0.42);
  background: rgba(255, 255, 255, 0.04);
}

.anp-newsletter__heading {
  width: min(100%, 620px);
  margin-inline: auto;
  text-align: center;
}

.anp-newsletter__heading .anp-icon-circle {
  width: 50px;
  height: 50px;
}

.anp-newsletter__heading .anp-icon {
  width: 22px;
  height: 22px;
}

.anp-newsletter h4 {
  margin-top: 1rem;
  color: var(--anp-cream);
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.anp-newsletter__heading p {
  margin-top: 0.75rem;
  color: rgba(248, 245, 236, 0.82);
  font-size: 0.88rem;
  line-height: 1.7;
}

.anp-newsletter form {
  width: min(100%, 570px);
  margin: 2rem auto 0;
}

.anp-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.anp-form-grid__full {
  grid-column: 1 / -1;
}

.anp-newsletter input[type="text"],
.anp-newsletter input[type="email"] {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(201, 155, 69, 0.42);
  border-radius: 0;
  outline: none;
  background: rgba(248, 245, 236, 0.05);
  color: var(--anp-cream);
}

.anp-newsletter input::placeholder {
  color: rgba(248, 245, 236, 0.66);
}

.anp-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.25rem;
  cursor: pointer;
  font-size: 0.82rem;
  line-height: 1.65;
}

.anp-check input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 0.25rem;
  accent-color: var(--anp-gold);
}

.anp-newsletter .anp-check {
  color: rgba(248, 245, 236, 0.82);
}

.anp-check a {
  color: var(--anp-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.anp-newsletter .anp-button {
  min-width: 240px;
  margin-top: 1.25rem;
}

.anp-form-feedback {
  margin-top: 1.25rem;
  padding: 0.8rem 1rem;
  border: 1px solid;
  font-size: 0.85rem;
  line-height: 1.55;
}

.anp-form-feedback.is-success {
  border-color: rgba(201, 155, 69, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
}

.anp-form-feedback.is-error {
  border-color: rgba(248, 113, 113, 0.5);
  background: rgba(127, 29, 29, 0.3);
  color: #fee2e2;
}

.anp-academy-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4rem;
  padding: 2.5rem;
  border: 1px solid rgba(201, 155, 69, 0.42);
  transition: border-color 220ms ease;
}

.anp-academy-link:hover {
  border-color: var(--anp-gold);
}

.anp-academy-link > span {
  display: flex;
  flex-direction: column;
}

.anp-academy-link small {
  color: var(--anp-gold);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.anp-academy-link strong {
  margin-top: 0.75rem;
  color: var(--anp-cream);
  font-family: var(--anp-display);
  font-size: 1.5rem;
  font-weight: 500;
}

.anp-academy-link span span {
  margin-top: 0.45rem;
  color: rgba(248, 245, 236, 0.8);
  font-size: 0.87rem;
}

.anp-academy-link span span em {
  color: var(--anp-gold);
  font-style: normal;
}

.anp-academy-link span small:last-child {
  margin-top: 1rem;
  color: rgba(248, 245, 236, 0.66);
}

.anp-academy-link b {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  background: var(--anp-gold);
  color: var(--anp-forest-deep);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.anp-academy-link b .anp-icon {
  width: 0.9rem;
  height: 0.9rem;
}

.anp-home-post {
  position: relative;
  min-height: 100%;
  border: 1px solid rgba(201, 155, 69, 0.32);
  background: rgba(248, 245, 236, 0.4);
  transition: border-color 180ms ease;
}

.anp-home-post::before,
.anp-home-post::after,
.anp-article-card::before,
.anp-article-card::after {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--anp-gold);
  content: "";
}

.anp-home-post::before,
.anp-article-card::before {
  width: 32px;
  height: 1px;
}

.anp-home-post::after,
.anp-article-card::after {
  width: 1px;
  height: 32px;
}

.anp-home-post:hover {
  border-color: var(--anp-gold);
}

.anp-home-post > a {
  display: block;
  height: 100%;
  padding: 2rem;
}

.anp-home-post time {
  color: var(--anp-gold);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.anp-reading-time {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.anp-home-post .anp-reading-time {
  margin-top: 0.5rem;
  color: rgba(61, 61, 61, 0.67);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.anp-reading-time .anp-icon {
  width: 0.9rem;
  height: 0.9rem;
  color: var(--anp-gold);
}

.anp-home-post h3 {
  margin-top: 0.8rem;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  line-height: 1.25;
  transition: color 180ms ease;
}

.anp-home-post:hover h3 {
  color: var(--anp-gold);
}

.anp-home-post p {
  margin-top: 0.75rem;
  color: rgba(61, 61, 61, 0.76);
  font-size: 0.86rem;
  line-height: 1.7;
}

.anp-categories {
  margin-top: 3rem;
  text-align: center;
}

.anp-categories h3 {
  font-family: var(--anp-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.anp-categories > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.anp-categories > div a {
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(201, 155, 69, 0.42);
  color: rgba(61, 61, 61, 0.76);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}

.anp-categories > div a:hover {
  border-color: var(--anp-gold);
  color: var(--anp-gold);
}

.anp-categories + .anp-center {
  margin-top: 3rem;
}

.anp-quote {
  overflow: hidden;
  text-align: center;
}

.anp-quote .anp-container > span:first-child {
  display: block;
  color: var(--anp-gold);
  font-family: var(--anp-display);
  font-size: 5rem;
  line-height: 0.8;
}

.anp-quote blockquote {
  width: min(100%, 930px);
  margin: 1rem auto 0;
  color: var(--anp-cream);
  font-family: var(--anp-display);
  font-size: clamp(1.65rem, 4.5vw, 3rem);
  font-style: italic;
  line-height: 1.25;
}

.anp-quote blockquote em {
  color: var(--anp-gold-soft);
}

.anp-quote .anp-divider {
  margin-top: 2.5rem;
}

.anp-quote p {
  margin-top: 1rem;
  color: rgba(201, 155, 69, 0.92);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.anp-testimonials {
  width: min(100%, 780px);
  margin: 4rem auto 0;
}

.anp-testimonial-frame {
  position: relative;
  min-height: 360px;
  padding: 3.5rem;
  border: 1px solid rgba(201, 155, 69, 0.34);
  background: var(--anp-white);
  text-align: center;
}

.anp-testimonial-frame::before,
.anp-testimonial-frame::after {
  position: absolute;
  width: 40px;
  height: 40px;
  content: "";
}

.anp-testimonial-frame::before {
  top: -1px;
  left: -1px;
  border-top: 1px solid var(--anp-gold);
  border-left: 1px solid var(--anp-gold);
}

.anp-testimonial-frame::after {
  right: -1px;
  bottom: -1px;
  border-right: 1px solid var(--anp-gold);
  border-bottom: 1px solid var(--anp-gold);
}

.anp-stars {
  display: flex;
  gap: 0.25rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--anp-gold);
}

.anp-stars .anp-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke-width: 0;
}

.anp-testimonial {
  margin: 0;
}

.anp-testimonial[hidden] {
  display: none;
}

.anp-testimonial blockquote {
  color: var(--anp-forest-deep);
  font-family: var(--anp-display);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.8;
}

.anp-testimonial figcaption {
  margin-top: 2rem;
  color: var(--anp-gold);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.anp-testimonial-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
}

.anp-testimonial-controls > button {
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(201, 155, 69, 0.5);
  background: transparent;
  color: var(--anp-gold);
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

.anp-testimonial-controls > button:hover {
  background: var(--anp-gold);
  color: var(--anp-forest-deep);
}

.anp-testimonial-controls .anp-icon {
  width: 18px;
  height: 18px;
}

.anp-testimonial-controls > div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.anp-testimonial-controls > div button {
  width: 8px;
  height: 6px;
  padding: 0;
  border: 0;
  background: rgba(201, 155, 69, 0.35);
  cursor: pointer;
  transition: width 180ms ease, background-color 180ms ease;
}

.anp-testimonial-controls > div button.is-active {
  width: 32px;
  background: var(--anp-gold);
}

.anp-faq {
  margin-top: 3.5rem;
  padding-inline: 2rem;
  border: 1px solid rgba(201, 155, 69, 0.32);
  background: var(--anp-white);
}

.anp-faq details {
  border-bottom: 1px solid rgba(201, 155, 69, 0.25);
}

.anp-faq details:last-child {
  border-bottom: 0;
}

.anp-faq summary {
  position: relative;
  padding: 1.5rem 2.25rem 1.5rem 0;
  color: var(--anp-forest-deep);
  cursor: pointer;
  font-family: var(--anp-display);
  font-size: 1.15rem;
  line-height: 1.4;
  list-style: none;
}

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

.anp-faq summary span::before,
.anp-faq summary span::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 15px;
  height: 1px;
  background: var(--anp-gold);
  content: "";
}

.anp-faq summary span::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.anp-faq details[open] summary span::after {
  transform: rotate(0);
}

.anp-faq details p {
  padding: 0 2rem 1.5rem 0;
  color: rgba(61, 61, 61, 0.78);
  line-height: 1.75;
}

.anp-location > div {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.anp-location .anp-icon-circle {
  width: 50px;
  height: 50px;
}

.anp-location .anp-icon-circle .anp-icon {
  width: 20px;
  height: 20px;
}

.anp-location h3 {
  margin-top: 0;
  font-size: 1.35rem;
}

.anp-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3rem, 7vw, 5rem);
  align-items: start;
}

.anp-contact__lead {
  margin-top: 1.5rem;
  color: rgba(61, 61, 61, 0.82);
  font-size: 1.08rem;
  line-height: 1.75;
}

.anp-contact__quote {
  margin-top: 1rem;
  color: rgba(61, 61, 61, 0.75);
  font-style: italic;
}

.anp-contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 2.25rem;
  list-style: none;
}

.anp-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.anp-contact-list > li > .anp-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 0.25rem;
  color: var(--anp-gold);
}

.anp-contact-list li span {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.anp-contact-list li a {
  transition: color 180ms ease;
}

.anp-contact-list li a:hover {
  color: var(--anp-forest-deep);
}

.anp-contact-list li span a + a,
.anp-contact-list small {
  color: rgba(61, 61, 61, 0.7);
  font-size: 0.82rem;
}

.anp-contact-form {
  display: grid;
  gap: 1.5rem;
  padding: 2.5rem;
  border: 1px solid rgba(201, 155, 69, 0.34);
  background: var(--anp-white);
}

.anp-contact-form h3 {
  font-size: 1.3rem;
}

.anp-contact-form > div:first-child p {
  margin-top: 0.3rem;
  color: rgba(61, 61, 61, 0.72);
  font-size: 0.84rem;
}

.anp-contact-form label:not(.anp-check) {
  display: block;
  color: var(--anp-forest-deep);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.anp-contact-form label small {
  color: rgba(61, 61, 61, 0.62);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.anp-contact-form input[type="text"],
.anp-contact-form input[type="email"],
.anp-contact-form input[type="tel"] {
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.6rem 0;
  border: 0;
  border-bottom: 1px solid rgba(201, 155, 69, 0.44);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--anp-graphite);
  letter-spacing: 0;
  text-transform: none;
}

.anp-contact-form textarea {
  width: 100%;
  min-height: 110px;
  margin-top: 0.45rem;
  padding: 0.75rem;
  resize: vertical;
  border: 1px solid rgba(201, 155, 69, 0.44);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--anp-graphite);
  letter-spacing: 0;
  text-transform: none;
}

.anp-contact-form input:focus,
.anp-contact-form textarea:focus,
.anp-newsletter input:focus {
  border-color: var(--anp-gold);
}

.anp-contact-form .anp-check {
  margin-top: 0;
  color: rgba(61, 61, 61, 0.74);
  font-size: 0.8rem;
  letter-spacing: 0;
  text-transform: none;
}

.anp-contact-form__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.anp-contact-form__actions > a {
  color: rgba(61, 61, 61, 0.7);
  font-size: 0.78rem;
}

.anp-contact-form__actions strong {
  color: var(--anp-gold);
}

/* Subpages and blog */
.anp-page-main {
  min-height: 70vh;
  padding: calc(var(--anp-header-height) + 2rem) 0 7rem;
  background: var(--anp-cream);
}

.anp-page-main--cream {
  background: var(--anp-cream);
}

.anp-breadcrumbs {
  color: rgba(61, 61, 61, 0.66);
  font-size: 0.75rem;
}

.anp-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  list-style: none;
}

.anp-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.anp-breadcrumbs li:not(:last-child)::after {
  color: rgba(201, 155, 69, 0.75);
  content: "/";
}

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

.anp-page-header {
  width: min(100%, 790px);
  margin-top: 2rem;
}

.anp-page-header h1 {
  margin-top: 0.75rem;
  font-size: clamp(2.6rem, 6vw, 4rem);
}

.anp-page-header > p {
  margin-top: 1rem;
  color: rgba(61, 61, 61, 0.76);
  font-size: 1.08rem;
  line-height: 1.75;
}

.anp-blog-categories {
  margin-top: 4rem;
}

.anp-blog-categories > h2,
.anp-post-list > h2 {
  font-family: var(--anp-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.anp-blog-categories .anp-grid {
  margin-top: 1.5rem;
}

.anp-blog-categories .anp-grid > a {
  display: block;
  min-height: 100%;
  padding: 1.5rem;
  border: 1px solid rgba(201, 155, 69, 0.34);
  transition: border-color 180ms ease;
}

.anp-blog-categories .anp-grid > a:hover {
  border-color: var(--anp-gold);
}

.anp-blog-categories h3 {
  font-size: 1.2rem;
  transition: color 180ms ease;
}

.anp-blog-categories a:hover h3 {
  color: var(--anp-gold);
}

.anp-blog-categories a > span {
  display: block;
  margin-top: 0.5rem;
  color: var(--anp-gold);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.anp-blog-categories p {
  margin-top: 0.75rem;
  color: rgba(61, 61, 61, 0.72);
  font-size: 0.84rem;
  line-height: 1.7;
}

.anp-post-list {
  margin-top: 5rem;
}

.anp-post-list > .anp-grid {
  margin-top: 2rem;
}

.anp-article-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid rgba(201, 155, 69, 0.34);
  background: rgba(248, 245, 236, 0.4);
  transition: border-color 180ms ease;
}

.anp-article-card:hover {
  border-color: var(--anp-gold);
}

.anp-article-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  color: var(--anp-gold);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.anp-article-card h2 {
  margin-top: 1rem;
  font-size: 1.45rem;
}

.anp-article-card h2 a {
  transition: color 180ms ease;
}

.anp-article-card h2 a:hover {
  color: var(--anp-gold);
}

.anp-article-card > p {
  margin-top: 0.75rem;
  color: rgba(61, 61, 61, 0.76);
  font-size: 0.86rem;
  line-height: 1.7;
}

.anp-article-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

.anp-article-card__footer span,
.anp-article-card__footer a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(61, 61, 61, 0.66);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.anp-article-card__footer a {
  color: var(--anp-gold);
}

.anp-article-card__footer .anp-icon {
  width: 0.9rem;
  height: 0.9rem;
}

.navigation.pagination {
  margin-top: 3rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.page-numbers {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(201, 155, 69, 0.34);
  color: var(--anp-forest-deep);
  font-size: 0.75rem;
}

.page-numbers.current,
.page-numbers:hover {
  border-color: var(--anp-gold);
  background: var(--anp-gold);
  color: var(--anp-forest-deep);
}

.anp-article {
  width: min(100% - 3rem, 790px);
}

.anp-article__header {
  margin-top: 2rem;
}

.anp-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  color: var(--anp-gold);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.anp-article__meta .anp-reading-time {
  color: rgba(61, 61, 61, 0.66);
}

.anp-article__header h1 {
  margin-top: 1.5rem;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.anp-article__header > p {
  margin-top: 1.5rem;
  color: rgba(61, 61, 61, 0.76);
  font-size: 1.08rem;
  line-height: 1.75;
}

.anp-article__image {
  width: 100%;
  max-height: 420px;
  margin-top: 2rem;
  object-fit: cover;
}

.anp-prose {
  color: rgba(61, 61, 61, 0.86);
  line-height: 1.8;
}

.anp-prose > * + * {
  margin-top: 1.25rem;
}

.anp-prose h2 {
  margin-top: 2.5rem;
  font-size: clamp(1.6rem, 3vw, 2rem);
}

.anp-prose h3 {
  margin-top: 2rem;
  font-size: 1.4rem;
}

.anp-prose a {
  color: var(--anp-forest);
  text-decoration: underline;
  text-decoration-color: rgba(201, 155, 69, 0.65);
  text-underline-offset: 3px;
}

.anp-prose ul,
.anp-prose ol {
  padding-left: 1.4rem;
}

.anp-prose li + li {
  margin-top: 0.5rem;
}

.anp-prose blockquote {
  margin-right: 0;
  margin-left: 0;
  padding: 1rem 1.5rem;
  border-left: 2px solid var(--anp-gold);
  background: rgba(255, 255, 255, 0.45);
  color: var(--anp-forest-deep);
  font-family: var(--anp-display);
  font-size: 1.15rem;
  font-style: italic;
}

.anp-article__content {
  margin-top: 3rem;
}

.anp-article__footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 155, 69, 0.25);
  color: rgba(61, 61, 61, 0.68);
  font-size: 0.85rem;
}

.anp-article__footer span {
  color: var(--anp-forest);
}

.anp-article__footer a {
  display: inline-block;
  margin-top: 1.25rem;
  color: var(--anp-gold);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.anp-generic-page {
  margin-top: 2.5rem;
}

.anp-generic-page > h1 {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
}

.anp-privacy {
  margin-top: 3rem;
}

.anp-privacy > p:first-child {
  color: rgba(61, 61, 61, 0.64);
  font-size: 0.85rem;
}

.anp-privacy h2 {
  scroll-margin-top: calc(var(--anp-header-height) + 20px);
}

.anp-offer-page {
  margin-top: 2rem;
}

.anp-offer-page .anp-page-header > .anp-eyebrow {
  display: block;
}

.anp-check-list {
  display: grid;
  gap: 0.8rem;
  width: min(100%, 790px);
  margin-top: 2.5rem;
  list-style: none;
}

.anp-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: rgba(61, 61, 61, 0.84);
}

.anp-check-list li > span {
  display: inline-flex;
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
  border: 1px solid var(--anp-gold);
  border-radius: 999px;
  color: var(--anp-gold);
}

.anp-check-list .anp-icon {
  width: 12px;
  height: 12px;
  stroke-width: 3;
}

.anp-offer-page__sections {
  display: grid;
  gap: 3rem;
  width: min(100%, 790px);
  margin-top: 4rem;
}

.anp-offer-page__sections h2 {
  font-size: 1.7rem;
}

.anp-offer-page__sections p {
  margin-top: 1rem;
  color: rgba(61, 61, 61, 0.8);
  line-height: 1.8;
}

.anp-offer-cta {
  width: min(100%, 790px);
  margin-top: 4rem;
  padding: 2.5rem;
  border: 1px solid rgba(201, 155, 69, 0.34);
  background: var(--anp-cream-warm);
  text-align: center;
}

.anp-offer-cta p {
  max-width: 600px;
  margin-inline: auto;
  color: rgba(61, 61, 61, 0.76);
  line-height: 1.75;
}

.anp-offer-cta .anp-button {
  margin-top: 1.5rem;
}

.anp-other-offers {
  margin-top: 5rem;
}

.anp-other-offers > h2 {
  font-family: var(--anp-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-align: center;
  text-transform: uppercase;
}

.anp-other-offers ul {
  margin-top: 2rem;
  list-style: none;
}

.anp-other-offers a {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 1.4rem;
  border: 1px solid rgba(201, 155, 69, 0.34);
  transition: border-color 180ms ease;
}

.anp-other-offers a:hover {
  border-color: var(--anp-gold);
}

.anp-other-offers strong {
  color: var(--anp-forest-deep);
  font-family: var(--anp-display);
  font-size: 1.1rem;
  font-weight: 500;
}

.anp-other-offers span {
  margin-top: 0.5rem;
  color: rgba(61, 61, 61, 0.7);
  font-size: 0.8rem;
  line-height: 1.65;
}

/* About page */
.anp-about-page__intro {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(3rem, 7vw, 5rem);
  align-items: start;
  margin-top: 3rem;
}

.anp-framed-image--sticky {
  position: sticky;
  top: calc(var(--anp-header-height) + 2rem);
}

.anp-about-page__intro h1 {
  margin-top: 0.75rem;
  font-size: clamp(2.8rem, 6vw, 4rem);
}

.anp-about-page__role {
  margin-top: 1rem;
  color: var(--anp-gold);
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.anp-about-page__lead {
  color: rgba(61, 61, 61, 0.84);
  font-size: 1.1rem;
  line-height: 1.78;
}

.anp-about-copy {
  margin-top: 4rem;
}

.anp-about-copy h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
}

.anp-about-copy p {
  margin-top: 1.25rem;
  color: rgba(61, 61, 61, 0.84);
  font-size: 1.02rem;
  line-height: 1.8;
}

.anp-about-why {
  margin-top: 5rem;
}

.anp-about-why h2 {
  margin-top: 1rem;
  color: var(--anp-cream);
  font-size: clamp(2rem, 4vw, 2.7rem);
}

.anp-about-why p {
  margin-top: 1.25rem;
  color: rgba(248, 245, 236, 0.9);
  font-size: 1.04rem;
  line-height: 1.8;
}

.anp-about-page__below {
  padding-top: 6rem;
}

.anp-story__list {
  display: grid;
  gap: 2.5rem;
  width: min(100%, 790px);
  margin: 3rem auto 0;
}

.anp-story__list article {
  position: relative;
  padding-left: 2rem;
  border-left: 1px solid rgba(201, 155, 69, 0.34);
}

.anp-story__list article > span {
  position: absolute;
  top: 0;
  left: -13px;
  display: flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--anp-gold);
  border-radius: 999px;
  background: var(--anp-white);
  color: var(--anp-gold);
  font-size: 0.62rem;
}

.anp-story__list h3 {
  font-size: 1.25rem;
}

.anp-story__list p {
  margin-top: 0.75rem;
  color: rgba(61, 61, 61, 0.8);
  line-height: 1.75;
}

.anp-about-work,
.anp-credentials {
  margin-top: 6rem;
}

.anp-about-work > h2 {
  font-family: var(--anp-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-align: center;
  text-transform: uppercase;
}

.anp-about-work .anp-check-list {
  margin-right: auto;
  margin-left: auto;
}

.anp-credentials__title {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.anp-credentials__title > span {
  height: 1px;
  flex: 1;
  background: rgba(201, 155, 69, 0.32);
}

.anp-credentials__title h2 {
  flex: 0 1 auto;
  font-family: var(--anp-sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-align: center;
  text-transform: uppercase;
}

.anp-credentials ul {
  list-style: none;
}

.anp-credentials .anp-tile h3 {
  margin-top: 1.25rem;
}

.anp-about-contact {
  margin: 6rem auto 0;
  text-align: center;
}

.anp-about-contact p {
  color: rgba(61, 61, 61, 0.72);
}

.anp-about-contact .anp-button {
  margin-top: 1.5rem;
}

.anp-generic-list > h1 {
  margin-bottom: 2rem;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
}

.anp-generic-list .anp-article-card + .anp-article-card {
  margin-top: 1.5rem;
}

.anp-not-found {
  display: flex;
  min-height: 75vh;
  align-items: center;
  text-align: center;
}

.anp-not-found h1 {
  margin-top: 1rem;
  font-size: clamp(2.5rem, 6vw, 4rem);
}

.anp-not-found p {
  margin-top: 1rem;
  color: rgba(61, 61, 61, 0.72);
}

.anp-not-found .anp-button {
  margin-top: 2rem;
}

/* Footer and floating elements */
.anp-footer {
  padding: 4rem 0 2.5rem;
  background: var(--anp-forest-deep);
  color: var(--anp-cream);
}

.anp-footer__top {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: start;
}

.anp-footer__tagline {
  margin-top: 1.5rem;
  color: rgba(248, 245, 236, 0.82);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  line-height: 1.8;
  text-transform: uppercase;
}

.anp-footer__social {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.anp-footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(248, 245, 236, 0.82);
  font-size: 0.8rem;
  transition: color 180ms ease;
}

.anp-footer__social a:hover {
  color: var(--anp-gold);
}

.anp-footer__social .anp-icon {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}

.anp-footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.5rem;
  justify-content: flex-end;
  list-style: none;
}

.anp-footer-menu a {
  color: rgba(248, 245, 236, 0.82);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.anp-footer-menu a:hover {
  color: var(--anp-gold);
}

.anp-footer__bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(248, 245, 236, 0.1);
  color: rgba(248, 245, 236, 0.68);
  font-size: 0.72rem;
}

.anp-footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.anp-footer__legal > span:last-child {
  display: flex;
  gap: 1.5rem;
}

.anp-footer__bottom > p {
  margin-top: 1rem;
}

.anp-footer a:hover {
  color: var(--anp-gold);
}

.anp-quick-contact {
  position: fixed;
  z-index: 900;
  right: 1.5rem;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.anp-quick-contact a {
  display: flex;
  height: 56px;
  align-items: center;
  overflow: hidden;
  border: 1px solid;
  border-radius: 999px;
  box-shadow: 0 8px 32px -8px rgba(0, 0, 0, 0.55);
}

.anp-quick-contact__phone {
  width: 56px;
  border-color: rgba(201, 155, 69, 0.55);
  background: var(--anp-forest-deep);
  color: var(--anp-cream);
  transition: width 280ms ease;
}

.anp-quick-contact__phone:hover {
  width: 200px;
}

.anp-quick-contact__phone > span {
  display: flex;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: var(--anp-gold);
}

.anp-quick-contact__phone .anp-icon {
  width: 22px;
  height: 22px;
}

.anp-quick-contact__phone strong {
  padding-right: 1.25rem;
  opacity: 0;
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
  transition: opacity 160ms ease 80ms;
}

.anp-quick-contact__phone:hover strong {
  opacity: 1;
}

.anp-quick-contact__whatsapp {
  width: 56px;
  justify-content: center;
  border-color: #25d366 !important;
  background: #25d366;
  color: #fff;
}

.anp-quick-contact__whatsapp .anp-icon {
  width: 27px;
  height: 27px;
}

.anp-sticky-cta {
  position: fixed;
  z-index: 850;
  bottom: 1.25rem;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.8rem 1.5rem;
  border: 1px solid rgba(201, 155, 69, 0.52);
  background: rgba(18, 59, 50, 0.97);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.6);
  color: rgba(248, 245, 236, 0.9);
  transform: translateX(-50%);
  backdrop-filter: blur(12px);
}

.anp-sticky-cta[hidden] {
  display: none;
}

.anp-sticky-cta p {
  font-size: 0.82rem;
  white-space: nowrap;
}

.anp-sticky-cta p span {
  color: var(--anp-gold);
}

.anp-sticky-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: var(--anp-gold);
  color: var(--anp-forest-deep);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.anp-sticky-cta .anp-icon {
  width: 0.95rem;
  height: 0.95rem;
}

.anp-cookie {
  position: fixed;
  z-index: 1200;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(201, 155, 69, 0.34);
  background: rgba(18, 59, 50, 0.99);
  box-shadow: 0 -8px 32px -8px rgba(0, 0, 0, 0.45);
  color: var(--anp-cream);
  backdrop-filter: blur(12px);
}

.anp-cookie[hidden] {
  display: none;
}

.anp-cookie__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1rem;
}

.anp-cookie strong {
  font-size: 0.88rem;
}

.anp-cookie p {
  margin-top: 0.25rem;
  color: rgba(248, 245, 236, 0.86);
  font-size: 0.78rem;
  line-height: 1.6;
}

.anp-cookie p a {
  color: var(--anp-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Scroll reveal */
.anp-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 850ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 850ms cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}

.anp-reveal--left {
  transform: translateX(-36px);
}

.anp-reveal--right {
  transform: translateX(36px);
}

.anp-reveal--scale {
  transform: scale(0.96);
}

.anp-reveal.is-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Responsive */
@media (min-width: 1450px) {
  .anp-header__phone {
    display: inline-flex;
  }
}

@media (max-width: 1120px) {
  .anp-nav--desktop {
    display: none;
  }

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

  .anp-header__actions {
    margin-left: auto;
  }

  .anp-nav--mobile {
    max-height: calc(100dvh - var(--anp-header-height));
    padding: 1rem 0 1.5rem;
    overflow-y: auto;
  }

  .anp-nav--mobile .anp-menu {
    display: block;
  }

  .anp-nav--mobile .anp-menu > li {
    border-bottom: 1px solid rgba(248, 245, 236, 0.07);
  }

  .anp-nav--mobile .anp-menu > li > a {
    display: flex;
    min-height: 46px;
    justify-content: space-between;
    padding: 0.85rem 0;
    font-size: 0.78rem;
  }

  .anp-nav--mobile .sub-menu {
    position: static;
    display: block;
    width: auto;
    padding: 0 0 0.75rem 1rem;
    visibility: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .anp-nav--mobile .sub-menu a {
    padding: 0.55rem 0;
    color: rgba(248, 245, 236, 0.72);
    font-size: 0.8rem;
  }

  .anp-mobile-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.25rem;
    color: var(--anp-gold);
    font-size: 0.85rem;
  }

  .anp-mobile-phone .anp-icon {
    width: 1rem;
    height: 1rem;
  }

  .anp-nav--mobile .anp-button {
    display: flex;
    width: min(100%, 360px);
    margin: 0.75rem auto 0;
  }

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

@media (max-width: 782px) {
  :root {
    --anp-header-height: 76px;
  }

  .admin-bar .anp-header {
    top: 46px;
  }

  .anp-section {
    padding-block: 5rem;
  }

  .anp-section--compact-top {
    padding-top: 2rem;
  }

  .anp-logo--nav,
  .anp-logo--nav .anp-logo__image {
    height: 68px;
  }

  .anp-header__cta {
    display: none;
  }

  .anp-hero {
    min-height: 700px;
  }

  .anp-hero__fade {
    height: 160px;
  }

  .anp-hero__body {
    max-width: 600px;
  }

  .anp-focus__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 1rem;
  }

  .anp-focus__item:last-child {
    grid-column: 1 / -1;
  }

  .anp-about-preview,
  .anp-contact,
  .anp-about-page__intro {
    grid-template-columns: 1fr;
  }

  .anp-framed-image--sticky {
    position: relative;
    top: auto;
  }

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

  .anp-process {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3.5rem;
  }

  .anp-process::before {
    top: 25px;
    right: auto;
    bottom: 25px;
    left: 27px;
    width: 1px;
    height: auto;
  }

  .anp-process li {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    text-align: left;
  }

  .anp-process__number {
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
    margin: 0;
    box-shadow: 0 0 0 5px var(--anp-cream);
  }

  .anp-process h3 {
    margin-top: 0.45rem;
  }

  .anp-process p {
    max-width: none;
    margin-right: 0;
    margin-left: 0;
  }

  .anp-materials {
    margin-top: 3.5rem;
  }

  .anp-academy-link {
    align-items: flex-start;
    flex-direction: column;
  }

  .anp-testimonial-frame {
    min-height: 0;
    padding: 2.5rem 2rem;
  }

  .anp-footer__top {
    grid-template-columns: 1fr;
  }

  .anp-footer-menu {
    justify-content: flex-start;
  }

  .anp-footer__legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .anp-sticky-cta p {
    display: none;
  }

  .anp-sticky-cta {
    padding: 0.65rem;
  }

  .anp-about-why {
    margin-top: 4rem;
  }
}

@media (max-width: 620px) {
  .anp-container,
  .anp-container--narrow,
  .anp-article {
    width: min(100% - 2rem, 1200px);
  }

  .anp-hero__content {
    width: min(100% - 2rem, 1200px);
    padding-bottom: 3rem;
  }

  .anp-hero h1 {
    margin-top: 1rem;
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  .anp-hero__locations {
    line-height: 1.75;
  }

  .anp-hero__body {
    font-size: 0.88rem;
  }

  .anp-hero__buttons {
    width: 100%;
    flex-direction: column;
    margin-top: 2rem;
  }

  .anp-hero__buttons .anp-button {
    width: min(100%, 320px);
    margin-inline: auto;
  }

  .anp-hero__scroll {
    display: none;
  }

  .anp-focus__grid {
    padding-block: 3rem;
  }

  .anp-grid--three,
  .anp-grid--four {
    grid-template-columns: 1fr;
  }

  .anp-tile,
  .anp-material-card__body,
  .anp-product-card {
    padding: 1.6rem;
  }

  .anp-newsletter {
    padding: 1.5rem;
  }

  .anp-form-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .anp-form-grid__full {
    grid-column: auto;
  }

  .anp-newsletter .anp-button {
    width: 100%;
    min-width: 0;
  }

  .anp-academy-link {
    padding: 1.5rem;
  }

  .anp-academy-link b {
    width: 100%;
    justify-content: center;
  }

  .anp-testimonial-frame {
    padding: 2rem 1.25rem;
  }

  .anp-testimonial blockquote {
    font-size: 1rem;
  }

  .anp-faq {
    padding-inline: 1.25rem;
  }

  .anp-contact-form {
    padding: 1.5rem;
  }

  .anp-contact-form__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .anp-contact-form__actions > a {
    text-align: center;
  }

  .anp-page-main {
    padding-bottom: 5rem;
  }

  .anp-page-header h1,
  .anp-about-page__intro h1 {
    font-size: clamp(2.3rem, 12vw, 3.2rem);
  }

  .anp-blog-categories .anp-grid {
    grid-template-columns: 1fr;
  }

  .anp-article-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .anp-offer-cta {
    padding: 1.5rem;
  }

  .anp-credentials__title {
    gap: 0.75rem;
  }

  .anp-credentials__title h2 {
    letter-spacing: 0.18em;
  }

  .anp-footer__legal > span:last-child {
    flex-direction: column;
    gap: 0.5rem;
  }

  .anp-quick-contact {
    right: 1rem;
    bottom: 1.25rem;
  }

  .anp-quick-contact__phone:hover {
    width: 56px;
  }

  .anp-quick-contact__phone strong {
    display: none;
  }

  .anp-sticky-cta {
    bottom: 1.25rem;
    max-width: calc(100% - 5.5rem);
  }

  .anp-sticky-cta a {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .anp-cookie__inner {
    align-items: stretch;
    flex-direction: column;
    gap: 0.75rem;
    padding-block: 0.9rem;
  }

  .anp-cookie .anp-button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .anp-reveal,
  .anp-reveal--left,
  .anp-reveal--right,
  .anp-reveal--scale {
    opacity: 1;
    transform: none;
  }
}
