:root {
  --black: #0a0a0a;
  --ink: #111111;
  --white: #ffffff;
  --cream: #fafaf7;
  --muted: #6b6b6b;
  --line: #e6e6e6;
  --line-dark: #2a2a2a;
  --max: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ------- Typography ------- */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--black);
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.02;
  font-weight: 500;
}

h1 em {
  font-style: italic;
  font-weight: 400;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
}

h3 {
  font-size: 1.375rem;
  font-weight: 500;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.eyebrow.light { color: rgba(255,255,255,0.6); }

/* ------- Header ------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  gap: 2.5rem;
}

.nav a {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.25rem 0;
  transition: opacity 0.2s;
}

.nav a:hover { opacity: 0.6; }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 28px;
  height: 22px;
  position: relative;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--black);
  transition: all 0.3s;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }

/* ------- Hero ------- */
.hero {
  padding: clamp(5rem, 14vh, 9rem) 0 clamp(5rem, 12vh, 8rem);
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  max-width: 900px;
}

.lede {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--muted);
  max-width: 52ch;
  margin-top: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.95rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--black);
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--black);
  color: var(--white);
}

.btn-primary:hover {
  background: transparent;
  color: var(--black);
}

.btn-ghost {
  background: transparent;
  color: var(--black);
}

.btn-ghost:hover {
  background: var(--black);
  color: var(--white);
}

/* ------- Sections ------- */
.section {
  padding: clamp(5rem, 10vh, 7rem) 0;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-head {
  margin-bottom: 4rem;
  max-width: 600px;
}

/* ------- Services ------- */
.services {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.services li {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s;
}

.services li:hover {
  background: var(--white);
}

.services h3 {
  margin-bottom: 0.75rem;
}

.services p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ------- About ------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.about-body p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.about-body p:last-child { margin-bottom: 0; }

/* ------- Visit ------- */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.visit-lede {
  color: rgba(255,255,255,0.7);
  margin-top: 1.5rem;
  font-size: 1.05rem;
}

.visit-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.info-block h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
}

.info-block p {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  line-height: 1.7;
}

.hours {
  list-style: none;
}

.hours li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

.hours li span:last-child {
  white-space: nowrap;
  color: rgba(255,255,255,0.7);
}

.hours li:last-child { border-bottom: 0; }

.link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.link:hover { opacity: 0.6; }

.link.big {
  font-size: 1.25rem;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0;
  border-bottom: 0;
}

/* ------- Footer ------- */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 2.5rem 0;
  border-top: 1px solid var(--line-dark);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-inner .brand { color: var(--white); }

.small { font-size: 0.85rem; }

/* ------- Responsive ------- */
@media (max-width: 820px) {
  .container { padding: 0 1.25rem; }

  .nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
  }

  .nav.open { transform: translateY(0); }

  .nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .nav a:last-child { border-bottom: 0; }

  .menu-toggle { display: block; }

  .about-grid,
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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