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

html, body { overflow-x: hidden; }
@supports (overflow: clip) {
  html, body { overflow-x: clip; }
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--color-ink);
  background: var(--color-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 var(--space-3);
  color: var(--color-navy);
  letter-spacing: -0.01em;
}

h1 { font-size: var(--fs-h1); font-weight: 500; }
h2 { font-size: var(--fs-h2); font-weight: 500; }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p { margin: 0 0 var(--space-3); }

a {
  color: var(--color-navy);
  text-decoration: none;
  transition: color var(--t-base);
}

a:hover { color: var(--color-gold-deep); }

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

ul, ol { padding-left: 1.25rem; }

::selection {
  background: var(--color-gold);
  color: var(--color-navy-deep);
}

/* Global emphasis: bold, gold accent, matches surrounding font family + size.
   Whole-sentence tag-line wrappers (.journey-outro, .facilities-outro p) override below. */
p em {
  font-family: inherit;
  font-weight: 700;
  font-style: normal;
  color: var(--color-gold-deep);
}

.journey-outro em,
.facilities-outro p em {
  font-weight: inherit;
  font-style: inherit;
  color: inherit;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: var(--fs-script);
  letter-spacing: 0.01em;
}

.text-gold { color: var(--color-gold); }
.text-navy { color: var(--color-navy); }
.text-cream { color: var(--color-cream); }
.text-white { color: var(--color-white); }

.section {
  padding: var(--space-8) 0;
}

.section-tight {
  padding: var(--space-6) 0;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-deep);
  margin: 0 0 var(--space-3);
}

.divider-line {
  width: 60px;
  height: 2px;
  background: var(--color-gold);
  border: 0;
  margin: var(--space-3) 0;
}
