:root {
  --panora-orange: #ff6b35;
  --panora-red: #d4442a;
  --panora-navy: #16222d;
  --panora-deep: #0d151c;
  --panora-ink: #17212b;
  --panora-muted: #6f7d89;
  --linen: #f5f0e8;
  --linen-soft: #faf7f2;
  --linen-deep: #ede3d5;
  --line: rgba(23, 33, 43, 0.12);
  --white: #ffffff;
  --container: min(1240px, calc(100vw - 48px));
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --ease: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--panora-ink);
  background: linear-gradient(180deg, var(--linen-soft) 0%, var(--linen) 100%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 70;
  padding: 20px 0;
  transition: padding var(--ease), background-color var(--ease), backdrop-filter var(--ease);
}

.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(13, 21, 28, 0.82);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.brand {
  padding: 10px 22px 10px 16px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(20, 30, 40, 0.78), rgba(13, 21, 28, 0.62));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 34px rgba(3, 9, 14, 0.16);
  backdrop-filter: blur(12px);
  transition: transform var(--ease), box-shadow var(--ease), background-color var(--ease);
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(3, 9, 14, 0.22);
}

.brand img {
  width: auto;
}

.site-header.is-scrolled .brand {
  background:
    linear-gradient(180deg, rgba(20, 30, 40, 0.86), rgba(13, 21, 28, 0.74));
}

.brand-icon {
  width: 44px !important;
  height: 44px;
  border-radius: 12px;
  flex: 0 0 auto;
}

.brand-lockup {
  display: grid;
  margin-left: 14px;
  align-items: center;
}

.brand-wordmark {
  display: inline-block;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 2.15rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.96);
  line-height: 0.95;
}

.brand-rule {
  display: block;
  width: 58px;
  height: 4px;
  margin: 6px 0 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--panora-orange), var(--panora-red));
}

.brand-subtitle {
  display: inline-block;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(233, 240, 246, 0.78);
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.96rem;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--panora-orange), transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after,
.footer-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--white);
  transition: transform var(--ease), opacity var(--ease);
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  background: var(--panora-deep);
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 21, 28, 0.78) 0%, rgba(13, 21, 28, 0.56) 34%, rgba(13, 21, 28, 0.2) 66%, rgba(13, 21, 28, 0.08) 100%),
    linear-gradient(180deg, rgba(13, 21, 28, 0.18), rgba(13, 21, 28, 0.38));
}

.hero-layout {
  position: relative;
  z-index: 1;
  min-height: 92svh;
  display: grid;
  align-items: center;
  padding: 148px 0 104px;
}

.hero-copy {
  max-width: 560px;
}

.eyebrow,
.section-kicker,
.editorial-index {
  margin: 0 0 16px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.hero h1,
.section-heading h2,
.editorial-copy h3,
.brand-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 7.5ch;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.96;
}

.hero-text {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    border-color var(--ease),
    background-color var(--ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--panora-orange), var(--panora-red));
  box-shadow: 0 18px 36px rgba(212, 68, 42, 0.28);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

.quick-categories {
  position: relative;
  z-index: 2;
  margin-top: -108px;
  padding-bottom: 34px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.quick-item {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  border-radius: var(--radius-lg);
  background: #ddd;
}

.quick-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 21, 28, 0.04), rgba(13, 21, 28, 0.58));
}

.quick-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.quick-item span {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 1;
  max-width: 12ch;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.22rem;
  line-height: 1.08;
  font-weight: 700;
  color: var(--white);
}

.quick-item:hover img {
  transform: scale(1.04);
}

.is-lightbox-enabled {
  cursor: zoom-in;
}

.is-lightbox-enabled:focus-visible {
  outline: 3px solid rgba(255, 107, 53, 0.72);
  outline-offset: 4px;
}

.section {
  padding: 108px 0;
}

.collection {
  background:
    radial-gradient(circle at right top, rgba(255, 107, 53, 0.08), transparent 20%),
    linear-gradient(180deg, var(--linen-soft) 0%, var(--linen) 100%);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.74fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 48px;
}

.section-kicker,
.editorial-index {
  color: var(--panora-orange);
}

.section-heading h2,
.brand-copy h2,
.contact-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.2rem, 4.4vw, 3.9rem);
  line-height: 1.02;
}

