:root {
  --any-ink: #292821;
  --any-ink-soft: #514e43;
  --any-earth: #716653;
  --any-gold: #765b32;
  --any-gold-light: #cfb97f;
  --any-ivory: #f8f5ed;
  --any-cream: #efe8da;
  --any-sand: #ddd1bd;
  --any-line: rgba(68, 61, 49, 0.18);
  --any-white: #fffdf8;
  --any-dark: #24231f;
  --any-success: #416f56;
  --any-container: 1500px;
  --any-gutter: clamp(20px, 4vw, 56px);
  --any-radius: 4px;
  --any-shadow: 0 22px 70px rgba(44, 39, 30, 0.11);
  --any-display: Georgia, "Times New Roman", "PingFang TC", "Microsoft JhengHei", serif;
  --any-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang TC", "PingFang SC", "Microsoft JhengHei", "Microsoft YaHei", Arial, sans-serif;
}

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

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  background: var(--any-ivory);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--any-ink);
  background: var(--any-ivory);
  font-family: var(--any-body);
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
summary {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--any-display);
  font-weight: 400;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 6.7rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h2 {
  font-size: clamp(2.1rem, 4.3vw, 4.8rem);
  letter-spacing: -0.045em;
  line-height: 1.03;
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.16;
}

::selection {
  color: var(--any-white);
  background: var(--any-gold);
}

:focus-visible {
  outline: 2px solid var(--any-gold-light);
  outline-offset: 4px;
}

.any-container {
  width: min(calc(100% - (var(--any-gutter) * 2)), var(--any-container));
  margin-inline: auto;
}

.any-skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--any-white);
  background: var(--any-dark);
  transform: translateY(-160%);
}

.any-skip-link:focus {
  transform: translateY(0);
}

.any-eyebrow {
  margin-bottom: 18px;
  color: var(--any-gold);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.any-hero .any-eyebrow,
.any-editorial .any-eyebrow,
.any-faq .any-eyebrow,
.any-page-hero .any-eyebrow,
.any-article__hero .any-eyebrow,
.any-not-found .any-eyebrow {
  color: var(--any-gold-light);
}

.any-lead {
  max-width: 900px;
  font-family: var(--any-display);
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  line-height: 1.5;
}

.any-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid var(--any-gold);
  border-radius: 999px;
  color: var(--any-white);
  background: linear-gradient(135deg, #a8894d, #806439);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.any-button:hover {
  box-shadow: 0 14px 32px rgba(128, 100, 57, 0.25);
  transform: translateY(-2px);
}

.any-button--small {
  min-height: 40px;
  padding: 10px 18px;
  font-size: 0.68rem;
}

.any-button--ghost-light {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--any-white);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.any-button--dark {
  border-color: var(--any-dark);
  background: var(--any-dark);
}

.any-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--any-line);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 2;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}

.any-text-link:hover {
  color: var(--any-gold);
  border-color: var(--any-gold);
}

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

.any-announcement {
  position: relative;
  z-index: 80;
  height: 34px;
  overflow: hidden;
  color: var(--any-white);
  background: var(--any-dark);
}

.any-announcement__track {
  display: flex;
  width: max-content;
  min-width: 200%;
  height: 100%;
  align-items: center;
  animation: any-marquee 30s linear infinite;
}

.any-announcement__track span {
  width: 50%;
  padding-inline: 5vw;
  font-size: 0.67rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes any-marquee {
  to { transform: translateX(-50%); }
}

.any-header {
  position: sticky;
  z-index: 70;
  top: 0;
  height: 84px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--any-white);
  background: rgba(36, 35, 31, 0.1);
  backdrop-filter: blur(8px);
  transition: height 240ms ease, color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.any-header.is-scrolled {
  height: 70px;
  color: var(--any-ink);
  background: rgba(248, 245, 237, 0.96);
  box-shadow: 0 12px 38px rgba(44, 39, 30, 0.08);
  backdrop-filter: blur(18px);
}

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

.any-header__inner {
  display: grid;
  height: 100%;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 28px;
}

.any-logo {
  display: inline-flex;
  width: 146px;
  height: 58px;
  align-items: center;
  filter: brightness(0) invert(1);
  transition: filter 240ms ease, width 240ms ease;
}

.any-logo img {
  width: 100%;
  height: auto;
}

.any-header.is-scrolled .any-logo {
  width: 128px;
  filter: none;
}

.any-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.6vw, 28px);
}

