:root {
  --ink: #171614;
  --charcoal: #24211d;
  --charcoal-soft: #302c27;
  --ivory: #f5f1e8;
  --ivory-deep: #ece5d9;
  --paper: #fffdf8;
  --stone: #d8d0c2;
  --stone-dark: #b5aa9a;
  --muted: #625d55;
  --gold: #9b681d;
  --gold-dark: #71480d;
  --gold-pale: #e7d5af;
  --sage: #526156;
  --white: #fff;
  --danger: #a5362e;
  --shadow-sm: 0 10px 30px rgba(23, 22, 20, 0.08);
  --shadow-md: 0 24px 64px rgba(23, 22, 20, 0.13);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --font-display: "Iowan Old Style", Baskerville, "Palatino Linotype",
    "Book Antiqua", "Times New Roman", serif;
  --font-body: Inter, "Avenir Next", "Segoe UI", "Helvetica Neue", Arial,
    sans-serif;
  --container: min(1180px, calc(100% - 40px));
  --reading: min(760px, calc(100% - 40px));
  --header-height: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.65), transparent 27%),
    radial-gradient(circle at 83% 31%, rgba(231, 213, 175, 0.12), transparent 24%);
  content: "";
  pointer-events: none;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

p,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
dd,
figure,
blockquote {
  margin-top: 0;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
}

::selection {
  background: var(--gold-pale);
  color: var(--ink);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.reading-container {
  width: var(--reading);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(72px, 9vw, 120px);
}

.section-compact {
  padding-block: clamp(56px, 7vw, 88px);
}

.section-dark {
  overflow: hidden;
  background: var(--ink);
  color: rgba(255, 253, 248, 0.78);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--paper);
}

.section-paper {
  background: var(--paper);
}

.section-rule {
  border-top: 1px solid rgba(23, 22, 20, 0.13);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--gold-dark);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-dark .eyebrow {
  color: var(--gold-pale);
}

