/* ─── RESET & TOKENS ─── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --ink:        #111010;
  --ink-soft:   #2e2c2b;
  --cream:      #f5f1eb;
  --cream-deep: #ede8df;
  --gold:       #c4a55a;
  --gold-dim:   #a88c48;
  --stone:      #8a857e;
  --fog:        #d6d1c9;
  --white:      #ffffff;

  --font-display: 'Cormorant', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }

/* ─── CURSOR ─── */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: transform 0.1s, width 0.3s var(--ease), height 0.3s var(--ease);
}
.cursor-follower {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 36px; height: 36px;
  border: 1px solid rgba(196,165,90,0.45);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: transform 0.35s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease);
}
.cursor.grow { width: 16px; height: 16px; }
.cursor-follower.grow { width: 60px; height: 60px; }

/* ─── HEADER ─── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 28px 0;
  transition: background 0.4s var(--ease), padding 0.3s var(--ease), box-shadow 0.3s;
}
.header.scrolled {
  background: rgba(245,241,235,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.header-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; gap: 48px;
}

.logo {
  display: flex; flex-direction: column; gap: 1px;
  margin-right: auto;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--white);
  transition: color 0.3s;
}
.header.scrolled .logo-name { color: var(--ink); }
.logo-by {
  font-family: var(--font-body);
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
}
.logo-by em { font-style: italic; font-family: var(--font-display); }

.nav { display: flex; gap: 36px; }
.nav-link {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 400; color: rgba(255,255,255,0.8);
  position: relative; transition: color 0.3s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.header.scrolled .nav-link { color: var(--stone); }
.header.scrolled .nav-link:hover { color: var(--ink); }

.btn-book {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 22px;
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  background: var(--gold); color: var(--white);
  border: 1px solid var(--gold);
  transition: background 0.3s, color 0.3s, transform 0.2s;
  white-space: nowrap;
}
.btn-book:hover { background: var(--gold-dim); transform: translateY(-1px); }
.btn-arrow { transition: transform 0.3s; }
.btn-book:hover .btn-arrow { transform: translateX(3px); }

.menu-toggle {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: none; padding: 4px;
}
.menu-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white); transition: all 0.3s var(--ease);
}
.header.scrolled .menu-toggle span { background: var(--ink); }
.menu-toggle.open span:first-child { transform: rotate(45deg) translate(5px,5px); }
.menu-toggle.open span:last-child  { transform: rotate(-45deg) translate(5px,-5px); }

/* ─── MOBILE NAV ─── */
.mobile-nav {
  position: fixed; inset: 0; z-index: 800;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav-inner {
  display: flex; flex-direction: column; align-items: center; gap: 32px;
  text-align: center;
}
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 400; color: var(--cream);
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-book {
  margin-top: 16px;
  display: inline-block; padding: 12px 32px;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--gold); color: var(--white);
}

/* ─── HERO ─── */
.hero {
  position: relative; height: 100svh; min-height: 600px;
  display: flex; align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 12s var(--ease-out) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.00); }
}
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,8,7,0.88) 0%,
    rgba(10,8,7,0.35) 55%,
    rgba(10,8,7,0.12) 100%
  );
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
  opacity: 0; animation: fadeUp 0.8s var(--ease) 0.3s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 400; line-height: 1.05;
  color: var(--white); margin-bottom: 24px;
}
.hero-title span {
  display: block;
  opacity: 0; animation: fadeUp 0.9s var(--ease) 0.5s forwards;
}
.hero-title em {
  display: block; font-style: italic; font-weight: 300;
  color: rgba(255,255,255,0.72);
  opacity: 0; animation: fadeUp 0.9s var(--ease) 0.65s forwards;
}
.hero-sub {
  font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.6);
  margin-bottom: 36px; line-height: 1.7; max-width: 420px;
  opacity: 0; animation: fadeUp 0.9s var(--ease) 0.8s forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s var(--ease) 0.95s forwards;
}
.hero-cta {
  display: inline-block; padding: 15px 36px;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  background: var(--gold); color: var(--white);
  transition: background 0.3s, transform 0.2s;
}
.hero-cta:hover { background: var(--gold-dim); transform: translateY(-2px); }
.hero-down {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
}
.hero-down:hover { color: var(--white); }
.hero-scroll {
  position: absolute; bottom: 40px; right: 40px;
  font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); writing-mode: vertical-rl;
}

