/* Korina Koko — Fine line tattoo studio */

:root {
  --ink: #0c0c0c;
  --ink-soft: #2a2a2a;
  --mute: #6e6e6e;
  --line: #d4d4d4;
  --paper: #f5f4f1;
  --paper-deep: #ebeae6;
  --white: #fafaf8;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Syne", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

/* Atmosphere */
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
}

.cursor-glow {
  display: none;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  mix-blend-mode: difference;
  color: #fff;
  transition: background 0.4s var(--ease), mix-blend-mode 0.3s, color 0.3s;
}

.site-header.is-solid {
  mix-blend-mode: normal;
  color: var(--ink);
  background: rgba(245, 244, 241, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.logo {
  display: flex;
  align-items: center;
  color: inherit;
}

.logo-img {
  height: 1.65rem;
  width: auto;
  display: block;
}

.site-header:not(.is-solid) .logo-img {
  filter: invert(1);
}

.site-header.menu-open .logo-img {
  filter: invert(1);
}

.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;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.75rem);
}

.nav a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.25s;
}

.nav a:hover {
  opacity: 1;
}

.nav-cta {
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.15rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  width: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
}

.menu-toggle span {
  display: block;
  height: 1px;
  width: 100%;
  background: currentColor;
  transition: transform 0.35s var(--ease), opacity 0.25s;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-img,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.hero-video {
  transform: scale(1.04);
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.35) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(1.25rem, 5vw, 4.5rem) clamp(5rem, 12vh, 7rem);
  max-width: 52rem;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 1.25rem;
}

.hero-logo {
  margin-bottom: 1.35rem;
  max-width: min(420px, 88vw);
}

.hero-logo img {
  width: 100%;
  height: auto;
  filter: invert(1);
}

.hero-brand {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(4.2rem, 14vw, 9.5rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-brand span {
  display: block;
}

.hero-brand span:last-child {
  font-style: italic;
  font-weight: 300;
}

.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 300;
  font-style: italic;
  opacity: 0.85;
  margin-bottom: 2rem;
  max-width: 22ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.scroll-hint {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: clamp(2rem, 6vh, 3.5rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  color: #fff;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, #fff, transparent);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0 1.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s;
}

.btn-solid {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.btn-solid:hover {
  background: transparent;
  color: #fff;
}

.btn-pulse {
  position: relative;
  animation: cta-pulse 2.4s ease-in-out infinite;
}

.btn-pulse::after {
  content: "";
  position: absolute;
  inset: -2px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  pointer-events: none;
  animation: cta-ring 2.4s ease-out infinite;
}

@keyframes cta-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    transform: scale(1.03);
  }
}

@keyframes cta-ring {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

.btn-pulse:hover {
  animation: none;
  transform: scale(1);
}

.btn-pulse:hover::after {
  animation: none;
  opacity: 0;
}

.hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: transparent;
}

.hero .btn-ghost:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.btn-ghost {
  border-color: var(--ink);
  background: transparent;
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn-full {
  width: 100%;
}

.book .btn-solid {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.book .btn-solid:hover {
  background: transparent;
  color: var(--ink);
}

/* Sections shared */
.section-head {
  max-width: 36rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.section-lede {
  color: var(--mute);
  font-size: 0.95rem;
  max-width: 38ch;
}

.eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 1rem;
}

/* Work */
.work {
  padding: clamp(5rem, 12vh, 8rem) clamp(1.25rem, 4vw, 3rem);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.65rem;
}

.gallery-item {
  grid-column: span 4;
  position: relative;
  overflow: hidden;
  background: var(--paper-deep);
  cursor: pointer;
  aspect-ratio: 4 / 5;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.gallery-item.tall {
  aspect-ratio: 3 / 5;
}

.gallery-item.wide {
  grid-column: span 8;
  aspect-ratio: 16 / 9;
}

.gallery-item.is-hidden {
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: transform 1.1s var(--ease), filter 0.6s;
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: grayscale(1) contrast(1.12);
}

.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.5rem 1rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.gallery-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item figcaption span {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
}

.gallery-item figcaption em {
  font-style: normal;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
}

/* About */
.about {
  padding: clamp(4rem, 10vh, 7rem) clamp(1.25rem, 4vw, 3rem);
  background: var(--ink);
  color: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-visual {
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
  transition: transform 1.2s var(--ease);
}

.about-visual:hover img {
  transform: scale(1.04);
}

.about-copy .section-title {
  color: var(--paper);
}

.about-copy p {
  color: rgba(245, 244, 241, 0.72);
  margin-bottom: 1.15rem;
  max-width: 38ch;
  font-size: 1rem;
}

.about .eyebrow {
  color: rgba(245, 244, 241, 0.45);
}

.traits {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
}

.traits li {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 244, 241, 0.55);
  padding-left: 1.1rem;
  position: relative;
}

.traits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 1px;
  background: currentColor;
}

/* Guest spots */
.guest {
  padding: clamp(5rem, 12vh, 8rem) clamp(1.25rem, 4vw, 3rem);
  background:
    linear-gradient(135deg, var(--paper) 0%, var(--paper-deep) 100%);
}

.guest-inner {
  max-width: 900px;
  margin: 0 auto;
}

.guest-list {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.guest-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}

.guest-place h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.65rem;
  line-height: 1.2;
}

.guest-place p {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 0.25rem;
}

.guest-row time {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--ink-soft);
}

.guest-status {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  min-width: 6.5rem;
  text-align: right;
}

.guest-status.is-current {
  color: var(--ink);
}

.guest-status.is-current::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ink);
  margin-right: 0.5rem;
  vertical-align: middle;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

/* Book — Terminanfrage */
.book {
  position: relative;
  padding: clamp(5rem, 12vh, 8rem) clamp(1.25rem, 4vw, 3rem);
  color: var(--paper);
  background: var(--ink);
  overflow: hidden;
  min-height: auto;
  display: flex;
  align-items: center;
}

.book-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 4.5rem);
  align-items: start;
}