.any-nav > a {
  position: relative;
  font-size: 0.69rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.any-nav > a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.any-nav > a:hover::after,
.any-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.any-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.any-language {
  position: relative;
}

.any-language summary {
  display: inline-flex;
  min-width: 50px;
  min-height: 40px;
  list-style: none;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 750;
}

.any-language summary::-webkit-details-marker {
  display: none;
}

.any-language__menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  width: 190px;
  padding: 10px;
  border: 1px solid var(--any-line);
  border-radius: 12px;
  color: var(--any-ink);
  background: var(--any-white);
  box-shadow: var(--any-shadow);
}

.any-language__menu a {
  padding: 9px 11px;
  border-radius: 7px;
  font-size: 0.8rem;
}

.any-language__menu a:hover,
.any-language__menu a[aria-current="true"] {
  color: var(--any-white);
  background: var(--any-earth);
}

.any-menu-toggle {
  display: none;
  min-width: 48px;
  min-height: 44px;
  border: 0;
  color: inherit;
  background: transparent;
}

.any-menu-toggle__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.any-menu-toggle__icon,
.any-menu-toggle__icon::before,
.any-menu-toggle__icon::after {
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.any-menu-toggle__icon {
  position: relative;
}

.any-menu-toggle__icon::before,
.any-menu-toggle__icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.any-menu-toggle__icon::before { top: -7px; }
.any-menu-toggle__icon::after { top: 7px; }
.any-menu-toggle[aria-expanded="true"] .any-menu-toggle__icon { background: transparent; }
.any-menu-toggle[aria-expanded="true"] .any-menu-toggle__icon::before { top: 0; transform: rotate(45deg); }
.any-menu-toggle[aria-expanded="true"] .any-menu-toggle__icon::after { top: 0; transform: rotate(-45deg); }

.any-hero {
  position: relative;
  min-height: min(860px, calc(100svh - 34px));
  margin-top: -84px;
  overflow: hidden;
  color: var(--any-white);
  background: var(--any-dark);
}

.any-hero__slides,
.any-hero__slide,
.any-hero__veil {
  position: absolute;
  inset: 0;
}

.any-hero__slide {
  opacity: 0;
  transition: opacity 1000ms ease;
}

.any-hero__slide.is-active {
  opacity: 1;
}

.any-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  transform: scale(1.025);
}

.any-hero__slide.is-active img {
  animation: any-hero-zoom 8s ease-out both;
}

@keyframes any-hero-zoom {
  from { transform: scale(1.035); }
  to { transform: scale(1.12); }
}

.any-hero__veil {
  background:
    linear-gradient(90deg, rgba(31, 29, 24, 0.82) 0%, rgba(31, 29, 24, 0.45) 45%, rgba(31, 29, 24, 0.16) 75%),
    linear-gradient(0deg, rgba(31, 29, 24, 0.45), transparent 45%);
}

.any-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(860px, calc(100svh - 34px));
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 170px;
  padding-bottom: clamp(52px, 8vw, 104px);
}

.any-hero__copy {
  width: min(800px, 74%);
}

.any-hero__copy h1 {
  max-width: 820px;
  margin-bottom: 24px;
}