/* ─── MARQUEE ─── */
.marquee {
  background: var(--ink); overflow: hidden;
  padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex; align-items: center; gap: 24px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.4); letter-spacing: 0.04em;
}
.marquee-track i { color: var(--gold); font-style: normal; opacity: 0.5; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── OM OSS ─── */
.about { padding: 120px 0; background: var(--cream); }
.about-wrap {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 340px; gap: 80px; align-items: start;
}
.section-label {
  display: block; margin-bottom: 20px;
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
}
.section-label.light { color: rgba(255,255,255,0.35); }
.about-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 400; line-height: 1.12;
  color: var(--ink); margin-bottom: 30px;
}
.about-heading em { font-style: italic; font-weight: 300; color: var(--stone); }
.about-body {
  font-size: 1rem; font-weight: 300; line-height: 1.82; color: var(--ink-soft);
  margin-bottom: 20px;
}
.about-stats {
  display: flex; gap: 40px; margin-top: 44px;
  padding-top: 40px; border-top: 1px solid var(--fog);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat strong {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 400; color: var(--ink); line-height: 1;
}
.stat span { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); }

.info-card {
  padding: 30px; border: 1px solid var(--fog);
  background: var(--white); margin-bottom: 16px;
}
.info-card h4 {
  font-family: var(--font-display);
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.info-card dl { display: grid; grid-template-columns: 1fr auto; gap: 8px 16px; }
.info-card dt { font-size: 0.85rem; font-weight: 400; color: var(--stone); }
.info-card dd { font-size: 0.85rem; font-weight: 300; color: var(--ink-soft); text-align: right; }
.info-card address { font-size: 0.9rem; line-height: 1.75; color: var(--ink-soft); margin-bottom: 14px; }
.info-tel {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 400; color: var(--gold);
  transition: color 0.2s;
}
.info-tel:hover { color: var(--gold-dim); }

/* ─── BEHANDLINGAR ─── */
.services { padding: 120px 0; background: var(--ink); }
.services-wrap { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
.services-head { margin-bottom: 64px; }
.services-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 400;
  color: var(--cream);
}
.services-list { display: flex; flex-direction: column; }
.svc {
  display: grid; grid-template-columns: 60px 1fr auto;
  gap: 0 36px; align-items: start;
  padding: 36px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: padding 0.3s var(--ease);
}
.svc:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.svc:hover { padding-left: 10px; }
.svc-num {
  font-family: var(--font-display); font-size: 0.75rem;
  color: rgba(255,255,255,0.18); letter-spacing: 0.06em; padding-top: 5px;
}
.svc-body h3 {
  font-family: var(--font-display);
  font-size: 1.65rem; font-weight: 400; color: var(--cream);
  margin-bottom: 8px; line-height: 1.2;
}
.svc-body p { font-size: 0.87rem; font-weight: 300; color: var(--stone); line-height: 1.7; }
.svc-price {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 300; color: var(--gold);
  white-space: nowrap; padding-top: 5px;
}
.services-footer { margin-top: 60px; text-align: center; }
.btn-line {
  display: inline-block; padding: 14px 36px;
  font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  color: var(--cream); border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.3s, color 0.3s;
}
.btn-line:hover { border-color: var(--gold); color: var(--gold); }

/* ─── GALLERI ─── */
.gallery { padding: 120px 0; background: var(--cream-deep); }
.gallery-head {
  max-width: 1320px; margin: 0 auto 60px; padding: 0 40px;
}
.gallery-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 400; line-height: 1.12;
  color: var(--ink);
}
.gallery-heading em { font-style: italic; font-weight: 300; color: var(--stone); }
.gallery-grid {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 20px; align-items: start;
}
.gallery-fig { position: relative; }
.gallery-frame { overflow: hidden; border-radius: 2px; }
.gallery-fig--tall .gallery-frame { height: 680px; }
.gallery-fig:not(.gallery-fig--tall) .gallery-frame { height: 480px; margin-top: 80px; }
.gallery-frame img { transition: transform 0.9s var(--ease); }
.gallery-frame:hover img { transform: scale(1.04); }
figcaption {
  margin-top: 12px;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--stone);
}

