:root {
  --navy: #021527;
  --navy-800: #06203a;
  --navy-700: #0b2d4d;
  --sand: #bfa888;
  --sand-bright: #d4bd9c;
  --white: #ffffff;
  --grey-body: #404040;
  --grey-light: #cccccc;
  --grey-mid: #6b6b6b;
  --off-white: #f4f4f4;
  --near-black: #222222;

  --font-head: "Cormorant Upright", Georgia, serif;
  --font-body: Roboto, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: Inconsolata, ui-monospace, "SF Mono", monospace;

  --wrap: 1240px;
  --gutter: 20px;
  --radius: 2px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-soft: cubic-bezier(0.33, 0.01, 0.2, 1);
  --dur: 0.6s;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--navy);
  color: var(--grey-light);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--sand); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--sand-bright); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.05;
  color: var(--white);
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--sand);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  z-index: 200;
  background: var(--sand);
  color: var(--navy);
  padding: 12px 22px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 10px; color: var(--navy); }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(191,168,136,0.55), transparent);
  max-width: 120px;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::before {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(270deg, rgba(191,168,136,0.55), transparent);
  max-width: 120px;
}

.btn {
  --btn-bg: var(--sand);
  --btn-fg: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--btn-bg);
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}
.btn:hover {
  color: var(--btn-fg);
  transform: translateY(-2px);
  background: var(--sand-bright);
  border-color: var(--sand-bright);
}
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn--ghost:hover {
  background: rgba(191, 168, 136, 0.14);
  border-color: var(--sand);
  color: var(--white);
}
.btn__arrow { transition: transform 0.35s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.is-stuck {
  background: rgba(2, 21, 39, 0.92);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(191, 168, 136, 0.18);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: block; flex-shrink: 0; }
.brand img {
  width: 168px;
  height: auto;
  transition: width 0.4s var(--ease);
}
.site-header.is-stuck .brand img { width: 140px; }

.nav { display: flex; align-items: center; gap: 38px; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  position: relative;
  padding-block: 4px;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--sand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav__link:hover { color: var(--sand); }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 17px; }
.nav-toggle span:nth-child(2) { top: 22.5px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 160px 0 120px;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% 0%, #0a2a47 0%, rgba(2, 21, 39, 0) 60%),
    var(--navy);
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 3; text-align: center; }
.hero h1 {
  font-size: clamp(3rem, 12vw, 9.5rem);
  letter-spacing: 0.08em;
  margin: 0 0 26px;
  line-height: 0.95;
}
.hero h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.4em);
}
.hero__lead {
  max-width: 560px;
  margin: 0 auto 40px;
  color: var(--grey-light);
  font-size: 1.0625rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
.hero__scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(180deg, var(--sand), transparent);
  animation: scrollPulse 2.4s var(--ease) infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.35); transform-origin: top; opacity: 0.5; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

.section { padding: 110px 0; position: relative; }
.section--light { background: var(--off-white); color: var(--grey-body); }
.section--light h1, .section--light h2, .section--light h3,
.section--light h4, .section--light h5, .section--light h6 { color: var(--near-black); }
.section--deep { background: var(--navy-800); }