.any-hero__copy > p:not(.any-eyebrow) {
  max-width: 690px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.any-hero__counter {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
}

.any-hero__counter i {
  display: block;
  width: 74px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}

.any-trust-strip {
  border-bottom: 1px solid var(--any-line);
  background: var(--any-white);
}

.any-trust-strip .any-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.any-trust-strip div > div {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 18px;
  padding: 22px clamp(16px, 2vw, 30px);
  border-right: 1px solid var(--any-line);
}

.any-trust-strip div > div:last-child {
  border-right: 0;
}

.any-trust-strip span {
  color: var(--any-gold);
  font-family: var(--any-display);
  font-size: 1.35rem;
  font-style: italic;
}

.any-trust-strip strong {
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  line-height: 1.5;
  text-transform: uppercase;
}

.any-social {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--any-line);
  background:
    radial-gradient(circle at 92% 4%, rgba(207, 185, 127, 0.2), transparent 28rem),
    linear-gradient(145deg, #f4eee2 0%, #e8decd 100%);
}

.any-social::before {
  position: absolute;
  top: -160px;
  right: -110px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(168, 137, 77, 0.2);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.any-social__heading {
  position: relative;
  display: grid;
  margin-bottom: clamp(38px, 5vw, 68px);
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(32px, 8vw, 120px);
}

.any-social__heading h2 {
  max-width: 820px;
  margin-bottom: 22px;
}

.any-social__heading p:not(.any-eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--any-ink-soft);
}

.any-social__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.any-social__actions .any-button {
  gap: 10px;
  white-space: nowrap;
}

.any-social__actions .any-button span {
  font-size: 1.15rem;
  line-height: 1;
}

.any-social__actions .any-text-link {
  white-space: nowrap;
}

.any-social__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.any-social-card {
  min-width: 0;
  border: 1px solid rgba(68, 61, 49, 0.16);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 20px 60px rgba(66, 56, 40, 0.07);
}

.any-social-card__visual {
  position: relative;
  display: grid;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  color: var(--any-white);
  background:
    linear-gradient(145deg, rgba(37, 35, 30, 0.2), rgba(37, 35, 30, 0.88)),
    linear-gradient(135deg, #9c8460, #463e32);
  place-items: center;
}

.any-social-card--instagram .any-social-card__visual {
  background:
    radial-gradient(circle at 26% 18%, rgba(238, 215, 158, 0.46), transparent 28%),
    linear-gradient(145deg, #9c7659, #342d28 78%);
}

.any-social-card__visual::after {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  content: "";
  pointer-events: none;
}

.any-social-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2, .7, .2, 1);
}

.any-social-card:hover .any-social-card__visual img {
  transform: scale(1.035);
}

.any-social-card__monogram {
  font-family: var(--any-display);
  font-size: clamp(3.7rem, 7vw, 7rem);
  font-style: italic;
  letter-spacing: -0.08em;
  opacity: 0.88;
}

.any-social-card__index {
  position: absolute;
  right: 24px;
  bottom: 20px;
  font-family: var(--any-display);
  font-size: 1rem;
  font-style: italic;
}

.any-social-card__body {
  padding: clamp(24px, 3vw, 36px);
}

.any-social-card__meta {
  display: flex;
  margin-bottom: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--any-gold);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.any-social-card__body > p {
  display: -webkit-box;
  min-height: 5.25em;
  margin-bottom: 24px;
  overflow: hidden;
  color: var(--any-ink-soft);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.any-social__note {
  max-width: 900px;
  margin: 28px 0 0;
  color: var(--any-earth);
  font-size: 0.75rem;
}

.any-section {
  padding-block: clamp(74px, 10vw, 150px);
}

.any-section-heading {
  max-width: 940px;
  margin-bottom: clamp(44px, 6vw, 80px);
}

.any-section-heading h2 {
  margin-bottom: 0;
}

.any-section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.62fr);
  align-items: end;
  gap: clamp(40px, 8vw, 130px);
}

.any-section-heading--split > p {
  margin-bottom: 8px;
  color: var(--any-ink-soft);
}

.any-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px) clamp(18px, 2.5vw, 34px);
}

.any-service-card {
  min-width: 0;
}

.any-service-card__image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  margin-bottom: 24px;
  overflow: hidden;
  background: var(--any-cream);
}

.any-service-card__image::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.38);
  content: "";
  pointer-events: none;
}

.any-service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(.2,.7,.2,1), filter 650ms ease;
}