.section-side,
.editorial-copy p,
.brand-copy p,
.contact-copy p,
.step p {
  margin: 0;
  color: rgba(23, 33, 43, 0.72);
  line-height: 1.8;
  font-size: 1.03rem;
}

.editorial-row {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 42px;
  align-items: center;
  padding: 38px 0;
  border-top: 1px solid var(--line);
}

.editorial-row:last-child {
  border-bottom: 1px solid var(--line);
}

.editorial-row-reverse {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.editorial-row-reverse .editorial-media {
  order: 2;
}

.editorial-media {
  overflow: hidden;
  border-radius: 30px;
  background: #ddd;
  min-height: 520px;
}

.editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-copy {
  max-width: 420px;
}

.editorial-copy h3 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1;
  margin-bottom: 18px;
}

.editorial-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.editorial-tags li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(23, 33, 43, 0.06);
  color: rgba(23, 33, 43, 0.72);
  font-size: 0.94rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  color: var(--panora-ink);
  font-weight: 700;
}

.text-link::after {
  content: "\2192";
  color: var(--panora-orange);
  transition: transform var(--ease);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(4px);
}

.brand-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.2)),
    linear-gradient(180deg, #f2e8db 0%, #e8dccb 100%);
}

.brand-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.46fr) minmax(0, 1.54fr);
  gap: 60px;
  align-items: start;
}

.brand-art img {
  width: min(100%, 360px);
}

.brand-copy {
  max-width: 860px;
}

.brand-copy p {
  margin-top: 18px;
}

.brand-points {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.brand-points article {
  display: grid;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.brand-points span {
  color: var(--panora-muted);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-points strong {
  font-size: 1.04rem;
  font-weight: 700;
}

.process {
  background:
    radial-gradient(circle at left center, rgba(255, 107, 53, 0.08), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f3ebe0 100%);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.step {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.step strong {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--panora-orange);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 2.7rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.step h3 {
  margin: 0 0 10px;
  font-size: 1.34rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.contact {
  background:
    radial-gradient(circle at right top, rgba(255, 107, 53, 0.1), transparent 20%),
    linear-gradient(180deg, #f6f1e8 0%, #efe4d6 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.contact-list li {
  position: relative;
  padding-left: 20px;
  color: rgba(23, 33, 43, 0.76);
}

.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--panora-orange), var(--panora-red));
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(23, 33, 43, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.contact-form label {
  display: grid;
  gap: 10px;
  color: var(--panora-ink);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(23, 33, 43, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  transition: border-color var(--ease), box-shadow var(--ease);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 107, 53, 0.65);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.12);
}

.form-button {
  width: fit-content;
}

.form-feedback {
  min-height: 1.5em;
  margin: 0;
  color: rgba(23, 33, 43, 0.72);
}

.form-feedback.is-pending {
  color: rgba(23, 33, 43, 0.72);
}

.form-feedback.is-success {
  color: #1c6b42;
}

.form-feedback.is-error {
  color: #a13a2b;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.site-footer {
  padding: 34px 0 40px;
  background: var(--panora-deep);
  color: rgba(255, 255, 255, 0.72);
}

.footer-layout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto auto;
  gap: 28px;
  align-items: center;
}

.site-footer-compact .footer-layout {
  grid-template-columns: auto minmax(0, 1fr) auto auto;
}

.footer-brand img {
  width: min(220px, 42vw);
}

.footer-copy p,
.footer-year {
  margin: 0;
}

.footer-copy span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.94rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-nav a,
.footer-social a {
  color: rgba(255, 255, 255, 0.88);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.landing-contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 107, 53, 0.18), transparent 22%),
    linear-gradient(135deg, #101921 0%, #15222c 55%, #172734 100%);
  box-shadow: 0 24px 46px rgba(5, 11, 16, 0.22);
  color: var(--white);
}

.landing-contact-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.landing-contact-copy h2 {
  margin: 0;
  max-width: 11ch;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.landing-contact-copy p {
  margin: 0;
  max-width: 50ch;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.85;
}

.landing-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: 10px;
}

.landing-contact-links a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.landing-contact-form {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

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

.landing-contact-form label {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.landing-contact-form .field-full {
  grid-column: 1 / -1;
}

.landing-contact-form input,
.landing-contact-form select,
.landing-contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(7, 12, 17, 0.28);
  color: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease), background-color var(--ease);
}

.landing-contact-form input::placeholder,
.landing-contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.landing-contact-form input:focus,
.landing-contact-form select:focus,
.landing-contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 107, 53, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.14);
  background: rgba(7, 12, 17, 0.42);
}

.inner-page {
  background: linear-gradient(180deg, var(--linen-soft) 0%, #f1e8dc 100%);
}

.page-hero {
  position: relative;
  min-height: 78svh;
  overflow: hidden;
  background: var(--panora-deep);
  color: var(--white);
}

.page-hero-media,
.page-hero-overlay {
  position: absolute;
  inset: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 21, 28, 0.82) 0%, rgba(13, 21, 28, 0.58) 42%, rgba(13, 21, 28, 0.18) 100%),
    linear-gradient(180deg, rgba(13, 21, 28, 0.16), rgba(13, 21, 28, 0.42));
}