.display-title {
  max-width: 840px;
  margin-bottom: 26px;
  font-size: clamp(2.8rem, 7.6vw, 6.7rem);
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.page-title {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.2rem);
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.section-title {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.3rem, 4.4vw, 4.5rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.card-title {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.65;
}

.section-dark .lead {
  color: rgba(255, 253, 248, 0.72);
}

.text-muted {
  color: var(--muted);
}

.text-gold {
  color: var(--gold-dark);
}

.max-copy {
  max-width: 640px;
}

.kicker-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.kicker-line span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.kicker-line span:not(:last-child)::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin-left: 10px;
  background: var(--gold);
  content: "";
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition:
    background-color 200ms ease,
    border-color 200ms ease,
    color 200ms ease,
    transform 200ms var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button svg {
  width: 18px;
  height: 18px;
  transition: transform 200ms var(--ease);
}

.button:hover svg {
  transform: translateX(3px);
}

.button-primary {
  background: var(--ink);
  color: var(--paper);
}

.button-primary:hover {
  background: var(--charcoal-soft);
}

.button-gold {
  background: var(--gold-pale);
  color: var(--ink);
}

.button-gold:hover {
  background: #f2e2bf;
}

.button-outline {
  border-color: rgba(23, 22, 20, 0.25);
  background: rgba(255, 253, 248, 0.35);
}

.button-outline:hover {
  border-color: var(--ink);
  background: var(--paper);
}

.button-outline-light {
  border-color: rgba(255, 253, 248, 0.3);
  color: var(--paper);
}

.button-outline-light:hover {
  border-color: var(--paper);
  background: rgba(255, 253, 248, 0.08);
}

.icon-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}

.icon-link span {
  border-bottom: 1px solid currentColor;
}

.icon-link svg {
  width: 18px;
  height: 18px;
  transition: transform 200ms var(--ease);
}

.icon-link:hover svg {
  transform: translate(3px, -3px);
}

/* Header */
.announcement {
  position: relative;
  z-index: 102;
  min-height: 35px;
  padding: 7px 20px;
  background: var(--ink);
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.announcement a {
  color: var(--gold-pale);
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(23, 22, 20, 0.1);
  background: rgba(245, 241, 232, 0.94);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 118px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-text {
  display: none;
}

.brand-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23, 22, 20, 0.18);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 19px;
  height: 1.5px;
  background: currentColor;
  content: "";
  transition: transform 200ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before {
  position: absolute;
  top: -6px;
}

.nav-toggle-lines::after {
  position: absolute;
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-toggle:active {
  background: rgba(23, 22, 20, 0.08);
}

.site-nav {
  position: static;
  display: block;
  flex: 1 0 100%;
  width: 100%;
  height: auto;
  overflow: visible;
  padding: 8px 0 28px;
  background: transparent;
}

html:not(.js) .site-header {
  position: relative;
}

.js .site-nav.is-open {
  display: block;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link,
.nav-dropdown-toggle {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 4px;
  border: 0;
  border-bottom: 1px solid rgba(23, 22, 20, 0.12);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.55rem;
  text-align: left;
  text-decoration: none;
}

.nav-dropdown-toggle {
  display: none;
}

.js .nav-dropdown-toggle {
  display: flex;
}

.nav-link[aria-current="page"] {
  color: var(--gold-dark);
}

.nav-dropdown-toggle svg {
  width: 18px;
  transition: transform 200ms ease;
}

.nav-dropdown-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: block;
  margin: 0;
  padding: 8px 0 12px 18px;
  list-style: none;
}

.js .nav-dropdown-menu {
  display: none;
}

.js .nav-dropdown-menu.is-open {
  display: block;
}

.nav-dropdown-menu a {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-weight: 650;
  text-decoration: none;
}

.nav-dropdown-menu svg {
  width: 14px;
  height: 14px;
}

.nav-actions {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.nav-admin {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-admin svg {
  width: 16px;
  height: 16px;
}

/* Hero */
.home-hero {
  position: relative;
  padding: 18px 0 0;
}

.hero-shell {
  position: relative;
  width: min(1440px, calc(100% - 20px));
  min-height: clamp(650px, 76vw, 790px);
  overflow: hidden;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  background: #ded7cb;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  scale: 1.01;
}

.hero-shell::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(248, 244, 236, 0.98) 0%, rgba(248, 244, 236, 0.91) 33%, rgba(248, 244, 236, 0.24) 61%, rgba(248, 244, 236, 0.02) 100%),
    linear-gradient(0deg, rgba(23, 22, 20, 0.18), transparent 30%);
  content: "";
}

.hero-content {
  display: flex;
  min-height: inherit;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: clamp(72px, 10vw, 120px);
}

.hero-copy {
  width: min(690px, 58%);
}

.hero-copy .lead {
  max-width: 590px;
  color: #49443e;
}

.hero-marker {
  position: absolute;
  right: clamp(24px, 5vw, 78px);
  bottom: clamp(24px, 5vw, 60px);
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.62);
  border-radius: 50%;
  background: rgba(23, 22, 20, 0.62);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: var(--paper);
  text-align: center;
}

.hero-marker::before {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(231, 213, 175, 0.45);
  border-radius: inherit;
  content: "";
}

.hero-marker strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 0.9;
}

.hero-marker span {
  display: block;
  margin-top: 6px;
  color: var(--gold-pale);
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-strip {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 40px));
  margin: -28px auto 0;
  border: 1px solid rgba(23, 22, 20, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--shadow-sm);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.trust-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-item {
  display: grid;
  min-height: 108px;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 15px;
  padding: 22px;
}

.trust-item + .trust-item {
  border-top: 1px solid rgba(23, 22, 20, 0.1);
}

.trust-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--stone);
  border-radius: 50%;
  color: var(--gold-dark);
}

.trust-icon svg {
  width: 21px;
  height: 21px;
}

.trust-item strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  line-height: 1.15;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.82rem;
}