.any-service-card__image:hover img {
  filter: saturate(0.9);
  transform: scale(1.045);
}

.any-service-card__image > span {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 8px 12px;
  color: var(--any-ink);
  background: rgba(255, 253, 248, 0.9);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.any-service-card__body h2,
.any-service-card__body h3 {
  margin-bottom: 14px;
}

.any-service-card__body p {
  color: var(--any-ink-soft);
}

.any-service-card--large .any-service-card__body > p:nth-of-type(2) {
  font-size: 0.9rem;
}

.any-journey {
  background: var(--any-cream);
}

.any-journey__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(48px, 8vw, 132px);
}

.any-journey__intro {
  position: relative;
}

.any-journey__intro h2 {
  margin-bottom: 42px;
}

.any-journey__intro img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.any-journey__steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.any-journey__steps li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding-block: clamp(28px, 4vw, 52px);
  border-top: 1px solid rgba(68, 61, 49, 0.24);
}

.any-journey__steps li:last-child {
  border-bottom: 1px solid rgba(68, 61, 49, 0.24);
}

.any-journey__steps span {
  color: var(--any-gold);
  font-family: var(--any-display);
  font-size: 1.45rem;
  font-style: italic;
}

.any-journey__steps h3 {
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 2.7vw, 2.7rem);
}

.any-journey__steps p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--any-ink-soft);
}

.any-editorial {
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  color: var(--any-white);
  background: var(--any-dark);
}

.any-editorial__image {
  min-height: 600px;
}

.any-editorial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) sepia(0.08);
}

.any-editorial__copy {
  display: flex;
  max-width: 710px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(54px, 8vw, 120px);
}

.any-editorial__copy h2 {
  margin-bottom: 28px;
}

.any-editorial__copy > p:not(.any-eyebrow) {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.76);
}

.any-offer {
  padding-top: clamp(74px, 9vw, 120px);
  padding-bottom: 0;
}

.any-offer__card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: clamp(40px, 6vw, 80px);
  border: 1px solid rgba(168, 137, 77, 0.45);
  background:
    radial-gradient(circle at 90% 10%, rgba(207, 185, 127, 0.28), transparent 38%),
    var(--any-white);
  box-shadow: var(--any-shadow);
}

.any-offer__card h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.any-offer__card p:not(.any-eyebrow) {
  max-width: 840px;
  margin-bottom: 0;
}

.any-education__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--any-line);
}

.any-education__grid article {
  min-height: 290px;
  padding: clamp(28px, 4vw, 52px);
  background: var(--any-white);
}

.any-education__grid span {
  display: block;
  margin-bottom: 62px;
  color: var(--any-gold);
  font-family: var(--any-display);
  font-size: 1.35rem;
  font-style: italic;
}

.any-education__grid h3 {
  margin-bottom: 16px;
}

.any-education__grid p {
  margin-bottom: 0;
  color: var(--any-ink-soft);
}

.any-faq {
  color: var(--any-white);
  background: var(--any-dark);
}

.any-faq__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 10vw, 160px);
}

.any-faq h2 {
  max-width: 520px;
}

.any-faq .any-text-link {
  color: var(--any-gold-light);
}

.any-accordion details {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.any-accordion details:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.any-accordion summary {
  display: flex;
  min-height: 82px;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--any-display);
  font-size: clamp(1.05rem, 2vw, 1.55rem);
}

.any-accordion summary::-webkit-details-marker {
  display: none;
}

.any-accordion summary span {
  color: var(--any-gold-light);
  font-family: var(--any-body);
  font-size: 1.5rem;
  transition: transform 180ms ease;
}

.any-accordion details[open] summary span {
  transform: rotate(45deg);
}

.any-accordion details p {
  max-width: 760px;
  padding: 0 44px 28px 0;
  color: rgba(255, 255, 255, 0.72);
}

.any-journal-preview {
  background: var(--any-white);
}

.any-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 48px);
}

.any-post-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.any-post-card__image {
  display: block;
  aspect-ratio: 16 / 10;
  margin-bottom: 24px;
  overflow: hidden;
  background: var(--any-cream);
}