.page-hero-layout {
  position: relative;
  z-index: 1;
  min-height: 78svh;
  display: grid;
  align-items: end;
  padding: 154px 0 84px;
}

.page-hero-copy {
  max-width: 680px;
}

.page-hero-copy h1,
.collection-card-body h3,
.case-card-body h3,
.showcase-body h3,
.detail-panel h2,
.page-cta h2 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  letter-spacing: -0.04em;
}

.page-hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.96;
}

.page-hero-copy p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.06rem;
  line-height: 1.8;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.hero-facts li {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}

.page-section {
  padding: 102px 0;
}

.kitchen-page .page-hero,
.kitchen-page .page-hero-layout {
  min-height: 56svh;
}

.kitchen-page .page-hero-layout {
  padding: 128px 0 52px;
}

.kitchen-page .page-hero-copy h1 {
  max-width: 15ch;
  font-size: clamp(2.5rem, 4.5vw, 4.25rem);
  line-height: 1;
}

.kitchen-page .page-hero-copy p {
  max-width: 560px;
  margin-top: 16px;
}

.kitchen-page .hero-facts {
  margin-top: 18px;
}

.kitchen-series-section {
  padding-top: 34px;
}

.kitchen-series-section .reveal {
  opacity: 1;
  transform: none;
}

.collections-page .page-hero,
.collections-page .page-hero-layout {
  min-height: 56svh;
}

.collections-page .page-hero-layout {
  padding: 128px 0 52px;
}

.collections-page .page-hero-copy h1 {
  max-width: 15ch;
  font-size: clamp(2.5rem, 4.5vw, 4.25rem);
  line-height: 1;
}

.collections-page .page-hero-copy p {
  max-width: 580px;
  margin-top: 16px;
}

.collections-page .hero-facts,
.collections-page .hero-actions {
  margin-top: 18px;
}

.collections-overview-section {
  padding-top: 34px;
}

.collections-overview-section .reveal {
  opacity: 1;
  transform: none;
}

.bathroom-page .page-hero,
.bathroom-page .page-hero-layout {
  min-height: 58svh;
}

.bathroom-page .page-hero-layout {
  padding: 128px 0 56px;
}

.bathroom-page .page-hero-copy h1 {
  max-width: 15ch;
  font-size: clamp(2.5rem, 4.5vw, 4.25rem);
  line-height: 1;
}

.bathroom-page .page-hero-copy p {
  max-width: 600px;
  margin-top: 16px;
}

.bathroom-page .hero-facts {
  margin-top: 18px;
}

.bathroom-series-section {
  padding-top: 34px;
}

.bathroom-series-section .reveal {
  opacity: 1;
  transform: none;
}

.page-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.82fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 48px;
}

