/* Deposit Center — cream luxury private-bank aesthetic */

:root {
  --cream: #f6f0e6;
  --cream-deep: #efe6d6;
  --parchment: #faf6ef;
  --parchment-warm: #f3ebdd;
  --espresso: #2a231c;
  --espresso-soft: #3d342b;
  --ink: #2a231c;
  --brass: #a8893d;
  --brass-bright: #c4a54e;
  --brass-muted: #8a7032;
  --gold-line: rgba(168, 137, 61, 0.45);
  --text: #2a231c;
  --muted: #6b5f52;
  --muted-soft: #8a7d6e;
  --line: rgba(42, 35, 28, 0.12);
  --line-strong: rgba(42, 35, 28, 0.22);
  --shadow: 0 18px 48px rgba(42, 35, 28, 0.08);
  --shadow-soft: 0 8px 24px rgba(42, 35, 28, 0.06);
  --radius: 2px;
  --nav-h: 84px;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  background-image:
    radial-gradient(ellipse at 12% 0%, rgba(168, 137, 61, 0.06), transparent 42%),
    radial-gradient(ellipse at 88% 100%, rgba(42, 35, 28, 0.04), transparent 45%);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--brass-muted);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: var(--espresso);
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--espresso);
  letter-spacing: 0.01em;
}

.container {
  width: min(1100px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(246, 240, 230, 0.92);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s, backdrop-filter 0.35s;
}

.site-header.is-scrolled {
  background: rgba(250, 246, 239, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--gold-line);
  box-shadow: var(--shadow-soft);
}

.site-header.is-home:not(.is-scrolled) {
  background: rgba(246, 240, 230, 0.55);
  border-bottom-color: transparent;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
  color: inherit;
}

.brand:hover {
  color: inherit;
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--espresso);
  padding: 0.35rem 0.45rem;
  border: 1px solid var(--brass);
  box-shadow:
    0 0 0 3px var(--espresso),
    0 6px 18px rgba(42, 35, 28, 0.28);
  flex-shrink: 0;
}

.brand-logo img {
  height: 52px;
  width: auto;
  display: block;
}

.brand-tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 160px;
  line-height: 1.35;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.nav-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--espresso-soft);
  padding: 0.55rem 0.7rem;
  position: relative;
  transition: color 0.2s;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.2rem;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--espresso);
  background: transparent;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 1.65rem;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, color 0.25s, border-color 0.25s;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
  box-shadow: 0 10px 28px rgba(42, 35, 28, 0.18);
}

.btn-primary:hover {
  background: var(--espresso-soft);
  color: var(--cream);
  border-color: var(--brass);
}

.btn-ghost {
  background: transparent;
  color: var(--espresso);
  border: 1px solid var(--brass);
}

.btn-ghost:hover {
  background: rgba(168, 137, 61, 0.12);
  color: var(--espresso);
}

.btn-outline {
  background: transparent;
  color: var(--espresso);
  border: 1px solid var(--line-strong);
}

.btn-outline:hover {
  border-color: var(--brass);
  color: var(--brass-muted);
}

.btn-login {
  background: transparent;
  color: var(--espresso);
  border: 1px solid var(--brass);
  padding: 0.5rem 1.1rem;
  font-size: 0.7rem;
  margin-left: 0.55rem;
}

.btn-login:hover {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--parchment);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--espresso);
  transition: 0.3s var(--ease);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0;
  background: rgba(250, 246, 239, 0.98);
  backdrop-filter: blur(12px);
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 99;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s var(--ease);
  border-top: 1px solid var(--gold-line);
}

.nav-mobile.is-open {
  display: flex;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.nav-mobile .nav-link {
  font-size: 0.85rem;
  padding: 0.95rem 0.85rem;
  border-bottom: 1px solid var(--line);
}

.nav-mobile .nav-link::after {
  display: none;
}

.nav-mobile .btn-login {
  margin: 1.25rem 0 0;
  width: 100%;
  text-align: center;
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 3.5rem) 0 5rem;
  overflow: hidden;
  color: var(--espresso);
}

.hero-frame {
  position: absolute;
  inset: calc(var(--nav-h) + 1.25rem) 1.25rem 1.25rem;
  border: 1px solid var(--gold-line);
  z-index: 2;
  pointer-events: none;
}

.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--brass);
  border-style: solid;
}

