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

:root {
  --gold: #c9a368;
  --white: #ffffff;
  --black: #000000;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Marcellus', serif;
}

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

/* ── NAV ── */
nav {
  position: relative;
  background: var(--black);
  z-index: 100;
  height: 265px;
  overflow: hidden;
}

.nav-logo { position: absolute; top: 0; left: 0; }

.nav-logo img {
  width: 420px;
  height: 220px;
  object-fit: cover;
  object-position: top center;
  display: block;
  margin-top: -50px;
  margin-left: -20px;
}

.nav-logo-book {
  position: absolute;
  bottom: 1px;
  left: 100px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #d6a447;
  letter-spacing: 0.15em;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

.nav-links {
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: #d6a447;
}

.nav-links a.active {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ── HAMBURGER / MOBILE MENU ── */
.hamburger {
  display: none;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 200;
  flex-direction: column;
  gap: 6px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #d6a447;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 500;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: #d6a447;
}

.mobile-menu a.active {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.mobile-menu-close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  opacity: 0.6;
  line-height: 1;
}

.mobile-menu-close:hover { opacity: 1; }

/* ── FOOTER (column layout — used by services, gallery, suomi) ── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

footer img { width: 180px; opacity: 0.9; }

footer .footer-book {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: uppercase;
}

footer .footer-copy {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