.any-post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.any-post-card__image:hover img {
  transform: scale(1.04);
}

.any-post-card time {
  color: var(--any-gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.any-post-card h3 {
  margin: 12px 0;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.any-post-card p {
  color: var(--any-ink-soft);
}

.any-pagination {
  display: flex;
  margin-top: 64px;
  flex-wrap: wrap;
  gap: 8px;
}

.any-pagination .page-numbers {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--any-line);
  border-radius: 999px;
}

.any-pagination .current {
  color: var(--any-white);
  background: var(--any-dark);
}

.any-contact-panel {
  display: grid;
  min-height: 620px;
  grid-template-columns: 1fr 1fr;
  background: var(--any-cream);
}

.any-contact-panel__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.any-contact-panel__copy {
  display: flex;
  max-width: 760px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(50px, 8vw, 120px);
}

.any-contact-panel__copy h2 {
  margin-bottom: 24px;
}

.any-contact-panel__copy > p {
  max-width: 660px;
}

.any-page-hero {
  position: relative;
  display: flex;
  min-height: 590px;
  margin-top: -84px;
  align-items: flex-end;
  overflow: hidden;
  color: var(--any-white);
  background: var(--any-dark);
}

.any-page-hero__image,
.any-page-hero__veil {
  position: absolute;
  inset: 0;
}

.any-page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.any-page-hero__veil {
  background: linear-gradient(90deg, rgba(34, 32, 27, 0.82), rgba(34, 32, 27, 0.32) 70%), linear-gradient(0deg, rgba(34, 32, 27, 0.35), transparent 60%);
}

.any-page-hero__copy {
  position: relative;
  z-index: 2;
  padding-top: 180px;
  padding-bottom: clamp(58px, 8vw, 100px);
}

.any-page-hero__copy h1 {
  max-width: 940px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 6vw, 6.2rem);
}

.any-page-hero__copy > p:not(.any-eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.any-story-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(60px, 10vw, 180px);
}

.any-prose {
  max-width: 850px;
  color: var(--any-ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.any-prose p {
  margin-bottom: 28px;
}

.any-principles {
  padding-top: 0;
}

.any-service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: start;
}

.any-service-detail__aside {
  position: sticky;
  top: 110px;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(168, 137, 77, 0.5);
  background: var(--any-white);
  box-shadow: var(--any-shadow);
}

.any-service-detail__aside h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.any-service-detail__aside p {
  margin-bottom: 28px;
  color: var(--any-ink-soft);
}

.any-related {
  padding-top: 0;
}

.any-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.any-related__grid a {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.any-related__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.any-related__grid span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 12px 14px;
  color: var(--any-white);
  background: rgba(36, 35, 31, 0.75);
  font-family: var(--any-display);
  backdrop-filter: blur(9px);
}

.any-case-grid {
  display: grid;
  gap: 52px;
}

.any-case-grid article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(36px, 7vw, 110px);
}

.any-case-grid article:nth-child(even) img {
  order: 2;
}

.any-case-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.any-empty-state {
  max-width: 920px;
  margin-inline: auto;
  padding: clamp(42px, 7vw, 88px);
  border: 1px solid var(--any-line);
  text-align: center;
  background: var(--any-white);
}

.any-empty-state h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.any-offer-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
}

.any-offer-page__status {
  padding: clamp(36px, 6vw, 76px);
  border: 1px solid var(--any-line);
  background: var(--any-white);
  box-shadow: var(--any-shadow);
}