.page-intro h2 {
  margin: 0;
  max-width: 13ch;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2.1rem, 4.2vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.page-intro p {
  margin: 0;
  color: rgba(23, 33, 43, 0.72);
  line-height: 1.8;
}

.collection-grid-page,
.case-grid,
.showcase-grid {
  display: grid;
  gap: 26px;
}

.collection-grid-page,
.case-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.kitchen-page .showcase-grid,
.bathroom-page .showcase-grid,
.wardrobe-page .showcase-grid,
.interior-door-page .showcase-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.collection-card-large,
.case-card,
.showcase-card,
.detail-panel,
.page-cta {
  border: 1px solid rgba(23, 33, 43, 0.1);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(12, 19, 25, 0.05);
}

.collection-card-large img,
.case-card img,
.showcase-card img {
  width: 100%;
  object-fit: cover;
}

.collection-card-large img {
  height: 380px;
}

.case-card img {
  height: 320px;
}

.showcase-card img {
  height: 300px;
}

.kitchen-page .showcase-card img,
.bathroom-page .showcase-card img,
.wardrobe-page .showcase-card img,
.interior-door-page .showcase-card img {
  height: 390px;
}

.collection-card-body,
.case-card-body,
.showcase-body {
  display: grid;
  gap: 14px;
  padding: 24px 24px 26px;
}

.collection-card-body h3,
.case-card-body h3,
.showcase-body h3 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1;
}

.collection-card-body p,
.case-card-body p,
.showcase-body p,
.detail-panel p,
.detail-panel li,
.page-cta p {
  margin: 0;
  color: rgba(23, 33, 43, 0.74);
  line-height: 1.8;
}

.micro-tags,
.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.micro-tags li,
.case-meta li {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(23, 33, 43, 0.06);
  color: rgba(23, 33, 43, 0.72);
  font-size: 0.84rem;
}

.collection-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 42px;
}

.collection-metrics article {
  display: grid;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.collection-metrics span,
.case-highlights span,
.detail-panel h3,
.spec-list li span:first-child {
  color: var(--panora-muted);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.collection-metrics strong {
  font-size: 1.06rem;
  line-height: 1.5;
}

.case-highlights {
  display: grid;
  gap: 14px;
}

.case-highlights div {
  display: grid;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.case-highlights strong {
  font-size: 1rem;
  line-height: 1.5;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 32px;
}

.detail-stack {
  display: grid;
  gap: 24px;
}

.detail-panel {
  padding: 28px;
}

.detail-panel h2 {
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  line-height: 1.02;
  margin-bottom: 16px;
}

.detail-panel h3 {
  margin: 0 0 10px;
  font-weight: 700;
}

.spec-list {
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.spec-list li strong {
  color: var(--panora-ink);
  text-align: right;
}

.page-cta {
  display: grid;
  gap: 16px;
  padding: 30px;
}

.page-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.02;
}

.reference-grid {
  display: grid;
  gap: 34px;
}

.reference-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
  gap: 30px;
  align-items: start;
}

.reference-feature:nth-child(even) .reference-stage {
  order: 2;
}

.reference-feature:nth-child(even) .reference-summary {
  order: 1;
}

.reference-stage {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--panora-deep);
  box-shadow: 0 18px 44px rgba(9, 15, 20, 0.12);
  text-align: left;
  cursor: zoom-in;
}

.reference-stage-media {
  position: relative;
  min-height: 540px;
}

.reference-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 700ms ease, transform 1200ms ease;
  transform: scale(1.02);
}

.reference-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.reference-stage:hover .reference-slide.is-active {
  transform: scale(1.03);
}

.reference-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 21, 28, 0.05), rgba(13, 21, 28, 0.54)),
    linear-gradient(0deg, rgba(13, 21, 28, 0.78), rgba(13, 21, 28, 0.06) 42%);
  pointer-events: none;
}

.reference-stage-chip,
.reference-stage-footer,
.reference-stage-dots {
  position: absolute;
  z-index: 1;
}

.reference-stage-chip {
  top: 22px;
  left: 22px;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
}

.reference-stage-footer {
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
}

.reference-stage-footer strong {
  max-width: 22ch;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.reference-stage-footer span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  white-space: nowrap;
}

.reference-stage-dots {
  left: 24px;
  bottom: 74px;
  display: flex;
  gap: 8px;
}

.reference-stage-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  transition: transform var(--ease), background-color var(--ease);
}

.reference-stage-dots span.is-active {
  background: var(--panora-orange);
  transform: scale(1.1);
}

.reference-summary {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(23, 33, 43, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 36px rgba(12, 19, 25, 0.05);
}

.reference-summary h3,
.gallery-sidebar h2 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  letter-spacing: -0.04em;
}

