/* =========================================================
   AMALITHUS ADVISORY
   Editorial design — serif display, generous whitespace
   Brand palette preserved from original.
   ========================================================= */

:root {
  /* original brand palette */
  --aubergine:   #281A39;
  --aubergine-2: #3A2B4F;
  --ink:         #14091F;
  --plum:        #5C5168;
  --mist:        #8F8898;
  --blush:       #E1BFB9;
  --blush-soft:  #EFD6D0;
  --cream:       #EAE0DA;
  --cream-soft:  #F5EFEA;
  --paper:       #FFFFFF;
  --line:        rgba(40, 26, 57, 0.10);
  --line-soft:   rgba(40, 26, 57, 0.06);

  --max:    1240px;
  --narrow: 880px;
  --pad:    clamp(20px, 4vw, 56px);

  --ease:   cubic-bezier(0.22, 1, 0.36, 1);

  --serif:  'Cormorant Garamond', 'Times New Roman', Times, serif;
  --sans:   'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --futura: 'Jost', 'Futura', 'Futura PT', 'Trebuchet MS', 'Avenir Next', Avenir, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01","liga","kern";
}

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

a { color: var(--aubergine); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--plum); }

::selection { background: var(--blush); color: var(--aubergine); }

/* ----- TYPOGRAPHY -------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--aubergine);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}
h1 {
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  line-height: 0.98;
  font-weight: 300;
  letter-spacing: -0.025em;
}
h2 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -0.018em;
}
h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.01em;
}
h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--plum);
}

p { margin: 0 0 1em; }
p.lede {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--aubergine);
  font-style: italic;
  letter-spacing: -0.005em;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--plum);
}
.kicker::before {
  content: '';
  width: 32px; height: 1px;
  background: currentColor;
  display: inline-block;
}
.kicker.center { justify-content: center; }
.kicker.light { color: var(--blush); }

/* ----- LAYOUT ------------------------------------------ */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.wrap.narrow { max-width: var(--narrow); }
section { padding: clamp(72px, 10vw, 140px) 0; }
section.tight { padding: clamp(48px, 6vw, 80px) 0; }

/* ----- TOP NAV ----------------------------------------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line-soft);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.topbar.scrolled { background: rgba(255,255,255,0.96); border-bottom-color: var(--line); }
.topbar.invert {
  background: transparent;
  border-bottom-color: rgba(255,255,255,0.12);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.topbar.invert.scrolled {
  background: rgba(20,9,31,0.85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: rgba(255,255,255,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  transition: height .3s var(--ease);
}
.topbar.scrolled .nav { height: 72px; }

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--aubergine);
  transition: color .25s var(--ease);
}
.brand .word {
  font-family: var(--futura);
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.brand .sub {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  margin-top: 8px;
  opacity: 0.7;
}
.topbar.invert .brand { color: #fff; }

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  align-items: center;
  gap: 36px;
}
.menu li { position: relative; }
.menu a {
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink);
  position: relative;
  padding: 8px 0;
  display: inline-block;
}
.topbar.invert .menu a { color: rgba(255,255,255,0.85); }
.menu a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.menu a:hover::after,
.menu a.is-active::after { transform: scaleX(1); }
.menu a:hover, .menu a.is-active { color: var(--aubergine); }
.topbar.invert .menu a:hover, .topbar.invert .menu a.is-active { color: #fff; }

/* Submenu always sits on a light background — keep its links dark regardless of invert */
.topbar.invert .submenu a { color: var(--ink); }
.topbar.invert .submenu a:hover,
.topbar.invert .submenu a.is-active { color: var(--aubergine); }

/* Mobile open menu has a white background — force dark links regardless of invert */
.topbar.invert .menu.is-open a { color: var(--ink); }
.topbar.invert .menu.is-open a:hover,
.topbar.invert .menu.is-open a.is-active { color: var(--aubergine); }