.section__head { max-width: 760px; margin-bottom: 56px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__title { font-size: clamp(2.1rem, 5vw, 3.6rem); }
.section__title + p { margin-top: 22px; }

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 70px;
  align-items: start;
}
.about__aside { position: sticky; top: 130px; }
.about__title { font-size: clamp(2.3rem, 5.2vw, 4rem); }
.about__body > p { margin: 0 0 26px; }
.about__body > p:last-child { margin-bottom: 0; }
.about__body > p:first-child {
  font-size: 1.1875rem;
  line-height: 1.7;
  color: var(--white);
  border-left: 2px solid var(--sand);
  padding-left: 26px;
}
.about__figure {
  margin: 34px 0 0;
  border: 1px solid rgba(191, 168, 136, 0.25);
  background: rgba(191, 168, 136, 0.05);
  padding: 18px;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 26px;
}
.product {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.product:hover {
  transform: translateY(-7px);
  border-color: rgba(191, 168, 136, 0.55);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.42);
}
.product__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--navy-700);
}
.product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.product:hover .product__media img { transform: scale(1.06); }
.product__meta { min-width: 0; }
.product__price {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: var(--sand);
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  padding: 11px 18px 11px 30px;
  margin-bottom: 14px;
  clip-path: polygon(15px 0%, 100% 0%, 100% 100%, 15px 100%, 0% 50%);
  transition: background 0.5s var(--ease-soft);
}
.product__price::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-top: -3.5px;
  border-radius: 50%;
  background: var(--navy);
}
.product:hover .product__price { background: var(--sand-bright); }
.product__body {
  padding: 24px 22px 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex: 1;
}
.product__name {
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--white);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.stat {
  position: relative;
  isolation: isolate;
  padding: 40px 28px 36px;
  background: linear-gradient(165deg, rgba(191, 168, 136, 0.11), rgba(191, 168, 136, 0.02));
  border: 1px solid rgba(191, 168, 136, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.85s var(--ease-soft), transform 0.85s var(--ease-soft),
              background 0.85s var(--ease-soft), box-shadow 0.85s var(--ease-soft);
}
.stat::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(130% 100% at 50% 118%, rgba(191, 168, 136, 0.34), rgba(191, 168, 136, 0) 64%);
  opacity: 0;
  transform: scale(0.88);
  transform-origin: 50% 100%;
  transition: opacity 1s var(--ease-soft), transform 1s var(--ease-soft);
  pointer-events: none;
}
.stat:hover::before { opacity: 1; transform: scale(1); }

.stat:hover {
  border-color: rgba(191, 168, 136, 0.5);
  background: linear-gradient(165deg, rgba(191, 168, 136, 0.17), rgba(191, 168, 136, 0.04));
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3);
}
.stat__icon { transition: transform 0.85s var(--ease-soft), opacity 0.85s var(--ease-soft); }
.stat:hover .stat__icon { transform: translateY(-3px); opacity: 1; }
.stat::after {
  content: "";
  position: absolute;
  left: 28px;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: var(--sand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.stat.is-in::after { transform: scaleX(1); transition-delay: 0.35s; }
.stat__icon {
  color: var(--sand);
  margin-bottom: 22px;
  display: block;
  opacity: 0.85;
}
.stat__value {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1;
  color: var(--white);
  display: block;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
}
.stat__label {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  color: var(--sand);
  margin: 0;
  line-height: 1.6;
}

.clients { padding: 78px 0; background: var(--navy); border-block: 1px solid rgba(255, 255, 255, 0.08); }
.clients__title {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin: 0 0 42px;
}
.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 68px;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(1) brightness(1.7);
  transition: opacity 0.4s var(--ease), filter 0.4s var(--ease);
}
.marquee img:hover { opacity: 1; filter: grayscale(0) brightness(1); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.cta {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy-700), var(--navy) 65%);
}
.cta__bg { position: absolute; inset: 0; pointer-events: none; opacity: 0.5; }
.cta__inner { position: relative; z-index: 2; }
.cta__title { font-size: clamp(2.2rem, 6vw, 4.4rem); margin-bottom: 34px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 24px;
}
.review {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  color: var(--grey-light);
  border: 1px solid rgba(191, 168, 136, 0.2);
  border-top: 2px solid var(--sand);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.7s var(--ease), background 0.7s var(--ease);
}
.review:hover { border-color: rgba(191, 168, 136, 0.45); }
.review__stars { display: flex; gap: 3px; color: var(--sand); }
.review__text { margin: 0; font-size: 0.9375rem; line-height: 1.8; flex: 1; }
.review__foot {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
}
.review__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(191, 168, 136, 0.16);
  border: 1px solid rgba(191, 168, 136, 0.4);
  color: var(--sand);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 1.15rem;
  flex-shrink: 0;
  text-transform: uppercase;
}
.review__name {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.3;
}
.review__source {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.pillar {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(191, 168, 136, 0.18);
  transition: border-color 0.85s var(--ease-soft);
}
.pillar:hover { border-color: rgba(191, 168, 136, 0.45); }
.pillar__media { position: absolute; inset: 0; z-index: -2; }
.pillar__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-soft);
}
.pillar:hover .pillar__media img { transform: scale(1.06); }
.pillar::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(2, 21, 39, 0.62) 0%, rgba(2, 21, 39, 0.28) 26%, rgba(2, 21, 39, 0.55) 52%, rgba(2, 21, 39, 0.96) 100%);
}
.pillar__body { padding: 42px 34px 40px; }
.pillar__title { font-size: clamp(1.55rem, 2.5vw, 2.15rem); margin: 0; }
.pillar__rule {
  display: block;
  width: 46px;
  height: 2px;
  background: var(--sand);
  margin: 20px 0 20px;
  transform-origin: left;
  transition: width 0.85s var(--ease-soft);
}
.pillar:hover .pillar__rule { width: 88px; }
.pillar__text { margin: 0; color: var(--grey-light); }

