:root {
  --bone:        #f3e9d2;
  --bone-light:  #fbf6e9;
  --bone-soft:   #f8f1de;
  --bone-warm:   #ecdfc0;
  --bone-deep:   #e1d0a4;
  --ink:         #0a0805;
  --ink-warm:    #15110a;
  --ink-2:       #221b10;
  --ink-700:     #382c1a;
  --gold:        #b8923a;
  --gold-light:  #d4ae5b;
  --gold-soft:   #e7c97a;
  --gold-dark:   #8a6c25;
  --oxblood:     #5a1414;
  --oxblood-li:  #7e1c1c;
  --marble:      #fcf8ee;
  --shadow-warm: 0 25px 50px -12px rgba(34, 27, 16, 0.25);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: smooth;
  font-feature-settings: "ss01", "ss02", "kern";
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bone-soft);
  background-image:
    radial-gradient(circle at 20% 0%, rgba(184, 146, 58, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(90, 20, 20, 0.06) 0%, transparent 50%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--ink);
  color: var(--bone-light);
}

.sub-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  mix-blend-mode: multiply;
}
.sub-grain svg {
  width: 100%;
  height: 100%;
  display: block;
}

body > .grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  mix-blend-mode: multiply;
}
body > .grain-overlay svg {
  width: 100%;
  height: 100%;
  display: block;
}

.bg-ink > .grain-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  opacity: 0.5;
}
.bg-ink > .grain-overlay svg {
  width: 100%;
  height: 100%;
  display: block;
}

.tb-text {
  font-size: 11px;
  letter-spacing: 0.22em;
}
.tb-tagline {
  font-size: 13px;
  letter-spacing: 0.04em;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}
.topbar-scroll {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.topbar-scroll::-webkit-scrollbar { display: none; }
.topbar-inner {
  min-width: 100%;
  width: max-content;
}
@media (min-width: 640px) {
  .topbar-inner {
    width: auto;
    min-width: 0;
  }
}
@media (max-width: 480px) {
  .tb-tagline { font-size: 12px; }
  #topbar .tb-text { font-size: 10px; }
}

.status-badge {
  padding: 5px 10px;
  border-radius: 4px;
  background: #198754;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}
.status-badge.closed {
  background: var(--oxblood);
  color: #ffffff;
}

.nav-row {
  height: 80px;
}
@media (min-width: 1024px) {
  .nav-row { height: 88px; }
}

.logo-text {
  font-size: 32px;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  letter-spacing: -0.02em;
  line-height: 1;
}
@media (min-width: 1024px) {
  .logo-text { font-size: 38px; }
}

.nav-items {
  font-size: 11px;
  letter-spacing: 0.22em;
}

.nav-link {
  position: relative;
  color: var(--ink);
  padding: 6px 0;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--oxblood);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.45s var(--ease-soft);
}
.nav-link:hover { color: var(--oxblood); }
.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.nav-cta {
  font-size: 11px;
  letter-spacing: 0.22em;
  padding: 12px 22px;
  border: 1px solid var(--ink);
  border-radius: 9999px;
  color: var(--ink);
  background: transparent;
  transition: all 0.4s ease;
}
.nav-cta:hover {
  background: var(--ink);
  color: var(--bone-light);
}

#navbar {
  background: transparent;
}
#navbar.scrolled {
  top: 0;
  background: rgba(251, 246, 233, 0.92);
  box-shadow: 0 1px 0 rgba(10, 8, 5, 0.08);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
}
#navbar.scrolled .nav-row {
  height: 64px;
}

#topbar { transition: transform 0.4s ease; }
#topbar.scrolled { transform: translateY(-100%); }

.mm-z { z-index: 60; }

#menu-toggle .menu-bar {
  transition: all 0.4s ease;
}
#menu-toggle.open .menu-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: var(--bone-light);
}
#menu-toggle.open .menu-bar:nth-child(2) {
  opacity: 0;
}
#menu-toggle.open .menu-bar:nth-child(3) {
  width: 28px;
  align-self: center;
  margin-right: 0;
  transform: translateY(-8px) rotate(-45deg);
  background: var(--bone-light);
}

#mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mm-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(231, 201, 122, 0.35);
  background: transparent;
  color: var(--bone-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
}
.mm-close:hover {
  background: var(--gold-soft);
  color: var(--ink);
  border-color: var(--gold-soft);
  transform: rotate(90deg);
}

.mobile-link {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: clamp(2rem, 8vw, 3.25rem);
  color: var(--bone-light);
  font-variation-settings: "opsz" 144, "SOFT" 80;
  transition: color 0.3s, transform 0.3s;
  letter-spacing: -0.02em;
  line-height: 1;
}
.mobile-link:hover {
  color: var(--gold-soft);
  transform: translateX(8px);
}

.eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--ink-700);
}

.body-prose {
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .body-prose { font-size: 17px; }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 16px 28px;
  background: var(--ink);
  color: var(--bone-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 9999px;
  transition: all 0.4s var(--ease-soft);
  overflow: hidden;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--oxblood);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-soft);
  z-index: 0;
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(90, 20, 20, 0.45);
}
.btn-primary:hover::before { transform: translateY(0); }

.btn-primary-light {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 16px 28px;
  background: var(--bone-light);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 9999px;
  transition: all 0.4s var(--ease-soft);
  overflow: hidden;
}
.btn-primary-light::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-soft);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-soft);
  z-index: 0;
}
.btn-primary-light > * { position: relative; z-index: 1; }
.btn-primary-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(231, 201, 122, 0.6);
}
.btn-primary-light:hover::before { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 16px 28px;
  border: 1px solid rgba(10, 8, 5, 0.3);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 9999px;
  transition: all 0.4s ease;
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bone-light);
  transform: translateY(-2px);
}

h1, h2 {
  font-feature-settings: "ss01", "ss02";
}

.font-display { letter-spacing: -0.02em; }

.hero-headline {
  font-size: clamp(3.5rem, 11vw, 11rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 350;
}
.hero-headline .hh-line2 {
  font-variation-settings: "opsz" 144, "SOFT" 100;
  margin-left: 0.3em;
}
.hero-headline .hh-line3 {
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
@media (min-width: 1024px) {
  .hero-headline { font-size: clamp(5rem, 8.5vw, 9.5rem); }
}

.hero-lede {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-700);
}
@media (min-width: 1024px) {
  .hero-lede { font-size: 17px; }
}

.hero-signature {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.hero-strip {
  border-top-width: 1px;
}
.strip-value {
  font-size: 14px;
  line-height: 1.5;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  color: var(--ink);
  display: inline-block;
}
@media (min-width: 1024px) {
  .strip-value { font-size: 16px; }
}

.rating-text { font-size: 13px; }
.rating-text span {
  font-size: 16px;
  font-variation-settings: "opsz" 144, "SOFT" 80;
}

.hero-image-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-warm);
}
.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: contrast(1.04) saturate(0.97);
}
.hero-image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, transparent 55%, rgba(10, 8, 5, 0.35));
  pointer-events: none;
}