.menu li.has-sub > a::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  margin-right: 8px;
  opacity: 0.6;
}
.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 240px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 14px 40px rgba(40,26,57,0.10);
  padding: 10px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s .25s;
}
.submenu li a {
  display: block;
  padding: 11px 22px;
  font-size: 0.86rem;
  color: var(--ink);
}
.submenu li a::after { display: none; }
.submenu li a:hover { color: var(--aubergine); background: var(--cream-soft); }
.menu li.has-sub:hover .submenu,
.menu li.has-sub:focus-within .submenu {
  opacity: 1; pointer-events: auto; visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s 0s;
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 42px;
  border: 1px solid var(--aubergine);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aubergine);
  transition: background .25s var(--ease), color .25s var(--ease), transform .2s var(--ease);
}
.cta-pill:hover {
  background: var(--aubergine);
  color: #fff;
  transform: translateY(-1px);
}
.topbar.invert .cta-pill { border-color: rgba(255,255,255,0.45); color: #fff; }
.topbar.invert .cta-pill:hover { background: #fff; color: var(--aubergine); border-color: #fff; }

.burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}
.topbar.invert .burger { border-color: rgba(255,255,255,0.30); }
.burger span,
.burger span::before,
.burger span::after {
  display: block; width: 18px; height: 1.5px; background: var(--aubergine);
  transition: transform .25s var(--ease), top .25s var(--ease), background .25s var(--ease);
}
.topbar.invert .burger span,
.topbar.invert .burger span::before,
.topbar.invert .burger span::after { background: #fff; }
.burger span { position: relative; }
.burger span::before, .burger span::after {
  content: ''; position: absolute; left: 0;
}
.burger span::before { top: -6px; }
.burger span::after  { top:  6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

.menu.is-open {
  display: flex;
  position: absolute;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  top: 88px; left: 0; right: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 12px 0 18px;
}
.menu.is-open li { width: 100%; }
.menu.is-open li a { display: block; padding: 16px var(--pad); }
.menu.is-open li a::after { display: none; }
.menu.is-open .submenu {
  position: static; opacity: 1; visibility: visible; pointer-events: auto;
  border: none; box-shadow: none; transform: none; padding: 0;
  background: var(--cream-soft);
}
.menu.is-open .submenu li a { padding-left: calc(var(--pad) + 24px); font-size: 0.84rem; }
.menu.is-open .cta-pill-wrap { padding: 14px var(--pad) 4px; }
.menu.is-open .cta-pill { width: 100%; justify-content: center; }

@media (min-width: 960px) {
  .burger { display: none; }
  .menu { display: flex !important; position: static; flex-direction: row; padding: 0; background: transparent; border: none; }
  .menu.is-open { position: static; }
  .menu .cta-pill-wrap { display: inline-flex; }
}

/* ----- HOME HERO --------------------------------------- */
.hero-home {
  position: relative;
  color: #fff;
  isolation: isolate;
  min-height: clamp(560px, 92vh, 880px);
  display: flex;
  align-items: flex-end;
  margin-top: -88px; /* sit under transparent topbar */
  padding-top: 88px;
  overflow: hidden;
}
.hero-home .bg {
  position: absolute; inset: 0;
  background-image: url('../assets/img/hero-home.jpg');
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1.04);
  animation: drift 30s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: scale(1.04) translate(0,0); }
  to   { transform: scale(1.10) translate(-1.5%, -1%); }
}
.hero-home::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,9,31,0.5) 0%, rgba(20,9,31,0.55) 40%, rgba(20,9,31,0.85) 100%),
    radial-gradient(ellipse at 80% 10%, rgba(225,191,185,0.12), transparent 55%);
  z-index: -1;
}