@media (max-width: 860px) {
  .pillar { min-height: 460px; }
  .pillar__body { padding: 34px 26px 32px; }
}

.site-footer { background: var(--navy-800); padding: 90px 0 0; border-top: 1px solid rgba(191, 168, 136, 0.2); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 60px;
}
.footer__title {
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  margin-bottom: 26px;
}
.footer__logo { width: 180px; margin-bottom: 24px; }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list svg { flex-shrink: 0; margin-top: 4px; color: var(--sand); }
.contact-list a { color: var(--white); text-decoration: none; font-size: 1.0625rem; }
.contact-list a:hover { color: var(--sand); }
.contact-list span { display: block; font-size: 0.8125rem; color: var(--grey-mid); font-family: var(--font-mono); letter-spacing: 0.08em; }

.subscribe__text { margin: 0 0 22px; font-size: 0.9375rem; }
.subscribe__row { display: flex; gap: 10px; flex-wrap: wrap; }
.subscribe__row input[type="email"] {
  flex: 1;
  min-width: 190px;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
}
.subscribe__row input[type="email"]::placeholder { color: rgba(255, 255, 255, 0.4); }
.subscribe__row input[type="email"]:focus {
  outline: none;
  border-color: var(--sand);
  background: rgba(191, 168, 136, 0.08);
}
.form-status { margin: 14px 0 0; font-size: 0.875rem; min-height: 1.4em; }
.form-status[data-state="error"] { color: #ff9e9e; }
.form-status[data-state="ok"] { color: var(--sand-bright); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 26px 0 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--grey-mid);
}
.footer__bottom p { margin: 0; }
.social { display: flex; gap: 14px; }
.social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--grey-light);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.social a:hover { border-color: var(--sand); color: var(--sand); transform: translateY(-2px); }

.reveal { opacity: 0; transform: translateY(28px); }
.reveal.is-in { animation: revealIn 0.75s var(--ease) var(--delay, 0ms) both; }
.reveal.is-done { opacity: 1; transform: none; animation: none; }
@keyframes revealIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 42px; }
  .about__aside { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > div:last-child { grid-column: 1 / -1; }
  .subscribe__row { max-width: 520px; }
}

@media (max-width: 860px) {
  .section { padding: 82px 0; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 84vw);
    background: var(--navy-800);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 34px;
    padding: 90px 34px;
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    border-left: 1px solid rgba(191, 168, 136, 0.25);
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: flex-start; gap: 26px; }
  .nav__link { font-size: 15px; }
  .nav-toggle { display: block; z-index: 3; }
  .footer__grid { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 520px) {
  :root { --gutter: 16px; }
  .hero { padding: 130px 0 100px; }
  .hero__actions .btn { width: 100%; }
  .stat { padding: 34px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal, .hero h1 .word { opacity: 1 !important; transform: none !important; animation: none !important; }
  .marquee__track { animation: none; }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.clients__title--tight { margin-bottom: 14px; }
.section__title--spaced { margin-bottom: 56px; }

.hero-wave path { transform-box: view-box; }
.hero-wave--back { animation: drift 19s linear infinite; }
.hero-wave--front { animation: drift 13s linear infinite; }
@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(-1440px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-wave--back, .hero-wave--front { animation: none; }
}

.error-hero { min-height: 82svh; padding: 180px 0 120px; }
.error-title { font-size: clamp(2.6rem, 9vw, 6.5rem); margin: 0 0 24px; }
.error-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 30px;
  justify-content: center;
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.error-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-light);
  text-decoration: none;
}
.error-links a:hover { color: var(--sand); }

.hero__media { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 21, 39, 0.82) 0%, rgba(2, 21, 39, 0.5) 38%, rgba(2, 21, 39, 0.88) 100%),
    radial-gradient(90% 60% at 50% 45%, rgba(2, 21, 39, 0.15), rgba(2, 21, 39, 0.72));
}
.hero--video { background: var(--navy); }

