@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Page is light-theme; --lb-black/--lb-charcoal are kept as literal dark
     accent values for media overlays and the two intentional dark bands
     (hero/tour video scrims, footer, contact CTA) — not the page bg. */
  --lb-black: #111111;
  --lb-charcoal: #1a1a1a;
  --lb-white: #ffffff;
  --lb-grey: #c9c7c2;
  --lb-grey-dim: #8a8886;
  --lb-gold: #74521c;
  --lb-gold-soft: rgba(156, 122, 68, .14);
  --lb-line: rgba(23, 20, 15, .12);
  --lb-line-on-dark: rgba(255, 255, 255, .08);
  --lb-font: 'Inter', Arial, Helvetica, sans-serif;

  /* Light-theme page chrome */
  --lb-bg: #ffffff;
  --lb-bg-alt: #f4f1ea;
  --lb-ink: #fdfdfd;
  --lb-ink-dim: #ffffff;

  /* Sidebar runs on its own light-cream palette, independent of the dark page theme */
  --lb-sb-bg: #f4f1ea;
  --lb-sb-ink: #171511;
  --lb-sb-ink-dim: #7a766c;
  --lb-sb-line: rgba(23, 21, 17, .1);

  --lb-ease: cubic-bezier(.19, 1, .22, 1);
  --lb-ease-soft: cubic-bezier(.4, 0, .2, 1);
  --lb-dur-s: .4s;
  --lb-dur-m: .8s;
  --lb-dur-l: 1.4s;

  --lb-container: 1360px;
  --lb-gutter: clamp(24px, 5vw, 96px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: var(--lb-bg);
}

body {
  font-family: var(--lb-font);
  color: var(--lb-ink);
  background: var(--lb-bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lb-container {
  max-width: var(--lb-container);
  margin-inline: auto;
  padding-inline: var(--lb-gutter);
}

/* Reduced motion */
@media (prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus visibility */
a:focus-visible,
button:focus-visible {
  outline: 1px solid var(--lb-gold);
  outline-offset: 4px;
}

/* Eyebrow / label utility */
.lb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--lb-gold);
  font-weight: 500;
}

.lb-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--lb-gold);
}

.lb-heading-xl {
  font-size: clamp(36px, 5.4vw, 74px);
  font-weight: 300;
  letter-spacing: -.01em;
  line-height: 1.05;
  color: var(--lb-ink);
}

.lb-heading-l {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 300;
  letter-spacing: -.005em;
  line-height: 1.15;
  color: var(--lb-gold);
}

.lb-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--lb-ink-dim);
  font-weight: 300;
  max-width: 52ch;
}

/* Buttons */
.lb-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 34px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--lb-ink);
  color: var(--lb-ink);
  position: relative;
  overflow: hidden;
  transition: color var(--lb-dur-s) var(--lb-ease-soft), border-color var(--lb-dur-s) var(--lb-ease-soft);
  isolation: isolate;
}

.lb-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--lb-gold);
  transform: translateX(-101%);
  transition: transform var(--lb-dur-m) var(--lb-ease);
  z-index: -1;
}

.lb-btn:hover {
  border-color: var(--lb-gold);
  color: var(--lb-white);
}

.lb-btn:hover::before {
  transform: translateX(0);
}

.lb-btn--ghost {
  border-color: var(--lb-line);
  color: var(--lb-charcoal);
}

.lb-btn--ghost:hover {
  color: var(--lb-white);
}

/* On-dark modifier: use wherever a button sits over hero/tour video or the CTA band */
.lb-btn--on-dark {
  border-color: var(--lb-white);
  color: var(--lb-white);
}

.lb-btn--on-dark.lb-btn--ghost {
  border-color: rgba(255, 255, 255, .35);
  color: var(--lb-grey);
}

.lb-btn--on-dark:hover,
.lb-btn--on-dark.lb-btn--ghost:hover {
  color: var(--lb-black);
}

.lb-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform var(--lb-dur-s) var(--lb-ease-soft);
}

.lb-btn:hover svg {
  transform: translateX(4px);
}

/* Scroll reveal base */
.lb-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s var(--lb-ease), transform 1s var(--lb-ease);
}

.lb-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lb-reveal-delay-1 {
  transition-delay: .1s;
}

.lb-reveal-delay-2 {
  transition-delay: .2s;
}

.lb-reveal-delay-3 {
  transition-delay: .3s;
}

/* Section divider — the signature arch motif */
.lb-arch-divider {
  display: flex;
  justify-content: center;
  padding: 0 0 var(--lb-gutter);
}

.lb-arch-divider svg {
  width: 120px;
  height: 60px;
  overflow: visible;
}

.lb-arch-divider path {
  fill: none;
  stroke: var(--lb-gold);
  stroke-width: 1;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  transition: stroke-dashoffset 1.6s var(--lb-ease);
}

.lb-arch-divider.is-visible path {
  stroke-dashoffset: 0;
}

.lb-section {
  padding-block: clamp(80px, 10vw, 160px);
  position: relative;
}

.lb-section--alt {
  background: var(--lb-bg-alt);
}