:root {
  --bg: #120f0d;
  --bg-soft: #171310;
  --surface: rgba(27, 22, 18, 0.68);
  --surface-strong: #1a1511;
  --surface-light: #f6f0e8;
  --surface-cream: #efe5d8;
  --panel: rgba(255, 251, 246, 0.94);
  --line: rgba(176, 143, 90, 0.14);
  --line-strong: rgba(176, 143, 90, 0.24);
  --text: #f4ede3;
  --text-dark: #241d17;
  --muted: #c4b49a;
  --muted-dark: #6b5d50;
  --gold: #c8a66a;
  --gold-strong: #a88347;
  --gold-soft: #eadbc3;
  --emerald: #213a34;
  --shadow-xl: 0 24px 72px rgba(0, 0, 0, 0.24);
  --shadow-lg: 0 18px 44px rgba(0, 0, 0, 0.14);
  --shadow-md: 0 10px 28px rgba(0, 0, 0, 0.1);
  --content: min(1240px, calc(100% - 32px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(200, 166, 106, 0.08), transparent 28%),
    linear-gradient(180deg, #171310 0%, #120f0d 100%);
}

body.theme-light {
  color: var(--text-dark);
  background:
    radial-gradient(circle at top left, rgba(200, 166, 106, 0.08), transparent 24%),
    linear-gradient(180deg, #f7f2eb 0%, #efe5d8 100%);
}

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

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

.site-shell {
  width: var(--content);
  margin: 0 auto;
}

.site-header {
  padding: 20px 0 0;
}

.site-header-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(19, 15, 12, 0.72);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}

.theme-light .site-header-bar {
  background: rgba(255, 252, 247, 0.86);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(145deg, rgba(200, 166, 106, 0.16), rgba(255, 255, 255, 0.02));
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  flex: none;
}

.brand-copy {
  min-width: 0;
}

.brand-name {
  display: block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-subtitle {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.theme-light .brand-subtitle {
  color: var(--muted-dark);
}

.header-nav,
.header-actions,
.hero-actions,
.cta-actions,
.button-row,
.quick-links,
.mobile-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.header-nav {
  flex: 1 1 auto;
  justify-content: center;
}

.header-actions {
  flex: none;
  align-items: center;
  justify-content: flex-end;
}

.header-actions {
  align-items: center;
  justify-content: flex-end;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: none;
}

.social-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  color: #fff;
  background: #1f170f;
  box-shadow: 0 8px 20px rgba(36, 29, 23, 0.14);
  transition: box-shadow 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

.social-link[aria-label="Facebook"] {
  background: #1877f2;
}

.social-link[aria-label="Instagram"] {
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 25%, #d62976 52%, #962fbf 76%, #4f5bd5 100%);
}

.social-link[aria-label="TikTok"] {
  background: linear-gradient(135deg, #25f4ee 0%, #111 42%, #111 58%, #fe2c55 100%);
}

.social-link:hover {
  box-shadow: 0 12px 26px rgba(36, 29, 23, 0.22);
  filter: saturate(1.12) brightness(1.04);
  transform: translateY(-1px);
}

.social-link svg {
  width: 19px;
  height: 19px;
  display: block;
  fill: currentColor;
}

.nav-link,
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.theme-light .nav-link,
.theme-light .back-link {
  color: var(--muted-dark);
}

.nav-link:hover,
.back-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.theme-light .nav-link:hover,
.theme-light .back-link:hover {
  color: var(--text-dark);
  background: rgba(35, 28, 21, 0.04);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
}

.button-gold {
  background: linear-gradient(135deg, #d3b480 0%, var(--gold-strong) 100%);
  color: #20170f;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.theme-light .button-ghost {
  background: rgba(35, 28, 21, 0.03);
  border-color: rgba(35, 28, 21, 0.08);
  color: var(--text-dark);
}

.button-dark {
  background: #23352f;
  color: #fff;
}

.button-solid {
  background: #1f170f;
  color: #fff;
}

.button-wide {
  width: 100%;
}

.eyebrow,
.tag,
.meta-chip,
.gallery-badge,
.count-badge,
.stat-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0;
  border-radius: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow,
.meta-chip {
  color: var(--text);
  border: 0;
  background: transparent;
}

.theme-light .eyebrow,
.theme-light .meta-chip {
  color: var(--text-dark);
  background: transparent;
}

.tag,
.gallery-badge,
.stat-kicker {
  background: transparent;
  color: #6d4c1c;
}

.page-hero {
  padding: 16px 0 36px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  border-radius: 28px;
  border: 1px solid var(--line);
  color: var(--text);
  background:
    linear-gradient(112deg, rgba(14, 11, 9, 0.9) 0%, rgba(14, 11, 9, 0.76) 46%, rgba(14, 11, 9, 0.82) 100%),
    var(--hero-image, url("../hero-mez.jpg")) center/cover no-repeat;
  box-shadow: var(--shadow-xl);
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-panel::before {
  width: 320px;
  height: 320px;
  left: -120px;
  top: -100px;
  background: radial-gradient(circle, rgba(200, 166, 106, 0.16), transparent 70%);
}

.hero-panel::after {
  width: 280px;
  height: 280px;
  right: -100px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 70%);
}

.hero-panel .eyebrow,
.hero-panel .meta-chip,
.hero-panel .button-ghost {
  color: var(--text);
  background: transparent;
}

.hero-panel .button-ghost {
  background: rgba(255, 255, 255, 0.04);
}

.hero-panel .hero-card,
.hero-panel .stat-card {
  background: rgba(255, 255, 255, 0.05);
}

.hero-panel .hero-lead,
.hero-panel .card-copy,
.hero-panel .gallery-caption span,
.hero-panel .stat-card span {
  color: rgba(247, 239, 228, 0.82);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
  padding: 40px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.hero-copy-top {
  display: grid;
  gap: 16px;
  align-content: start;
}

.hero-title,
.section-title,
.display-title,
.card-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 0.9;
}

.hero-title {
  max-width: 780px;
  font-size: clamp(3.4rem, 5.8vw, 5.8rem);
}

.hero-lead,
.section-lead,
.card-copy,
.detail-copy,
.panel-copy,
.contact-copy,
.intro-copy {
  margin: 0;
  line-height: 1.85;
}

.hero-lead {
  max-width: 640px;
  color: rgba(247, 239, 228, 0.84);
  font-size: 17px;
}

.theme-light .hero-lead {
  color: rgba(35, 28, 21, 0.72);
}

.quick-links {
  align-items: center;
  gap: 18px;
}

.quick-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 700;
}

.eyebrow::before,
.tag::before,
.meta-chip::before,
.gallery-badge::before,
.stat-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  margin-right: 10px;
  background: currentColor;
  opacity: 0.55;
}

.hero-rail {
  display: grid;
  gap: 16px;
  align-content: end;
}

.hero-card,
.stat-card,
.feature-card,
.story-card,
.service-card,
.tile-card,
.panel-card,
.quote-card,
.step-card,
.compare-card,
.contact-card,
.gallery-card,
.trust-card,
.item-note,
.contact-line,
.price-card,
.catalog-card,
.floating-card {
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.hero-card,
.stat-card,
.feature-card,
.story-card,
.service-card,
.tile-card,
.panel-card,
.quote-card,
.step-card,
.compare-card,
.contact-card,
.gallery-card,
.trust-card,
.price-card,
.catalog-card,
.floating-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
}

.theme-light .hero-card,
.theme-light .stat-card,
.theme-light .feature-card,
.theme-light .story-card,
.theme-light .service-card,
.theme-light .tile-card,
.theme-light .panel-card,
.theme-light .quote-card,
.theme-light .step-card,
.theme-light .compare-card,
.theme-light .contact-card,
.theme-light .gallery-card,
.theme-light .trust-card,
.theme-light .price-card,
.theme-light .catalog-card,
.theme-light .floating-card {
  background: rgba(255, 251, 246, 0.84);
}

.hero-card,
.panel-card,
.contact-card,
.floating-card,
.catalog-card {
  padding: 26px;
}

.stat-grid,
.feature-grid,
.story-grid,
.tile-grid,
.services-grid,
.trust-grid,
.gallery-grid,
.steps-grid,
.people-grid,
.catalog-grid,
.mosaic-grid,
.compare-grid,
.contact-grid,
.collection-grid,
.proof-grid {
  display: grid;
  gap: 20px;
}

.stat-grid,
.feature-grid,
.trust-grid,
.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tile-grid,
.services-grid,
.contact-grid,
.gallery-grid,
.collection-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-grid,
.steps-grid,
.people-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mosaic-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(220px, auto);
}

.mosaic-grid > *:nth-child(1),
.mosaic-grid > *:nth-child(6) {
  grid-column: span 2;
}

.mosaic-grid > *:nth-child(1) img,
.mosaic-grid > *:nth-child(6) img {
  height: 100%;
}

.section {
  padding: 0 0 40px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 26px;
}

.section-copy-wrap {
  max-width: 620px;
}

.section-title {
  font-size: clamp(2.3rem, 3.8vw, 3.6rem);
}

.section-lead,
.panel-copy,
.contact-copy,
.intro-copy {
  color: var(--muted);
  font-size: 16px;
}

.theme-light .section-lead,
.theme-light .panel-copy,
.theme-light .contact-copy,
.theme-light .intro-copy {
  color: var(--muted-dark);
}

.stat-card strong,
.feature-card strong,
.story-card strong,
.service-card strong,
.trust-card strong,
.compare-card strong,
.person-card strong,
.contact-line strong,
.price-card strong,
.catalog-card h3,
.step-card strong,
.tile-card h3 {
  display: block;
  font-size: 18px;
}

.stat-card span,
.feature-card p,
.story-card p,
.service-card p,
.trust-card p,
.compare-card p,
.person-card p,
.step-card p,
.tile-card p {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.75;
}

.theme-light .stat-card span,
.theme-light .feature-card p,
.theme-light .story-card p,
.theme-light .service-card p,
.theme-light .trust-card p,
.theme-light .compare-card p,
.theme-light .person-card p,
.theme-light .step-card p,
.theme-light .tile-card p {
  color: var(--muted-dark);
}

.service-card,
.tile-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  padding: 28px;
}

.service-card::before,
.tile-card::before {
  display: none;
}

.service-card > *,
.tile-card > * {
  position: relative;
  z-index: 1;
}

.service-card-dark {
  color: var(--text);
  background:
    linear-gradient(160deg, rgba(14, 14, 14, 0.78) 0%, rgba(14, 14, 14, 0.46) 100%),
    linear-gradient(135deg, #162520 0%, #1f302a 42%, #294039 100%);
}

.service-card-light {
  color: var(--text-dark);
  background: linear-gradient(180deg, #fffaf5 0%, #f1e6d8 100%);
}

.service-card-light p {
  color: var(--muted-dark);
}

.bullet-list,
.detail-list,
.feature-list {
  display: grid;
  gap: 10px;
}

.bullet-list div,
.detail-list div,
.feature-list div {
  display: flex;
  gap: 10px;
  line-height: 1.65;
  font-weight: 600;
}

.bullet-list div::before,
.detail-list div::before,
.feature-list div::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

.note-box,
.catalog-intro,
.interest-flash {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.note-box,
.catalog-intro {
  background: linear-gradient(135deg, rgba(255, 249, 241, 0.98) 0%, rgba(243, 233, 217, 0.96) 100%);
  color: #56483b;
  font-weight: 700;
}

.interest-flash.is-success {
  background: #e4f5ea;
  color: #20473d;
}

.interest-flash.is-error {
  background: #fde7e3;
  color: #7a2e2b;
}

.visual-stack {
  position: relative;
  min-height: 100%;
  border-radius: 28px;
  overflow: hidden;
}

.visual-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card {
  overflow: hidden;
}

.gallery-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #120f0c;
}

.gallery-frame img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.gallery-card:hover .gallery-frame img,
.catalog-media:hover .catalog-stack-front img {
  transform: scale(1.03);
}

.gallery-caption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 16px 4px 0;
}

.gallery-caption strong {
  font-size: 18px;
}

.gallery-caption span {
  color: var(--muted);
}

.theme-light .gallery-caption span {
  color: var(--muted-dark);
}

.catalog-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(250, 245, 236, 0.94) 100%);
  color: var(--text-dark);
}

.catalog-media {
  position: relative;
  overflow: hidden;
  height: 320px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f4eadb 0%, #fbf7f0 100%);
  cursor: pointer;
}

.catalog-stack {
  position: absolute;
  inset: 20px;
}

.catalog-stack-back,
.catalog-stack-front {
  position: absolute;
  border-radius: 20px;
  inset: 0;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 36px rgba(31, 24, 18, 0.12);
}

.catalog-stack-back.one {
  transform: translate(20px, 20px) rotate(4deg);
  opacity: 0.36;
}

.catalog-stack-back.two {
  transform: translate(10px, 10px) rotate(2deg);
  opacity: 0.58;
}

.catalog-stack-front {
  inset: 0 18px 18px 0;
  overflow: hidden;
}

.catalog-stack-front.is-single {
  inset: 0;
}

.catalog-stack-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.catalog-media-action,
.count-badge {
  position: absolute;
  z-index: 2;
}

.catalog-media-action {
  left: 14px;
  top: 14px;
}

.count-badge {
  right: 14px;
  bottom: 14px;
  background: rgba(31, 27, 22, 0.84);
  color: #fff;
}

.catalog-topline {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 14px;
  margin-top: 14px;
}

.catalog-price {
  color: var(--emerald);
  font-weight: 800;
}

.catalog-card p {
  margin: 12px 0 0;
  color: var(--muted-dark);
  line-height: 1.75;
}

.item-note {
  margin-top: 16px;
  padding: 14px 16px;
  background: #f6ecdd;
  color: #5b4e40;
  font-weight: 700;
  box-shadow: none;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.price-card {
  padding: 30px;
  color: var(--text-dark);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 239, 229, 0.96) 100%);
}