.reference-summary h3 {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  line-height: 1;
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 140;
}

.gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 12, 17, 0.74);
  backdrop-filter: blur(10px);
}

.gallery-dialog {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100vw - 32px));
  max-height: calc(100svh - 32px);
  margin: 16px auto;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #101820;
  box-shadow: 0 28px 60px rgba(2, 7, 11, 0.34);
}

.gallery-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  min-height: min(820px, calc(100svh - 32px));
}

.gallery-viewer {
  position: relative;
  min-height: 100%;
  background: #0d151c;
}

.gallery-viewer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-nav {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  gap: 10px;
  z-index: 1;
}

.gallery-nav-button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  backdrop-filter: blur(10px);
}

.gallery-viewer-meta {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  color: var(--white);
}

.gallery-viewer-meta strong {
  max-width: 22ch;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.gallery-viewer-meta span {
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.74);
}

.gallery-sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 30px;
  overflow-y: auto;
  background:
    radial-gradient(circle at top right, rgba(255, 107, 53, 0.14), transparent 24%),
    linear-gradient(180deg, #f8f3eb 0%, #efe4d6 100%);
}

.gallery-sidebar h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.02;
}

.gallery-thumbs {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.gallery-thumb {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  width: 100%;
  padding: 10px;
  border-radius: 22px;
  border: 1px solid rgba(23, 33, 43, 0.08);
  background: rgba(255, 255, 255, 0.78);
  text-align: left;
}

.gallery-thumb.is-active {
  border-color: rgba(255, 107, 53, 0.32);
  box-shadow: 0 12px 28px rgba(212, 68, 42, 0.12);
}

.gallery-thumb img {
  width: 100%;
  height: 78px;
  object-fit: cover;
  border-radius: 14px;
}

.gallery-thumb span {
  align-self: center;
  color: var(--panora-ink);
  font-weight: 700;
  line-height: 1.4;
}

.gallery-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.9rem;
  line-height: 1;
}

body.modal-open {
  overflow: hidden;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 30px;
  align-items: start;
}

.contact-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
  gap: 28px;
  align-items: stretch;
}