/* Interior page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(88px, 11vw, 150px);
  background: var(--ink);
  color: rgba(255, 253, 248, 0.72);
  isolation: isolate;
}

.page-hero h1 {
  color: var(--paper);
}

.page-hero .lead {
  color: rgba(255, 253, 248, 0.7);
}

.page-hero::before,
.page-hero::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(231, 213, 175, 0.18);
  content: "";
  transform: rotate(45deg);
}

.page-hero::before {
  top: -20vw;
  right: -7vw;
  width: clamp(320px, 52vw, 740px);
  height: clamp(320px, 52vw, 740px);
}

.page-hero::after {
  right: 22vw;
  bottom: -30vw;
  width: clamp(260px, 42vw, 620px);
  height: clamp(260px, 42vw, 620px);
  border-color: rgba(255, 253, 248, 0.08);
}

.page-hero-grid {
  display: grid;
  gap: 38px;
  align-items: end;
}

.page-hero-aside {
  max-width: 360px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 253, 248, 0.22);
  color: rgba(255, 253, 248, 0.68);
}

.page-hero-aside strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-pale);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Common grids and cards */
.section-heading-row {
  display: grid;
  gap: 26px;
  margin-bottom: clamp(42px, 6vw, 72px);
  align-items: end;
}

.section-heading-row > :last-child {
  max-width: 500px;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

.grid-2 > *,
.grid-3 > *,
.grid-4 > *,
.collection-grid > *,
.section-heading-row > *,
.page-hero-grid > * {
  min-width: 0;
}

.collection-grid {
  display: grid;
  gap: 18px;
}

.collection-card {
  position: relative;
  display: flex;
  min-height: 430px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(23, 22, 20, 0.11);
  border-radius: var(--radius-md);
  background: var(--paper);
  text-decoration: none;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 260ms var(--ease);
}

.collection-card:hover {
  border-color: rgba(155, 104, 29, 0.48);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.collection-card:active {
  transform: translateY(-2px) scale(0.995);
}

.collection-card:nth-child(2),
.collection-card:nth-child(3) {
  background: #e9e1d4;
}

.collection-card:nth-child(4) {
  background: var(--charcoal);
  color: rgba(255, 253, 248, 0.72);
}

.collection-card:nth-child(4) h3 {
  color: var(--paper);
}

.collection-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collection-card:nth-child(4) .collection-number {
  color: var(--gold-pale);
}

.collection-number svg {
  width: 22px;
  height: 22px;
  transition: transform 220ms var(--ease);
}

.collection-card:hover .collection-number svg {
  transform: translate(3px, -3px);
}

.vessel-art {
  width: 100%;
  height: 185px;
  margin-block: 28px 20px;
  color: var(--gold);
}

.collection-card:nth-child(4) .vessel-art {
  color: var(--gold-pale);
}

.vessel-art path,
.vessel-art line,
.vessel-art ellipse,
.vessel-art rect {
  vector-effect: non-scaling-stroke;
}

.collection-copy {
  position: relative;
  z-index: 2;
}

.collection-copy p {
  color: var(--muted);
}

.collection-card:nth-child(4) .collection-copy p {
  color: rgba(255, 253, 248, 0.65);
}

.feature-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: clamp(25px, 3vw, 34px);
  border: 1px solid rgba(23, 22, 20, 0.11);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.7);
}

.feature-card-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 48px;
  place-items: center;
  border: 1px solid var(--stone);
  border-radius: 50%;
  color: var(--gold-dark);
}

.feature-card-icon svg {
  width: 23px;
  height: 23px;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 750;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.feature-card-accent {
  border-color: rgba(82, 97, 86, 0.28);
  background: #e5e8df;
}

.feature-card-dark {
  background: var(--ink);
  color: rgba(255, 253, 248, 0.68);
}

.feature-card-dark h3 {
  color: var(--paper);
}

.feature-card-dark p {
  color: rgba(255, 253, 248, 0.65);
}

.feature-card-dark .feature-card-icon {
  border-color: rgba(255, 253, 248, 0.22);
  color: var(--gold-pale);
}

.section-dark .feature-card:not(.feature-card-dark) {
  background: var(--paper);
  color: var(--ink);
}

.section-dark .feature-card:not(.feature-card-dark) h3,
.section-dark .entity-card h3 {
  color: var(--ink);
}

.section-dark .feature-card:not(.feature-card-dark) p {
  color: var(--muted);
}

.fact-card {
  padding: 24px;
  border-top: 1px solid var(--stone);
}

.fact-card dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fact-card dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.25;
}

.entity-card {
  position: relative;
  min-height: 350px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(23, 22, 20, 0.12);
  border-radius: var(--radius-md);
  background: var(--paper);
}

