:root {
  --void: #0e0e0e;
  --ink: #161616;
  --charcoal: #2b2b2b;
  --mist: #c8c8c8;
  --muted: #9a9a9a;
  --white: #ffffff;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --space: clamp(1.25rem, 4vw, 3rem);
  --max: 1080px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--white);
  background: var(--void);
  line-height: 1.6;
  font-size: 1.05rem;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  margin: 0 0 1rem;
  font-weight: 500;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin: 0 0 0.85rem;
}

h3 {
  font-size: 1.55rem;
  margin: 0 0 0.55rem;
  letter-spacing: 0.02em;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--white);
  color: var(--ink);
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 0;
}

/* —— Header: persistent top bar —— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem var(--space);
  background: transparent;
  transition: background-color 0.35s ease, border-color 0.35s ease,
    backdrop-filter 0.35s ease, padding 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(14, 14, 14, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  padding: 0.7rem var(--space);
}

.brand img {
  width: min(168px, 40vw);
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-book {
  position: relative;
  padding-bottom: 0.15rem;
}

.nav-book::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
  transition: background 0.2s ease;
}

.nav-book:hover::after {
  background: var(--white);
}

/* —— Hero: full-bleed photo + soft veil —— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transform: scale(1.02);
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      100deg,
      rgba(14, 14, 14, 0.9) 0%,
      rgba(14, 14, 14, 0.62) 38%,
      rgba(14, 14, 14, 0.28) 68%,
      rgba(14, 14, 14, 0.5) 100%
    ),
    linear-gradient(to top, rgba(14, 14, 14, 0.7) 0%, transparent 38%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 640px);
  padding: clamp(6rem, 12vh, 8rem) var(--space) clamp(2.5rem, 6vh, 4rem);
}

.lede {
  margin: 0 0 2rem;
  max-width: 26rem;
  color: var(--mist);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 300;
  line-height: 1.55;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease,
    transform 0.25s ease;
}

.btn-light {
  padding: 0.8rem 1.35rem;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.btn-light:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.btn-line {
  padding: 0.35rem 0.1rem;
  color: var(--white);
  border: none;
  background: none;
  position: relative;
}

.btn-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.2s ease, transform 0.2s ease;
  transform-origin: left;
}

.btn-line:hover::after {
  background: var(--white);
  transform: scaleX(1.04);
}

/* —— Sections —— */
.section {
  padding: clamp(4.5rem, 12vw, 7.5rem) var(--space);
  max-width: var(--max);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.section-intro {
  color: var(--muted);
  margin: 0 0 2.75rem;
  max-width: 34rem;
  font-size: 1.08rem;
}

.about {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-copy p:not(.eyebrow) {
  color: var(--mist);
  max-width: 34rem;
  margin: 0;
  font-size: 1.08rem;
}

.about-media {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 80px rgba(14, 14, 14, 0.35);
  pointer-events: none;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
}

.about-media img:nth-child(1) {
  object-position: center 15%;
}

.about-media img:nth-child(2) {
  object-position: center 20%;
}

.about-media img:nth-child(3) {
  object-position: center 25%;
}

.about-media img:nth-child(4) {
  object-position: center 20%;
}

.paths {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.path {
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.path p {
  margin: 0;
  color: var(--muted);
  max-width: 30rem;
}

.reviews {
  max-width: min(1180px, 100%);
}

.gr-widget {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Open Sans",
    "Helvetica Neue", sans-serif;
}

.gr-title {
  margin: 0 0 1.25rem;
  color: #e8e8e8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Open Sans",
    "Helvetica Neue", sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
}

.gr-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.35rem 1.5rem;
  background: #f6f6f8;
  border-radius: 8px;
  color: #111;
}

.gr-brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: #202124;
  line-height: 1;
}

.gr-google-logo {
  flex-shrink: 0;
}

.gr-rating-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.55rem;
}

.gr-score {
  font-size: 1.35rem;
  font-weight: 700;
  color: #111;
  line-height: 1;
}

.gr-stars {
  display: inline-flex;
  align-items: center;
  gap: 1px;
}

.gr-count {
  color: #70757a;
  font-size: 0.95rem;
}

.gr-write-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.15rem;
  border-radius: 24px;
  background: #197bff;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.gr-write-btn:hover {
  background: #0d66e0;
}