.contact-identity-card,
.contact-map-card {
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(23, 33, 43, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 36px rgba(12, 19, 25, 0.05);
}

.contact-identity-card {
  display: grid;
  gap: 22px;
  padding: 32px;
}

.contact-identity-card h2 {
  margin: 0;
  max-width: 12ch;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.contact-identity-card p {
  margin: 0;
  color: rgba(23, 33, 43, 0.74);
  line-height: 1.8;
}

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

.contact-method-card {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(23, 33, 43, 0.08);
  background: rgba(23, 33, 43, 0.03);
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.contact-method-card:hover,
.contact-method-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 107, 53, 0.18);
  box-shadow: 0 18px 30px rgba(12, 19, 25, 0.08);
}

.contact-method-card span {
  color: var(--panora-muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-method-card strong {
  color: var(--panora-ink);
  font-size: 1.04rem;
  line-height: 1.45;
}

.contact-address-block {
  display: grid;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.contact-address-block strong {
  font-size: 1.06rem;
  line-height: 1.55;
}

.contact-map-card {
  position: relative;
  min-height: 100%;
}

.contact-map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 640px;
  border: 0;
}

.contact-map-overlay {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 4px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(13, 21, 28, 0.78);
  color: var(--white);
  box-shadow: 0 20px 34px rgba(5, 11, 16, 0.24);
  backdrop-filter: blur(14px);
}

.contact-map-overlay strong {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.4rem;
}

.contact-map-overlay span {
  color: rgba(255, 255, 255, 0.72);
}

.contact-form-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.contact-page-form-strong {
  background:
    radial-gradient(circle at top right, rgba(255, 107, 53, 0.12), transparent 24%),
    rgba(255, 255, 255, 0.78);
}

.map-card,
.contact-info-card {
  border: 1px solid rgba(23, 33, 43, 0.1);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 36px rgba(12, 19, 25, 0.05);
  overflow: hidden;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
}

.map-card-body,
.contact-info-card {
  padding: 28px;
}

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

.contact-info-card h3,
.contact-page-copy h2 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  letter-spacing: -0.04em;
}

.contact-info-card h3 {
  font-size: 1.48rem;
}

.contact-info-card p,
.contact-info-card li,
.contact-page-copy p {
  color: rgba(23, 33, 43, 0.74);
  line-height: 1.8;
}

.contact-label {
  display: block;
  margin-bottom: 8px;
  color: var(--panora-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-value {
  display: block;
  color: var(--panora-ink);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.5;
}

a.contact-value,
.spec-list li strong a {
  color: inherit;
  text-decoration: none;
}

.inline-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.inline-contact-links a {
  color: var(--panora-ink);
  font-weight: 700;
}

.contact-page-copy {
  display: grid;
  gap: 18px;
}

.contact-page-copy h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.contact-page-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(23, 33, 43, 0.1);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 36px rgba(12, 19, 25, 0.05);
}

.contact-page-form-grid,
.project-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-page-form .field-full {
  grid-column: 1 / -1;
}

.contact-page-form label {
  display: grid;
  gap: 10px;
  font-weight: 700;
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(23, 33, 43, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
  transition: border-color var(--ease), box-shadow var(--ease);
}

.contact-page-form input:focus,
.contact-page-form select:focus,
.contact-page-form textarea:focus {
  outline: none;
  border-color: rgba(255, 107, 53, 0.65);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.12);
}

.contact-note-list {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-note-list li {
  position: relative;
  padding-left: 20px;
}

.contact-note-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--panora-orange), var(--panora-red));
}

.project-checklist {
  display: grid;
  gap: 10px;
}

.project-checklist label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(23, 33, 43, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.project-checklist input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.showcase-card {
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.showcase-card[data-product-card] {
  cursor: pointer;
}

.showcase-card[data-product-card]:hover,
.showcase-card[data-product-card]:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(12, 19, 25, 0.12);
  border-color: rgba(255, 107, 53, 0.18);
}

.product-gallery-modal[hidden] {
  display: none;
}

.product-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 146;
}

.product-gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 12, 17, 0.74);
  backdrop-filter: blur(10px);
}

.product-gallery-dialog {
  position: relative;
  z-index: 1;
  width: calc(100vw - 24px);
  height: calc(100svh - 24px);
  max-height: none;
  margin: 12px auto;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #071017;
  box-shadow: 0 28px 60px rgba(2, 7, 11, 0.34);
}

.product-gallery-shell {
  position: relative;
  display: block;
  height: 100%;
}

.product-gallery-viewer {
  position: relative;
  display: grid;
  place-items: center;
  background: #0d151c;
  width: 100%;
  height: 100%;
  padding: 58px 118px 94px;
  box-sizing: border-box;
  touch-action: pan-y;
  user-select: none;
}

.product-gallery-viewer img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  touch-action: none;
  transform-origin: center center;
  transition: transform 180ms ease;
}

.product-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(9, 15, 20, 0.22);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  opacity: 0.52;
  box-shadow: none;
  backdrop-filter: blur(12px);
  transition: opacity var(--ease), transform var(--ease), background var(--ease), border-color var(--ease);
}

.product-gallery-nav:hover,
.product-gallery-nav:focus-visible {
  opacity: 0.92;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(9, 15, 20, 0.52);
  transform: translateY(-50%);
}

.product-gallery-nav-prev {
  left: 20px;
}

.product-gallery-nav-next {
  right: 20px;
}

.product-gallery-sidebar {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 2;
  width: fit-content;
  max-width: calc(100% - 40px);
  padding: 0;
  overflow: visible;
  transform: translateX(-50%);
}

.product-gallery-sidebar > :not(.product-thumb-grid) {
  display: none !important;
}

.product-gallery-sidebar .section-kicker,
.product-gallery-sidebar h2,
.product-gallery-sidebar > p,
.product-gallery-specs {
  display: none;
}