.entity-card::before {
  position: absolute;
  top: 0;
  right: 32px;
  width: 1px;
  height: 60px;
  background: var(--gold);
  content: "";
}

.entity-card .entity-region {
  margin-bottom: 62px;
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.entity-card address {
  color: var(--muted);
  font-style: normal;
}

.entity-number {
  display: inline-flex;
  margin-top: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--ivory);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 750;
}

.split-panel {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
}

.split-panel-media {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

.split-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.split-panel-media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: inherit;
  content: "";
}

.split-panel-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 76px);
  color: rgba(255, 253, 248, 0.7);
}

.split-panel-content h2 {
  color: var(--paper);
}

.split-panel-content .lead {
  color: rgba(255, 253, 248, 0.7);
}

.quote-block {
  position: relative;
  padding: clamp(34px, 7vw, 72px);
  border: 1px solid rgba(23, 22, 20, 0.12);
  border-radius: var(--radius-lg);
  background: var(--paper);
}

.quote-block::before {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  content: "“";
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.6;
}

.quote-block blockquote {
  max-width: 900px;
  margin-bottom: 26px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.035em;
  line-height: 1.06;
  overflow-wrap: anywhere;
}

.quote-block .quote-caption {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.timeline::before {
  position: absolute;
  top: 11px;
  bottom: 10px;
  left: 8px;
  width: 1px;
  background: var(--stone);
  content: "";
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding-bottom: 44px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: relative;
  z-index: 1;
  width: 17px;
  height: 17px;
  border: 5px solid var(--ivory);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.timeline-year {
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline-item h3 {
  margin-bottom: 9px;
  font-size: 1.65rem;
}

.timeline-item p {
  color: var(--muted);
}

.numbered-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: values;
}

.numbered-list li {
  position: relative;
  display: grid;
  min-height: 110px;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding-block: 24px;
  border-top: 1px solid rgba(23, 22, 20, 0.14);
  counter-increment: values;
}

.numbered-list li::before {
  color: var(--gold-dark);
  content: "0" counter(values);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.numbered-list h3 {
  margin-bottom: 7px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 750;
}

.numbered-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.product-note {
  display: grid;
  gap: 24px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid rgba(155, 104, 29, 0.26);
  border-radius: var(--radius-md);
  background: #efe4cf;
}

.product-note h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.product-note p {
  color: #50483d;
}

/* Contact */
.contact-hero-card {
  display: grid;
  gap: 30px;
  align-items: center;
  padding: clamp(30px, 6vw, 64px);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.email-display {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.8vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.copy-status {
  min-height: 24px;
  margin-top: 10px;
  color: var(--sage);
  font-size: 0.86rem;
  font-weight: 700;
}

.enquiry-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.enquiry-list li {
  display: flex;
  gap: 12px;
  padding-block: 15px;
  border-top: 1px solid rgba(23, 22, 20, 0.12);
  color: var(--muted);
}

.enquiry-list svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 2px;
  color: var(--gold-dark);
}

.accordion {
  border-top: 1px solid rgba(23, 22, 20, 0.15);
}

.accordion-item {
  border-bottom: 1px solid rgba(23, 22, 20, 0.15);
}

.accordion-trigger {
  display: grid;
  width: 100%;
  min-height: 76px;
  grid-template-columns: 1fr 28px;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-align: left;
}

.accordion-trigger svg {
  width: 22px;
  height: 22px;
  transition: transform 200ms ease;
}

.accordion-trigger[aria-expanded="true"] svg {
  transform: rotate(45deg);
}

.accordion-panel {
  padding: 0 48px 24px 0;
  color: var(--muted);
}

/* Privacy */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;
  width: 0;
  height: 3px;
  background: var(--gold);
}

.privacy-layout {
  display: grid;
  gap: 48px;
  align-items: start;
}

.privacy-toc {
  padding: 24px;
  border: 1px solid rgba(23, 22, 20, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 248, 0.65);
}

.privacy-toc strong {
  display: block;
  margin-bottom: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.privacy-toc ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.88rem;
}

.privacy-toc a {
  display: inline-block;
  min-height: 44px;
  padding-block: 10px;
}

.legal-copy {
  counter-reset: legal-sections;
}

.legal-section {
  padding-block: 32px;
  border-top: 1px solid rgba(23, 22, 20, 0.14);
  counter-increment: legal-sections;
}

.legal-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-section h2 {
  margin-bottom: 16px;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.legal-section h2::before {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-dark);
  content: "0" counter(legal-sections);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.legal-section p,
.legal-section li {
  color: #49453f;
}

.legal-section ul {
  padding-left: 22px;
}

.legal-note {
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  background: rgba(231, 213, 175, 0.32);
  color: #49443d;
  font-size: 0.9rem;
}

/* CTA */
.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(72px, 10vw, 116px);
  background: var(--charcoal);
  color: rgba(255, 253, 248, 0.7);
}

.cta-band::after {
  position: absolute;
  right: -80px;
  bottom: -220px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(231, 213, 175, 0.2);
  content: "";
  transform: rotate(45deg);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 30px;
  align-items: end;
}

.cta-band h2 {
  max-width: 820px;
  margin-bottom: 18px;
  color: var(--paper);
  font-size: clamp(2.55rem, 5.7vw, 5.3rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.cta-band p {
  max-width: 620px;
}

/* Footer */
.site-footer {
  padding: 70px 0 28px;
  background: var(--ink);
  color: rgba(255, 253, 248, 0.64);
}

.footer-grid {
  display: grid;
  gap: 46px;
  padding-bottom: 54px;
}

.footer-brand img {
  width: 150px;
  height: 71px;
  margin-bottom: 22px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand p {
  max-width: 330px;
  font-size: 0.9rem;
}

.footer-heading {
  margin-bottom: 14px;
  color: var(--gold-pale);
  font-family: var(--font-body);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: rgba(255, 253, 248, 0.76);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--paper);
}

.footer-links .external-link {
  gap: 7px;
}

.footer-links svg {
  width: 13px;
  height: 13px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 253, 248, 0.13);
  font-size: 0.78rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.footer-bottom a {
  color: rgba(255, 253, 248, 0.68);
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.3);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: var(--shadow-sm);
  color: var(--paper);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

/* Progressive reveal */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms var(--ease),
    transform 650ms var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal-delay-1 {
  transition-delay: 80ms;
}

.js .reveal-delay-2 {
  transition-delay: 160ms;
}

.js .reveal-delay-3 {
  transition-delay: 240ms;
}

/* Screen-reader utility */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

@media (min-width: 620px) {
  .trust-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-item + .trust-item {
    border-top: 0;
    border-left: 1px solid rgba(23, 22, 20, 0.1);
  }

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

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

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

  .footer-grid {
    grid-template-columns: minmax(260px, 1.5fr) repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .contact-hero-card {
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  }

  .product-note {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}

@media (min-width: 760px) {
  .brand-text {
    display: block;
  }

  .section-heading-row {
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  }

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

  .page-hero-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.5fr);
  }

  .cta-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .split-panel {
    grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  }

  .split-panel-media {
    min-height: 620px;
  }

  .privacy-layout {
    grid-template-columns: 220px minmax(0, 760px);
    justify-content: center;
  }

  .privacy-toc {
    position: sticky;
    top: calc(var(--header-height) + 28px);
  }
}

@media (min-width: 1100px) {
  :root {
    --header-height: 86px;
  }

  body.nav-open {
    overflow: auto;
  }

  .nav-shell {
    flex-wrap: nowrap;
  }

  .brand img {
    width: 126px;
    height: 60px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex !important;
    flex: 0 1 auto;
    width: auto;
    height: auto;
    overflow: visible;
    align-items: center;
    gap: 22px;
    padding: 0;
    background: transparent;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 4px;
  }

  .nav-item {
    position: relative;
  }

  .nav-link,
  .nav-dropdown-toggle {
    width: auto;
    min-height: 46px;
    padding: 10px 11px;
    border: 0;
    font-family: var(--font-body);
    font-size: 0.84rem;
    font-weight: 720;
  }

  .nav-link {
    position: relative;
  }

  .nav-link::after {
    position: absolute;
    right: 11px;
    bottom: 7px;
    left: 11px;
    height: 1px;
    background: var(--gold);
    content: "";
    opacity: 0;
    transform: scaleX(0);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .nav-link:hover::after,
  .nav-link[aria-current="page"]::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .nav-dropdown-toggle {
    justify-content: flex-start;
    gap: 6px;
  }

  .nav-dropdown-toggle svg {
    width: 14px;
  }

  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 250px;
    padding: 10px;
    border: 1px solid rgba(23, 22, 20, 0.12);
    border-radius: var(--radius-sm);
    background: var(--paper);
    box-shadow: var(--shadow-md);
  }

  .nav-dropdown-menu::before {
    position: absolute;
    top: -12px;
    right: 0;
    left: 0;
    height: 14px;
    content: "";
  }

  .nav-dropdown-menu a {
    min-height: 46px;
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--ink);
    font-size: 0.84rem;
  }

  .nav-dropdown-menu a:hover {
    background: var(--ivory);
  }

  html:not(.js) .nav-dropdown-menu {
    position: static;
    display: flex;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  html:not(.js) .nav-dropdown-menu::before {
    display: none;
  }

  html:not(.js) .nav-dropdown-menu a {
    padding-inline: 8px;
    font-size: 0.78rem;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
  }

  .nav-actions .button {
    min-height: 44px;
    padding-inline: 16px;
  }

  .nav-admin {
    width: 44px;
    overflow: hidden;
    padding: 0;
    font-size: 0;
  }

  .nav-admin svg {
    width: 18px;
    height: 18px;
  }

  .hero-shell {
    min-height: min(770px, calc(100vh - 80px));
  }

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

  .footer-grid {
    grid-template-columns: minmax(300px, 1.8fr) repeat(3, 1fr);
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (max-width: 1099px) {
  .js .nav-toggle {
    display: inline-flex;
  }

  .js .site-nav {
    position: absolute;
    inset: 100% 0 auto;
    display: none;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    padding: 28px 20px 48px;
    background: var(--ivory);
  }

  .hero-copy {
    width: min(650px, 72%);
  }
}

@media (max-width: 719px) {
  .home-hero {
    padding-top: 10px;
  }

  .hero-shell {
    width: calc(100% - 16px);
    min-height: 720px;
    border-radius: 22px;
  }

  .hero-shell::before {
    background:
      linear-gradient(180deg, rgba(248, 244, 236, 0.98) 0%, rgba(248, 244, 236, 0.95) 43%, rgba(248, 244, 236, 0.15) 75%, rgba(23, 22, 20, 0.26) 100%);
  }

  .hero-media img {
    object-position: 65% bottom;
  }

  .hero-content {
    justify-content: flex-start;
    padding-top: 64px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-copy .display-title {
    max-width: 520px;
  }

  .hero-marker {
    right: 22px;
    bottom: 22px;
    width: 116px;
    height: 116px;
  }

  .hero-marker strong {
    font-size: 1.72rem;
  }

  .trust-strip {
    margin-top: -18px;
  }

  .collection-card {
    min-height: 390px;
  }

  .split-panel-media {
    order: 2;
  }

  .kicker-line span::after {
    display: none;
  }
}

@media (max-width: 479px) {
  :root {
    --container: min(100% - 32px, 1180px);
    --reading: min(100% - 32px, 760px);
  }

  .announcement {
    min-height: 33px;
    padding-inline: 12px;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
  }

  .brand img {
    width: 105px;
    height: 50px;
  }

  .display-title {
    font-size: clamp(2.9rem, 15vw, 4.3rem);
  }

  .page-title {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-shell {
    min-height: 750px;
  }

  .hero-content {
    padding-top: 50px;
  }

  .hero-copy .lead {
    font-size: 1rem;
  }

  .hero-marker {
    width: 104px;
    height: 104px;
  }

  .trust-item {
    min-height: 98px;
  }

  .collection-card {
    min-height: 370px;
  }

  .entity-card {
    min-height: 320px;
  }

  .quote-block {
    padding: 30px 24px;
  }

  .quote-block blockquote {
    font-size: clamp(1.75rem, 10vw, 2.2rem);
  }

  .footer-grid {
    gap: 34px;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
