:root {
  --bg: #0a0a0a;
  --bg-soft: #111111;
  --bg-card: #161616;
  --text: #f5f0eb;
  --text-muted: rgba(245, 240, 235, 0.55);
  --accent: #c9a96e;
  --accent-soft: rgba(201, 169, 110, 0.15);
  --border: rgba(255, 255, 255, 0.08);
  --display: "Roboto Flex", "Segoe UI", sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Onest", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 80px;
}

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

html {
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg);
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

body:hover .cursor-glow {
  opacity: 1;
}

@media (hover: none), (pointer: coarse) {
  .cursor-glow {
    display: none;
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s;
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  position: relative;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a.is-active {
  color: var(--text);
}

.nav-links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 1px;
  background: var(--accent);
}

.nav-cta {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}

.nav-cta:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Language switcher */
.lang-switcher {
  position: relative;
  z-index: 170;
}

.lang-switcher-btn {
  min-width: 46px;
  height: 46px;
  padding: 0 0.85rem 0 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 110, 0.35);
  background: rgba(10, 10, 10, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.lang-switcher-btn:hover,
.lang-switcher.is-open .lang-switcher-btn {
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.15);
}

.lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 16px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.lang-flag svg {
  width: 100%;
  height: 100%;
  display: block;
}

.lang-current-label {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  background: rgba(16, 16, 16, 0.98);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.4rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.lang-dropdown[hidden] {
  display: none !important;
}

.lang-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  text-align: left;
  transition: background 0.2s;
}

.lang-option .lang-flag {
  width: 28px;
  height: 18px;
}

.lang-option:hover,
.lang-option.is-active {
  background: rgba(201, 169, 110, 0.12);
}

.lang-label {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  position: relative;
  z-index: 170;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

body.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

body.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 160;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 5rem 1.5rem 2rem;
}

.mobile-menu[hidden] {
  display: none !important;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu-close {
  position: absolute;
  top: max(1rem, env(safe-area-inset-top, 0px));
  right: max(1rem, env(safe-area-inset-right, 0px));
  font-size: 2.5rem;
  line-height: 1;
  color: var(--text-muted);
  padding: 0.5rem;
  z-index: 171;
}

.mobile-menu-close:hover {
  color: var(--text);
}

.mobile-menu a {
  font-family: var(--display);
  font-size: clamp(1.35rem, 5.5vw, 1.85rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  padding: 0.35rem 0;
  color: var(--text-muted);
  transition: color 0.3s;
}

.mobile-menu a.is-active {
  color: var(--text);
  box-shadow: inset 0 -1px 0 var(--accent);
}

body.menu-open {
  overflow: hidden;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.4s var(--ease);
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}

.btn-primary:hover {
  background: #d4b87a;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 169, 110, 0.25);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.25);
}

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

.btn-full {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 6rem;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  transform: scale(1);
  filter: grayscale(100%) contrast(1.08) brightness(0.92);
}

.hero-slide.is-active {
  opacity: 1;
  animation: kenBurns 5s ease-in-out forwards;
}

@keyframes kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.45) 50%, rgba(10, 10, 10, 0.55) 100%),
    linear-gradient(to right, rgba(10, 10, 10, 0.55) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-h);
}

