*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
* { cursor: none !important; }
:root {
--white:  #faf8f4;
--sand:   #D5D6D2;
--stone:  #756867;
--bark:   #FF8D3F;
--earth:  #353C3F;
--black:  #353C3F;
  --serif:   'Playfair Display', Georgia, serif;
  --sans:    'Jost', sans-serif;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  background: var(--white);
  color: var(--black);
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(13px, 1.2vw, 15px);
  letter-spacing: 0.03em;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
em { font-style: italic; }
.fonts-loading .hero-word {
  opacity: 0;
  animation: none;
}
.cur {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
.nav-burger { display: none; }
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 52px;
  backdrop-filter: blur(2px) saturate(1.2);
  -webkit-backdrop-filter: blur(2px) saturate(1.2);
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.3s ease;
}
.nav-logo {
  font-family: var(--serif);
  font-size: clamp(16px, 1.6vw, 34px);
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--black);
}
.nav-logo:hover { color: var(--bark); }
.nav-links {
  display: flex;
  gap: 44px;
  list-style: none;
}
.nav-links a {
  font-size: clamp(10px, 0.8vw, 20px);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--bark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-contact {
  font-size: clamp(11px, 1vw, 24px);
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bark);
}
.nav-contact:hover { color: var(--black); }
.nav-has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 1px);
  left: -20px;
  width: clamp(300px, 18vw, 480px);
  background: var(--white);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  pointer-events: none;
  z-index: 200;
}
.nav-dropdown::before {
  content: '';
  display: block;
  height: 1px;
  background: var(--bark);
  opacity: 0.5;
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-dropdown a {
  display: block;
  padding: clamp(9px, 0.8vw, 16px) clamp(16px, 1.5vw, 32px);
  font-family: var(--sans);
  font-size: clamp(10px, 0.8vw, 18px);
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,141,63,0.15);
  transition: color 0.15s, padding-left 0.2s;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover {
  color: var(--black);
  padding-left: 30px;
  border-bottom: 1px solid var(--bark);
}
.nav-dropdown a::after { display: none; }
footer {
  background: var(--sand);
  border-top: 1px solid rgba(255,255,255,.05);
  padding: clamp(24px, 2vw, 48px) clamp(32px, 3vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.f-copy {
  font-size: clamp(8px, 0.8vw, 20px);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--black);
}
.f-flinks {
  display: flex;
  gap: clamp(16px, 1vw, 40px);
}
.f-flinks a {
  position: relative;
  padding-bottom: 2px;
  font-size: clamp(8px, 0.6vw, 16px);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--black);
  transition: color .2s;
}
.f-flinks a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--bark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.f-flinks a:hover::after { transform: scaleX(1); }
.f-flinks a i {
  color: var(--bark);
  margin-right: 6px;
  font-size: clamp(12px, 1vw, 20px);
  vertical-align: middle;
}
.cookie-banner {
  position: fixed;
  bottom: clamp(20px, 2.5vw, 64px);
  left: auto;
  right: clamp(24px, 3vw, 80px);
  z-index: 1000;
  pointer-events: none;
  width: clamp(800px, 55vw, 1400px);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-banner.is-hiding {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
.cookie-inner {
  background: var(--white);
  border: 1px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 20px 28px;
  border-top: 2px solid var(--bark);
  box-shadow: 0 8px 40px rgba(53, 60, 63, 0.10);
}
.cookie-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.cookie-title {
  font-family: var(--serif);
  font-size: clamp(11px, 1vw, 28px);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--earth);
  margin: 0;
}
.cookie-desc {
  font-family: var(--sans);
  font-size: clamp(10px, 0.8vw, 24px);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--stone);
  line-height: 1.6;
  margin: 0;
}
.cookie-link {
  color: var(--bark);
  position: relative;
  display: inline;
}
.cookie-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--bark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.cookie-link:hover::after { transform: scaleX(1); }
.cookie-actions {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1vw, 30px);
  flex-shrink: 0;
}
.cookie-btn {
  font-family: var(--sans);
  font-size: clamp(8px, 0.6vw, 16px);
  font-weight: 400;
  width: clamp(120px, 8vw, 180px);
  height: clamp(40px, 3vw, 52px);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  border: none;
  padding: clamp(8px, 0.6vw, 14px) clamp(16px, 1.2vw, 28px);
  cursor: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.cookie-btn--accept {
  background: var(--earth);
  color: var(--white);
}
.cookie-btn--accept:hover { background: var(--bark); }
.cookie-btn--decline {
  background: transparent;
  color: var(--stone);
  border: 1px solid var(--bark);
}
.cookie-btn--decline:hover {
  border-color: var(--black);
  color: var(--bark);
}
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(32px, 4vw, 120px);
  position: relative;
  overflow: hidden;
}
.line-break {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  display: flex;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  animation: lineReveal 1.2s ease 0.2s both;
}
.line-break::before,
.line-break::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--sand);
}
.line-break::before {
  margin-left: clamp(32px, 4vw, 100px);
  margin-right: 0;
  max-width: calc(50% - 220px);
  transform-origin: left;
  animation: lineLeft 1s ease 0.6s both;
}
.line-break::after {
  margin-right: clamp(32px, 4vw, 100px);
  margin-left: 0;
  max-width: calc(50% - 220px);
  transform-origin: right;
  animation: lineRight 1s ease 0.6s both;
}
.line-gap {
  width: clamp(320px, 28vw, 600px);
  flex-shrink: 0;
}
@keyframes lineReveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes lineLeft {
   from { transform: scaleX(0); opacity: 0; }
   to   { transform: scaleX(1); opacity: 1; }
}
@keyframes lineRight {
   from { transform: scaleX(0); opacity: 0; }
   to   { transform: scaleX(1); opacity: 1; }
}
.err-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.err-code {
  font-family: var(--serif);
  font-size: clamp(120px, 20vw, 320px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.9;
  color: var(--earth);
  position: relative;
  opacity: 0;
  animation: fadeDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
.err-code .dot {
  color: var(--bark);
  display: inline-block;
  animation: pulse 3s ease-in-out 1.5s infinite;
}
@keyframes pulse {
   0%, 100% { opacity: 1; }
   50% { opacity: 0.4; }
}
.err-divider {
  width: 1px;
  height: clamp(48px, 4vw, 80px);
  background: linear-gradient(to bottom, var(--bark), transparent);
  margin: clamp(16px, 2vw, 24px) 0;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.7s both;
}
.err-title {
  font-family: var(--sans);
  font-size: clamp(10px, 0.7vw, 16px);
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.85s both;
}
.err-sub {
  font-family: var(--sans);
  font-size: clamp(12px, 1vw, 18px);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--stone);
  line-height: 1.7;
  max-width: clamp(340px, 28vw, 520px);
  opacity: 0;
  animation: fadeUp 0.6s ease 1.0s both;
}
.err-back {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 1vw, 20px);
  margin-top: clamp(32px, 3vw, 64px);
  font-size: clamp(10px, 0.7vw, 14px);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--earth);
  opacity: 0;
  animation: fadeUp 0.6s ease 1.15s both;
  transition: color 0.25s ease;
}
.err-back:hover { color: var(--bark); }
.err-back:hover .arr-line {
   transform: scaleX(1.5);
   background: var(--bark);
}
.err-back:hover .arr-head { border-color: var(--bark); }
.err-arrow {
   display: flex;
   align-items: center;
   gap: 0;
   flex-shrink: 0;
}
.arr-line {
   width: clamp(28px, 2vw, 48px);
   height: 1px;
   background: var(--earth);
   transform-origin: right;
   transition: transform 0.3s ease, background 0.25s ease;
}
.err-coords {
   position: absolute;
   bottom: clamp(28px, 2.5vw, 56px);
   right: clamp(32px, 4vw, 100px);
   font-size: clamp(10px, 0.8vw, 16px);
   letter-spacing: 0.22em;
   text-transform: uppercase;
   color: var(--sand);
   font-family: 'Courier New', monospace;
   opacity: 0;
   animation: fadeUp 0.6s ease 1.4s both;
   line-height: 1.8;
}
.err-year {
   position: absolute;
   bottom: clamp(28px, 2.5vw, 56px);
    left: clamp(32px, 4vw, 100px);
   font-family: var(--serif);
   font-size: clamp(10px, 0.8vw, 16px);
   letter-spacing: 0.2em;
   color: var(--sand);
   opacity: 0;
   animation: fadeUp 0.6s ease 1.4s both;
}
@keyframes fadeDown {
   from { opacity: 0; transform: translateY(-16px); }
   to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}