.carousel { position: relative; }
.carousel__viewport {
  overflow: hidden;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
}
.carousel__track {
  display: flex;
  gap: 26px;
  transition: transform 0.65s var(--ease);
  will-change: transform;
}
.carousel__track.is-dragging { transition: none; cursor: grabbing; }
.carousel__slide { flex: 0 0 var(--slide-w, 300px); min-width: 0; display: flex; }
.carousel__slide > * { width: 100%; }

.carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 42px;
}
.carousel__btn {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(191, 168, 136, 0.4);
  background: transparent;
  color: var(--sand);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), opacity 0.35s var(--ease);
}
.carousel__btn:hover:not(:disabled) { background: var(--sand); color: var(--navy); border-color: var(--sand); }
.carousel__btn:disabled { opacity: 0.3; cursor: default; }

.carousel__dots { display: flex; gap: 10px; align-items: center; }
.carousel__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(191, 168, 136, 0.55);
  background: transparent;
  cursor: pointer;
  transition: background 0.35s var(--ease), width 0.35s var(--ease), border-radius 0.35s var(--ease);
}
.carousel__dot[aria-selected="true"] { background: var(--sand); width: 26px; border-radius: 5px; }

.section--light .carousel__btn { border-color: rgba(34, 34, 34, 0.25); color: var(--near-black); }
.section--light .carousel__btn:hover:not(:disabled) { background: var(--near-black); color: var(--white); border-color: var(--near-black); }

.reviews .review { height: 100%; }

.closer {
  position: relative;
  padding: 150px 0;
  overflow: hidden;
  isolation: isolate;
}
.closer__media { position: absolute; inset: 0; z-index: -2; }
.closer__media img { width: 100%; height: 100%; object-fit: cover; }
.closer__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(2, 21, 39, 0.93) 0%, rgba(2, 21, 39, 0.78) 42%, rgba(2, 21, 39, 0.35) 100%);
}
.closer__inner { max-width: 620px; }
.closer__title { font-size: clamp(2.3rem, 5.6vw, 4.2rem); margin-bottom: 10px; }
.closer__sub {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2.6vw, 1.9rem);
  color: var(--sand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 26px;
}
.closer__text { margin: 0 0 36px; font-size: 1.0625rem; max-width: 520px; }

@media (max-width: 860px) {
  .closer { padding: 110px 0; }
  .closer__media::after {
    background: linear-gradient(180deg, rgba(2, 21, 39, 0.8) 0%, rgba(2, 21, 39, 0.92) 100%);
  }
  .carousel__nav { gap: 18px; margin-top: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  .carousel__track { transition: none; }
}

.pagetitle {
  position: relative;
  padding: 190px 0 96px;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy);
}
.pagetitle__media { position: absolute; inset: 0; z-index: -2; }
.pagetitle__media img { width: 100%; height: 100%; object-fit: cover; }
.pagetitle__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 21, 39, 0.9) 0%, rgba(2, 21, 39, 0.68) 45%, rgba(2, 21, 39, 0.94) 100%);
}
.pagetitle__title { font-size: clamp(2.4rem, 6vw, 4.6rem); margin: 0; }

.breadcrumb { margin: 0 0 20px; }
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.breadcrumb a { color: var(--grey-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--sand); }
.breadcrumb li + li::before { content: "/"; color: rgba(191, 168, 136, 0.6); margin-right: 10px; }
.breadcrumb [aria-current="page"] { color: var(--sand); }

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 64px;
  align-items: center;
}
.split__body > p { margin: 0 0 24px; }
.split__body > p:last-child { margin-bottom: 0; }
.split__body > h2 + p {
  font-size: 1.1875rem;
  line-height: 1.7;
  color: var(--white);
  border-left: 2px solid var(--sand);
  padding-left: 26px;
}

.statement {
  position: relative;
  padding: 96px 0;
  background: var(--navy-800);
  border-block: 1px solid rgba(191, 168, 136, 0.18);
}
.statement__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 58px;
  align-items: center;
}
.statement__quote { position: relative; margin: 0; }
.statement__mark {
  display: block;
  font-family: var(--font-head);
  font-size: 5.5rem;
  line-height: 0.5;
  color: var(--sand);
  opacity: 0.55;
  margin-bottom: 18px;
}
.statement__rule {
  display: block;
  width: 64px;
  height: 2px;
  background: var(--sand);
  margin-top: 30px;
  transform-origin: left;
  transition: width 0.85s var(--ease-soft);
}
.statement:hover .statement__rule { width: 110px; }