.gr-carousel {
  position: relative;
  margin-top: 1.15rem;
}

.gr-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.15rem 0.1rem 0.35rem;
}

.gr-track::-webkit-scrollbar {
  display: none;
}

.gr-card {
  flex: 0 0 min(280px, 82vw);
  scroll-snap-align: start;
  background: #fff;
  border-radius: 10px;
  padding: 1.1rem 1.15rem 1.15rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.18);
  color: #202124;
  min-height: 13.5rem;
}

.gr-card-head {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.65rem;
}

.gr-avatar-wrap {
  position: relative;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

.gr-avatar {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gr-accent, #5f6368);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
}

.gr-g-badge {
  position: absolute;
  right: -2px;
  bottom: -2px;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.gr-meta {
  min-width: 0;
  padding-top: 0.1rem;
}

.gr-name {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.94rem;
  font-weight: 600;
  color: #111;
  line-height: 1.2;
}

.gr-verified {
  display: inline-flex;
  flex-shrink: 0;
}

.gr-date {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  color: #70757a;
}

.gr-card-stars {
  display: flex;
  gap: 1px;
  margin-bottom: 0.55rem;
}

.gr-text {
  margin: 0;
  color: #3c4043;
  font-size: 0.9rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.gr-card.is-expanded .gr-text {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.gr-more {
  appearance: none;
  margin: 0.35rem 0 0;
  padding: 0;
  border: none;
  background: none;
  color: #197bff;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}

.gr-more:hover {
  text-decoration: underline;
}

.gr-more[hidden] {
  display: none;
}

.gr-arrow {
  position: absolute;
  top: 42%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(32, 33, 36, 0.78);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.gr-arrow:hover {
  background: rgba(32, 33, 36, 0.95);
}

.gr-arrow[hidden] {
  display: none;
}

.gr-arrow-prev {
  left: -6px;
}

.gr-arrow-next {
  right: -6px;
}

.gr-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
}

.gr-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.gr-dot.is-active {
  background: #fff;
}

.book {
  max-width: none;
  position: relative;
  background:
    radial-gradient(ellipse 80% 70% at 20% 40%, rgba(70, 70, 70, 0.35), transparent 60%),
    var(--ink);
  padding-left: 0;
  padding-right: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.book-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space);
}

.book p:not(.eyebrow) {
  max-width: 34rem;
  color: var(--mist);
  margin: 0 0 1.85rem;
  font-size: 1.08rem;
}

.location p:not(.eyebrow) {
  color: var(--muted);
  margin: 0 0 1.25rem;
  font-size: 1.1rem;
}

.text-link {
  color: var(--white);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 0.2rem;
  transition: border-color 0.2s ease;
}

.text-link:hover {
  border-bottom-color: var(--white);
}

.site-footer {
  padding: 3rem var(--space) 2.5rem;
  display: grid;
  gap: 1.35rem;
  justify-items: start;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  width: min(180px, 50vw);
  height: auto;
  opacity: 0.92;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
}

.socials a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.socials a:hover {
  color: var(--white);
}

.fineprint {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.28);
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (min-width: 900px) {
  .hero-copy {
    padding-bottom: clamp(4rem, 10vh, 6.5rem);
  }

  .about {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .about-media {
    aspect-ratio: 5 / 6;
  }

  .paths {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .nav-links a:not(.nav-book) {
    display: none;
  }

  .hero-veil {
    background:
      linear-gradient(to top, rgba(14, 14, 14, 0.95) 0%, rgba(14, 14, 14, 0.55) 50%, rgba(14, 14, 14, 0.4) 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gr-track {
    scroll-behavior: auto;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-bg img {
    animation: hero-drift 18s ease-in-out infinite alternate;
  }

  @keyframes hero-drift {
    from {
      transform: scale(1.04) translate3d(0, 0, 0);
    }
    to {
      transform: scale(1.08) translate3d(-1.2%, -0.8%, 0);
    }
  }

  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.85s ease, transform 0.85s ease;
  }

  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .hero-copy.reveal {
    transition-delay: 0.12s;
  }

  .btn-light:hover {
    transform: translateY(-1px);
  }
}