.any-offer-page__status > span {
  display: inline-flex;
  margin-bottom: 40px;
  padding: 7px 11px;
  color: var(--any-white);
  background: var(--any-earth);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.any-offer-page ul {
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.any-offer-page li {
  padding-block: 12px;
  border-bottom: 1px solid var(--any-line);
  font-family: var(--any-display);
  font-size: 1.25rem;
}

.any-historical-offers {
  padding-top: 0;
}

.any-historical-offers__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.any-historical-offers__grid article {
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid var(--any-line);
  background: var(--any-white);
}

.any-historical-offers__grid time {
  color: var(--any-gold);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.any-historical-offers__grid h3 {
  margin: 20px 0 10px;
}

.any-historical-offers__grid strong {
  display: block;
  margin-bottom: 18px;
  color: var(--any-earth);
  font-family: var(--any-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 400;
}

.any-historical-offers__grid p,
.any-historical-offers__terms {
  color: var(--any-ink-soft);
}

.any-historical-offers__terms {
  max-width: 900px;
  margin: 28px 0 0;
  font-size: 0.82rem;
}

.any-contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(60px, 10vw, 170px);
}

.any-whatsapp-form {
  display: grid;
  gap: 22px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--any-line);
  background: var(--any-white);
  box-shadow: var(--any-shadow);
}

.any-whatsapp-form label,
.any-whatsapp-form label > span {
  display: grid;
  gap: 8px;
}

.any-whatsapp-form label > span {
  display: block;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.any-whatsapp-form input,
.any-whatsapp-form select,
.any-whatsapp-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--any-line);
  border-radius: 0;
  background: var(--any-ivory);
}

.any-whatsapp-form textarea {
  resize: vertical;
}

.any-whatsapp-form small {
  color: var(--any-ink-soft);
}

.any-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.any-legal {
  max-width: 920px;
  font-size: 1.05rem;
}

.any-legal p {
  margin-bottom: 28px;
}

.any-legal__status {
  color: var(--any-gold);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.any-article__hero {
  padding: clamp(130px, 15vw, 220px) 0 clamp(52px, 8vw, 90px);
  color: var(--any-white);
  background: var(--any-dark);
}

.any-article__hero h1 {
  max-width: 1180px;
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5vw, 5.3rem);
}

.any-article__hero p:not(.any-eyebrow) {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.any-article__featured {
  margin-top: -1px;
}

.any-article__featured img {
  width: 100%;
  max-height: 780px;
  object-fit: cover;
}

.any-article__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(60px, 8vw, 130px);
  padding-block: clamp(70px, 10vw, 130px);
  align-items: start;
}

.any-article__content {
  max-width: 920px;
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
  line-height: 1.85;
}

.any-article__content h2 {
  margin-top: 2em;
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.any-article__content h3 {
  margin-top: 1.8em;
}

.any-article__content img {
  margin-block: 34px;
}

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

.any-article__aside {
  position: sticky;
  top: 110px;
  padding: 32px;
  border: 1px solid var(--any-line);
  background: var(--any-white);
}

.any-article__aside h2 {
  font-size: 2rem;
}

.any-not-found {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--any-white);
  background: var(--any-dark);
}

.any-not-found__image {
  position: absolute;
  inset: 0;
}

.any-not-found__image::after {
  position: absolute;
  inset: 0;
  background: rgba(36, 35, 31, 0.68);
  content: "";
}

.any-not-found__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.any-not-found__copy {
  position: relative;
  z-index: 2;
  padding-block: 100px;
}

.any-not-found__copy h1 {
  max-width: 850px;
}

.any-footer {
  padding-top: clamp(70px, 10vw, 130px);
  color: rgba(255, 255, 255, 0.74);
  background: #1f1e1a;
}

.any-footer__grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) 0.8fr 0.65fr minmax(260px, 1fr);
  gap: clamp(34px, 5vw, 78px);
  padding-bottom: clamp(60px, 8vw, 110px);
}

.any-footer__brand img {
  width: 180px;
  margin-bottom: 24px;
  filter: brightness(0) invert(1);
}

.any-footer__brand p {
  max-width: 430px;
}

.any-footer__disclaimer {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.78rem;
}