.hero-home .wrap { padding-bottom: clamp(60px, 10vh, 120px); padding-top: clamp(120px, 18vh, 200px); }
.hero-home .kicker { color: var(--blush); margin-bottom: 32px; }
.hero-home h1 {
  color: #fff;
  max-width: 14ch;
  margin-bottom: 28px;
}
.hero-home h1 em {
  font-style: italic;
  background: linear-gradient(120deg, #fff 30%, var(--blush) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-home .sub {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.86);
  max-width: 36ch;
  line-height: 1.45;
}
.hero-home .actions { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 16px; }

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.scroll-cue::after {
  content: '';
  width: 1px; height: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), transparent);
  animation: cuePulse 2.2s ease-in-out infinite;
}
@keyframes cuePulse {
  0%,100% { opacity: 0.4; transform: scaleY(0.7); transform-origin: top; }
  50%     { opacity: 1;   transform: scaleY(1); }
}

/* ----- BUTTONS ----------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  background: var(--aubergine);
  color: #fff !important;
  border: 1px solid var(--aubergine);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .2s var(--ease), box-shadow .25s var(--ease);
}
.btn::after {
  content: '→';
  font-size: 1.1rem;
  letter-spacing: 0;
  transition: transform .25s var(--ease);
}
.btn:hover { background: var(--aubergine-2); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(20,9,31,0.22); }
.btn:hover::after { transform: translateX(4px); }
.btn-light { background: transparent; color: #fff !important; border-color: rgba(255,255,255,0.55); }
.btn-light:hover { background: #fff; color: var(--aubergine) !important; border-color: #fff; }
.btn-blush { background: var(--blush); color: var(--aubergine) !important; border-color: var(--blush); }
.btn-blush:hover { background: #fff; border-color: #fff; }
.btn-text {
  background: transparent; border: none; padding: 8px 0; color: var(--aubergine) !important;
  letter-spacing: 0.18em;
}
.btn-text:hover { background: transparent; transform: none; box-shadow: none; color: var(--plum) !important; }

/* ----- SECTION HEADER STYLES --------------------------- */
.editorial-head {
  display: grid;
  gap: 40px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
@media (min-width: 880px) {
  .editorial-head { grid-template-columns: 280px 1fr; gap: 80px; align-items: start; }
}
.editorial-head .left .kicker { margin-bottom: 24px; }
.editorial-head .left h2 { margin-bottom: 0; }
.editorial-head .right p { color: var(--plum); font-size: 1.05rem; line-height: 1.75; }
.editorial-head .right p + p { margin-top: 1em; }

/* ----- HOME: TRUSTED ALLY ------------------------------ */
.split-quote {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 920px) {
  .split-quote { grid-template-columns: 1.05fr 1fr; gap: clamp(60px, 8vw, 110px); }
}
.split-quote .copy h2 { margin-bottom: 32px; }
.split-quote .copy p { color: var(--plum); font-size: 1.04rem; }
.split-quote .copy p + p { margin-top: 1.1em; }
.split-quote .quote {
  position: relative;
  padding: 0 0 0 28px;
  border-left: 2px solid var(--blush);
}
.split-quote .quote .lede { margin: 0; }

/* ----- HOME: PRACTICES PREVIEW ------------------------- */
.practices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  margin-top: clamp(32px, 4vw, 56px);
}
@media (min-width: 880px) { .practices { grid-template-columns: repeat(3, 1fr); } }
.practice {
  background: var(--paper);
  padding: 44px 36px 40px;
  display: flex;
  flex-direction: column;
  transition: background .35s var(--ease);
  position: relative;
}
.practice:hover { background: var(--cream-soft); }
.practice .num {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--blush);
  margin-bottom: 16px;
}
.practice h3 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--aubergine);
  margin-bottom: 24px;
}
.practice ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.practice ul li {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 400;
  font-style: italic;
  color: var(--aubergine);
  padding: 8px 0;
  border-top: 1px solid var(--line-soft);
  letter-spacing: -0.005em;
}
.practice ul li:first-child { border-top: none; padding-top: 0; }
.practice .practice-link {
  margin-top: auto;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aubergine);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.practice .practice-link::after { content: '→'; transition: transform .25s var(--ease); }
.practice:hover .practice-link::after { transform: translateX(4px); }

