:root {
  --bg: #07110f;
  --bg-alt: #0b1f1c;
  --fg: #e8e0d3;
  --ink: rgba(244, 240, 232, 0.86);
  --muted: rgba(244, 240, 232, 0.68);
  --muted-2: rgba(244, 240, 232, 0.58);
  --accent: #c6a06f;
  --accent-2: #7b2a35;
  --sage: #6aa79a;
  --accent-soft: rgba(198, 160, 111, 0.18);
  --border-subtle: rgba(246, 237, 221, 0.18);
  --border-2: rgba(198, 160, 111, 0.24);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.6);
  --radius: 18px;
  --container-width: 980px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(1100px 600px at 18% -10%, rgba(106, 167, 154, 0.22), transparent 60%),
    radial-gradient(900px 520px at 82% 18%, rgba(198, 160, 111, 0.18), transparent 58%),
    radial-gradient(900px 520px at 80% 85%, rgba(123, 42, 53, 0.18), transparent 58%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 60%, #06100e 100%);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(7, 17, 15, 0.92), rgba(7, 17, 15, 0.78));
  border-bottom: 1px solid var(--border-subtle);
}

.nav {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  letter-spacing: 0.07em;
}

.nav-brand-title {
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-brand-sub {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.14em;
}

.nav-links {
  display: flex;
  gap: 1.15rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  padding-bottom: 0.2rem;
  border-bottom: 1px solid transparent;
  color: var(--muted);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.nav-links a:hover {
  color: var(--fg);
  border-color: var(--accent);
}

main {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 2.6rem 1.25rem 3.5rem;
}

section {
  padding: 3.3rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.55rem, 4vw, 3.55rem);
  line-height: 1.12;
  margin-bottom: 1.1rem;
}

h2 {
  font-size: 1.62rem;
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.12rem;
  margin-bottom: 0.35rem;
}

p {
  color: var(--muted);
  margin-bottom: 0.95rem;
}

p:last-child {
  margin-bottom: 0;
}

.plain-quote {
  border-left: 2px solid rgba(198, 160, 111, 0.85);
  background: rgba(16, 31, 28, 0.35);
  border-radius: calc(var(--radius) - 6px);
  padding: 0.85rem 1rem;
  margin: 1.05rem 0 1.15rem;
}

.plain-quote p {
  color: rgba(244, 240, 232, 0.78);
  font-style: italic;
  margin-bottom: 0.55rem;
}

.plain-quote p:last-child {
  margin-bottom: 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.1fr);
  gap: 3rem;
  align-items: center;
  padding-top: 2.2rem;
}

.hero-copy {
  max-width: 36rem;
}

.hero-tagline {
  font-size: 0.98rem;
  color: var(--muted);
  margin-bottom: 1.55rem;
}

.hero-orbit {
  justify-self: center;
  width: min(340px, 100%);
  aspect-ratio: 4 / 5;
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(120px 120px at 30% 18%, rgba(198, 160, 111, 0.65), transparent 70%),
    radial-gradient(240px 220px at 70% 35%, rgba(106, 167, 154, 0.35), transparent 70%),
    radial-gradient(260px 240px at 45% 78%, rgba(123, 42, 53, 0.28), transparent 70%),
    linear-gradient(145deg, rgba(20, 37, 33, 0.92), rgba(6, 12, 11, 0.96));
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-orbit::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 300px at 40% -20%, rgba(246, 237, 221, 0.12), transparent 58%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.28) 70%, rgba(0, 0, 0, 0.46) 100%);
  pointer-events: none;
}

.orbit-core,
.orbit-ring {
  display: none;
}

.orbit-label {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.25rem;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.35rem;
}

.card {
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  background:
    radial-gradient(240px 190px at 16% 0%, rgba(198, 160, 111, 0.14), transparent 60%),
    radial-gradient(240px 190px at 85% 18%, rgba(106, 167, 154, 0.14), transparent 60%),
    linear-gradient(135deg, rgba(16, 31, 28, 0.92), rgba(6, 12, 11, 0.96));
  padding: 1.25rem 1.3rem;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
}

.card h3 {
  margin-bottom: 0.35rem;
}