.price-card-dark {
  color: var(--text);
  background: linear-gradient(145deg, #1a1511 0%, #2a2219 42%, #55442a 100%);
}

.price-value {
  display: inline-flex;
  margin: 14px 0 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

.theme-light .price-value {
  color: var(--text-dark);
  background: #efe1c8;
  border-color: rgba(35, 28, 21, 0.08);
}

.compare-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compare-card {
  padding: 20px;
}

.step-card {
  padding: 20px;
}

.contact-grid {
  align-items: start;
}

.contact-card .section-title,
.panel-card .section-title {
  margin-top: 12px;
}

.brand-visual {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.brand-visual img {
  width: min(240px, 70%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.16));
}

.people-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.person-card {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}

.theme-light .person-card {
  background: rgba(244, 236, 222, 0.7);
}

.person-card span {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.theme-light .person-card span {
  color: var(--muted-dark);
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
}

.theme-light .contact-line {
  background: rgba(255, 255, 255, 0.82);
}

.map-frame {
  overflow: hidden;
  border-radius: 24px;
}

.map-frame iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
}

.review-stack {
  display: grid;
  gap: 18px;
}

.review-shot {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #120f0c;
  box-shadow: var(--shadow-lg);
}

.review-shot img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  background: #120f0c;
}

.site-footer {
  padding: 10px 0 36px;
}

.site-footer-bar {
  width: var(--content);
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
}

.theme-light .site-footer-bar {
  color: var(--muted-dark);
}

.lightbox,
.interest-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(11, 9, 7, 0.92);
}

