/* Broen Nails Studio — luxury nail salon */

:root {
  --cream: #faf7f4;
  --cream-deep: #f3ebe4;
  --nude: #e8ddd4;
  --blush: #e6cfc7;
  --linen: #dfd3c9;
  --ink: #141414;
  --ink-soft: #2a2826;
  --muted: #6b6560;
  --gold: #b8956c;
  --gold-deep: #9a784d;
  --rose-gold: #c4a090;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.35);
  --shadow-soft: 0 24px 60px rgba(20, 18, 16, 0.08);
  --shadow-card: 0 16px 40px rgba(20, 18, 16, 0.06);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--ink);
  color: var(--cream);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(1120px, calc(100% - 3rem));
  margin-inline: auto;
}

@media (max-width: 640px) {
  .wrap {
    width: calc(100% - 2rem);
  }
}

/* ——— Header ——— */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
    backdrop-filter 0.35s var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(250, 247, 244, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(20, 18, 16, 0.06);
}

.site-header__inner {
  width: min(1200px, calc(100% - 2.5rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo__mark {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo__sub {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-header.is-scrolled .logo__sub {
  color: var(--muted);
}

.site-header.hero-passed .logo__sub {
  color: var(--muted);
}

.site-header:not(.is-scrolled):not(.hero-passed) .logo {
  color: var(--cream);
}

.site-header:not(.is-scrolled):not(.hero-passed) .logo__sub {
  color: rgba(250, 247, 244, 0.75);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.nav-toggle__lines {
  width: 22px;
  height: 2px;
  background: currentColor;
  position: relative;
  border-radius: 2px;
  color: var(--ink);
}

.site-header:not(.is-scrolled):not(.hero-passed) .nav-toggle__lines {
  background: var(--cream);
}

.nav-toggle__lines::before,
.nav-toggle__lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.nav-toggle__lines::before {
  top: -7px;
}

.nav-toggle__lines::after {
  top: 7px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.site-nav a {
  color: inherit;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
}

.site-header:not(.is-scrolled):not(.hero-passed) .site-nav a:not(.btn) {
  color: rgba(250, 247, 244, 0.92);
}

.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.site-nav a:not(.btn):hover::after,
.site-nav a:not(.btn):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(250, 247, 244, 0.96);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease-out), opacity 0.35s var(--ease-out);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .site-nav a:not(.btn) {
    color: var(--ink-soft) !important;
  }

  .site-nav__cta {
    width: 100%;
    text-align: center;
  }
}

/* ——— Buttons ——— */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out),
    background 0.25s var(--ease-out), color 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out);
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn:active {
  transform: translateY(1px);
}

.btn--sm {
  padding: 0.65rem 1.25rem;
  font-size: 0.75rem;
}

.btn--primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 12px 28px rgba(20, 18, 16, 0.18);
}

.btn--primary:hover {
  background: var(--ink-soft);
  box-shadow: 0 16px 36px rgba(20, 18, 16, 0.22);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250, 247, 244, 0.45);
}

.btn--ghost:hover {
  border-color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
}

.site-header.is-scrolled .btn--ghost,
.site-header.hero-passed .btn--ghost {
  color: var(--ink);
  border-color: rgba(20, 18, 16, 0.2);
}

.site-header.is-scrolled .btn--ghost:hover,
.site-header.hero-passed .btn--ghost:hover {
  border-color: var(--ink);
  background: rgba(20, 18, 16, 0.04);
}

.site-nav .btn--primary {
  box-shadow: none;
}

.site-header:not(.is-scrolled):not(.hero-passed) .site-nav .btn--primary {
  background: var(--cream);
  color: var(--ink);
}

.site-header:not(.is-scrolled):not(.hero-passed) .site-nav .btn--primary:hover {
  background: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(20, 18, 16, 0.38);
}

.btn--outline:hover {
  border-color: var(--ink);
  background: rgba(20, 18, 16, 0.06);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--cream);
  box-shadow: 0 14px 36px rgba(184, 149, 108, 0.35);
}

.btn--gold:hover {
  filter: brightness(1.05);
}

.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250, 247, 244, 0.35);
}

.btn--ghost-light:hover {
  border-color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
}

/* ——— Hero ——— */

.hero {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 8vw, 5rem);
  color: var(--cream);
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero__img {
  width: 100%;
  height: 120%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 10, 8, 0.35) 0%,
    rgba(12, 10, 8, 0.2) 38%,
    rgba(12, 10, 8, 0.75) 100%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 44rem;
  padding-bottom: 2rem;
}

.hero__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(250, 247, 244, 0.72);
  margin: 0 0 1rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 7vw, 4.25rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}