.hero-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--bone-light);
  padding: 14px 18px;
  border: 1px solid var(--ink);
  max-width: 220px;
  z-index: 2;
  box-shadow: 0 12px 30px -10px rgba(10, 8, 5, 0.4);
}
.hero-tag-eyebrow {
  font-size: 9px;
  letter-spacing: 0.28em;
  color: var(--ink-700);
  margin-bottom: 4px;
}
.hero-tag-title {
  font-size: 22px;
  line-height: 1;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.hero-seal {
  position: absolute;
  bottom: 22px;
  right: 22px;
  width: 116px;
  height: 116px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  background: rgba(10, 8, 5, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}
.hero-seal-top, .hero-seal-bot {
  font-size: 8px;
  letter-spacing: 0.28em;
}
.hero-seal-year {
  font-size: 30px;
  line-height: 1;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--bone-light);
  margin: 4px 0;
}

.section-headline {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144, "SOFT" 40;
  font-weight: 380;
}
.sh-soft {
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.marquee-section {
  position: relative;
}
.marquee-track {
  animation: marquee 50s linear infinite;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-variation-settings: "opsz" 144, "SOFT" 60;
  letter-spacing: -0.02em;
  line-height: 1;
  padding: 14px 0;
  will-change: transform;
}
.marquee-item {
  flex-shrink: 0;
  color: var(--bone-light);
  padding: 0 28px;
}
.marquee-diamond {
  flex-shrink: 0;
  color: var(--gold-soft);
  font-size: 0.5em;
  display: inline-flex;
  align-items: center;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.meander-svg {
  display: block;
  width: 100%;
  height: 14px;
}
.meander-top {
  position: absolute;
  top: 0;
  left: 0;
}
.meander-bot {
  position: absolute;
  bottom: 0;
  left: 0;
}

.atelje-grid > div {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.atelje-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out), filter 0.6s;
  filter: contrast(1.04) saturate(0.95);
}
.atelje-grid > div:hover img {
  transform: scale(1.05);
}
@media (min-width: 1024px) {
  .atelje-grid {
    height: 560px;
  }
  .atelje-tall,
  .atelje-short {
    grid-row: span 2;
    height: 100%;
  }
}
@media (max-width: 1023px) {
  .atelje-grid {
    display: block;
  }
  .atelje-tall {
    aspect-ratio: 4 / 5;
    width: 100%;
    max-height: 540px;
  }
  .atelje-hide-sm {
    display: none;
  }
}

.atelje-quote {
  margin-top: 28px;
  padding: 24px 28px;
  border-left: 1px solid var(--ink);
  background: var(--bone-light);
  position: relative;
}
.atelje-quote-text {
  font-size: 18px;
  line-height: 1.45;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  letter-spacing: -0.01em;
}
@media (min-width: 1024px) {
  .atelje-quote-text { font-size: 21px; }
}

.stat-card {
  padding: 22px 18px;
  background: var(--bone-light);
  border: 1px solid rgba(10, 8, 5, 0.1);
  position: relative;
  transition: transform 0.5s, border-color 0.4s;
}
.stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold);
  opacity: 0;
  transform: scale(0.96);
  transition: all 0.4s;
  pointer-events: none;
}
.stat-card:hover { transform: translateY(-3px); }
.stat-card:hover::after { opacity: 1; transform: scale(1); }

.stat-num {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 0.9;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  letter-spacing: -0.02em;
}

.svc-grid {
  background: rgba(248, 241, 222, 0.08);
}
.svc-card {
  background: var(--ink);
  padding: 38px 32px 90px;
  position: relative;
  transition: background-color 0.5s ease;
  cursor: default;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(231, 201, 122, 0.06), transparent 55%);
  opacity: 0;
  transition: opacity 0.5s;
}
.svc-card:hover { background: var(--ink-2); }
.svc-card:hover::before { opacity: 1; }

.svc-num {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: 14px;
  color: var(--gold-soft);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.svc-num::after {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold-soft);
  margin-left: 12px;
  vertical-align: middle;
  opacity: 0.6;
}
.svc-title {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: 32px;
  line-height: 1;
  color: var(--bone-light);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
  transition: transform 0.5s var(--ease-soft);
}
.svc-card:hover .svc-title { transform: translateX(4px); }
.svc-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(248, 241, 222, 0.65);
  position: relative;
  z-index: 1;
  max-width: 36ch;
}
.svc-arrow {
  position: absolute;
  bottom: 32px;
  left: 32px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(231, 201, 122, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
  font-size: 18px;
  transition: all 0.5s var(--ease-soft);
  z-index: 1;
}
.svc-card:hover .svc-arrow {
  border-color: var(--gold-soft);
  background: var(--gold-soft);
  color: var(--ink);
  transform: rotate(-45deg);
}
.svc-cta-text {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  line-height: 1.2;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  letter-spacing: -0.01em;
}

.gallery-grid {
  grid-auto-rows: minmax(180px, auto);
}
@media (min-width: 768px) {
  .gallery-grid { grid-auto-rows: 230px; }
}
@media (min-width: 1024px) {
  .gallery-grid { grid-auto-rows: 260px; }
}

.gallery-cell {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  width: 100%;
  height: 100%;
}
.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out), filter 0.6s;
  filter: contrast(1.04) saturate(0.95);
}
.gallery-cell:hover img {
  transform: scale(1.05);
  filter: contrast(1.05) saturate(1.05);
}
.gallery-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 8, 5, 0.7), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s;
}
.gallery-cell:hover::after { opacity: 1; }
.gallery-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: var(--bone-light);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.5s var(--ease-soft);
  letter-spacing: -0.01em;
}
.gallery-cell:hover .gallery-tag { opacity: 1; transform: translateY(0); }

