:root {
  --bg: #ffffff;
  --text: #1a1a1a;
  --text-strong: #1a1a1a;
  --muted: #737373;
  --accent: #777777;
  --border: #eeeeee;
  --surface: #ffffff;
  --light-gray: #f9f9f9;
  --footer-bg: #000000;
  --footer-muted: #888888;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid var(--text-strong);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--text-strong);
  color: #fff;
  font-size: 13px;
  text-decoration: none;
}
.skip-link:focus { left: 16px; top: 16px; }

nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 28px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.98);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.logo-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  color: inherit;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--text-strong);
  line-height: 1.1;
  text-decoration: none;
}

.logo-tagline {
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-strong);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
}
.nav-links li { margin-left: 36px; }
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a[aria-current="page"],
.nav-links a.is-active {
  font-weight: 600;
  border-bottom: 1px solid #000;
  padding-bottom: 2px;
}

.btn {
  display: inline-block;
  padding: 18px 40px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-dark {
  background: #000;
  color: #fff;
  border-color: #000;
}
.btn-dark:hover {
  background: transparent;
  color: #000;
}
.btn-light {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.btn-light:hover {
  background: transparent;
  color: #fff;
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.9);
}
.btn-outline-light:hover {
  background: #fff;
  color: #000;
}
.btn-outline-dark {
  background: transparent;
  color: #000;
  border-color: #000;
}
.btn-outline-dark:hover {
  background: #000;
  color: #fff;
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

footer {
  padding: 90px 10% 48px;
  background: var(--footer-bg);
  color: #fff;
  text-align: center;
}
.footer-tagline {
  font-size: 12px;
  letter-spacing: 3.5px;
  color: var(--footer-muted);
  text-transform: uppercase;
  margin-bottom: 28px;
  display: block;
}
.footer-email {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  color: #fff;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #333;
  padding-bottom: 26px;
  margin-bottom: 36px;
  transition: color 0.3s, border-color 0.3s;
  font-style: italic;
  font-weight: 400;
}
.footer-email:hover {
  color: #ccc;
  border-bottom-color: #fff;
}
.footer-note {
  font-size: 13px;
  color: var(--footer-muted);
  margin-bottom: 16px;
}
.copyright {
  font-size: 12px;
  letter-spacing: 2px;
  color: #a3a3a3;
  text-transform: uppercase;
  margin-top: 56px;
}

@media (max-width: 768px) {
  nav { padding: 16px 5%; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 80px 5% 40px;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { margin: 0; }
  .nav-links a { font-size: 15px; letter-spacing: 2px; }
  body.nav-open { overflow: hidden; }

  /* No fixed parallax on small screens */
  .hero,
  [class*="-hero"],
  .parallax,
  .bg-fixed {
    background-attachment: scroll !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero,
  [class*="-hero"],
  .parallax,
  .bg-fixed {
    background-attachment: scroll !important;
  }
}
