:root {
  --deep: #0d2630;        /* deep alpine slate */
  --deep-2: #123643;
  --teal: #1f7d8c;        /* lake teal accent */
  --amber: #f0a63c;       /* warm sunrise accent */
  --ink: #1a2226;
  --muted: #5a6a70;
  --paper: #ffffff;
  --wash: #eef4f5;        /* misty */
  --line: #d9e4e6;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
  overflow-x: hidden;
}

.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 760px; }

h1, h2, h3 {
  font-family: "Sora", system-ui, sans-serif;
  color: var(--deep);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}

a { color: var(--teal); }

.kicker {
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 12px;
}

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 30;
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand {
  font-family: "Sora", sans-serif; font-size: 1.28rem; font-weight: 800;
  text-decoration: none; color: #fff; letter-spacing: -0.02em;
  transition: color .35s;
}
.brand span { color: var(--amber); }
.site-header.scrolled .brand { color: var(--deep); }
.nav nav a {
  margin-left: 26px; text-decoration: none; color: rgba(255,255,255,0.85);
  font-size: 0.95rem; font-weight: 500; transition: color .15s;
}
.site-header.scrolled .nav nav a { color: var(--muted); }
.nav nav a:hover { color: var(--amber); }

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: center 60%;
  transform: scale(1.08);
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.06) translateY(0); }
  to   { transform: scale(1.16) translateY(-2%); }
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,38,48,0.72) 0%, rgba(13,38,48,0.30) 34%, rgba(13,38,48,0.45) 100%),
    linear-gradient(90deg, rgba(13,38,48,0.6) 0%, rgba(13,38,48,0.05) 60%);
}
.hero-content { position: relative; z-index: 2; padding-top: 96px; }
.hero .eyebrow {
  display: inline-block;
  font-family: "Sora", sans-serif; font-weight: 700;
  color: var(--amber); letter-spacing: 0.2em; text-transform: uppercase;
  font-size: 0.8rem; margin: 0 0 18px;
}
.hero h1 {
  color: #fff; font-weight: 800;
  font-size: clamp(2.4rem, 6.4vw, 4.4rem);
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.hero .lede {
  color: rgba(255,255,255,0.9); font-size: 1.16rem; max-width: 540px; margin: 22px 0 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-badges {
  position: absolute; z-index: 2; left: 0; right: 0; bottom: 26px;
  display: flex; flex-wrap: wrap; gap: 10px 12px; justify-content: center;
  padding: 0 24px;
}
.hero-badges span {
  font-family: "Sora", sans-serif; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.06em;
  color: #fff; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.28);
  padding: 8px 15px; border-radius: 999px; backdrop-filter: blur(4px);
}

/* Buttons */
.btn {
  display: inline-block; font-weight: 600; font-size: 0.95rem; font-family: "Inter", sans-serif;
  background: var(--amber); color: #3a2705; text-decoration: none;
  padding: 14px 26px; border: none; border-radius: 10px; cursor: pointer;
  transition: transform .12s ease, background .2s ease, box-shadow .2s ease;
  box-shadow: 0 8px 24px rgba(240, 166, 60, 0.28);
}
.btn:hover { background: #e5992b; transform: translateY(-2px); box-shadow: 0 12px 30px rgba(240,166,60,0.4); }
.btn:active { transform: translateY(0); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.6); box-shadow: none; }
.btn-ghost:hover { background: rgba(255,255,255,0.14); box-shadow: none; }

/* Sections */
.section { padding: 92px 0; }
.section.alt { background: var(--wash); }
.section h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 700; margin-bottom: 30px; }
.section p { color: var(--muted); font-size: 1.05rem; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 30px;
  box-shadow: 0 3px 14px rgba(13, 38, 48, 0.05);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(13,38,48,0.12); border-color: #bfe0e4; }
.card .ico {
  font-size: 1.7rem; width: 54px; height: 54px; display: grid; place-items: center;
  background: var(--wash); border-radius: 12px; margin-bottom: 16px;
}
.card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.card p { margin: 0; font-size: 1rem; }

/* Visit info */
.info-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 22px; margin-bottom: 30px;
}
.info-item { display: grid; gap: 4px; align-content: start; }
.info-label {
  font-family: "Sora", sans-serif; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal);
}
.info-item a, .info-item span:not(.info-label) { color: var(--ink); text-decoration: none; font-size: 1.05rem; font-weight: 500; }
.info-item a:hover { color: var(--teal); text-decoration: underline; }

.map-wrap { border-radius: 16px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 6px 20px rgba(13,38,48,0.08); }
.map-wrap iframe { display: block; width: 100%; height: 340px; border: 0; }

/* Contact */
.contact-intro { margin-bottom: 32px; }
#contact-form { display: grid; gap: 20px; }
.field { display: grid; gap: 6px; }
.field label { font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.field input, .field textarea {
  font-family: inherit; font-size: 1rem; padding: 13px 15px;
  border: 1px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink);
  width: 100%; resize: vertical; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(31, 125, 140, 0.16);
}
#contact-form .btn { justify-self: start; }
.form-status { margin: 0; font-size: 0.95rem; font-weight: 500; min-height: 1.2em; }
.form-status.success { color: var(--teal); }
.form-status.error { color: #b0322b; }

/* Footer */
.site-footer { background: var(--deep); color: rgba(255,255,255,0.78); padding: 40px 0; }
.site-footer .container { display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; align-items: center; }
.site-footer p { margin: 0; font-size: 0.9rem; }
.site-footer a { color: var(--amber); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.cards .card.reveal:nth-child(2) { transition-delay: .09s; }
.cards .card.reveal:nth-child(3) { transition-delay: .18s; }
.hero-badges span.reveal:nth-child(2) { transition-delay: .08s; }
.hero-badges span.reveal:nth-child(3) { transition-delay: .16s; }

@media (max-width: 560px) {
  .nav nav a { margin-left: 14px; }
  .section { padding: 64px 0; }
  .hero-badges { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-photo { animation: none; transform: scale(1.04); }
  .reveal { opacity: 1; transform: none; transition: none; }
}
