/* Botti — shared site chrome.
   Every rule in here was already byte-identical on all 10 pages, so this
   file changes nothing visually; it just gives them one home.
   Loaded before each page's own <style>, so a page can still override.

   NOT in here on purpose — these differ between pages and need a human
   decision before they can be unified:
     .fade-up, .fade-up:nth-child(2), .fade-up:nth-child(3), .fade-up:nth-child(4), .fade-up:nth-child(5), .footer-city, .footer-copy, .footer-logo, .footer-wordmark, .nav-cta, .nav-mobile a, .orn-diamond, .orn-line, .ornament, :root, body, footer
*/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0;
}
html { scroll-behavior: smooth;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.032;
  pointer-events: none;
  z-index: 1000;
}
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(13,10,7,0.9) 0%, transparent 100%);
  transition: background 0.4s ease;
}
nav.scrolled {
  background: rgba(13,10,7,0.97);
  border-bottom: 1px solid rgba(240,235,224,0.06);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-barrel svg { width: 24px; height: 29px;
}
.nav-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--paper);
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  text-indent: 0.4em;
  transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--paper);
}
.nav-active {
  color: var(--paper) !important;
  border-bottom: 1px solid rgba(240,235,224,0.3);
  padding-bottom: 2px;
}
.nav-cta:hover {
  color: #c45a3a !important;
  border-bottom-color: rgba(196,90,58,0.7) !important;
}
.nav-hamburger {display:none;flex-direction:column;gap:5px;cursor:pointer;padding:4px;z-index:200;
}
.nav-hamburger span {display:block;width:22px;height:1px;background:var(--paper);transition:all 0.3s ease;transform-origin:center;
}
.nav-hamburger.open span:nth-child(1) {transform:translateY(6px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {opacity:0;
}
.nav-hamburger.open span:nth-child(3) {transform:translateY(-6px) rotate(-45deg);
}
.nav-mobile {display:none;position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(13,10,7,0.98);z-index:150;flex-direction:column;align-items:center;justify-content:center;gap:40px;
}
.nav-mobile.open {display:flex;
}
.nav-mobile a:hover {color:var(--paper);
}
.nav-mobile .nav-cta {color:var(--terra)!important;
}
.page-rule-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(168,61,32,0.5), transparent);
}
.fade-up:nth-child(1) { animation-delay: 0.1s;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.fade-up:nth-child(6) { animation-delay: 1.1s;
}
.footer-cities {
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-dot-sm {
  width: 2px; height: 2px;
  background: rgba(168,61,32,0.5);
  border-radius: 50%;
}
.nav-links a.active {color:var(--paper);border-bottom:1px solid rgba(240,235,224,0.4);padding-bottom:2px;
}

@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 1180px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  .fade-up { animation: none; opacity: 1; transform: none; }
}

@media(max-width:768px) {
  nav {padding:20px 24px; }
  .nav-links {display:none; }
  .nav-hamburger {display:flex; }
}