.hero__tagline {
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.75;
  color: rgba(250, 247, 244, 0.88);
  margin: 0 0 2rem;
  max-width: 36rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__scroll {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0.55;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(180deg, var(--cream), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleY(0.85);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__scroll-line {
    animation: none;
  }
}

@media (max-width: 640px) {
  .hero__scroll {
    display: none;
  }
}

/* ——— Sections ——— */

.section {
  padding: clamp(4.5rem, 12vw, 7.5rem) 0;
}

.section__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 0.75rem;
}

.section__eyebrow--on-dark {
  color: rgba(250, 247, 244, 0.65);
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 1rem;
  line-height: 1.12;
}

.section__subtitle,
.section__lead {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 0;
}

.section__subtitle {
  margin-top: 0.5rem;
}

.section__head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
}

.section__head .section__title {
  margin-inline: auto;
}

.section__head .section__subtitle {
  margin-inline: auto;
}

.section--about {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}

.section--treatments {
  background: var(--cream);
}

.section--gallery {
  background: var(--cream-deep);
}

.section--reviews {
  background: var(--cream);
}

.section--kontakt-booking {
  background: var(--cream);
  padding-bottom: clamp(5rem, 12vw, 7rem);
}

/* Split layout */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split--reverse .contact-block {
  order: 2;
}

.split--reverse .map-frame {
  order: 1;
}

.section--about .split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.55fr);
  gap: clamp(1.75rem, 4vw, 3rem);
}

.section--about .split__figure {
  justify-self: stretch;
}

.section--about .frame--glass {
  padding: 0.45rem;
}

.section--about .split__figure img {
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .split,
  .split--reverse {
    grid-template-columns: 1fr;
  }

  .split--reverse .contact-block,
  .split--reverse .map-frame {
    order: unset;
  }

}

.frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.frame--glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
  padding: 0.6rem;
}

.frame--glass img {
  border-radius: calc(var(--radius-lg) - 6px);
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill-list li {
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(184, 149, 108, 0.25);
  color: var(--ink-soft);
}

/* Treatments */

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .treatment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .treatment-grid {
    grid-template-columns: 1fr;
  }
}

.treatment-card {
  position: relative;
  padding: 1.85rem 1.75rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(20, 18, 16, 0.06);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out);
}

.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 50px rgba(20, 18, 16, 0.1);
  border-color: rgba(184, 149, 108, 0.35);
}

.treatment-card__shine {
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(
    120deg,
    transparent 40%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 60%
  );
  transform: translateX(-100%) rotate(12deg);
  transition: transform 0.8s var(--ease-out);
  pointer-events: none;
}

.treatment-card:hover .treatment-card__shine {
  transform: translateX(80%) rotate(12deg);
}

.treatment-card__title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  margin: 0 0 0.65rem;
  color: var(--ink);
}

.treatment-card__text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Gallery masonry */

.gallery-masonry {
  columns: 3;
  column-gap: 1rem;
}

@media (max-width: 900px) {
  .gallery-masonry {
    columns: 2;
  }
}

@media (max-width: 520px) {
  .gallery-masonry {
    columns: 1;
  }
}

.gallery-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 1rem;
  padding: 0;
  border: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--linen);
  box-shadow: var(--shadow-card);
  width: 100%;
  display: block;
  font: inherit;
  color: inherit;
}

.gallery-item:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.gallery-item img {
  width: 100%;
  transition: transform 0.65s var(--ease-out);
  transform-origin: center;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item__zoom {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  pointer-events: none;
}

.gallery-item:hover .gallery-item__zoom,
.gallery-item:focus-visible .gallery-item__zoom {
  opacity: 1;
  transform: translateY(0);
}

/* Reviews */

.rating-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-top: 1.25rem;
}

.rating-summary__score {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--ink);
}

.rating-summary__stars {
  display: inline-flex;
  gap: 0.2rem;
  color: var(--gold);
}

.star {
  width: 22px;
  height: 22px;
}

.star--half {
  color: var(--gold);
}

.rating-summary__muted {
  width: 100%;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--muted);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .review-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  margin: 0;
  padding: 1.75rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(20, 18, 16, 0.06);
  box-shadow: var(--shadow-card);
  font-style: normal;
}

.review-card p {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.review-card cite {
  font-style: normal;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* Kontakt & booking (samlet sektion) */

.section--kontakt-booking .kontakt-booking__head {
  margin-bottom: clamp(2.25rem, 5vw, 3.25rem);
}

.kontakt-booking__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 3.25rem);
  align-items: start;
}

.kontakt-booking__micro-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 1rem;
}

.kontakt-booking__card .kontakt-booking__micro-label {
  margin-bottom: 0.65rem;
}

.kontakt-booking__micro-label--tight {
  margin-bottom: 0.85rem;
}