/* ----- INTERIOR PAGE HERO ------------------------------ */
.page-hero {
  position: relative;
  color: #fff;
  isolation: isolate;
  min-height: clamp(440px, 70vh, 640px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-top: -88px;
  padding-top: 88px;
}
.page-hero .bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: -2;
  transform: scale(1.03);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,9,31,0.45) 0%, rgba(20,9,31,0.78) 100%),
    radial-gradient(ellipse at 100% 0%, rgba(225,191,185,0.10), transparent 60%);
  z-index: -1;
}
.page-hero .wrap { padding-top: clamp(120px, 18vh, 180px); padding-bottom: clamp(56px, 8vh, 96px); }
.page-hero .kicker { color: var(--blush); margin-bottom: 22px; }
.page-hero h1 { color: #fff; max-width: 18ch; }
.page-hero p {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.86);
  max-width: 56ch;
  line-height: 1.45;
  margin-top: 22px;
}

/* ----- WHO WE ARE -------------------------------------- */
.about-body { max-width: 760px; }
.about-body p { color: var(--plum); font-size: 1.08rem; line-height: 1.75; }
.about-body p + p { margin-top: 1.1em; }

.team {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: clamp(40px, 5vw, 64px);
}
@media (min-width: 720px) { .team { grid-template-columns: repeat(3, 1fr); } }
.member { text-align: left; }
.member .photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 22px;
}
.member .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.member:hover .photo img { transform: scale(1.04); }
.member .name {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--aubergine);
  margin: 0 0 4px;
  letter-spacing: -0.005em;
}
.member .role {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--plum);
}

.afterword {
  margin-top: clamp(60px, 8vw, 96px);
  max-width: 780px;
}
.afterword .lede { margin: 0; color: var(--aubergine); }

/* ----- SERVICES PAGE NUMBERED SECTIONS ----------------- */
.svc-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: clamp(56px, 7vw, 96px) 0;
  border-top: 1px solid var(--line-soft);
}
.svc-block:first-of-type { border-top: none; padding-top: clamp(20px, 4vw, 40px); }
@media (min-width: 920px) {
  .svc-block { grid-template-columns: 320px 1fr; gap: 80px; align-items: start; }
}
.svc-block .left .num {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--blush);
  line-height: 1;
  margin-bottom: 12px;
}
.svc-block .left h3 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--aubergine);
  margin: 0 0 18px;
  text-transform: none;
  line-height: 1.15;
}
.svc-block .left .lead {
  color: var(--plum);
  font-size: 1.02rem;
  line-height: 1.7;
}

.svc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
}
.svc-list li {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.svc-list li:first-child { border-top: none; padding-top: 0; }
.svc-list li:last-child { border-bottom: 1px solid var(--line); padding-bottom: 24px; }
.svc-list li .label {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--aubergine);
  margin-bottom: 6px;
  display: block;
}
.svc-list li .body {
  color: var(--plum);
  font-size: 1rem;
  line-height: 1.7;
}

/* simpler list (no descriptions) */
.svc-list-simple {
  list-style: none;
  padding: 0;
  margin: 0;
}
.svc-list-simple li {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-style: italic;
  font-weight: 400;
  color: var(--aubergine);
  padding: 18px 0;
  border-top: 1px solid var(--line);
  letter-spacing: -0.005em;
}
.svc-list-simple li:first-child { border-top: none; }
.svc-list-simple li:last-child { border-bottom: 1px solid var(--line); }

/* go-to other services */
.go-to {
  margin-top: clamp(80px, 10vw, 120px);
  padding-top: 36px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  align-items: baseline;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--plum);
}
.go-to .label { font-weight: 500; }
.go-to a {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--aubergine);
  position: relative;
  padding-bottom: 4px;
}
.go-to a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--blush);
  transform: scaleX(0.4);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.go-to a:hover::after { transform: scaleX(1); }
.go-to a:hover { color: var(--plum); }