.product-gallery-specs {
  display: grid;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-gallery-specs li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.product-gallery-specs span:first-child {
  color: var(--panora-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-gallery-specs strong {
  color: var(--panora-ink);
  text-align: right;
}

.product-thumb-grid {
  display: flex;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  padding: 8px;
  overflow-x: auto;
  border-radius: 20px;
  background: rgba(7, 12, 17, 0.52);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.product-thumb {
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(23, 33, 43, 0.08);
  background: rgba(255, 255, 255, 0.74);
}

.product-thumb.is-active {
  border-color: rgba(255, 107, 53, 0.34);
  box-shadow: 0 12px 24px rgba(212, 68, 42, 0.14);
}

.product-thumb img {
  width: 86px;
  height: 62px;
  object-fit: cover;
}

.product-gallery-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.9rem;
  line-height: 1;
}

.image-lightbox-modal[hidden] {
  display: none;
}

.image-lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
}

.image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 9, 0.88);
  backdrop-filter: blur(12px);
}

.image-lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 32px 22px;
  touch-action: pan-y;
}

.image-lightbox-figure {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
}

.image-lightbox-figure img {
  max-width: 100%;
  max-height: calc(100svh - 72px);
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  touch-action: none;
  transform-origin: center center;
  transition: transform 180ms ease;
}

.zoomable-image {
  cursor: zoom-in;
}

.zoomable-image.is-zoomed {
  cursor: grab;
}

.image-lightbox-close,
.image-lightbox-nav {
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(9, 15, 20, 0.22);
  color: var(--white);
  backdrop-filter: blur(12px);
  opacity: 0.56;
  box-shadow: none;
  transition: opacity var(--ease), transform var(--ease), background var(--ease), border-color var(--ease);
}

.image-lightbox-close:hover,
.image-lightbox-close:focus-visible,
.image-lightbox-nav:hover,
.image-lightbox-nav:focus-visible {
  opacity: 0.94;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(9, 15, 20, 0.54);
  transform: none;
}

.image-lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 3;
  width: 50px;
  height: 50px;
  font-size: 1.9rem;
  line-height: 1;
}

.image-lightbox-nav {
  width: 42px;
  height: 72px;
  font-size: 2rem;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1160px) {
  .quick-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading,
  .editorial-row,
  .editorial-row-reverse,
  .brand-layout,
  .contact-layout,
  .footer-layout,
  .page-intro,
  .detail-layout,
  .reference-feature,
  .gallery-shell,
  .contact-page-grid,
  .contact-showcase,
  .landing-contact-shell,
  .product-gallery-shell {
    grid-template-columns: 1fr;
  }

  .collection-grid-page,
  .case-grid {
    grid-template-columns: 1fr;
  }

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

  .editorial-row-reverse .editorial-media {
    order: initial;
  }
}