.kontakt-booking__stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.kontakt-booking__col--right {
  min-width: 0;
}

.kontakt-booking__form-card .kontakt-booking__micro-label {
  margin-top: 0;
}

.kontakt-booking__form {
  margin: 0;
}

.kontakt-booking__field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.15rem;
  margin-bottom: 1rem;
}

.kontakt-booking__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.kontakt-booking__field--full {
  margin-bottom: 1rem;
}

.kontakt-booking__field-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.kontakt-booking__field input,
.kontakt-booking__field select,
.kontakt-booking__field textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 0.78rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(20, 18, 16, 0.2);
  background: var(--cream);
  color: var(--ink-soft);
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.kontakt-booking__field input::placeholder,
.kontakt-booking__field textarea::placeholder {
  color: rgba(107, 101, 96, 0.72);
}

.kontakt-booking__field select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath stroke='%236b6560' stroke-width='1.5' d='M1 1.5 6 6 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.kontakt-booking__field input:focus-visible,
.kontakt-booking__field select:focus-visible,
.kontakt-booking__field textarea:focus-visible {
  outline: none;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(184, 149, 108, 0.25);
}

.kontakt-booking__field textarea {
  min-height: 132px;
  resize: vertical;
  line-height: 1.55;
}

.kontakt-booking__submit {
  width: 100%;
  margin-top: 0.35rem;
}

.kontakt-booking__form-footnote {
  margin: 1.15rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

.kontakt-booking__hours-card .hours__list {
  margin: 0;
}

.kontakt-booking__hours-card .hours__note--card {
  margin: 0.85rem 0 0;
}

.kontakt-booking__quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.kontakt-booking__quick-actions .btn {
  width: 100%;
  text-align: center;
}

.btn--ink {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  box-shadow: 0 12px 28px rgba(20, 18, 16, 0.15);
}

.btn--ink:hover {
  background: var(--ink-soft);
  border-color: var(--ink-soft);
  color: var(--cream);
}

@media (max-width: 560px) {
  .kontakt-booking__field-row {
    grid-template-columns: 1fr;
  }
}

.map-frame--kontakt {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.kontakt-booking__map-external {
  margin: 1rem 0 0;
}

.kontakt-booking__map-btn {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.12rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.kontakt-booking__map-btn:hover {
  color: var(--ink-soft);
  border-bottom-color: var(--ink-soft);
}

.kontakt-booking__address-block {
  margin-top: 2rem;
}

.kontakt-booking__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 2.85rem);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(20, 18, 16, 0.07);
}

@media (max-width: 900px) {
  .kontakt-booking__grid {
    grid-template-columns: 1fr;
  }

  .kontakt-booking__col--left {
    order: 2;
  }

  .kontakt-booking__col--right {
    order: 1;
  }
}

/* Contact */

.contact-address {
  font-style: normal;
  margin: 1rem 0;
  line-height: 1.7;
  font-size: 1.0625rem;
}

.contact-phone a {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  transition: color 0.2s;
}

.contact-phone a:hover {
  color: var(--gold-deep);
}

.hours {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(20, 18, 16, 0.08);
}

.hours__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 0 0 1rem;
}

.hours__list {
  margin: 0;
}

.hours__list > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px dashed rgba(20, 18, 16, 0.08);
}

.hours__list dt {
  font-weight: 500;
  margin: 0;
}

.hours__list dd {
  margin: 0;
  color: var(--muted);
}

.hours__note {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 1rem 0 0;
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(20, 18, 16, 0.08);
  min-height: 320px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: block;
  filter: grayscale(12%) contrast(1.02);
  transition: filter 0.4s var(--ease-out);
}

.map-frame:hover iframe {
  filter: grayscale(0%);
}

/* Footer */

.site-footer {
  padding: 2.25rem 0;
  border-top: 1px solid rgba(20, 18, 16, 0.06);
  background: var(--cream-deep);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.site-footer .logo__mark {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.site-footer .logo__sub {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}


.site-footer__tag {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  color: var(--muted);
}

.site-footer__copy {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
}

.site-footer__top {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-decoration: none;
}

.site-footer__top:hover {
  text-decoration: underline;
}

/* Reveal on scroll */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal--delay {
  transition-delay: 0.12s;
}

.reveal--delay-sm {
  transition-delay: 0.08s;
}

.reveal--delay-md {
  transition-delay: 0.16s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(12, 10, 8, 0.92);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(250, 247, 244, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s var(--ease-out);
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.lightbox__close:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.lightbox__figure {
  margin: 0;
  max-width: min(1080px, 100%);
  max-height: calc(100vh - 4rem);
}

.lightbox__img {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 4rem);
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
}