.card span.label {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(198, 160, 111, 0.95);
  margin-bottom: 0.4rem;
}

.meta-list {
  list-style: none;
  font-size: 0.86rem;
  color: var(--muted);
  margin-top: 0.5rem;
  padding-left: 0;
}

.meta-list li {
  position: relative;
  padding-left: 1.1rem;
}

.meta-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.12rem;
  font-size: 0.75rem;
  color: var(--accent);
}

.meta-list li + li {
  margin-top: 0.15rem;
}

.plain-list {
  list-style: disc;
  margin-top: 0.5rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.plain-list li + li {
  margin-top: 0.2rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.pill {
  font-size: 0.76rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(246, 237, 221, 0.16);
  background: rgba(7, 14, 13, 0.55);
  color: var(--muted);
}

.time-map-highlight {
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(106, 167, 154, 0.26);
  background:
    radial-gradient(360px 240px at 12% 10%, rgba(106, 167, 154, 0.18), transparent 60%),
    radial-gradient(360px 240px at 88% 18%, rgba(198, 160, 111, 0.16), transparent 60%),
    linear-gradient(135deg, rgba(12, 24, 22, 0.92), rgba(6, 12, 11, 0.96));
  padding: 1.7rem 1.8rem;
  margin-top: 1.35rem;
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.42);
}

.time-map-highlight h3 {
  margin-bottom: 0.4rem;
}

.time-map-aside {
  font-size: 0.82rem;
  color: var(--muted);
  border-left: 1px solid var(--border-subtle);
  padding-left: 0.9rem;
  margin-top: 0.9rem;
}

.journeys-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.4rem;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.9rem 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: rgba(244, 240, 232, 0.9);
}

.booking-panel {
  border-radius: var(--radius);
  border: 1px solid var(--border-2);
  background:
    radial-gradient(520px 220px at 10% 10%, rgba(198, 160, 111, 0.18), transparent 60%),
    radial-gradient(520px 220px at 90% 90%, rgba(106, 167, 154, 0.14), transparent 60%),
    linear-gradient(135deg, rgba(16, 31, 28, 0.9), rgba(7, 13, 12, 0.96));
  padding: 1.7rem 1.8rem;
  box-shadow: var(--shadow);
}

.booking-panel p {
  max-width: 32rem;
}

.booking-actions {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  font-size: 0.85rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.5rem 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  user-select: none;
  border: 1px solid transparent;
  transition: transform 0.08s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  background: linear-gradient(135deg, rgba(198, 160, 111, 0.95), rgba(198, 160, 111, 0.72));
  color: #1a1108;
  border-color: rgba(198, 160, 111, 0.9);
  box-shadow: 0 12px 30px rgba(198, 160, 111, 0.14);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.5rem 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  text-decoration: none;
  user-select: none;
  border: 1px solid var(--border-subtle);
  transition: transform 0.08s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-outline:hover {
  background: transparent;
  color: var(--accent);
  border-color: rgba(198, 160, 111, 0.9);
}

.btn-ghost:hover {
  color: var(--fg);
  border-color: rgba(198, 160, 111, 0.75);
}

.btn-outline:active,
.btn-ghost:active {
  transform: translateY(1px);
}

footer {
  border-top: 1px solid var(--border-subtle);
  margin-top: 3rem;
  padding: 1.5rem 1.25rem 2.6rem;
  font-size: 0.82rem;
  color: var(--muted);
}

footer .footer-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.about-photo-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow);
  height: 280px;
  background: rgba(16, 31, 28, 0.7);
  margin-bottom: 1.1rem;
}

.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

.bottom-cta {
  padding: 2.5rem 0 0;
}

.bottom-cta-separator {
  border: none;
  border-top: 1px solid var(--border-subtle);
  margin: 0 0 1.8rem;
}

.bottom-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
  color: var(--muted);
}

.bottom-cta-inner p {
  margin-bottom: 0.9rem;
}

.bottom-cta-actions {
  margin-top: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  font-size: 0.85rem;
}

@media (max-width: 860px) {
  .hero,
  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 1.5rem;
  }

  .hero-orbit {
    order: -1;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.95rem;
  }
}