/* ----- CONTACT PAGE OFFICES ---------------------------- */
.offices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 880px) { .offices { grid-template-columns: 1fr 1fr; gap: 80px; } }
.office .name {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 300;
  color: var(--aubergine);
  margin: 0 0 20px;
  letter-spacing: -0.018em;
}
.office .lines p { margin: 0 0 6px; color: var(--plum); font-size: 1.05rem; }
.office .lines a { color: var(--aubergine); }
.office .lines a:hover { color: var(--plum); }
.office .map {
  margin-top: 28px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}
.office .map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ----- CONNECT (contact form) -------------------------- */
.connect {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.connect::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 88% -10%, rgba(225,191,185,0.10), transparent 55%),
    radial-gradient(circle at -10% 110%, rgba(92,81,104,0.30), transparent 55%);
  pointer-events: none;
}
.connect .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 920px) { .connect .wrap { grid-template-columns: 1fr 1.1fr; gap: clamp(60px, 8vw, 110px); } }

.connect h2 { color: #fff; margin: 0 0 24px; }
.connect .info > p { color: rgba(255,255,255,0.74); font-size: 1.05rem; max-width: 36ch; }
.connect .lines { margin-top: 42px; display: grid; gap: 22px; }
.connect .line .lbl {
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--blush); font-weight: 500; margin-bottom: 6px;
}
.connect .line p { margin: 0; color: rgba(255,255,255,0.92); font-size: 1.02rem; line-height: 1.55; }
.connect .line a { color: #fff; }
.connect .line a:hover { color: var(--blush); }

/* form */
.form { display: grid; gap: 26px; align-content: start; }
.form .row { display: grid; grid-template-columns: 1fr; gap: 26px; }
@media (min-width: 600px) { .form .row { grid-template-columns: 1fr 1fr; } }
.field { position: relative; }
.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.30);
  color: #fff;
  font-family: var(--sans);
  font-size: 1rem;
  padding: 16px 2px 12px;
  transition: border-color .25s var(--ease);
}
.field textarea { min-height: 110px; resize: vertical; }
.field label {
  position: absolute;
  left: 2px; top: 16px;
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  pointer-events: none;
  transition: top .2s var(--ease), font-size .2s var(--ease), color .2s var(--ease), letter-spacing .2s var(--ease);
}
.field input:focus,
.field textarea:focus { outline: none; border-bottom-color: var(--blush); }
.field input:focus + label,
.field textarea:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:not(:placeholder-shown) + label {
  top: -6px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blush);
}
.form .btn { justify-self: start; margin-top: 8px; }

/* ----- FOOTER ------------------------------------------ */
.foot {
  background: #0E0617;
  color: rgba(255,255,255,0.6);
  padding: 60px 0 32px;
  font-size: 0.92rem;
}
.foot .wrap { display: grid; grid-template-columns: 1fr; gap: 36px; }
@media (min-width: 720px) { .foot .wrap { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; } }
.foot h5 {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blush);
  margin: 0 0 18px;
}
.foot p { margin: 0 0 8px; }
.foot a { color: rgba(255,255,255,0.85); }
.foot a:hover { color: var(--blush); }
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot ul li { margin-bottom: 10px; }

.foot .brandblock .word {
  font-family: var(--futura);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  display: block;
  margin-bottom: 8px;
}
.foot .brandblock .sub {
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blush);
}
.foot .brandblock p { margin-top: 18px; max-width: 38ch; line-height: 1.65; color: rgba(255,255,255,0.6); }

.foot .socials { display: flex; gap: 10px; margin-top: 18px; }
.foot .socials a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 500;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.foot .socials a:hover { background: var(--blush); border-color: var(--blush); color: var(--ink); }

.foot .colophon {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  margin-top: 16px;
  display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between;
  font-size: 0.74rem; color: rgba(255,255,255,0.4); letter-spacing: 0.04em;
}

/* ----- SCROLL REVEAL -----------------------------------
   Disabled — content is always visible to guarantee it shows
   even if JS / IntersectionObserver doesn't fire. */
.reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
  .hero-home .bg { animation: 