.hero-label {
  font-family: var(--display);
  font-size: clamp(0.72rem, 1.4vw, 0.85rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.35rem;
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(2.75rem, 7.2vw, 6.1rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.hero-title .line {
  display: block;
}

.hero-title .accent {
  font-style: normal;
  font-weight: 300;
  letter-spacing: -0.04em;
  color: var(--accent);
}

.hero-sub {
  max-width: 480px;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

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

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

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

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-items: center;
  gap: 1.5rem;
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}

.stat {
  text-align: center;
  min-width: 0;
}

.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(0.82rem, 1.2vw, 1.2rem);
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 0.5rem;
  white-space: nowrap;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Featured bento */
.featured {
  padding: 6rem 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 1rem;
}

.featured-item {
  overflow: hidden;
  position: relative;
}

.featured-large {
  grid-row: span 2;
}

.featured-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.featured-item:hover img {
  transform: scale(1.05);
}

/* Philosophy */
.philosophy {
  padding: 8rem 0;
  background: var(--bg-soft);
}

.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(1.85rem, 4.5vw, 3.1rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 2rem;
}

.section-title em {
  font-style: normal;
  font-weight: 300;
  color: var(--accent);
}

.philosophy-text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.philosophy-quote {
  border-left: 2px solid var(--accent);
  padding: 2rem 0 2rem 2.5rem;
}

.philosophy-quote p {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.philosophy-quote cite {
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* About */
.about {
  padding: 8rem 0;
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: 4rem;
  align-items: center;
}

.about-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s var(--ease);
}

.about-photo:hover img {
  transform: scale(1.03);
}

.about-role {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin: -1rem 0 1.5rem;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.about-text .section-title {
  margin-bottom: 1rem;
}

.about-quote {
  margin-top: 2rem;
  border-left: 2px solid var(--accent);
  padding-left: 1.5rem;
}

.about-quote p {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 0;
}

/* Prices */
.prices {
  padding: 8rem 0 4rem;
  background: var(--bg-soft);
  border-block: 1px solid var(--border);
}

.prices-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.prices-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

.price-card {
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 1.75rem 1.5rem 2rem;
  min-height: 100%;
}

.price-card-accent {
  border-color: rgba(201, 169, 110, 0.45);
  background: linear-gradient(180deg, rgba(201, 169, 110, 0.12), var(--bg-card) 55%);
}

.price-card-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.price-card-value {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.price-card-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.prices-footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}

.prices-faq h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.prices-faq ul {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.prices-faq li {
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
}

.prices-faq li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

.price-card-max {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 2rem 2.15rem;
  border-color: rgba(201, 169, 110, 0.55);
  background:
    linear-gradient(120deg, rgba(201, 169, 110, 0.16), transparent 42%),
    var(--bg-card);
}

.price-card-max-tag {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: -0.35rem 0 1rem;
  line-height: 1.35;
}

.price-card-max .price-card-value {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.price-card-max-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
}

.price-card-max-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text);
  line-height: 1.45;
}

.price-card-max-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

.prices-extras {
  margin-top: 1.35rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Price quiz */
.price-quiz {
  margin: 2rem 0 0;
  padding: 2rem 1.75rem 2.25rem;
  border: 1px solid rgba(201, 169, 110, 0.35);
  background: var(--bg-card);
}

.price-quiz[hidden] {
  display: none !important;
}

.price-quiz-title {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0.35rem 0 1.25rem;
}

.price-quiz-progress {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.price-quiz-progress-bar {
  height: 100%;
  width: 0;
  background: var(--accent);
  transition: width 0.35s var(--ease);
}

.price-quiz-step-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.price-quiz-question {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.price-quiz-options {
  display: grid;
  gap: 0.65rem;
}

.price-quiz-option {
  text-align: left;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.98rem;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}

.price-quiz-option:hover,
.price-quiz-option.is-selected {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--text);
}

.price-quiz-date-field {
  display: grid;
  gap: 0.4rem;
  margin-top: 0.35rem;
}

.price-quiz-date-field.is-hidden {
  display: none;
}

.price-quiz-date-field span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.price-quiz-date-field input {
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font: inherit;
}

.price-quiz-date-field input:focus {
  outline: none;
  border-color: var(--accent);
}

.price-quiz-nav {
  margin-top: 1.5rem;
}

.price-quiz-result-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.price-quiz-result-title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.price-quiz-result-price {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.price-quiz-result-text {
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.price-quiz-breakdown {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.price-quiz-breakdown li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.price-quiz-breakdown li strong {
  color: var(--text);
  font-weight: 500;
  white-space: nowrap;
}

.price-quiz-breakdown li.is-total {
  margin-top: 0.35rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--border);
  color: var(--text);
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.price-quiz-breakdown li.is-total strong {
  color: var(--accent);
}

.price-quiz-notes {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin: 0 0 1rem;
  padding: 0;
}

.price-quiz-notes li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
}

.price-quiz-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
}

.price-quiz-result-hint {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
}

.price-quiz-form {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.price-quiz-form-title {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.prices-cta-block p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Reviews */
.reviews,
.reviews-page {
  padding: 8rem 0 5rem;
}

.reviews-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.reviews-intro {
  color: var(--text-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.review-card {
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 1.75rem;
}

.review-card-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.review-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  display: grid;
  place-items: center;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-avatar-fallback {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--accent);
}

.review-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.review-rating {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.review-text {
  color: var(--text-muted);
  line-height: 1.7;
  white-space: pre-wrap;
}

.reviews-actions {
  text-align: center;
  margin-top: 2.5rem;
}

.reviews-page-hero {
  padding: 8rem 0 2rem;
}

.reviews-page-hero .section-title {
  margin-bottom: 1rem;
}

.reviews-page .reviews-grid {
  grid-template-columns: 1fr;
  max-width: 820px;
  margin: 0 auto;
}

.reviews-page .review-card {
  padding: 2rem;
}

/* Categories */
.categories {
  padding: 6rem 0 2rem;
}

.categories-header {
  text-align: center;
  margin-bottom: 3rem;
}

.categories-intro {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 1rem;
  max-width: 480px;
  margin-inline: auto;
}

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

.category-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.15) 55%, transparent 100%);
}

.category-card:hover img {
  transform: scale(1.06);
}

.category-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1.5rem 1.25rem;
}

.category-card-title {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
}

.category-card-meta {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.portfolio-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: -1.5rem 0 3rem;
}

.portfolio-tab {
  appearance: none;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.portfolio-tab:hover {
  color: var(--text);
  border-color: rgba(201, 169, 110, 0.4);
}

.portfolio-tab.is-active {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
}

.portfolio-projects {
  padding: 0 1.5rem 3rem;
  max-width: 1280px;
  margin: 0 auto;
}

.portfolio-panel .gallery-masonry {
  margin-top: 1rem;
}

.contact-phone {
  margin-top: 1.5rem;
}

.contact-phone a {
  color: var(--accent);
  text-decoration: none;
  font-family: var(--display);
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.contact-phone a:hover {
  text-decoration: underline;
}

/* Gallery */
.gallery-section,
.series-section {
  padding: 8rem 0 4rem;
}

.portfolio-series-break {
  padding: 6rem 0;
  margin: 2rem 0 3rem;
  background: var(--bg-soft);
  border-block: 1px solid var(--border);
}

.portfolio-series-break .series-header {
  margin-bottom: 3rem;
}

.gallery-header,
.series-header {
  text-align: center;
  margin-bottom: 4rem;
}

.gallery-count,
.series-intro {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 1rem;
  max-width: 520px;
  margin-inline: auto;
}

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

.series-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}

.series-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 169, 110, 0.35);
}

.series-card-image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.series-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.series-card:hover .series-card-image img {
  transform: scale(1.05);
}

.series-card-body {
  padding: 1.5rem 1.25rem 1.75rem;
  text-align: center;
}

.series-card-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
}

.series-card-count {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Series detail page */
.series-page {
  padding-top: var(--header-h);
}

.series-page.is-landing {
  padding-top: 0;
}

.series-hero {
  padding: 4rem 0 3rem;
  text-align: center;
}

.series-back {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
  transition: color 0.3s;
}

.series-back:hover {
  color: var(--accent);
}

.series-page-title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.series-page-count {
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.series-page-lead {
  max-width: 640px;
  margin: 1.5rem auto 0;
  color: var(--text-muted);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 400;
  line-height: 1.55;
  font-style: italic;
}

.series-intro {
  max-width: 720px;
  margin: 0 auto 3rem;
  padding-bottom: 0.5rem;
}

.series-intro p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.98rem;
}

.series-gallery {
  padding-bottom: 5rem;
}

.series-error {
  color: var(--text-muted);
  padding: 4rem 0;
  text-align: center;
}

.series-error a {
  color: var(--accent);
}

/* Series landing — hide legacy blocks; hero-gallery layout keeps masonry gallery */
.series-page.is-landing #seriesHeroSimple,
.series-page.is-landing #seriesIntro,
.series-page.is-landing #seriesLandingFaq {
  display: none !important;
}

.series-page.is-landing:not(.is-hero-gallery) #seriesGallery,
.series-page.is-landing:not(.is-hero-gallery) #seriesGalleryHead {
  display: none !important;
}

.series-hero-landing {
  position: relative;
  min-height: min(92vh, 920px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 2rem) 0 4.5rem;
  overflow: hidden;
}

.series-hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.series-hero-slideshow {
  position: absolute;
  inset: 0;
}

.series-hero-slideshow .hero-slide {
  filter: grayscale(0%) contrast(1.05) brightness(0.78);
}

.series-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, rgba(10, 10, 10, 0.55) 40%, rgba(10, 10, 10, 0.88) 100%);
}

.series-hero-landing-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.series-back--on-dark {
  color: rgba(255, 255, 255, 0.7);
}

.series-back--on-dark:hover {
  color: var(--accent);
}

.series-landing-title {
  font-family: var(--display);
  font-size: clamp(2.3rem, 6.2vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0.6rem 0 1.25rem;
  white-space: pre-line;
}

.series-landing-lead {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.series-landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.series-btn-ghost--light {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.series-btn-ghost--light:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.series-landing-section {
  padding: 4.5rem 0 2.5rem;
}

.series-landing-section .container {
  max-width: 760px;
}

.series-landing-section h2 {
  font-family: var(--display);
  font-size: clamp(1.65rem, 3.6vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  margin: 0.5rem 0 1.25rem;
}

.series-landing-section--why .container,
.series-landing-why {
  max-width: 920px;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.series-landing-why-copy {
  flex: 1;
  min-width: 0;
}

.series-landing-why-photo {
  margin: 0.5rem 0 0;
  flex: 0 0 auto;
  width: 230px;
  height: 275px;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--border);
  background: var(--bg-elevated, #1a1a1a);
}

.series-landing-why-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.series-landing-section p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.series-landing-bullets {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.series-landing-bullets li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text);
  line-height: 1.55;
}

.series-landing-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

/* Photo bands between text blocks — same lightbox, interleaved with copy */
.series-photo-band {
  columns: 3;
  column-gap: 8px;
  padding: 0.5rem 8px 1.5rem;
}

.series-photo-band--rest {
  columns: 4;
  padding-bottom: 3rem;
}

.series-photo-band .gallery-item {
  break-inside: avoid;
  margin-bottom: 8px;
}

.series-gallery-head {
  padding: 5rem 0 2rem;
  text-align: center;
}

.series-gallery-lead {
  max-width: 560px;
  margin: 0.75rem auto 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.series-landing-faq {
  padding: 3.5rem 0 1rem;
}

.series-landing-faq-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.series-landing-faq .faq-list {
  max-width: 860px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .series-photo-band {
    columns: 2;
  }

  .series-photo-band--rest {
    columns: 2;
  }
}

@media (max-width: 768px) {
  .series-hero-landing {
    min-height: 85vh;
    padding-bottom: 3rem;
  }

  .series-landing-section {
    padding: 3rem 0 1.5rem;
  }

  .series-landing-section--why .container,
  .series-landing-why {
    gap: 1.25rem;
  }

  .series-landing-why-photo {
    width: 140px;
    height: 168px;
  }

  .series-photo-band {
    columns: 1;
    padding-inline: 12px;
  }

  .series-photo-band--rest {
    columns: 1;
  }

  .series-gallery-head {
    padding-top: 3.5rem;
  }
}

.gallery-masonry {
  columns: 4;
  column-gap: 8px;
  padding: 0 8px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
  /* Reserve space before image bytes arrive — prevents scroll jump */
  background: rgba(255, 255, 255, 0.03);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--ease), filter 0.4s;
}

/* Galleries: no slide-in — it feels like layout jump while scrolling */
.gallery-item.reveal,
.series-photo-band.reveal,
.gallery-masonry .reveal,
.series-photo-band .reveal {
  opacity: 1;
  transform: none;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(201, 169, 110, 0);
  transition: background 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.03);
  filter: brightness(0.85);
}

.gallery-item:hover::after {
  background: rgba(201, 169, 110, 0.1);
}

/* Services */
.services {
  padding: 8rem 0;
  background: var(--bg-soft);
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.4s, transform 0.4s var(--ease);
}

.service-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-4px);
}

.service-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.service-num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.5;
  display: block;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* FAQ */
.faq {
  padding: 8rem 0 5rem;
  background: var(--bg-soft);
  border-block: 1px solid var(--border);
}

.faq-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.faq-intro {
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.35rem 1.5rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.35;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "\002B"; /* + */
  flex-shrink: 0;
  width: 1.5rem;
  text-align: center;
  font-family: var(--sans);
  font-size: 1.35rem;
  line-height: 1;
  color: var(--accent);
  transition: transform 0.25s var(--ease);
}

.faq-item[open] summary::after {
  content: "\002D"; /* ASCII hyphen-minus */
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-answer strong {
  color: var(--text);
  font-weight: 500;
}

.faq-answer a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.faq-answer a:hover {
  color: var(--text);
}

@media (max-width: 768px) {
  .faq {
    padding: 5rem 0 3.5rem;
  }

  .faq-item summary {
    font-size: 1.1rem;
    padding: 1.15rem 1.15rem;
  }

  .faq-answer {
    padding: 0 1.15rem 1.25rem;
  }
}

/* CTA Banner */
.cta-banner {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 5rem;
  padding: 5rem 1.25rem;
  transition: min-height 0.55s var(--ease), padding 0.55s var(--ease);
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner-overlay {
  position: absolute;
  top: 2.5rem;
  right: 1.25rem;
  bottom: 2.5rem;
  left: 1.25rem;
  background: rgba(10, 10, 10, 0.72);
  pointer-events: none;
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
}

.cta-banner h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.cta-banner.is-open {
  min-height: auto;
  padding-block: 4.5rem 5rem;
}

.cta-inquiry-wrap {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  margin-top: 0;
  transition:
    grid-template-rows 0.55s var(--ease),
    opacity 0.4s ease,
    margin-top 0.45s var(--ease);
}

.cta-banner.is-open .cta-inquiry-wrap {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 1.75rem;
}

.cta-inquiry-wrap > .cta-inquiry {
  overflow: hidden;
  min-height: 0;
}

.cta-inquiry {
  text-align: left;
  background: #121212;
  border: 1px solid rgba(201, 169, 110, 0.22);
  padding: 1.75rem 1.5rem;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  transform: translateY(12px);
  transition: transform 0.55s var(--ease);
}

.cta-banner.is-open .cta-inquiry {
  transform: translateY(0);
}

.cta-inquiry-form .btn-full {
  margin-top: 0.25rem;
}

.cta-inquiry-form input,
.cta-inquiry-form textarea {
  background: #1a1a1a;
  border-color: rgba(255, 255, 255, 0.14);
}

.cta-inquiry-form input:focus,
.cta-inquiry-form textarea:focus {
  border-color: var(--accent);
}

@media (max-width: 768px) {
  .cta-banner {
    margin-top: 3.5rem;
    padding: 3.5rem 1rem;
  }

  .cta-banner-overlay {
    top: 1.5rem;
    right: 0.85rem;
    bottom: 1.5rem;
    left: 0.85rem;
  }

  .cta-inquiry {
    padding: 1.35rem 1.15rem;
  }

  .cta-inquiry .form-row-2 {
    grid-template-columns: 1fr;
  }
}

/* Contact */
.contact,
#contactForm {
  scroll-margin-top: calc(var(--header-h) + 1.5rem);
}

.contact {
  padding: 8rem 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info p {
  color: var(--text-muted);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form label {
  display: block;
  margin-bottom: 1.25rem;
}

.contact-form label span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text);
  font: inherit;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-status {
  margin-top: 1rem;
  font-size: 0.85rem;
  text-align: center;
  min-height: 1.25rem;
}

.form-status.is-success {
  color: var(--accent);
}

.form-status.is-error {
  color: #e8a0a0;
}

.contact-form {
  position: relative;
}

/* Footer */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

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

.footer-logo {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}

.footer-legal {
  font-size: 0.7rem;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 36rem;
}

.footer-top {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  /* clear fixed floating messengers button (56px + gaps) */
  margin-right: 4.75rem;
  position: relative;
  z-index: 1;
}

.footer-top:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  padding: 1.75rem 0 0;
  margin-top: 1.75rem;
  border-top: 1px solid var(--border);
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(245, 240, 235, 0.72);
}

.footer-credit-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  opacity: 0.9;
  transition: opacity 0.25s var(--ease);
}

.footer-credit-link:hover {
  opacity: 1;
}

.footer-credit-logo {
  display: block;
  width: 44px;
  height: auto;
}

/* Floating messengers */
.floating-messengers {
  position: fixed;
  right: max(16px, env(safe-area-inset-right, 0px));
  bottom: max(16px, env(safe-area-inset-bottom, 0px));
  z-index: 170;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
  pointer-events: none;
}

.fm-btn,
.fm-panel {
  pointer-events: auto;
}

.fm-panel {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 10.5rem;
  padding: 0.45rem;
  border-radius: 1rem;
  background: rgba(10, 10, 10, 0.96);
  border: 1px solid rgba(201, 169, 110, 0.25);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
}

.fm-panel[hidden] {
  display: none;
}

.fm-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s var(--ease), filter 0.2s var(--ease);
}

.fm-option svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.fm-option:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.fm-option:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.fm-option--phone {
  background: var(--accent);
  color: #1a1410;
}

.fm-option--wa {
  background: #25d366;
}

.fm-option--tg {
  background: #229ed9;
}

.fm-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #0a0a0a;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(201, 169, 110, 0.28);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.fm-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 32px rgba(201, 169, 110, 0.38);
}

.floating-messengers.is-open .fm-btn {
  background: #1a1a1a;
  color: #fff;
  border: 1px solid rgba(201, 169, 110, 0.35);
}

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

.fm-btn-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  line-height: 0;
}