.any-footer h2 {
  margin-bottom: 24px;
  color: var(--any-white);
  font-family: var(--any-body);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.any-footer nav,
.any-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.any-footer nav a,
.any-footer__contact a {
  margin-bottom: 10px;
  font-size: 0.84rem;
  transition: color 180ms ease;
}

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

.any-footer__contact p {
  margin-bottom: 14px;
  font-size: 0.84rem;
}

.any-footer__social {
  display: flex;
  margin-top: 18px;
  gap: 16px;
}

.any-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.any-footer__bottom .any-container {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.any-whatsapp {
  position: fixed;
  z-index: 65;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  color: #fff;
  background: #1f7a4c;
  box-shadow: 0 14px 36px rgba(25, 73, 49, 0.34);
  transition: transform 180ms ease;
}

.any-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
}

.any-whatsapp svg {
  width: 27px;
  fill: currentColor;
}

@media (max-width: 1180px) {
  .any-header__inner {
    grid-template-columns: 150px 1fr auto;
  }

  .any-nav {
    gap: 14px;
  }

  .any-nav > a {
    font-size: 0.62rem;
  }

  .any-header__actions .any-button {
    display: none;
  }

  .any-footer__grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }

  .any-footer__contact {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 36px;
  }

  .any-footer__contact h2,
  .any-footer__social {
    grid-column: 1 / -1;
  }
}