.gc-tall, .gc-wide, .gc-square, .gc-banner, .gc-port {
  width: 100%;
  height: 100%;
}

.fe-card {
  background: var(--bone-light);
  border: 1px solid rgba(10, 8, 5, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.5s var(--ease-soft), box-shadow 0.5s ease;
}
.fe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -25px rgba(10, 8, 5, 0.25);
}
.fe-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink);
}
.fe-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.fe-card:hover .fe-image img { transform: scale(1.05); }
.fe-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.fe-half {
  position: relative;
  overflow: hidden;
}
.fe-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fe-label {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--ink);
  color: var(--bone-light);
  padding: 6px 12px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Manrope", system-ui, sans-serif;
  z-index: 2;
}
.fe-label-after {
  background: var(--gold-soft);
  color: var(--ink);
}
.fe-body {
  padding: 28px 32px 32px;
}
.fe-title {
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  line-height: 1.1;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 10px 0 14px;
}
.fe-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-700);
}

.price-card {
  padding: 36px 32px 38px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.5s var(--ease-soft), box-shadow 0.5s ease;
}
.price-card-light {
  background: var(--bone-light);
  border: 1px solid rgba(10, 8, 5, 0.12);
  color: var(--ink);
}
.price-card-dark {
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--bone-light);
}
.price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 60px -28px rgba(10, 8, 5, 0.28);
}
.price-card-light:hover {
  border-color: var(--gold);
}
.price-card-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid currentColor;
}
.price-card-light .price-card-head { border-bottom-color: rgba(10, 8, 5, 0.18); }
.price-card-dark .price-card-head { border-bottom-color: rgba(231, 201, 122, 0.3); }
.price-card-head-sub {
  margin-top: 26px;
}
.price-num {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: 13px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.price-card-light .price-num { color: var(--gold-dark); }
.price-card-dark .price-num { color: var(--gold-soft); }
.price-cat {
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  margin: 0;
}
.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  font-size: 15px;
  border-bottom: 1px dashed;
}
.price-card-light .price-list li { border-bottom-color: rgba(10, 8, 5, 0.12); }
.price-card-dark .price-list li { border-bottom-color: rgba(231, 201, 122, 0.18); }
.price-list li:last-child { border-bottom: none; }
.price-list li > span:first-child {
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 400;
}
.price-card-dark .price-list li > span:first-child {
  color: rgba(248, 241, 222, 0.85);
}
.price-val {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-align: right;
  flex-shrink: 0;
}
.price-card-light .price-val { color: var(--oxblood); }
.price-card-dark .price-val { color: var(--gold-soft); }

.price-card-divider {
  height: 1px;
  background: rgba(10, 8, 5, 0.1);
  margin: 4px 0;
}

.price-footnote {
  text-align: center;
  padding: 28px 20px;
  border-top: 1px solid rgba(10, 8, 5, 0.15);
}
.price-footnote p {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  letter-spacing: -0.01em;
}

.reviews-card {
  background: var(--bone-light);
  padding: 28px 24px;
}
@media (min-width: 1024px) {
  .reviews-card { padding: 40px; }
}