/* ─── KONTAKT ─── */
.contact { padding: 120px 0; background: var(--ink); }
.contact-wrap {
  max-width: 1320px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start;
}
.contact-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 400; line-height: 1.12;
  color: var(--cream); margin-bottom: 40px;
}
.contact-rows { display: flex; flex-direction: column; margin-bottom: 44px; }
.cr {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.07); gap: 24px;
}
.cr:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.cr > span:first-child {
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.28); white-space: nowrap;
}
.cr > span:last-child { font-size: 0.9rem; color: var(--cream); font-weight: 300; text-align: right; }
.cr a { font-size: 0.9rem; color: var(--gold); font-weight: 300; }
.contact-btn {
  display: inline-block; padding: 14px 36px;
  font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  background: var(--gold); color: var(--white);
  transition: background 0.3s, transform 0.2s;
}
.contact-btn:hover { background: var(--gold-dim); transform: translateY(-2px); }
.contact-map {
  height: 480px; border-radius: 2px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.contact-map iframe { width: 100%; height: 100%; }

/* ─── FOOTER ─── */
.footer { background: #0a0908; padding: 60px 0 28px; }
.footer-wrap {
  max-width: 1320px; margin: 0 auto; padding: 0 40px 48px;
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 40px; align-items: start;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 400; color: var(--cream); margin-bottom: 8px;
}
.footer-logo em { font-style: italic; font-weight: 300; }
.footer-brand p:last-child { font-size: 0.82rem; color: var(--stone); font-weight: 300; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; text-align: center; }
.footer-nav a {
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.28); transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-contact { text-align: right; }
.footer-contact p { font-size: 0.82rem; color: var(--stone); font-weight: 300; line-height: 2; }
.footer-bar {
  max-width: 1320px; margin: 0 auto; padding: 24px 40px 0; text-align: center;
}
.footer-bar p { font-size: 0.7rem; color: rgba(255,255,255,0.16); letter-spacing: 0.06em; }

/* ─── BACK TOP ─── */
.back-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 800;
  width: 44px; height: 44px;
  background: var(--gold); color: var(--white); border: none;
  font-size: 1rem; cursor: none;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.2s, background 0.2s;
}
.back-top.show { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--gold-dim); transform: translateY(-3px); }

/* ─── REVEAL ─── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: 0.2s; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .about-wrap   { grid-template-columns: 1fr; gap: 60px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .footer-wrap  { grid-template-columns: 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; text-align: left; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-fig:not(.gallery-fig--tall) .gallery-frame { margin-top: 0; }
  .svc { grid-template-columns: 48px 1fr auto; gap: 0 20px; }
}

@media (max-width: 768px) {
  .nav, .btn-book { display: none; }
  .menu-toggle    { display: flex; }
  .header-inner   { padding: 0 24px; }
  .hero-content   { padding: 0 24px; }
  .hero-title     { font-size: clamp(2.8rem, 10vw, 4.5rem); }
  .hero-scroll    { display: none; }
  .about-wrap, .services-wrap, .gallery-head,
  .gallery-grid, .contact-wrap, .footer-wrap, .footer-bar { padding: 0 24px; }
  .about    { padding: 80px 0; }
  .services { padding: 80px 0; }
  .gallery  { padding: 80px 0; }
  .contact  { padding: 80px 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-fig--tall .gallery-frame { height: 480px; }
  .svc { grid-template-columns: 40px 1fr; }
  .svc-price { grid-column: 2; font-size: 0.95rem; }
  .contact-map { height: 300px; }
  .footer-wrap { grid-template-columns: 1fr; gap: 28px; }
  .footer-contact, .footer-nav { text-align: left; }
  .about-stats { flex-wrap: wrap; gap: 24px; }
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
  .menu-toggle, .btn-book, .back-top, .hero-cta, .contact-btn, .btn-line, .btn-book, .mobile-book { cursor: pointer; }
}

@media (max-width: 480px) {
  .hero { padding-bottom: 56px; }
  .hero-title { font-size: 2.6rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 20px; }
}