.book .eyebrow {
  color: rgba(245, 244, 241, 0.5);
}

.book .section-title {
  color: var(--paper);
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  font-style: italic;
  font-weight: 300;
  max-width: 18ch;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.book-email {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 400;
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  margin-bottom: 1.75rem;
  transition: opacity 0.25s;
}

.book-email:hover {
  opacity: 0.7;
}

.book-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(245, 244, 241, 0.8);
  margin-bottom: 1rem;
}

.book-points {
  list-style: none;
  display: grid;
  gap: 0.45rem;
  margin-bottom: 2rem;
}

.book-points li {
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(245, 244, 241, 0.65);
  font-family: var(--serif);
}

.book-points li::before {
  content: "– ";
}

.book-note {
  color: rgba(245, 244, 241, 0.5);
  font-size: 0.85rem;
}

.book-note a {
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.book-form {
  display: grid;
  gap: 1.15rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.form-hint {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: rgba(245, 244, 241, 0.45);
}

.size-field {
  display: grid;
  gap: 0.65rem;
  padding: 0.35rem 0 0.5rem;
}

.size-label-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 244, 241, 0.5);
}

.size-value {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  color: var(--paper);
  font-weight: 400;
}

.size-field input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.28);
  border: none;
  border-radius: 0;
  outline: none;
  cursor: pointer;
  padding: 0;
  color-scheme: dark;
}

.size-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: transform 0.2s var(--ease);
}

.size-field input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.size-field input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.size-field input[type="range"]::-moz-range-track {
  height: 2px;
  background: rgba(255, 255, 255, 0.28);
}

.size-scale {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: rgba(245, 244, 241, 0.35);
  font-family: var(--serif);
  font-style: italic;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.book-form label {
  display: grid;
  gap: 0.4rem;
}

.book-form label span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 244, 241, 0.5);
}

.book-form input,
.book-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.7rem 0;
  outline: none;
  color: var(--paper);
  transition: border-color 0.3s;
  resize: vertical;
  color-scheme: dark;
}

.book-form input:focus,
.book-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.7);
}

.book-form input::placeholder,
.book-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.btn-book {
  min-height: 3.2rem;
  margin-top: 0.25rem;
}

.book .btn-solid {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.book .btn-solid:hover {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.5);
}

.form-status {
  font-size: 0.85rem;
  color: rgba(245, 244, 241, 0.55);
  min-height: 1.25rem;
}

.form-status.is-ok {
  color: var(--paper);
}

/* Footer */
.site-footer {
  padding: 3rem clamp(1.25rem, 4vw, 3rem) 2.5rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: end;
}