.statement__text {
  font-family: var(--font-body);
  font-size: clamp(1.0625rem, 1.7vw, 1.3rem);
  line-height: 1.75;
  font-weight: 300;
  color: var(--white);
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
}

@media (max-width: 860px) {
  .pagetitle { padding: 150px 0 72px; }
  .split { gap: 40px; }
  .statement { padding: 72px 0; }
  .statement__grid { grid-template-columns: 1fr; gap: 34px; }
}

.framed { position: relative; margin: 0 22px 22px 0; }
.framed::before {
  content: "";
  position: absolute;
  top: 24px;
  right: -24px;
  bottom: -24px;
  left: 24px;
  border: 1px solid rgba(191, 168, 136, 0.45);
  pointer-events: none;
}
.framed::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 56px;
  height: 56px;
  border-top: 2px solid var(--sand);
  border-left: 2px solid var(--sand);
  pointer-events: none;
  z-index: 2;
}
.framed__img {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(191, 168, 136, 0.22);
}
.framed__img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.4s var(--ease-soft);
}
.framed:hover .framed__img img { transform: scale(1.045); }
.framed__cap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 38px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
}
.framed__cap::before {
  content: "";
  width: 38px;
  height: 1px;
  background: rgba(191, 168, 136, 0.5);
}
.framed--tight { margin-right: 18px; margin-bottom: 18px; }
.framed--tight::before { top: 20px; right: -20px; bottom: -20px; left: 20px; }

@media (max-width: 860px) {
  .framed, .framed--tight { margin: 0 12px 12px 0; }
  .framed::before, .framed--tight::before { top: 14px; right: -14px; bottom: -14px; left: 14px; }
  .framed::after { width: 40px; height: 40px; }
  .framed__cap { margin-top: 28px; }
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 30px;
}
.service {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.7s var(--ease-soft), border-color 0.7s var(--ease-soft), box-shadow 0.7s var(--ease-soft);
}
.service:hover {
  transform: translateY(-7px);
  border-color: rgba(191, 168, 136, 0.5);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.42);
}
.service__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy-700);
}
.service__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease-soft); }
.service:hover .service__media img { transform: scale(1.055); }
.service__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 26px 26px 28px;
}
.service__price {
  position: relative;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  background: var(--sand);
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  padding: 11px 18px 11px 30px;
  margin-bottom: 16px;
  clip-path: polygon(15px 0%, 100% 0%, 100% 100%, 15px 100%, 0% 50%);
  transition: background 0.5s var(--ease-soft);
}
.service__price::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-top: -3.5px;
  border-radius: 50%;
  background: var(--navy);
}
.service:hover .service__price { background: var(--sand-bright); }
.service__name { font-size: 1.45rem; letter-spacing: 0.03em; margin: 0 0 14px; }
.service__text { margin: 0 0 22px; font-size: 0.9375rem; line-height: 1.75; }
.service__more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
}
.service__more svg { transition: transform 0.5s var(--ease-soft); }
.service:hover .service__more svg { transform: translateX(5px); }