@media (max-width: 960px) {
  .admin-bar .any-header {
    top: 46px;
  }

  .any-header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .any-header__inner {
    grid-template-columns: 1fr auto;
  }

  .any-logo {
    width: 128px;
  }

  .any-nav {
    position: fixed;
    z-index: 68;
    top: 118px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 38px var(--any-gutter) 100px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    color: var(--any-ink);
    background: var(--any-ivory);
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 280ms cubic-bezier(.2,.7,.2,1), visibility 0s linear 280ms;
  }

  .any-header.is-scrolled .any-nav {
    top: 70px;
  }

  .any-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .any-nav > a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--any-line);
    font-family: var(--any-display);
    font-size: clamp(1.35rem, 5vw, 2rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .any-nav > a::after {
    display: none;
  }

  .any-menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .any-hero__copy {
    width: min(780px, 88%);
  }

  .any-trust-strip .any-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .any-trust-strip div > div:nth-child(2) {
    border-right: 0;
  }

  .any-trust-strip div > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--any-line);
  }

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

  .any-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .any-footer__brand,
  .any-footer__contact {
    grid-column: 1 / -1;
  }

  .any-social__heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .any-social__actions {
    justify-content: flex-start;
  }

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

  .any-journey__grid,
  .any-story-grid,
  .any-service-detail,
  .any-contact-grid {
    grid-template-columns: 1fr;
  }

  .any-journey__intro {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 34px;
    align-items: end;
  }

  .any-journey__intro img {
    grid-row: 1 / 3;
    grid-column: 2;
  }

  .any-editorial {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .any-editorial__image {
    min-height: 520px;
  }

  .any-education__grid {
    grid-template-columns: 1fr;
  }

  .any-education__grid article {
    min-height: auto;
  }

  .any-education__grid span {
    margin-bottom: 34px;
  }

  .any-faq__grid {
    grid-template-columns: 1fr;
  }

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

  .any-contact-panel {
    grid-template-columns: 1fr;
  }

  .any-contact-panel__image {
    height: 520px;
  }

  .any-service-detail__aside,
  .any-article__aside {
    position: static;
  }

  .any-article__layout {
    grid-template-columns: 1fr;
  }

  .any-offer-page {
    grid-template-columns: 1fr;
  }

  .any-historical-offers__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --any-gutter: 20px;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.35rem);
  }

  .any-announcement__track span {
    padding-inline: 30px;
    font-size: 0.6rem;
  }

  .any-header {
    height: 70px;
  }

  .any-header__inner {
    gap: 12px;
  }

  .any-logo,
  .any-header.is-scrolled .any-logo {
    width: 112px;
  }

  .any-language summary {
    min-width: 44px;
    min-height: 40px;
  }

  .any-language__menu {
    position: fixed;
    top: 116px;
    right: 20px;
  }

  .any-nav {
    top: 104px;
  }

  .any-header.is-scrolled .any-nav {
    top: 70px;
  }

  .any-hero {
    min-height: 700px;
    margin-top: -70px;
  }

  .any-hero__inner {
    min-height: 700px;
    padding-top: 140px;
    padding-bottom: 54px;
  }

  .any-hero__copy {
    width: 100%;
  }

  .any-hero__copy h1 {
    max-width: 570px;
  }

  .any-hero__copy > p:not(.any-eyebrow) {
    font-size: 0.98rem;
  }

  .any-hero__counter {
    display: none;
  }

  .any-hero__veil {
    background: linear-gradient(0deg, rgba(31, 29, 24, 0.86), rgba(31, 29, 24, 0.2) 75%);
  }

  .any-actions {
    width: 100%;
  }

  .any-actions .any-button {
    flex: 1 1 180px;
  }

  .any-trust-strip div > div {
    min-height: 88px;
    gap: 12px;
    padding: 16px 12px;
  }

  .any-trust-strip span {
    font-size: 1rem;
  }

  .any-trust-strip strong {
    font-size: 0.62rem;
    letter-spacing: 0.06em;
  }

  .any-section {
    padding-block: 74px;
  }

  .any-section-heading--split {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .any-section-heading {
    margin-bottom: 42px;
  }

  .any-social__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .any-social__actions .any-button,
  .any-social__actions .any-text-link {
    width: 100%;
    justify-content: center;
  }

  .any-social__grid {
    grid-template-columns: 1fr;
  }

  .any-social-card__body > p {
    min-height: auto;
  }

  .any-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 14px;
  }

  .any-service-card__image {
    aspect-ratio: 4 / 5;
    margin-bottom: 16px;
  }

  .any-service-card__image > span {
    right: 8px;
    bottom: 8px;
    left: 8px;
    padding: 7px;
    font-size: 0.54rem;
    letter-spacing: 0.06em;
  }

  .any-service-card__body h2,
  .any-service-card__body h3 {
    font-size: 1.25rem;
  }

  .any-service-card__body p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.82rem;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .any-service-card--large .any-service-card__body > p:nth-of-type(2) {
    display: none;
  }

  .any-journey__intro {
    display: block;
  }

  .any-journey__intro img {
    margin-bottom: 42px;
    aspect-ratio: 5 / 4;
  }

  .any-journey__steps li {
    grid-template-columns: 46px 1fr;
    gap: 14px;
  }

  .any-editorial__image {
    min-height: 380px;
  }

  .any-editorial__copy {
    padding: 54px 20px 64px;
  }

  .any-offer {
    padding-top: 60px;
  }

  .any-offer__card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .any-offer__card .any-button {
    width: 100%;
  }

  .any-education__grid article {
    padding: 28px 24px;
  }

  .any-faq__grid {
    gap: 42px;
  }

  .any-accordion summary {
    min-height: 72px;
    font-size: 1rem;
  }

  .any-post-grid {
    grid-template-columns: 1fr;
  }

  .any-contact-panel__image {
    height: 360px;
  }

  .any-contact-panel__copy {
    padding: 54px 20px 70px;
  }

  .any-page-hero {
    min-height: 520px;
    margin-top: -70px;
  }

  .any-page-hero__copy {
    padding-top: 150px;
    padding-bottom: 54px;
  }

  .any-related__grid {
    grid-template-columns: 1fr;
  }

  .any-case-grid article,
  .any-case-grid article:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .any-case-grid article:nth-child(even) img {
    order: 0;
  }

  .any-form-row {
    grid-template-columns: 1fr;
  }

  .any-article__hero {
    padding-top: 120px;
  }

  .any-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 46px 24px;
  }

  .any-footer__brand,
  .any-footer__contact {
    grid-column: 1 / -1;
  }

  .any-footer__contact {
    display: flex;
  }

  .any-footer__bottom .any-container {
    min-height: 78px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
  }

  .any-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .any-hero__copy .any-actions .any-button {
    flex-basis: 100%;
    white-space: nowrap;
  }

  .any-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .any-header__actions {
    gap: 4px;
  }

  .any-service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .any-service-card__body p {
    -webkit-line-clamp: 2;
  }
}

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

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