/* mobile */
@media (min-width:601px) and (max-width:1000px) {
  nav {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   padding: 20px 52px;
   box-sizing: border-box;
     background: rgba(255, 255, 255, 0.2);
     backdrop-filter: blur(12px);
     -webkit-backdrop-filter: blur(12px);
     border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  nav::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 100%;
    height: 20px;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0)
  );
    pointer-events: none;
  }
  .nav-logo {
    font-size: clamp(18px, 2.5vw, 36px);
    letter-spacing: 0.1em;
  }
  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    z-index: 300;
    position: relative;
  }
  .nav-burger span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--black);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-burger.is-open span:nth-child(2) { opacity: 0; }
  .nav-burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .nav-links,
  .nav-contact { display: none; }
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: clamp(60px, 8vw, 80px);
    left: 0; right: 0;
    padding: 10px 28px 32px;
    background: var(--white);
    z-index: 150;
    border-bottom: 1px solid var(--bark);
    gap: 0;
    animation: menuDown 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .nav-links.is-open a {
    display: block;
    padding: 15px 0;
    font-size: clamp(9px, 2.5vw, 13px);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--stone);
    border-bottom: 0.5px solid var(--sand);
  }
  .nav-links.is-open .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    width: auto;
    border: none;
    background: transparent;
  }
  .nav-links.is-open .nav-dropdown::before { display: none; }
  .nav-links.is-open .nav-dropdown a {
    padding: 10px 0 10px 16px;
    font-size: 11px;
    color: var(--stone);
    border-bottom: none;
    opacity: 0.8;
  }
  .nav-burger.is-hover span { background: var(--bark); }
  .nav-links.is-open a:hover { color: var(--bark); }
  footer {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
  }
  .f-flinks {
    flex-wrap: wrap;
    gap: clamp(20px, 5vw, 45px);
  }
  .cookie-banner {
    position: fixed;
    bottom: clamp(20px, 3vw, 40px);
    right: clamp(20px, 3vw, 40px);
    max-width: 600px;
    width: calc(100% - clamp(40px, 6vw, 80px));
    box-sizing: border-box;
  }
  .cookie-actions {
    display: flex;
    flex-direction: column;
    gap: clamp(5px, 1vw, 10px);
  }
}
@media (max-width: 600px) {
   .page-404 { padding: 0 24px; }
   .err-coords,
   .err-year { display: none; }
   .line-break::before,
   .line-break::after { display: none; }
   nav {
    display: flex;
    position: fixed;
    width: 100vw;
    box-sizing: border-box;
    left: 0;
    right: 0;
    z-index: 250;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  nav::after { display: none; }
  .nav-logo {
    font-size: 17px;
    letter-spacing: 0.1em;
  }
  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
    z-index: 300;
    position: relative;
  }
  .nav-burger span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--black);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-burger.is-open span:nth-child(2) { opacity: 0; }
  .nav-burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .nav-links,
  .nav-contact { display: none; }
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    width: 100%;
    box-sizing: border-box;
    top: 60px; left: 0; right: 0;
    padding: 10px 28px 32px;
    background: var(--white);
    z-index: 150;
    border-bottom: 1px solid var(--bark);
    gap: 0;
    animation: menuDown 0.35s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .nav-links.is-open a {
    display: block;
    padding: 15px 0;
    font-size: clamp(9px, 2.5vw, 13px);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--stone);
    border-bottom: 0.5px solid var(--sand);
  }
  .nav-links.is-open .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    width: auto;
    border: none;
    background: transparent;
  }
  .nav-links.is-open .nav-dropdown::before { display: none; }
  .nav-links.is-open .nav-dropdown a {
    padding: 10px 0 10px 16px;
    font-size: clamp(8px, 2vw, 12px);
    color: var(--stone);
    border-bottom: none;
    opacity: 0.8;
  }
  .nav-burger.is-hover span { background: var(--bark); }
  .nav-links.is-open a:hover { color: var(--bark); }
  .cookie-banner {
    bottom: 10px;
    right: 10px;
    left: 10px;
    width: auto;
  }
  .cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .cookie-inner {
    gap: 10px;
    padding: 10px 18px;
  }
   footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 18px 20px;
  }
  .f-flinks {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .f-copy { font-size: clamp(9px, 2vw, 12px); }
}