/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #092B42;
  --navy-dark: #092B42;
  --surface: #F1F2F2;
  --ink: #1a1a1a;
  --muted: #4a4a4a;
  --line: #e0ddd8;
  --radius: 16px;
  --container: 1140px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background: #F1F2F2;
  line-height: 1.6;
}

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

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

h1, h2, h3, p {
  margin: 0;
}

/* ===== Layout ===== */
.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #F1F2F2;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 0;
  z-index: 100;
}

/* ===== Header ===== */
/* ===== Header / Navbar ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-row {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* ── Left: logo + contact ── */
.header-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #F1F2F2;
}

.header-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.header-brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.header-contact-info {
  display: none;
  align-items: center;
  gap: 1.2rem;
}

.header-phone,
.header-email {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(241,242,242,0.75);
  font-size: 0.82rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.header-phone:hover,
.header-email:hover {
  color: #F1F2F2;
}

.header-phone svg,
.header-email svg {
  flex-shrink: 0;
  opacity: 0.7;
}

/* ── Mobile email (between logo & hamburger) ── */
.header-email-mobile {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(241,242,242,0.75);
  font-size: 0.78rem;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
  margin-left: auto;
  margin-right: 0.5rem;
}

.header-email-mobile:hover {
  color: #F1F2F2;
}

.header-email-mobile svg {
  flex-shrink: 0;
  opacity: 0.7;
}

@media (min-width: 768px) {
  .header-email-mobile {
    display: none;
  }
}

/* ── Right: nav ── */
.header-nav {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(241,242,242,0.1);
  padding: 0.5rem 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.header-nav.open {
  display: flex;
}

.nav-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #F1F2F2;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s, color 0.2s;
}

.nav-link:hover {
  background: rgba(241,242,242,0.08);
}

/* ── Mobile contact in nav dropdown ── */
.nav-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(241,242,242,0.1);
  margin-top: 0.25rem;
}

.nav-contact__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(241,242,242,0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-contact__link:hover {
  color: #F1F2F2;
}

.nav-contact__link svg {
  flex-shrink: 0;
  opacity: 0.7;
}

/* ── Hamburger ── */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 51;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #F1F2F2;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Tablet+ ── */
@media (min-width: 768px) {
  .header-contact-info {
    display: flex;
  }
}

/* ── Desktop ── */
@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .header-nav {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    gap: 0.25rem;
  }

  .nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 4px;
  }

  .nav-link:hover {
    background: rgba(241,242,242,0.12);
  }

  .nav-contact {
    display: none;
  }
}

/* ===== Sections ===== */
.section {
  padding: 2rem 0;
 ,
 scroll-margin-top: 60px;
}

.section-offer,
.section-int-viz,
.section-virtual-tour {
  background: #e9eaea;
}

/* ===== Virtual Tour ===== */
.tour-heading {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--navy-dark);
}

