/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:    #c0392b;
  --gold:   #d4a017;
  --dark:   #1a1410;
  --mid:    #2c241c;
  --light:  #f5f0e8;
  --muted:  #7a6a58;
  --white:  #ffffff;
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.7;
}

/* ─── Nav ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(26, 20, 16, 0.92);
  backdrop-filter: blur(8px);
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: .05em;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul a {
  color: #ccc;
  text-decoration: none;
  font-family: sans-serif;
  font-size: .9rem;
  letter-spacing: .04em;
  transition: color .2s;
}

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

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;

  /* gradient mountain silhouette background */
  background:
    linear-gradient(
      to bottom,
      #1a2a3a 0%,
      #2c4a6a 30%,
      #c17f4a 62%,
      #e8a96a 72%,
      #f5c88a 80%,
      #f0d8a8 100%
    );
}

/* mountain silhouettes via layered box-shadow clip trick */
.hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background:
    /* far mountains */
    radial-gradient(ellipse 260px 200px at 15% 110%, #3a5a4a 0%, transparent 100%),
    radial-gradient(ellipse 320px 260px at 38% 115%, #2e4a3c 0%, transparent 100%),
    radial-gradient(ellipse 280px 220px at 62% 112%, #354e40 0%, transparent 100%),
    radial-gradient(ellipse 240px 190px at 85% 110%, #3a5a48 0%, transparent 100%),
    /* mid mountains */
    radial-gradient(ellipse 220px 160px at 25% 108%, #1e3028 0%, transparent 100%),
    radial-gradient(ellipse 300px 200px at 50% 112%, #182820 0%, transparent 100%),
    radial-gradient(ellipse 200px 150px at 75% 108%, #1c2e24 0%, transparent 100%),
    /* foreground hills */
    linear-gradient(to top, #0d1a12 0%, transparent 40%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 5, 0.38);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 2rem;
}

.eyebrow {
  font-family: sans-serif;
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.hero-content h1 {
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 1;
  font-weight: normal;
  letter-spacing: -.02em;
  text-shadow: 0 4px 32px rgba(0,0,0,.6);
  margin-bottom: 1rem;
}

.tagline {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: #e8dcc8;
  margin-bottom: 2.5rem;
  font-style: italic;
}

.btn {
  display: inline-block;
  padding: .85rem 2.2rem;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-family: sans-serif;
  font-size: .9rem;
  letter-spacing: .06em;
  border-radius: var(--radius);
  transition: background .2s, transform .15s;
}

.btn:hover { background: #a93226; transform: translateY(-2px); }

/* ─── Sections ─── */
.section { padding: 6rem 2rem; }

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.section h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
  color: var(--mid);
}

/* ─── About ─── */
.about { background: var(--white); }

.about p {
  font-size: 1.1rem;
  color: #3c3028;
  max-width: 720px;
  margin-bottom: 1rem;
}

/* ─── Highlights ─── */
.highlights { background: var(--light); }

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

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  transition: transform .2s, box-shadow .2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}

.card-icon { font-size: 2.2rem; margin-bottom: .75rem; }
.card h3 { font-size: 1.15rem; margin-bottom: .5rem; color: var(--mid); }
.card p  { font-size: .95rem; color: var(--muted); line-height: 1.6; }

/* ─── Visit ─── */
.visit { background: var(--mid); color: var(--light); }
.visit h2 { color: var(--gold); }

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 700px) {
  .visit-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.visit-list { list-style: none; }
.visit-list li {
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 1rem;
}
.visit-list li:last-child { border-bottom: none; }
.visit-list strong { color: var(--gold); }

.visit-quote blockquote {
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.7;
  color: #d8c8b0;
  border-left: 4px solid var(--gold);
  padding-left: 1.5rem;
}

/* ─── Footer ─── */
footer {
  background: var(--dark);
  color: var(--muted);
  text-align: center;
  padding: 2rem;
  font-family: sans-serif;
  font-size: .85rem;
  letter-spacing: .04em;
}

.footer-credit {
  margin-top: .5rem;
  font-size: .8rem;
  color: #5a4a38;
}

.footer-credit a {
  color: var(--gold);
  text-decoration: none;
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* ─── Scroll reveal ─── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