.gallery { column-count: 3; column-gap: 22px; }
.gallery__item {
  break-inside: avoid;
  margin: 0 0 22px;
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(191, 168, 136, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy-800);
  cursor: zoom-in;
  transition: border-color 0.7s var(--ease-soft), transform 0.7s var(--ease-soft);
}
.gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.3s var(--ease-soft), opacity 0.7s var(--ease-soft);
}
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 21, 39, 0) 55%, rgba(2, 21, 39, 0.6));
  opacity: 0;
  transition: opacity 0.7s var(--ease-soft);
  pointer-events: none;
}
.gallery__item:hover { border-color: rgba(191, 168, 136, 0.5); transform: translateY(-4px); }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item:hover::after { opacity: 1; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  place-items: center;
  background: rgba(2, 21, 39, 0.96);
  backdrop-filter: blur(6px);
  padding: 68px 20px 92px;
}
.lightbox[open], .lightbox.is-open { display: grid; }
.lightbox__figure { margin: 0; max-width: min(1200px, 100%); max-height: 100%; }
.lightbox__img {
  max-width: 100%;
  max-height: calc(100svh - 190px);
  width: auto;
  height: auto;
  margin-inline: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid rgba(191, 168, 136, 0.28);
}
.lightbox__cap {
  margin-top: 18px;
  text-align: center;
  color: var(--grey-light);
  font-size: 0.9375rem;
}
.lightbox__count {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
}
.lightbox__btn {
  position: absolute;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(191, 168, 136, 0.4);
  background: rgba(2, 21, 39, 0.75);
  color: var(--sand);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.4s var(--ease-soft), color 0.4s var(--ease-soft), border-color 0.4s var(--ease-soft);
}
.lightbox__btn:hover { background: var(--sand); color: var(--navy); border-color: var(--sand); }
.lightbox__prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 22px; top: 50%; transform: translateY(-50%); }
.lightbox__close { right: 22px; top: 22px; }

@media (max-width: 1024px) { .gallery { column-count: 2; } }
@media (max-width: 860px) {
  .lightbox { padding: 60px 12px 80px; }
  .lightbox__prev { left: 10px; }
  .lightbox__next { right: 10px; }
  .lightbox__btn { width: 46px; height: 46px; }
}
@media (max-width: 560px) { .gallery { column-count: 1; } }

.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 64px;
  align-items: start;
}

.qform {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(191, 168, 136, 0.22);
  border-radius: var(--radius);
  padding: 40px 38px 42px;
}
.qform__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 22px;
  margin-bottom: 22px;
}
.qform__field { display: flex; flex-direction: column; gap: 9px; min-width: 0; }
.qform__field--full { grid-column: 1 / -1; }
.qform label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
}
.qform label .req { color: var(--sand); opacity: 0.75; }
.qform input,
.qform select,
.qform textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(2, 21, 39, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  transition: border-color 0.5s var(--ease-soft), background 0.5s var(--ease-soft);
}
.qform textarea { min-height: 150px; resize: vertical; }
.qform input::placeholder, .qform textarea::placeholder { color: rgba(255, 255, 255, 0.35); }
.qform input:focus, .qform select:focus, .qform textarea:focus {
  outline: none;
  border-color: var(--sand);
  background: rgba(191, 168, 136, 0.08);
}
.qform select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--sand) 50%), linear-gradient(135deg, var(--sand) 50%, transparent 50%);
  background-position: calc(100% - 20px) 21px, calc(100% - 14px) 21px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}
.qform select option { background: var(--navy-800); color: var(--white); }
.qform input[aria-invalid="true"], .qform select[aria-invalid="true"], .qform textarea[aria-invalid="true"] {
  border-color: #e88b8b;
}
.qform__error {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: #ff9e9e;
  letter-spacing: 0;
  text-transform: none;
  min-height: 1.1em;
}
.qform__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.qform__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 8px; }
.qform__status { margin: 0; font-size: 0.9375rem; }
.qform__status[data-state="error"] { color: #ff9e9e; }
.qform__status[data-state="ok"] { color: var(--sand-bright); }
.qform__status[data-state="busy"] { color: var(--grey-light); }
.btn[disabled] { opacity: 0.55; cursor: progress; }

.contact__aside { display: grid; gap: 30px; position: sticky; top: 120px; }
.contact__lead { margin: 0 0 6px; font-size: 1.0625rem; }
.contact__direct {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 30px 28px;
  border: 1px solid rgba(191, 168, 136, 0.22);
  border-radius: var(--radius);
  background: rgba(191, 168, 136, 0.05);
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.9s var(--ease-soft), box-shadow 0.9s var(--ease-soft), transform 0.9s var(--ease-soft);
}
.contact__direct::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(120% 100% at 0% 100%, rgba(191, 168, 136, 0.22), rgba(191, 168, 136, 0) 62%);
  opacity: 0;
  transform: scale(0.9);
  transform-origin: 0% 100%;
  transition: opacity 1s var(--ease-soft), transform 1s var(--ease-soft);
  pointer-events: none;
}
.contact__direct:hover {
  border-color: rgba(191, 168, 136, 0.5);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}
.contact__direct:hover::before { opacity: 1; transform: scale(1); }