.hero-frame::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.hero-frame::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.35) saturate(0.75) brightness(0.92);
  transform: scale(1.06);
  animation: hero-drift 22s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  from { transform: scale(1.06) translate(0, 0); }
  to { transform: scale(1.12) translate(-1.5%, -1%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(246, 240, 230, 0.94) 0%, rgba(246, 240, 230, 0.82) 42%, rgba(246, 240, 230, 0.35) 78%, rgba(246, 240, 230, 0.2) 100%),
    linear-gradient(to top, rgba(42, 35, 28, 0.18), transparent 45%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1100px, calc(100% - 2.5rem));
  margin-inline: auto;
  max-width: 36rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 5.25rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin-bottom: 1.1rem;
  color: var(--espresso);
  animation: fade-up 1s var(--ease) both;
}

.hero-brand span {
  display: block;
  color: var(--brass-muted);
  font-style: italic;
  font-weight: 500;
}

.hero-rule {
  width: 64px;
  height: 1px;
  background: var(--brass);
  margin-bottom: 1.25rem;
  animation: fade-up 1s 0.08s var(--ease) both;
}

.hero-lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  max-width: 30rem;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 2rem;
  animation: fade-up 1s 0.14s var(--ease) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: fade-up 1s 0.22s var(--ease) both;
}

.hero-scroll {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted-soft);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bob 2.6s ease-in-out infinite;
}

.hero-scroll i {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--brass), transparent);
}

@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 7px); }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ——— Page hero (inner) ——— */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 4rem) 0 3.25rem;
  background: var(--cream-deep);
  color: var(--espresso);
  overflow: hidden;
  border-bottom: 1px solid var(--gold-line);
}

.page-hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: var(--nav-h);
  height: 1px;
  background: var(--gold-line);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-soft);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--brass-muted);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.6rem);
  color: var(--espresso);
  margin-bottom: 0.55rem;
  font-weight: 600;
}

.page-hero p {
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.page-hero-rule {
  width: 48px;
  height: 1px;
  background: var(--brass);
  margin: 1rem 0 0;
}

/* ——— Sections ——— */
.section {
  padding: 5.25rem 0;
}

.section-alt {
  background: var(--parchment);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-muted);
  margin-bottom: 0.85rem;
}

.section-head h2 {
  font-size: clamp(1.95rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.gold-rule {
  width: 48px;
  height: 1px;
  background: var(--brass);
  margin: 0.85rem 0 1.15rem;
}

/* Feature grid — numbered, no tech icons */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.35rem;
}

.feature-card {
  background: var(--parchment);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.85rem 1.75rem 1.6rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
  opacity: 0;
  transform: translateY(24px);
  position: relative;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--brass), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s;
}

.feature-card.is-visible {
  opacity: 1;
  transform: none;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--gold-line);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  font-style: italic;
  color: var(--brass);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
  line-height: 1;
}

.feature-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.7rem;
  font-weight: 600;
}

.feature-card h3 a {
  color: inherit;
}

.feature-card h3 a:hover {
  color: var(--brass-muted);
}

.feature-card p {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 1.2rem;
}

.more-link {
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.more-link::after {
  content: "→";
  transition: transform 0.25s var(--ease);
  font-size: 0.95rem;
}

.more-link:hover {
  color: var(--espresso);
}

.more-link:hover::after {
  transform: translateX(4px);
}

/* Split content */
.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: start;
}

.split-media {
  border: 1px solid var(--gold-line);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
  background: var(--espresso);
  padding: 4px;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  filter: sepia(0.18) saturate(0.85);
}

.split-body p + p {
  margin-top: 1rem;
}

.split-body p {
  color: var(--muted);
}

.split-body h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin: 1.85rem 0 0.85rem;
  font-weight: 600;
}

.split-body h2:first-child {
  margin-top: 0;
}

.quote-block {
  background: var(--espresso);
  color: rgba(246, 240, 230, 0.9);
  border: 1px solid var(--brass);
  padding: 1.85rem 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.quote-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--brass);
}

.quote-block p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.65;
  color: rgba(246, 240, 230, 0.9);
  font-style: italic;
}

/* Benefit tiles */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
}

.tile {
  background: var(--parchment);
  border: 1px solid var(--line);
  padding: 1.3rem 1.4rem;
  transition: border-color 0.25s, transform 0.25s var(--ease);
}

.tile:hover {
  border-color: var(--brass);
  transform: translateY(-2px);
}

.tile h3 {
  font-size: 1.15rem;
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.tile h3::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--brass);
  flex-shrink: 0;
  margin-top: 0.7em;
}

.bullet-list {
  margin: 1rem 0 1.5rem;
  color: var(--muted);
}

.bullet-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.55rem;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 1px;
  background: var(--brass);
}

/* Sidebar */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 290px;
  gap: 2.5rem;
  align-items: start;
}

