:root {
  --navy: #051c2c;
  --navy-deep: #031018;
  --ink: #051c2c;
  --gold: #c4a36a;
  --gold-soft: #d4b88a;
  --cream: #f6f3ee;
  --paper: #ffffff;
  --line: #d8d2c8;
  --muted: #6b737a;
  --danger: #9b2c2c;
  --header-h: 110px;
  --site-w: 1560px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", "Helvetica Neue", Arial, sans-serif;
  --text-body: clamp(15px, 0.28vw + 14.2px, 18px);
  --text-small: clamp(11px, 0.15vw + 10.4px, 13px);
  --text-kicker: clamp(11px, 0.18vw + 10.5px, 13px);
  --text-nav: clamp(11px, 0.16vw + 10.5px, 13px);
  --text-btn: clamp(11px, 0.16vw + 10.6px, 13px);
  --text-meta: clamp(12px, 0.2vw + 11.2px, 15px);
  --text-price: clamp(14px, 0.25vw + 12.8px, 17px);
  --text-lede: clamp(16px, 0.4vw + 14.4px, 20px);
  --text-card: clamp(16px, 1.2vw, 22px);
  --text-point: clamp(22px, 1.5vw, 30px);
  --text-slide: clamp(22px, 1.9vw, 34px);
  --text-section: clamp(28px, 2.5vw, 46px);
  --text-phone: clamp(18px, 1.35vw, 26px);
  --text-hero: clamp(36px, 4.6vw, 80px);
  --text-display: clamp(40px, 4.2vw, 76px);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--sans);
  font-size: var(--text-body);
  line-height: 1.5;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

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

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

button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-wrap {
  width: min(var(--site-w), calc(100% - clamp(32px, 5.5vw, 100px)));
  margin: 0 auto;
}

.section-kicker {
  font-size: var(--text-kicker);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--serif);
  font-size: var(--text-section);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--navy);
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  font-size: var(--text-btn);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}

.ghost-btn-solid {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--paper);
}

.honeypot {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}