@media (max-width: 940px) {
  .site-nav {
    position: fixed;
    top: 76px;
    right: 24px;
    left: 24px;
    display: grid;
    gap: 14px;
    padding: 20px;
    border-radius: var(--radius-lg);
    background: rgba(13, 21, 28, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--ease), visibility var(--ease), transform var(--ease);
  }

  body.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .menu-toggle {
    display: inline-flex;
  }

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

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

@media (max-width: 720px) {
  :root {
    --container: min(calc(100vw - 28px), 1000px);
  }

  body {
    overflow-x: hidden;
  }

  .home-page #koleksiyon {
    display: none;
  }

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

  .brand {
    padding: 8px 16px 8px 12px;
    border-radius: 16px;
  }

  .brand img {
    width: auto;
  }

  .brand-icon {
    width: 38px !important;
    height: 38px;
  }

  .brand-wordmark {
    font-size: 1.78rem;
  }

  .brand-lockup {
    margin-left: 12px;
  }

  .brand-rule {
    width: 46px;
    height: 3px;
    margin: 5px 0 6px;
  }

  .brand-subtitle {
    font-size: 0.82rem;
    letter-spacing: 0.24em;
  }

  .page-hero,
  .page-hero-layout {
    min-height: auto;
  }

  .page-hero-layout {
    padding: 134px 0 76px;
  }

  .page-hero-copy h1 {
    max-width: 11ch;
  }

  .hero-facts,
  .collection-metrics {
    grid-template-columns: 1fr;
  }

  .hero-facts li {
    width: 100%;
  }

  .collection-card-large img,
  .case-card img,
  .showcase-card img,
  .editorial-media {
    min-height: 0;
    height: 280px;
  }

  .showcase-grid,
  .quick-grid,
  .process-grid,
  .collection-metrics {
    grid-template-columns: 1fr;
  }

  .kitchen-page .showcase-grid,
  .bathroom-page .showcase-grid,
  .wardrobe-page .showcase-grid,
  .interior-door-page .showcase-grid {
    grid-template-columns: 1fr;
  }

  .kitchen-page .showcase-card img,
  .bathroom-page .showcase-card img,
  .wardrobe-page .showcase-card img,
  .interior-door-page .showcase-card img {
    height: 280px;
  }

  .reference-stage-media {
    min-height: 380px;
  }

  .reference-stage-footer,
  .gallery-viewer-meta {
    flex-direction: column;
    align-items: start;
  }

  .reference-stage-dots {
    bottom: 98px;
  }

  .gallery-nav {
    top: 18px;
    right: 18px;
  }

  .gallery-nav-button {
    width: 42px;
    height: 42px;
  }

  .gallery-thumb {
    grid-template-columns: 84px 1fr;
  }

  .product-thumb-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-gallery-dialog {
    width: calc(100vw - 18px);
    max-height: calc(100svh - 18px);
    margin: 9px auto;
    border-radius: 24px;
  }

  .product-gallery-shell {
    min-height: calc(100svh - 18px);
  }

  .product-gallery-viewer {
    min-height: 56svh;
    padding: 58px 8px 84px;
  }

  .product-gallery-nav {
    display: none;
  }

  .product-gallery-nav-prev {
    left: 6px;
  }

  .product-gallery-nav-next {
    right: 6px;
  }

  .product-gallery-sidebar {
    bottom: 12px;
    width: fit-content;
    max-width: calc(100% - 24px);
    padding: 0;
  }

  .product-thumb-grid {
    border-radius: 16px;
  }

  .product-thumb img {
    width: 72px;
    height: 54px;
  }

  .image-lightbox-dialog {
    grid-template-columns: 1fr;
    padding: 62px 8px 18px;
  }

  .image-lightbox-figure img {
    max-height: calc(100svh - 92px);
    border-radius: 18px;
  }

  .image-lightbox-nav {
    display: none;
  }

  .image-lightbox-close {
    top: 14px;
    right: 14px;
    width: 48px;
    height: 48px;
    background: rgba(9, 15, 20, 0.64);
  }

  .landing-contact-grid,
  .contact-method-grid {
    grid-template-columns: 1fr;
  }

  .detail-panel,
  .page-cta,
  .contact-form {
    padding: 22px;
  }

  .contact-map-card iframe {
    min-height: 420px;
  }

  .contact-map-overlay {
    right: 18px;
    bottom: 18px;
  }

  .contact-page-form-grid,
  .project-form-grid {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    padding: 132px 0 92px;
  }

  .hero-copy,
  .hero-text {
    width: min(100%, calc(100vw - 28px));
    max-width: calc(100vw - 28px);
    min-width: 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 2.65rem;
    line-height: 1;
    letter-spacing: 0;
    overflow-wrap: break-word;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.65;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    width: 100%;
    max-width: calc(100vw - 28px);
  }

  .hero-actions .button {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
    text-align: center;
  }

  .quick-categories {
    margin-top: -44px;
    padding-bottom: 18px;
  }

  .quick-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .quick-item {
    min-height: 176px;
    border-radius: 22px;
  }

  .quick-item span {
    right: 16px;
    bottom: 16px;
    left: 16px;
    max-width: none;
    width: fit-content;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(13, 21, 28, 0.62);
    font-size: 1rem;
    line-height: 1.18;
    overflow-wrap: anywhere;
  }

  .editorial-media {
    min-height: 340px;
  }

  .site-footer {
    padding: 30px 0 34px;
  }

  .footer-layout,
  .site-footer-compact .footer-layout {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .footer-brand img {
    width: min(190px, 70vw);
  }

  .footer-copy span {
    max-width: 34ch;
    line-height: 1.6;
  }

  .footer-nav,
  .footer-social {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
  }

  .footer-nav a,
  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    text-align: center;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .footer-year {
    width: 100%;
    padding-top: 2px;
  }

  .contact-form {
    padding: 24px;
  }

  .section {
    padding: 82px 0;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