.contact__direct a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  color: var(--white);
  text-decoration: none;
  font-size: 1.0625rem;
  transition: color 0.6s var(--ease-soft);
}
.contact__direct a + a { border-top: 1px solid rgba(255, 255, 255, 0.09); }
.contact__direct a::after {
  content: "";
  position: absolute;
  left: 58px;
  right: 0;
  bottom: 10px;
  height: 1px;
  background: var(--sand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.75s var(--ease-soft);
}
.contact__direct a:hover { color: var(--sand); }
.contact__direct a:hover::after { transform: scaleX(1); }
.contact__direct .ico {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(191, 168, 136, 0.35);
  border-radius: 50%;
  color: var(--sand);
  transition: background 0.7s var(--ease-soft), color 0.7s var(--ease-soft),
              border-color 0.7s var(--ease-soft), transform 0.7s var(--ease-soft);
}
.contact__direct a:hover .ico {
  background: var(--sand);
  color: var(--navy);
  border-color: var(--sand);
  transform: translateY(-2px) rotate(-6deg);
}
.contact__direct svg { flex-shrink: 0; }

.pullquote {
  border-left: 2px solid var(--sand);
  padding: 4px 0 4px 26px;
  margin: 0;
}
.pullquote p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
  color: var(--white);
  margin: 0 0 14px;
}
.pullquote cite {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  font-style: normal;
}

@media (max-width: 1024px) {
  .contact__grid { grid-template-columns: 1fr; gap: 44px; }
  .contact__aside { position: static; }
}
@media (max-width: 560px) {
  .qform { padding: 30px 22px 32px; }
}

.thanks { max-width: 620px; margin-inline: auto; text-align: center; }
.thanks__tick { margin: 0 auto 30px; display: block; }
.thanks__lead {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  color: var(--white);
  margin: 0 0 18px;
  letter-spacing: 0.02em;
}
.thanks__text { margin: 0 0 38px; }
.thanks__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

.bloglist { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 30px; }
.postcard {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.7s var(--ease-soft), border-color 0.7s var(--ease-soft), box-shadow 0.7s var(--ease-soft);
}
.postcard:hover {
  transform: translateY(-7px);
  border-color: rgba(191, 168, 136, 0.5);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.42);
}
.postcard__media { aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy-700); }
.postcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.3s var(--ease-soft); }
.postcard:hover .postcard__media img { transform: scale(1.055); }
.postcard__body { display: flex; flex-direction: column; flex: 1; padding: 26px 26px 28px; }
.postcard__date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin: 0 0 14px;
}
.postcard__title { font-size: 1.3rem; line-height: 1.25; letter-spacing: 0.02em; margin: 0 0 14px; }
.postcard__excerpt { margin: 0 0 22px; font-size: 0.9375rem; line-height: 1.75; }
.postcard__more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
}
.postcard__more svg { transition: transform 0.5s var(--ease-soft); }
.postcard:hover .postcard__more svg { transform: translateX(5px); }

.post { display: grid; grid-template-columns: minmax(0, 1fr); gap: 0; }
.post__wrap { max-width: 780px; margin-inline: auto; }
.post__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 34px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(191, 168, 136, 0.22);
}
.post__hero {
  margin: 0 0 44px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(191, 168, 136, 0.2);
}
.post__hero img { width: 100%; height: auto; display: block; }

.prose > * { margin: 0 0 24px; }
.prose > *:last-child { margin-bottom: 0; }
.prose p { font-size: 1.0625rem; line-height: 1.85; color: var(--grey-light); }
.prose h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.2;
  margin: 52px 0 20px;
  color: var(--white);
}
.prose h3 { font-size: 1.3rem; margin: 38px 0 16px; color: var(--white); }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 12px; font-size: 1.0625rem; line-height: 1.8; color: var(--grey-light); }
.prose li::marker { color: var(--sand); }
.prose strong { color: var(--white); font-weight: 600; }
.prose a { color: var(--sand); }
.prose figure { margin: 38px 0; }
.prose figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  border: 1px solid rgba(191, 168, 136, 0.2);
}
.prose figcaption {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

.taglist { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 48px; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.taglist span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  border: 1px solid rgba(191, 168, 136, 0.35);
  border-radius: 100px;
  padding: 7px 15px;
}

@media (max-width: 860px) {
  .prose h2 { margin-top: 40px; }
}