.tour-description {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.tour-embed {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.tour-embed iframe {
  display: block;
  width: 100%;
  max-height: 640px;
  border: none;
}

@media (max-width: 599px) {
  .tour-embed iframe {
    height: 400px;
  }
}

.section-hero {
  padding-top: 1rem;
  scroll-margin-top: 60px;
}

/* ===== Hero ===== */
.hero-shell {
  display: grid;
  gap: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.hero-copy {
  background: var(--navy);
  color: #F1F2F2;
  padding: 2rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.hero-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.hero-name {
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
}

.hero-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  max-width: 16ch;
}

.hero-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.7;
}

.hero-main-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  font-weight: 700;
  background: #F1F2F2;
  color: var(--navy-dark);
  border: 2px solid #F1F2F2;
  padding: 0.85rem 2.2rem;
  margin-top: 0.5rem;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.hero-main-cta:hover {
  background: transparent;
  color: #F1F2F2;
  border-color: #F1F2F2;
}

.hero-media {
  min-height: 260px;
}

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

/* ===== Gallery ===== */
.section-head {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.section-head p {
  color: var(--muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-size: 0.8rem;
}

.gallery-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 1fr;
}

.gallery-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

/* ===== CTA ===== */
.cta {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 1.25rem;
  display: grid;
  gap: 0.8rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 0;
  padding: 0.7rem 1.2rem;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn-primary {
  background: var(--navy);
  color: #F1F2F2;
}

.btn-secondary {
  background: #F1F2F2;
  border-color: var(--line);
}

.lead {
  color: var(--muted);
  max-width: 60ch;
}

/* ===== Footer ===== */
.site-footer {
  padding: 2rem 0 3rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-author {
  margin: 0;
  text-align: right;
}

.footer-author a {
  color: #17b2e2;
  font-weight: 500;
  text-decoration: none;
}

.footer-author a:hover {
  text-decoration: underline;
}

/* ===== Privacy Policy Page ===== */
.privacy-page {
  padding: 3rem 0 4rem;
}

.privacy-heading {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}

.privacy-updated {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
}

.privacy-page h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.privacy-page p,
.privacy-page li {
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.8;
}

.privacy-page ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.privacy-page li {
  margin-bottom: 0.35rem;
}

.privacy-page a {
  color: #17b2e2;
  text-decoration: underline;
}

.privacy-page a:hover {
  color: var(--navy);
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.85rem;
}

.privacy-table th,
.privacy-table td {
  border: 1px solid var(--line);
  padding: 0.6rem 0.75rem;
  text-align: left;
}

.privacy-table th {
  background: var(--navy-dark);
  color: #F1F2F2;
  font-weight: 600;
}

.privacy-table td {
  color: var(--ink);
}

.privacy-table tr:nth-child(even) td {
  background: #e8e9e9;
}

.privacy-back {
  margin-top: 3rem;
  font-weight: 600;
}

/* ===== Lightbox ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox--active {
  display: flex;
}

.lightbox__content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 80vh;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: none;
  border: none;
  color: #F1F2F2;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s;
  z-index: 2;
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  opacity: 0.7;
}

.lightbox__close {
  top: 1.2rem;
  right: 1.5rem;
  font-size: 2.5rem;
  line-height: 1;
}

.lightbox__prev,
.lightbox__next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  line-height: 1;
  padding: 0.5rem;
}

.lightbox__prev {
  left: 1rem;
}

.lightbox__next {
  right: 1rem;
}

.lightbox__counter {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-top: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .lightbox__prev {
    left: 2rem;
  }
  .lightbox__next {
    right: 2rem;
  }
  .lightbox__prev,
  .lightbox__next {
    font-size: 4rem;
  }
}

/* ===== Cookie Consent Banner ===== */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy-dark);
  color: #F1F2F2;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

.cookie-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-banner__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.cookie-banner__desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.cookie-banner__link {
  color: #17b2e2;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.65rem 1.5rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid #F1F2F2;
  transition: background 0.2s, color 0.2s;
}

.cookie-btn--accept {
  background: #F1F2F2;
  color: var(--navy-dark);
}

.cookie-btn--accept:hover {
  background: transparent;
  color: #F1F2F2;
}

.cookie-btn--reject {
  background: transparent;
  color: #F1F2F2;
}

.cookie-btn--reject:hover {
  background: #F1F2F2;
  color: var(--navy-dark);
}

@media (min-width: 768px) {
  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-banner__text {
    flex: 1;
  }

  .cookie-banner__actions {
    flex-shrink: 0;
  }
}

/* ===== Interior-Viz Section ===== */

/* Mobile: text + carousel visible, grid hidden */
.int-text--mobile {
  display: block;
  background: #F1F2F2;
  padding: 2rem 0;
  margin-bottom: 0.5rem;
}

.int-carousel {
  display: block;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.int-carousel__track {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 10%;
}

.int-carousel__track::-webkit-scrollbar {
  display: none;
}

.int-carousel__slide {
  flex: 0 0 80%;
  scroll-snap-align: center;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.int-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.int-grid {
  display: none;
}

.int-img {
  overflow: hidden;
}

.int-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.int-text {
  background: #F1F2F2;
  padding: 2rem 1.5rem;
}

.int-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.int-description {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Tablet+: hide mobile elements, show grid */
@media (min-width: 768px) {
  .int-text--mobile,
  .int-carousel {
    display: none;
  }

  .int-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    gap: 0.5rem;
  }

  /* Row 1 */
  .int-img--r1c1 { grid-column: 1; grid-row: 1; }
  .int-img--r1c2 { grid-column: 2; grid-row: 1; }
  .int-text--desktop { grid-column: 3; grid-row: 1; padding: 1.5rem; }

  /* Row 2 */
  .int-img--r2c1 { grid-column: 1; grid-row: 2; }
  .int-img--r2c2 { grid-column: 2; grid-row: 2; }
  .int-img--r2c3 { grid-column: 3; grid-row: 2; }

  /* Row 3 */
  .int-img--r3c1 { grid-column: 1; grid-row: 3; }
  .int-img--r3c2 { grid-column: 2; grid-row: 3; }
  .int-img--r3c3 { grid-column: 3; grid-row: 3; }
  .int-img--r3c4 { display: none; }
}

@media (min-width: 980px) {
  .int-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto auto;
    gap: 0.5rem;
  }

  /* Row 1: 2 imgs span 1 col each + text in col 3-4 area */
  .int-img--r1c1 {
    grid-column: 1;
    grid-row: 1;
  }
  .int-img--r1c2 {
    grid-column: 2;
    grid-row: 1;
    aspect-ratio: auto;
  }
  .int-text--desktop {
    grid-column: 3 / 5;
    grid-row: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* Row 2: 3 images */
  .int-img--r2c1 {
    grid-column: 1 / 2;
    grid-row: 2;
  }
  .int-img--r2c2 {
    grid-column: 2 / 4;
    grid-row: 2;
    aspect-ratio: auto;
  }
  .int-img--r2c3 {
    grid-column: 4;
    grid-row: 2;
  }

  /* Row 3: 4 images */
  .int-img--r3c1 { grid-column: 1; grid-row: 3; aspect-ratio: 1; }
  .int-img--r3c2 { grid-column: 2; grid-row: 3; aspect-ratio: 1; }
  .int-img--r3c3 { grid-column: 3; grid-row: 3; aspect-ratio: 1; }
  .int-img--r3c4 {
    display: block;
    grid-column: 4;
    grid-row: 3;
  }
}

/* ===== Arch-Viz Section ===== */

/* Mobile: text + carousel visible, grid hidden */
.arch-text--mobile {
  display: block;
  background: #F1F2F2;
  padding: 2rem 1.5rem;
  margin-bottom: 0.5rem;
}

.arch-text--desktop {
  display: none;
}

.arch-carousel {
  display: block;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.arch-carousel__track {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 10%;
}

.arch-carousel__track::-webkit-scrollbar {
  display: none;
}

.arch-carousel__slide {
  flex: 0 0 80%;
  scroll-snap-align: center;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.arch-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.arch-grid {
  display: none;
}

.arch-img {
  overflow: hidden;
}

.arch-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.arch-text {
  background: #F1F2F2;
  padding: 2rem 1.5rem;
}

.arch-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.arch-description {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.arch-img-stack {
  display: grid;
  gap: 0.5rem;
}

/* Tablet+ : hide mobile elements, show grid */
@media (min-width: 768px) {
  .arch-text--mobile,
  .arch-carousel {
    display: none;
  }

  .arch-text--desktop {
    display: block;
  }

  .arch-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 0.5rem;
  }

  .arch-img--wide {
    grid-column: 1;
    grid-row: 1;
  }

  .arch-img--top-right {
    grid-column: 2;
    grid-row: 1;
  }

  .arch-text--desktop {
    grid-column: 1;
    grid-row: 2;
  }

  .arch-img--center {
    grid-column: 2;
    grid-row: 2;
  }

  .arch-img-stack {
    display: none;
  }

  .arch-img--bottom-wide {
    grid-column: 2;
    grid-row: 3;
  }

  .arch-img--bottom-right {
    grid-column: 1;
    grid-row: 3;
  }
}

@media (min-width: 980px) {
  .arch-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.5rem;
  }

  .arch-img--wide {
    grid-column: 1 / 3;
    grid-row: 1;
    aspect-ratio: 21 / 9;
  }

  .arch-img--top-right {
    grid-column: 3;
    grid-row: 1;
  }

  .arch-text--desktop {
    grid-column: 1;
    grid-row: 2;
    padding: 2rem;
  }

  .arch-img--center {
    grid-column: 2;
    grid-row: 2;
  }

  .arch-img-stack {
    display: grid;
    grid-column: 3;
    grid-row: 2;
    grid-template-rows: 1fr 1fr23;
    gap: 0.5rem;
  }

  .arch-img--bottom-wide {
    grid-column: 1;
    grid-row: 3;
  }

  .arch-img--bottom-right {
    grid-column: 2 / 4;
    grid-row: 3;
    aspect-ratio: 21 / 10;
  }
}

/* ===== Product-Viz Section ===== */

/* Mobile: text + carousel visible, grid hidden */
.prod-text--mobile {
  display: block;
  background: #F1F2F2;
  padding: 2rem 0;
  margin-bottom: 0.5rem;
}

.prod-carousel {
  display: block;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.prod-carousel__track {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 10%;
}

.prod-carousel__track::-webkit-scrollbar {
  display: none;
}

.prod-carousel__slide {
  flex: 0 0 80%;
  scroll-snap-align: center;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.prod-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prod-grid {
  display: none;
}

.prod-img {
  overflow: hidden;
}

.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prod-text {
  background: #F1F2F2;
  padding: 2rem 1.5rem;
}

.prod-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.prod-description {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* Tablet+: hide mobile elements, show grid */
@media (min-width: 768px) {
  .prod-text--mobile,
  .prod-carousel {
    display: none;
  }

  .prod-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .prod-img--r1c1 { grid-column: 1; grid-row: 1; }
  .prod-img--r1c2 { grid-column: 2; grid-row: 1; }
  .prod-text--desktop { grid-column: 1; grid-row: 2; }
  .prod-img--r2c2 { grid-column: 2; grid-row: 2; }
  .prod-img--r2c3 { grid-column: 1 / 3; grid-row: 3; aspect-ratio: 21 / 9; }
}

@media (min-width: 980px) {
  .prod-grid {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.5rem;
  }

  .prod-img--r1c1 {
    grid-column: 1;
    grid-row: 1;
  }
  .prod-img--r1c2 {
    grid-column: 2;
    grid-row: 1;
  }
  .prod-img--r2c3 {
    grid-column: 3;
    grid-row: 1;
    aspect-ratio: 3 / 3;
  }

  .prod-text--desktop {
    grid-column: 1 / 3;
    grid-row: 2;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .prod-img--r2c2 {
    grid-column: 3;
    grid-row: 2;
    /* aspect-ratio: 3 / 3; */
  }
}

/* ===== Contact Section ===== */
.contact-shell {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--navy);
  overflow: hidden;
}

.contact-form-side {
  padding: 2rem 1.5rem;
  color: #F1F2F2;
}

.contact-title {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  line-height: 1.15;
}

.contact-lead {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"] {
  width: 100%;
  padding: 0.7rem 0.85rem;
  font: inherit;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #F1F2F2;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input[type="text"]::placeholder,
.contact-form input[type="email"]::placeholder,
.contact-form input[type="tel"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus {
  border-color: #F1F2F2;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  cursor: pointer;
}

.contact-consent input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-consent a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  padding: 0.85rem 2.2rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: #F1F2F2;
  color: var(--navy-dark);
  border: 2px solid #F1F2F2;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.contact-submit:hover {
  background: transparent;
  color: #F1F2F2;
  border-color: #F1F2F2;
}

.contact-submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

.contact-msg {
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 0;
  min-height: 0;
  transition: all 0.3s;
}

.contact-msg:empty {
  display: none;
}

.contact-msg--success {
  display: block;
  color: #4ade80;
  padding: 0.75rem 0;
}

.contact-msg--error {
  display: block;
  color: #f87171;
  padding: 0.75rem 0;
}

.contact-media {
  min-height: 280px;
}

.contact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== Offer Section ===== */
.offer-heading {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--navy-dark);
}

.offer-collage {
  position: relative;
  max-width: 100%;
  margin-inline: auto;
  min-height: 720px;
}

.offer-card {
  position: absolute;
  overflow: hidden;
  box-shadow: 3px 5px 18px rgba(0, 0, 0, 0.38);
  background: #F1F2F2;
  transition: transform 0.3s, box-shadow 0.3s;
}

.offer-card:hover {
  transform: scale(1.04);
  box-shadow: 5px 8px 28px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

.offer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.offer-label {
  position: relative;
  bottom: 60px;
  left: 0;
  background: #F1F2F2;
  color: var(--navy-dark);
  padding: 0.5rem 0.85rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  width: auto;
}

/* Scattered photo-collage positions */
.offer-card--interiors {
  width: 28%;
  aspect-ratio: 3 / 4;
  top: 8%;
  left: 0;
  transform: rotate(-3deg);
  z-index: 4;
}

.offer-card--architecture {
  width: 38%;
  aspect-ratio: 16 / 11;
  top: 0;
  left: 26%;
  transform: rotate(1.5deg);
  z-index: 5;
}

.offer-card--product {
  width: 35%;
  aspect-ratio: 6 / 4;
  top: 15%;
  right: 0;
  transform: rotate(2deg);
  z-index: 3;
}

.offer-card--modeling {
  width: 26%;
  aspect-ratio: 3 / 4;
  bottom: 0;
  left: 20%;
  transform: rotate(-1deg);
  z-index: 1;
}

.offer-card--virtual-tour {
  width: 30%;
  aspect-ratio: 4 / 3;
  bottom: 15%;
  right: 18%;
  transform: rotate(2.5deg);
  z-index: 2;
}

@media (max-width: 1000px) {
  .offer-collage {
    min-height: 750px;
  }
  .offer-card--architecture {
    width: 52%;
    left: auto;
    right: 5%;
    aspect-ratio: 16 / 11;
  }
  .offer-card--interiors {
    width: 36%;
    top:0;
    aspect-ratio: 3 / 4;
  }
  .offer-card--product {
    width: 46%;
    top:5%;
    aspect-ratio: 6 / 8;
  }
  .offer-card--modeling {
    width: 36%;
    left: 5%;
    bottom: -20px;
    aspect-ratio: 3 / 5;
  }
  .offer-card--virtual-tour {
    width: 42%;
    right: 10%;
    bottom: -20px;
    aspect-ratio: 4 / 3;
  }
}

/* Mobile: stack vertically */
@media (max-width: 599px) {
  .offer-collage {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    min-height: auto;
  }

  .offer-card {
    position: static;
    width: 100% !important;
    aspect-ratio: 16 / 10 !important;
    transform: none !important;
  }
}

/* ===== Tablet ===== */
@media (min-width: 768px) {
  .section {
    padding: 2rem 0;
  }

  .contact-shell {
    grid-template-columns: 45% 1fr;
  }

  .contact-form-side {
    padding: 2.5rem;
  }

  .hero-copy {
    padding: 2.2rem 2rem;
  }

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

  .cta {
    padding: 2rem;
  }
}

/* ===== Desktop ===== */
@media (min-width: 980px) {
  .section-hero {
    padding-top: 1.5rem;
  }

  .hero-shell {
    grid-template-columns: minmax(320px, 40%) 1fr;
    min-height: 580px;
  }

  .hero-copy {
    padding: 2.5rem 2.2rem;
    justify-content: space-between;
  }

  .hero-main-cta {
    min-width: 240px;
  }

  .hero-media {
    min-height: 100%;
  }
}