.fm-btn-icon[hidden] {
  display: none !important;
}

.fm-btn-icon svg {
  width: 26px;
  height: 26px;
}

.fm-btn-icon--close svg {
  width: 22px;
  height: 22px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-stage {
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-stage img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  animation: fadeIn 0.3s var(--ease);
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  z-index: 201;
  font-size: 2rem;
  color: var(--text);
  opacity: 0.6;
  transition: opacity 0.3s;
  padding: 1rem;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  opacity: 1;
}

.lightbox-close {
  top: 1rem;
  right: 1.5rem;
}

.lightbox-prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-counter {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .gallery-masonry {
    columns: 3;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prices-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prices-footer {
    grid-template-columns: 1fr;
  }

  .price-card-max {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .series-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .philosophy-inner,
  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-photo {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

  .featured-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 240px;
  }

  .featured-large {
    grid-row: span 1;
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .container {
    width: min(1200px, calc(100% - 32px));
  }

  .logo {
    font-size: 1.05rem;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .lang-switcher-btn {
    height: 42px;
    padding: 0 0.7rem 0 0.55rem;
  }

  .lang-current-label {
    display: none;
  }

  .lang-flag {
    width: 22px;
    height: 15px;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3.5rem 0;
  }

  .gallery-masonry {
    columns: 2;
    padding: 0 4px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .categories-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .category-card {
    aspect-ratio: 3 / 3.6;
  }

  .category-card-title {
    font-size: 1.35rem;
  }

  .portfolio-tabs {
    gap: 0.4rem;
    margin-bottom: 2rem;
  }

  .portfolio-tab {
    padding: 0.65rem 0.9rem;
    font-size: 0.7rem;
  }

  .portfolio-projects {
    padding: 0 0.75rem 2rem;
  }

  .prices-grid {
    grid-template-columns: 1fr;
  }

  .featured-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .featured-large {
    grid-column: span 1;
  }

  .featured-item {
    height: 280px;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: 4rem;
  }

  .hero-scroll {
    display: none;
  }

  .fm-btn {
    width: 52px;
    height: 52px;
  }

  .fm-btn-icon svg {
    width: 24px;
    height: 24px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    padding-bottom: 4.5rem;
  }

  .footer-top {
    margin-right: 0;
  }

  .philosophy,
  .about,
  .gallery-section,
  .series-section,
  .portfolio-series-break,
  .services,
  .contact {
    padding: 5rem 0;
  }

  .portfolio-series-break {
    margin: 1rem 0 2rem;
  }

  .series-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

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

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* 404 */
.error-page {
  min-height: calc(100vh - var(--header-h) - 8rem);
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(201, 169, 110, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(245, 240, 235, 0.04), transparent 50%),
    var(--bg);
}

.error-page-inner {
  max-width: 640px;
}

.error-page-title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0.75rem 0 1.25rem;
}

.error-page-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 34em;
  margin-bottom: 2rem;
}

.error-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