.side-panel {
  background: var(--parchment);
  border: 1px solid var(--line);
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}

.side-panel h3 {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--gold-line);
  font-weight: 600;
}

.side-panel p {
  color: var(--muted);
  font-size: 0.95rem;
}

.side-panel + .side-panel,
.side-stack .side-panel {
  margin-top: 0;
  position: static;
}

.side-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.side-stack .side-panel {
  position: static;
}

.address-block {
  font-style: normal;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

/* CTA band */
.cta-band {
  margin: 0 0 5rem;
}

.cta-band-inner {
  background: var(--espresso);
  border: 1px solid var(--brass);
  padding: 3rem 2.5rem;
  color: var(--cream);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
}

.cta-band-inner::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid rgba(168, 137, 61, 0.35);
  pointer-events: none;
}

.cta-band h2 {
  color: var(--cream);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 0.45rem;
  font-weight: 600;
}

.cta-band p {
  color: rgba(246, 240, 230, 0.72);
  max-width: 28rem;
  position: relative;
  z-index: 1;
}

.cta-band .btn-primary {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--brass);
  box-shadow: none;
  position: relative;
  z-index: 1;
}

.cta-band .btn-primary:hover {
  background: var(--brass);
  color: var(--espresso);
  border-color: var(--brass);
}

/* Forms */
.form-card {
  background: var(--parchment);
  border: 1px solid var(--line);
  padding: 2.15rem;
  box-shadow: var(--shadow-soft);
}

.form-card h2 {
  font-size: 1.85rem;
  margin-bottom: 0.35rem;
}

.form-intro {
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--espresso);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: var(--cream);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--brass);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(168, 137, 61, 0.15);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-error {
  display: none;
  color: #8b3a2f;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.35rem;
}

.form-error.is-visible {
  display: block;
}

.form-status {
  margin-top: 1rem;
}

.login-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 2rem) 1.25rem 3rem;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(168, 137, 61, 0.1), transparent 45%),
    radial-gradient(ellipse at 90% 100%, rgba(42, 35, 28, 0.05), transparent 40%),
    var(--cream);
}

.login-card {
  width: min(420px, 100%);
  background: var(--parchment);
  border: 1px solid var(--line);
  padding: 2.35rem;
  box-shadow: var(--shadow);
  position: relative;
  outline: 1px solid var(--gold-line);
  outline-offset: -8px;
}

.login-card .brand {
  margin-bottom: 1.75rem;
  justify-content: center;
}

.login-card .brand-tag {
  display: none;
}

.login-card h1 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.35rem;
}

.login-card .form-intro {
  text-align: center;
}

.login-about {
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--gold-line);
}

.login-about h3 {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}

.login-about p {
  color: var(--muted);
  font-size: 0.95rem;
}

.login-error {
  color: #8b3a2f;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0.5rem 0 1rem;
  text-align: center;
}

.ssl-badge {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  opacity: 0.85;
}

.thanks-box {
  text-align: center;
  padding: 2rem 1rem;
}

.thanks-box h2 {
  font-size: 1.85rem;
  margin-bottom: 0.5rem;
  color: var(--espresso);
}

.thanks-box h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  background: var(--espresso);
  color: rgba(246, 240, 230, 0.68);
  padding: 3.75rem 0 2rem;
  border-top: 1px solid var(--brass);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .brand-name {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.55rem;
  margin-bottom: 0.55rem;
  font-weight: 600;
}

.footer-brand p {
  font-size: 0.92rem;
  max-width: 22rem;
  color: rgba(246, 240, 230, 0.5);
}

.footer-col h4 {
  color: var(--brass-bright);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-col a {
  display: block;
  color: rgba(246, 240, 230, 0.58);
  padding: 0.3rem 0;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--brass-bright);
}

.footer-bottom {
  border-top: 1px solid rgba(168, 137, 61, 0.25);
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(246, 240, 230, 0.4);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 960px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .split,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .brand-tag {
    display: none;
  }

  .hero-frame {
    inset: calc(var(--nav-h) + 0.75rem) 0.75rem 0.75rem;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    align-items: flex-end;
    padding-bottom: 5rem;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(246, 240, 230, 0.55) 0%, rgba(246, 240, 230, 0.92) 55%, rgba(246, 240, 230, 0.97) 100%);
  }

  .hero-brand {
    font-size: clamp(2.6rem, 12vw, 3.6rem);
  }

  .brand-logo img {
    height: 44px;
  }

  .tile-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-band-inner {
    padding: 2.15rem 1.5rem;
  }

  .cta-band-inner::before {
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