.footer-name {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
}

.footer-logo {
  display: block;
  height: 1.75rem;
  width: auto;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.footer-meta {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}

.footer-links {
  display: flex;
  gap: 1.75rem;
  justify-content: center;
}

.footer-links a {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-copy {
  text-align: right;
  font-size: 0.75rem;
  color: var(--mute);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(8, 8, 8, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox:not([hidden]) {
  display: flex;
}

.lightbox img {
  max-width: min(90vw, 900px);
  max-height: 78vh;
  object-fit: contain;
  filter: grayscale(1);
}

.lightbox-cap {
  margin-top: 1rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.25s;
}

.lightbox-close:hover {
  opacity: 1;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 960px) {
  .gallery-item,
  .gallery-item.wide {
    grid-column: span 6;
  }

  .gallery-item.wide {
    aspect-ratio: 4 / 3;
  }

  .about-grid,
  .book-shell {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-visual {
    max-width: 420px;
  }

  .guest-row {
    grid-template-columns: 1fr auto;
    gap: 0.75rem 1rem;
  }

  .guest-status {
    grid-column: 2;
    grid-row: 1;
  }

  .guest-row time {
    grid-column: 1 / -1;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-copy {
    text-align: center;
  }
}

@media (max-width: 720px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: var(--ink);
    color: var(--paper);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
    mix-blend-mode: normal;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    font-size: 1.1rem;
    letter-spacing: 0.18em;
  }

  .site-header {
    mix-blend-mode: normal;
    color: #fff;
  }

  .site-header.is-solid {
    color: var(--ink);
  }

  .site-header.menu-open {
    color: #fff !important;
    background: transparent !important;
    border: none !important;
    mix-blend-mode: normal;
  }

  .gallery-item,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 12;
    aspect-ratio: 4 / 5;
  }

  .gallery-item figcaption {
    opacity: 1;
    transform: none;
  }

  .scroll-hint {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-line { animation: none; }
  .guest-status.is-current::before { animation: none; }
  .btn-pulse,
  .btn-pulse::after { animation: none; }
}

/* Styles / services — SEO + clean layout */
.styles {
  padding: clamp(4.5rem, 10vh, 7rem) clamp(1.25rem, 4vw, 3rem);
  background: var(--paper-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.styles-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.styles-intro {
  color: var(--mute);
  max-width: 42ch;
  margin: 0 0 2.5rem;
  font-size: 0.98rem;
}

.styles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 2rem;
}

.style-item {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.style-item h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.35rem;
  margin-bottom: 0.55rem;
}

.style-item p {
  color: var(--mute);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 32ch;
}

.seo-keywords {
  padding: 2.5rem clamp(1.25rem, 4vw, 3rem) 3.5rem;
  border-top: 1px solid var(--line);
}

.seo-keywords-inner {
  max-width: 720px;
  margin: 0 auto;
}

.seo-keywords p {
  color: var(--mute);
  font-size: 0.88rem;
  line-height: 1.7;
}

.seo-keywords strong {
  color: var(--ink-soft);
  font-weight: 500;
}

@media (max-width: 900px) {
  .styles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .styles-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ — SEO content, quiet design */
.seo-faq {
  padding: clamp(4rem, 10vh, 6.5rem) clamp(1.25rem, 4vw, 3rem);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.seo-faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.seo-faq .section-title {
  margin-bottom: 2rem;
}

.seo-faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.15rem 0;
}

.seo-faq summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.seo-faq summary::-webkit-details-marker {
  display: none;
}

.seo-faq summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--mute);
}

.seo-faq details[open] summary::after {
  content: "–";
}

.seo-faq details p {
  margin-top: 0.75rem;
  color: var(--mute);
  font-size: 0.95rem;
  max-width: 48ch;
  line-height: 1.65;
}

/* Thank-you / error */
.status-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: var(--paper);
}

.status-box {
  text-align: center;
  max-width: 28rem;
}

.status-logo {
  height: 2rem;
  width: auto;
  margin: 0 auto 2rem;
}

.status-box h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 0.85rem;
}

.status-box p {
  color: var(--mute);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.status-box a.btn {
  border-color: var(--ink);
}

.status-box a.btn:hover {
  background: var(--ink);
  color: var(--paper);
}

