*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--ink-900);
  background: var(--cream-base);
  line-height: 1.6;
}
html { scroll-behavior: smooth; }
:root {
  --ink-900: #141312;
  --ink-700: #3d3a37;
  --ink-500: #6b6660;
  --cream-0: #fffcf7;
  --cream-base: #f7f3eb;
  --cream-muted: #efe9de;
  --cream-deep: #e5dfd2;
  --charcoal: #0f0f0e;
  --charcoal-soft: #1c1b1a;
  --charcoal-mid: #2a2928;
  --accent-strong: #1a1918;
  --border-subtle: rgba(20, 19, 18, 0.08);
  --border-soft: rgba(20, 19, 18, 0.12);
  --border-medium: rgba(20, 19, 18, 0.18);
  --white: var(--cream-0);
  --container: 1120px;
  --radius: 14px;
  --shadow: 0 12px 36px rgba(15, 14, 12, 0.08);
  --shadow-hover: 0 20px 48px rgba(15, 14, 12, 0.12);
}
.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 252, 247, 0.94);
  backdrop-filter: saturate(1.05) blur(10px);
  border-bottom: 1px solid var(--border-subtle);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: .875rem 0; }
.brand { display: inline-flex; align-items: center; gap: .5rem; text-decoration: none; color: var(--ink-900); font-weight: 800; letter-spacing: .02em; }
.brand-text { font-size: 1.125rem; font-family: "Times New Roman", Times, serif; font-style: italic; }
.brand-logo { width: auto; height: auto; max-height: 30px; display: block; border-radius: 6px; object-fit: cover; }
.site-nav ul { list-style: none; display: flex; gap: 1rem; margin: 0; padding: 0; }
.site-nav a { display: inline-block; padding: .5rem .75rem; border-radius: 999px; color: var(--ink-700); text-decoration: none; font-weight: 600; transition: background .2s ease, color .2s ease; }
.site-nav a:hover { background: var(--cream-muted); color: var(--ink-900); }
.site-nav a.active { background: var(--cream-deep); color: var(--ink-900); box-shadow: inset 0 0 0 1px var(--border-soft); }
.site-nav a[href="#services"].active { background: transparent; box-shadow: none; color: var(--ink-700); }
.site-nav a[href="#about"].active { background: transparent; box-shadow: none; color: var(--ink-700); }
.cta-link { background: var(--charcoal); color: var(--cream-0) !important; box-shadow: var(--shadow); }
.cta-link:hover { background: var(--charcoal-soft); }
.nav-toggle { display: none; border: 0; background: transparent; cursor: pointer; }
.nav-toggle-bar { display: block; width: 22px; height: 2px; background: var(--ink-700); margin: 5px 0; transition: .2s ease; }
.hero {
  position: relative;
  color: var(--cream-0);
  overflow: hidden;
}
.bg-hero {
  background-color: var(--charcoal);
  background-image:
    linear-gradient(165deg, rgba(12, 11, 10, 0.55) 0%, rgba(22, 21, 19, 0.72) 42%, rgba(10, 10, 9, 0.88) 100%),
    url('./images/background.jpg');
  background-size: cover, cover;
  background-repeat: no-repeat;
  background-position: center center, center center;
  min-height: 100vh;
}
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 2rem; padding: 6rem 0 4rem; }
.hero-home {
  display: flex;
  flex-direction: column;
  min-height: min(100vh, 920px);
  position: relative;
}
.hero-home-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 7, 0.45) 0%, rgba(14, 13, 12, 0.55) 38%, rgba(12, 11, 10, 0.72) 100%),
    radial-gradient(ellipse 85% 65% at 50% 42%, rgba(0, 0, 0, 0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero-home-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(4.5rem, 12vw, 7rem) 0 clamp(3.5rem, 8vw, 5rem);
  min-height: 0;
}
.hero-copy {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}
.hero-title {
  margin: 0;
  font-size: clamp(2.1rem, 4.2vw + 1.15rem, 3.35rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--cream-0);
  text-shadow:
    0 2px 28px rgba(0, 0, 0, 0.35),
    0 1px 3px rgba(0, 0, 0, 0.25);
}
.hero-lead {
  margin: 1.35rem 0 0;
  font-family: "Cormorant Garamond", "Times New Roman", Times, serif;
  font-weight: 600;
  font-size: clamp(1.14rem, 1.05vw + 0.95rem, 1.42rem);
  line-height: 1.45;
  letter-spacing: 0.055em;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  color: rgba(255, 252, 247, 0.9);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.28);
}
.btn { display: inline-block; padding: .7rem 1rem; border-radius: 999px; text-decoration: none; font-weight: 700; letter-spacing: .01em; }
.btn-primary {
  background: var(--cream-0);
  color: var(--ink-900);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.btn-primary:hover { background: var(--cream-muted); }
.btn-ghost { background: transparent; color: rgba(255, 252, 247, 0.92); border: 1px solid rgba(255, 252, 247, 0.35); }
.btn-ghost:hover { background: rgba(255, 252, 247, 0.1); }
.hero .wave { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 120px; }
.section { padding: 4rem 0; background: var(--cream-0); }
.section-alt { background: linear-gradient(180deg, var(--cream-0) 0%, var(--cream-base) 100%); }
.section h2 { margin: 0 0 1rem; font-size: clamp(1.4rem, 1.2vw + 1rem, 2rem); color: var(--ink-900); }
.section p { margin: .25rem 0 0; color: var(--ink-700); }
.section-glacier { background: linear-gradient(180deg, var(--cream-muted) 0%, var(--cream-base) 55%, var(--cream-muted) 100%); }
.section.centered > .container > h2,
.section.centered > .container > p { text-align: center; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.card {
  background: var(--cream-0);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.card-img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 12px; display: block; margin-bottom: .75rem; }
.post {
  background: var(--cream-0);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.contact-form .form-row { display: grid; gap: .35rem; }
.contact-form label { font-weight: 700; color: var(--ink-700); }
.contact-form input, .contact-form textarea {
  padding: .7rem .8rem;
  border-radius: 10px;
  border: 1px solid var(--border-medium);
  font: inherit;
  background: var(--cream-0);
  color: var(--ink-900);
}
.contact-form textarea { resize: vertical; }
.form-actions { grid-column: 1 / -1; display: flex; align-items: center; gap: .75rem; }
.site-footer {
  background: linear-gradient(180deg, var(--charcoal-soft) 0%, var(--charcoal) 100%);
  color: rgba(247, 243, 235, 0.78);
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 252, 247, 0.06);
}
.site-footer p { margin: 0; text-align: center; }
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 150px;
  z-index: 1000;
  background: var(--cream-0);
  color: var(--ink-900);
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  box-shadow: var(--shadow);
  width: 48px;
  height: 48px;
  padding: 0;
  display: none;
  cursor: pointer;
  line-height: 1;
}
.back-to-top .arrow { font-weight: 900; font-size: 1.6rem; line-height: 1; display: inline-block; }
.back-to-top.show { display: inline-flex; align-items: center; justify-content: center; }
.back-to-top svg { width: 24px; height: 24px; fill: var(--ink-900); display: block; }
.contact-info { display: grid; gap: .75rem; margin-top: 1rem; justify-items: stretch; width: 100%; max-width: 560px; }
.info-card {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: .5rem;
  background: var(--cream-0);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: .9rem 1rem;
  box-shadow: var(--shadow);
  width: 100%;
  min-height: 110px;
}
.info-card .icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  font-size: 0;
}
.info-card .icon::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--charcoal-mid);
}
.contact-grid { display: flex; flex-direction: row; gap: 1rem; align-items: stretch; margin-top: 1rem; }
.contact-left { display: grid; gap: .75rem; flex: 0.9; max-width: 520px; width: 100%; }
.map-card {
  position: relative;
  flex: 0 0 520px;
  max-width: 520px;
  width: 100%;
  height: 230px;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  box-shadow: var(--shadow);
  background: var(--cream-0);
}
.map-img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; display: block; }
.map-link { display: block; width: 100%; height: 100%; border-radius: 12px; overflow: hidden; }
.map-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 252, 247, 0.94);
  color: var(--ink-900);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  padding: .25rem .6rem;
  font-weight: 700;
}
.google-maps-icon { background: url('./images/google maps icon.png') center center / contain no-repeat; }
.map-icon-bg { width: 100%; height: 100%; border-radius: 12px; }
.map-label-find { position: absolute; top: 10px; left: 10px; color: var(--ink-900); font-weight: 700; font-size: inherit; }
.map-pin {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--charcoal-mid);
  border-radius: 999px;
  left: 60%;
  top: 45%;
  box-shadow: 0 0 0 4px rgba(42, 41, 40, 0.2);
}
@media (max-width: 720px) {
  .contact-grid { flex-direction: column; }
  .map-card { flex: initial; max-width: 100%; width: 100%; height: 230px; }
}
.info-card a { color: var(--ink-900); text-decoration: none; font-weight: 600; }
.info-card a:hover { text-decoration: underline; color: var(--charcoal-mid); }
.align-left { text-align: left !important; }
.fancy-title { font-family: 'Playfair Display', Georgia, 'Times New Roman', serif; font-weight: 800; letter-spacing: .01em; }

#home, #about, #services, #contact { scroll-margin-top: 80px; }
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .site-nav {
    position: fixed;
    inset: 56px 0 auto 0;
    background: rgba(255, 252, 247, 0.98);
    backdrop-filter: blur(10px);
    transform: translateY(-120%);
    transition: transform .25s ease;
    border-bottom: 1px solid var(--border-subtle);
  }
  .site-nav.open { transform: translateY(0); }
  .site-nav ul { flex-direction: column; padding: .75rem; gap: .25rem; }
  .nav-toggle { display: inline-block; }
  .cards, .contact-form { grid-template-columns: 1fr; }
}