.kontakt-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.kontakt-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(231, 201, 122, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kontakt-value {
  font-size: 17px;
  line-height: 1.4;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.kontakt-hours {
  border-collapse: collapse;
  font-size: 14px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.kontakt-hours td {
  padding: 5px 0;
  color: var(--bone-light);
}
.kontakt-hours td:last-child {
  text-align: right;
  color: var(--gold-soft);
}
.kontakt-hours tr.closed td {
  color: rgba(248, 241, 222, 0.45);
}

.form-card {
  background: rgba(248, 241, 222, 0.04);
  border: 1px solid rgba(231, 201, 122, 0.2);
  padding: 32px 28px;
  position: relative;
}
@media (min-width: 1024px) {
  .form-card { padding: 44px 44px 40px; }
}
.form-card-head {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(231, 201, 122, 0.2);
}
.form-title {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field-full {
  grid-column: 1 / -1;
}
.form-field label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(231, 201, 122, 0.3);
  color: var(--bone-light);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 15px;
  padding: 10px 0;
  transition: border-color 0.3s ease;
  border-radius: 0;
  outline: none;
  width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(248, 241, 222, 0.35);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--gold-soft);
}
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold-soft) 50%),
                    linear-gradient(135deg, var(--gold-soft) 50%, transparent 50%);
  background-position: calc(100% - 14px) center, calc(100% - 9px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 28px;
  cursor: pointer;
}
.form-field select option {
  background: var(--ink);
  color: var(--bone-light);
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: "Manrope", system-ui, sans-serif;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 18px 32px;
  background: var(--gold-soft);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.4s var(--ease-soft);
  margin-top: 14px;
  align-self: flex-start;
  overflow: hidden;
  font-family: "Manrope", system-ui, sans-serif;
}
.form-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bone-light);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-soft);
  z-index: 0;
}
.form-submit > * {
  position: relative;
  z-index: 1;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -12px rgba(231, 201, 122, 0.55);
}
.form-submit:hover::before { transform: translateY(0); }
.form-submit[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

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

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(231, 201, 122, 0.3);
  border-radius: 9999px;
  color: var(--bone-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all 0.4s ease;
}
.social-link:hover {
  background: var(--gold-soft);
  color: var(--ink);
  border-color: var(--gold-soft);
  transform: translateY(-2px);
}

.footer-wordmark-link { display: block; }
.footer-wordmark {
  font-size: clamp(4rem, 14vw, 14rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}
@media (min-width: 1024px) {
  .footer-wordmark { font-size: clamp(8rem, 12vw, 13rem); }
}

.footer-text {
  font-size: 16px;
  line-height: 1.5;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}
.footer-links li.closed {
  color: rgba(10, 8, 5, 0.45);
}

.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all 0.4s ease;
}
.footer-social:hover {
  background: var(--ink);
  color: var(--bone-light);
  transform: translateY(-2px);
}

.footer-bottom {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-700);
}

.reveal,
.reveal-img {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1.1s var(--ease-out),
    transform 1.1s var(--ease-out);
}
.reveal-img {
  transform: translateY(40px) scale(0.97);
}
.reveal.delay-1 { transition-delay: 0.10s; }
.reveal.delay-2 { transition-delay: 0.20s; }
.reveal.delay-3 { transition-delay: 0.30s; }
.reveal.delay-4 { transition-delay: 0.40s; }
.reveal.delay-5 { transition-delay: 0.50s; }

.reveal.in-view,
.reveal-img.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

img { -webkit-user-drag: none; }
a { transition: color 0.3s ease; }

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track { background: var(--bone-soft); }
::-webkit-scrollbar-thumb {
  background: var(--ink);
  border: 2px solid var(--bone-soft);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover { background: var(--oxblood); }

html, body {
  overflow-x: hidden;
}

#contact-form {
  max-width: 100%;
  overflow: hidden;
}
#contact-form .g-recaptcha {
  transform-origin: left center;
  max-width: 100%;
}
@media (max-width: 400px) {
  #contact-form .g-recaptcha {
    transform: scale(0.85);
  }
}
@media (max-width: 340px) {
  #contact-form .g-recaptcha {
    transform: scale(0.75);
  }
}
@media (max-width: 640px) {
  section, section > div, section > div > div, section > div > div > div {
    max-width: 100%;
    box-sizing: border-box;
  }
  .grid > div { min-width: 0; max-width: 100%; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: clamp(3rem, 14vw, 5rem); }
  .marquee-track { font-size: 7vw; padding: 8px 0; }
  .hero-tag { top: 16px; left: 16px; padding: 10px 14px; max-width: 180px; }
  .hero-tag-title { font-size: 18px; }
  .hero-seal { width: 92px; height: 92px; bottom: 16px; right: 16px; }
  .hero-seal-year { font-size: 24px; }
  .footer-wordmark { font-size: 22vw; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms;
    transition-duration: 0.01ms;
  }
  .reveal, .reveal-img { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .status-dot { animation: none; }
}