.lightbox.is-open,
.interest-modal.is-open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  width: 100%;
  max-width: min(92vw, 1100px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox img {
  max-width: 100%;
  max-height: 84vh;
  border-radius: 20px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-btn,
.lightbox-close,
.interest-close {
  position: absolute;
  border: 0;
  cursor: pointer;
}

.lightbox-btn {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 28px;
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.lightbox-close,
.interest-close {
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 24px;
}

.lightbox-counter {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 700;
}

.interest-modal-card {
  position: relative;
  width: 100%;
  max-width: 560px;
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff 0%, #faf7f1 100%);
  color: var(--text-dark);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.interest-modal-card h2 {
  margin: 12px 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  line-height: 0.95;
}

.interest-modal-card p {
  margin: 0 0 18px;
  color: var(--muted-dark);
  line-height: 1.75;
}

.interest-item {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f7efe1;
  color: #5b4e40;
  font-weight: 700;
}

.interest-form {
  display: grid;
  gap: 14px;
}

.interest-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: #3d342b;
}

.interest-form input,
.interest-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(71, 55, 33, 0.16);
  border-radius: 16px;
  background: #fff;
  font: inherit;
}

.interest-form textarea {
  min-height: 112px;
  resize: vertical;
}

.interest-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.interest-note {
  font-size: 13px;
  color: var(--muted-dark);
}

.mobile-cta {
  display: none;
}

@media (max-width: 1120px) {
  .hero-grid,
  .tile-grid,
  .services-grid,
  .contact-grid,
  .gallery-grid,
  .collection-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .hero-grid {
    min-height: auto;
  }

  .stat-grid,
  .feature-grid,
  .trust-grid,
  .proof-grid,
  .catalog-grid,
  .story-grid,
  .mosaic-grid,
  .compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mosaic-grid > *:nth-child(1),
  .mosaic-grid > *:nth-child(6) {
    grid-column: span 1;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    padding-top: 10px;
  }

  .site-header-bar,
  .section-header,
  .contact-line {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-nav {
    display: none;
  }

  .header-actions {
    width: 100%;
    justify-content: stretch;
  }

  .social-links {
    width: 100%;
    justify-content: flex-start;
  }

  .header-actions > * {
    flex: 1 1 0;
  }

  .hero-grid {
    padding: 24px;
    gap: 18px;
  }

  .hero-title {
    font-size: clamp(2.6rem, 10vw, 4rem);
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.7;
  }

  .quick-links {
    gap: 14px;
  }

  .gallery-caption {
    flex-direction: column;
    align-items: flex-start;
  }

  .catalog-topline {
    flex-direction: column;
  }

  .stat-grid,
  .feature-grid,
  .trust-grid,
  .proof-grid,
  .catalog-grid,
  .story-grid,
  .mosaic-grid,
  .compare-grid,
  .people-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 20px, 1240px);
  }

  body {
    padding-bottom: 0;
  }

  .site-header {
    padding-top: 8px;
  }

  .site-header-bar {
    padding: 12px;
    border-radius: 18px;
    gap: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 18px;
  }

  .brand-name {
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .brand-subtitle {
    display: none;
  }

  .social-links {
    justify-content: center;
    gap: 10px;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .button,
  .header-actions,
  .hero-actions,
  .cta-actions,
  .button-row {
    width: 100%;
  }

  .button {
    width: 100%;
    text-align: center;
    min-height: 52px;
    padding: 0 18px;
    font-size: 15px;
  }

  .hero-panel {
    border-radius: 24px;
  }

  .hero-grid {
    padding: 18px;
    gap: 14px;
  }

  .hero-card,
  .panel-card,
  .contact-card,
  .floating-card,
  .catalog-card,
  .price-card,
  .service-card,
  .tile-card {
    padding: 18px;
    min-height: auto;
    border-radius: 22px;
  }

  .page-hero {
    padding: 10px 0 18px;
  }

  .hero-copy {
    gap: 18px;
  }

  .hero-copy-top {
    gap: 14px;
  }

  .hero-title {
    font-size: clamp(2.25rem, 10vw, 3rem);
    line-height: 0.94;
  }

  .hero-lead,
  .section-lead,
  .panel-copy,
  .contact-copy,
  .catalog-card p,
  .item-note,
  .feature-card p,
  .trust-card p,
  .step-card p,
  .service-card p {
    font-size: 15px;
    line-height: 1.65;
  }

  .quick-links {
    display: none;
  }

  .proof-grid {
    gap: 12px;
  }

  .stat-card,
  .feature-card,
  .compare-card,
  .step-card,
  .trust-card,
  .person-card {
    padding: 16px;
    border-radius: 18px;
  }

  .hero-rail {
    gap: 12px;
  }

  .hero-rail .hero-card:last-child {
    display: none;
  }

  .hero-rail .hero-card:first-child {
    padding: 12px;
  }

  .hero-rail .gallery-frame {
    border-radius: 18px;
  }

  .service-card,
  .tile-card {
    background-image: none;
  }

  .section {
    padding-bottom: 18px;
  }

  .section-header {
    gap: 10px;
    margin-bottom: 16px;
  }

  .section-title {
    font-size: clamp(2rem, 8vw, 2.6rem);
    line-height: 0.96;
  }

  .catalog-intro,
  .interest-flash,
  .item-note {
    padding: 14px 16px;
    border-radius: 16px;
  }

  .catalog-media {
    height: 220px;
    border-radius: 18px;
  }

  .gallery-frame img {
    min-height: 180px;
  }

  .gallery-card,
  .catalog-card,
  .price-card,
  .contact-card,
  .panel-card {
    border-radius: 22px;
  }

  .gallery-caption {
    padding: 12px 0 0;
    gap: 4px;
  }

  .gallery-caption strong {
    font-size: 16px;
  }

  .mosaic-grid,
  .catalog-grid,
  .gallery-grid,
  .price-grid,
  .services-grid,
  .feature-grid,
  .trust-grid,
  .people-grid,
  .compare-grid,
  .steps-grid,
  .contact-grid,
  .tile-grid {
    gap: 14px;
  }

  .catalog-stack {
    inset: 14px;
  }

  .catalog-stack-front {
    inset: 0 10px 10px 0;
  }

  .catalog-stack-back.one {
    transform: translate(12px, 12px) rotate(3deg);
  }

  .catalog-stack-back.two {
    transform: translate(6px, 6px) rotate(1.5deg);
  }

  .catalog-media-action,
  .count-badge {
    font-size: 10px;
  }

  .map-frame iframe {
    min-height: 220px;
  }

  .lightbox,
  .interest-modal {
    padding: 10px;
  }

  .lightbox-inner {
    max-width: 100%;
    height: calc(100vh - 20px);
  }

  .lightbox img {
    max-width: calc(100vw - 20px);
    max-height: calc(100vh - 118px);
    border-radius: 14px;
  }

  .lightbox-btn {
    width: 46px;
    height: 46px;
    font-size: 26px;
    background: rgba(0, 0, 0, 0.42);
  }

  .lightbox-prev {
    left: 6px;
  }

  .lightbox-next {
    right: 6px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 46px;
    height: 46px;
    background: rgba(0, 0, 0, 0.42);
    z-index: 2;
  }

  .lightbox-counter {
    bottom: 10px;
  }

  .interest-modal-card {
    padding: 24px;
    max-height: calc(100vh - 32px);
    overflow: auto;
  }

  .interest-modal-card h2 {
    font-size: 32px;
  }

  .mobile-cta {
    display: none;
  }

  .theme-light .mobile-cta {
    background: rgba(255, 249, 241, 0.94);
  }

  .mobile-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 14px;
    border-radius: 999px;
    font-weight: 800;
    text-align: center;
  }

  .mobile-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
    color: #1f170d;
  }

  .mobile-secondary {
    background: #1f170f;
    color: #fff;
  }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .site-header-bar {
    padding: 10px;
  }

  .header-actions {
    gap: 8px;
  }

  .button {
    min-height: 50px;
    font-size: 14px;
  }

  .hero-grid,
  .hero-card,
  .panel-card,
  .contact-card,
  .catalog-card,
  .price-card,
  .service-card {
    padding: 16px;
  }
}
