@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500&family=Inter:wght@500&family=Outfit:wght@100;300;500&family=Noto+Sans:wght@400&display=swap');

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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

#root {
  width: 100%;
  min-height: 100vh;
}/* Fade Up Animation */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.fade-up-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Desktop Container */
.desktop {
  background: white;
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  overflow-x: hidden;
}

.desktop-bg {
  display: none;
}

/* Header */
.header {
  position: relative;
  display: flex;
  height: auto;
  min-height: 98px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 4px;
  width: 100%;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
}

.logo-container {
  height: 40px;
  opacity: 0.8;
  position: relative;
  flex-shrink: 0;
  width: 200px;
  margin-left: -4px;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Navigation */
.nav {
  text-transform: uppercase;
  display: flex;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  gap: 20px;
  align-items: center;
  font-style: normal;
  opacity: 0.65;
  position: relative;
  flex-shrink: 0;
  color: #272727;
  font-size: 14px;
  text-align: center;
  letter-spacing: -0.08px;
  white-space: nowrap;
}

.nav-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.nav-link {
  line-height: 1.45;
  margin: 0;
  cursor: pointer;
}

/* Hero Image */
.hero-image-container {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 65vw;
  max-height: calc(100svh - 98px);
  min-height: 260px;
  z-index: 1;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease-in-out;
  will-change: transform;
}

.hero-carousel-slide {
  flex: 0 0 100vw;
  width: 100vw;
  height: 100%;
  overflow: hidden;
}

.hero-carousel-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

/* Hero Carousel Arrows */
.hero-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 17.5px;
  transition: opacity 0.3s ease;
}

.hero-carousel-arrow:hover {
  opacity: 0.8;
}

.hero-carousel-arrow-left {
  left: 20px;
}

.hero-carousel-arrow-right {
  right: 20px;
}

.hero-carousel-arrow .arrow-left-inner,
.hero-carousel-arrow .arrow-right-inner {
  width: 100%;
  height: 100%;
}

.hero-carousel-arrow .arrow-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.35));
}

/* Hero Text */
.hero-text {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 165px;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  width: 100%;
  max-width: 1280px;
  margin: 20px auto 0;
  z-index: 5;
}

.hero-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  width: 100%;
}

.hero-tagline {
  display: flex;
  flex-direction: column;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  justify-content: center;
  font-style: normal;
  position: relative;
  width: 100%;
  font-size: 16px;
  color: rgba(75, 75, 75, 0.55);
  text-align: center;
  letter-spacing: 4px;
}

.tagline-text {
  line-height: 1.4;
  white-space: pre-wrap;
  margin: 0;
}

/* Text Row */
.text-row {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px 24px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  z-index: 5;
  text-align: center;
}

.text-block-1 {
  width: 100%;
  max-width: 900px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-block-1-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.about-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 100;
  line-height: 1.2;
  position: relative;
  color: #131313;
  font-size: 22px;
  text-align: center;
  letter-spacing: -0.48px;
  margin: 0;
  width: 100%;
}

.text-block-3 {
  width: 100%;
  max-width: 900px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-block-3-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'IBM Plex Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  color: rgba(17, 17, 17, 0.55);
  text-align: center;
  letter-spacing: -0.07px;
  width: 100%;
}

.about-text {
  font-family: 'IBM Plex Sans', sans-serif;
  line-height: 1.5;
  white-space: pre-wrap;
  margin: 0;
  text-align: center;
}

/* Our Space Heading */
.our-space-heading {
  position: relative;
  display: flex;
  flex-direction: column;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  justify-content: center;
  left: 0;
  font-size: 28px;
  color: black;
  text-align: center;
  letter-spacing: -0.1647px;
  white-space: nowrap;
  z-index: 4;
  width: 100%;
  padding: 8px 12px 8px;
  margin: 60px auto 0;
  max-width: 1280px;
}

.our-space-text {
  line-height: 1.5;
  margin: 0;
}

/* Showroom Wrapper */
.showroom-wrapper {
  position: relative;
  width: 100%;
  max-width: 1165px;
  margin: 20px auto 60px;
  padding: 0 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Showroom Container */
.showroom-container {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  z-index: 3;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  height: auto;
}

.carousel-images-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
  overflow: hidden;
}

.showroom-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.showroom-img.active {
  opacity: 1;
  z-index: 1;
}

/* Carousel Arrows */
.carousel-arrow-left {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  height: 35px;
  width: 17.5px;
  flex-shrink: 0;
  z-index: 10;
  cursor: pointer;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-arrow-left:hover {
  opacity: 0.8;
}

.arrow-left-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.arrow-left-inner .arrow-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.carousel-arrow-right {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  width: 17.5px;
  flex-shrink: 0;
  z-index: 10;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.carousel-arrow-right:hover {
  opacity: 0.8;
}

.arrow-right-inner {
  width: 100%;
  height: 100%;
}

.arrow-right-inner .arrow-img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.arrow-img {
  display: block;
  width: 100%;
  height: 100%;
}

/* Kitchen Section */
.kitchen-section {
  position: relative;
  width: 100%;
  max-width: 1165px;
  margin: 60px auto;
  padding: 0 24px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.floor-plan-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 589px;
  margin: 0 auto;
}

.floor-plan-container {
  position: relative;
  width: 100%;
  max-width: 589px;
  margin: 0 auto;
  aspect-ratio: 589 / 566;
}

.floor-plan-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Clickable areas on floor plan */
.clickable-area {
  position: absolute;
  cursor: pointer;
  z-index: 5;
  transition: background-color 0.2s ease;
  border-radius: 2px;
}

.clickable-area:hover {
  background-color: transparent;
}

.clickable-area-polygon {
  background-color: transparent;
}

.clickable-area.active {
  background-color: transparent;
}

/* Hover-only white square: only the one area under the cursor */
.section-overlay-hover {
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.9);
  pointer-events: none;
  z-index: 6;
}

.section-overlay-polygon-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 6;
  background: none;
}

.section-overlay-polygon {
  box-sizing: border-box;
}

/* Section overlays for visual highlights */
.section-overlay {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 4;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.section-overlay.kitchen-overlay {
  background-color: rgba(255, 255, 255, 0.5);
}

.section-overlay.outdoor-overlay {
  background-color: rgba(255, 255, 255, 0.5);
}

.section-overlay.wardrobe-overlay {
  background-color: rgba(255, 255, 255, 0.5);
}

.section-overlay.doors-overlay.horizontal {
  background-color: rgba(255, 255, 255, 0.8);
  height: 6px;
}

.section-overlay.doors-overlay.vertical {
  background-color: rgba(255, 255, 255, 0.8);
  width: 6px;
}

.section-overlay.doors-overlay.rectangle {
  background-color: rgba(255, 255, 255, 0.5);
}

.section-overlay.furniture-overlay {
  background-color: rgba(255, 255, 255, 0.5);
}

.line-divider {
  display: none;
  /* Hidden on mobile */
  width: 1.5px;
  background-color: rgba(0, 0, 0, 0.2);
}

.line-divider-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.line-divider-inner .line-img {
  width: 1.5px;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* Mobile: Hide divider */
@media (max-width: 767px) {
  .line-divider {
    display: none;
  }
}

.kitchen-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  gap: 20px;
  transition: opacity 0.3s ease;
}

.kitchen-brand-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.kitchen-brand-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.kitchen-brand-logo-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.kitchen-brand-separator {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 24px;
  line-height: 1;
  color: rgba(42, 42, 42, 0.45);
}

.kitchen-brand-logo {
  display: block;
  height: 64px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.3s ease;
}

.kitchen-heading {
  font-family: 'IBM Plex Sans', sans-serif;
  line-height: 1.2;
  font-style: normal;
  opacity: 0.85;
  color: #2a2a2a;
  font-size: 22px;
  letter-spacing: 2px;
  margin: 0;
  text-align: left;
  transition: opacity 0.3s ease;
}

.hover-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  line-height: 1.2;
  opacity: 0.85;
  font-size: 18px;
  text-align: left;
  color: #131313;
  letter-spacing: -0.48px;
  margin: 0;
}

.floor-plan-hover-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  line-height: 1.2;
  opacity: 0.85;
  font-size: 18px;
  text-align: center;
  color: #000000;
  letter-spacing: -0.48px;
  margin: 20px auto 0;
  width: 100%;
  max-width: 589px;
}

.kitchen-description {
  font-family: 'IBM Plex Sans', 'Noto Sans', sans-serif;
  line-height: 1.47;
  opacity: 0.85;
  color: #131313;
  font-size: 18px;
  transition: opacity 0.3s ease;
  margin: 0;
  text-align: left;
  font-variation-settings: 'CTGR' 0, 'wdth' 100, 'wght' 400;
}

.know-more-link {
  text-decoration: underline;
  font-family: 'IBM Plex Sans', sans-serif;
  line-height: 1.47;
  font-style: normal;
  opacity: 0.85;
  font-size: 18px;
  color: #131313;
  margin: 0;
  cursor: pointer;
  display: inline-block;
}

.overlay-box {
  display: none;
}

.know-more-button {
  display: flex;
  flex-direction: column;
  font-family: 'IBM Plex Sans', sans-serif;
  justify-content: center;
  font-style: normal;
  font-size: 14px;
  color: black;
  text-align: left;
  white-space: nowrap;
  margin: 0;
  align-self: flex-start;
}

.know-more-button-text {
  text-decoration: underline;
  line-height: 1.5;
  margin: 0;
  cursor: pointer;
}

/* Responsive Design */
@media (min-width: 768px) {
  .header {
    padding: 24px 32px;
  }

  .logo-container {
    height: 48px;
    width: 250px;
    margin-left: -12px;
  }

  .nav {
    gap: 32px;
    font-size: 15px;
  }

  .hero-tagline {
    font-size: 20px;
    letter-spacing: 8px;
  }

  .text-row {
    padding: 80px 48px;
    gap: 32px;
  }

  .about-heading {
    font-size: 24px;
    font-weight: 100;
  }

  .our-space-heading {
    font-size: 30px;
    padding: 8px 48px 8px;
    margin-top: 60px;
  }

  .kitchen-section {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
    padding: 0 48px;
    position: relative;
    margin: 30px auto;
    max-width: 1165px;
  }

  .floor-plan-wrapper {
    flex-shrink: 0;
    max-width: 589px;
    margin: 0;
    transform: translateX(-5%);
  }

  .floor-plan-container {
    flex-shrink: 0;
    position: relative;
  }

  .line-divider {
    display: flex;
    position: relative;
    width: 1.5px;
    align-self: stretch;
    /* Match height of tallest sibling */
    min-height: 300px;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    margin: 0 20px;
  }

  .kitchen-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    gap: 20px;
    min-height: 620px;
  }

  .kitchen-brand-logo {
    height: 72px;
    max-width: 300px;
  }

  .kitchen-heading {
    font-size: 24px;
    text-align: left;
  }

  .kitchen-description {
    font-size: 20px;
    min-height: 240px;
  }

  .know-more-link {
    font-size: 20px;
  }

  .showroom-wrapper {
    padding: 0 48px;
  }

  .showroom-container {
    margin: 0;
  }

  .carousel-arrow-left {
    left: 20px;
  }

  .carousel-arrow-right {
    right: 20px;
  }
}

@media (min-width: 1024px) {
  .header {
    padding: 24px 40px;
    height: 98px;
  }

  .logo-container {
    height: 56px;
    width: 294px;
    margin-left: -16px;
  }

  .nav {
    gap: 40px;
    font-size: 16px;
  }

  .hero-text {
    padding: 64px 64px 50px;
  }

  .hero-tagline {
    font-size: 24px;
    letter-spacing: 14.4px;
  }

  .text-row {
    padding: 50px 64px;
    gap: 32px;
  }

  .about-heading {
    font-size: 26px;
    font-weight: 100;
  }

  .text-block-3-content {
    font-size: 17px;
    font-weight: 400;
  }

  .our-space-heading {
    font-size: 32.941px;
    padding: 8px 0 8px;
    position: relative;
    text-align: center;
    width: 100%;
    max-width: 1280px;
    margin: 60px auto 0;
  }

  .showroom-wrapper {
    position: relative;
    width: 100%;
    max-width: 1165px;
    margin: 20px auto 60px;
    padding: 0 64px;
  }

  .carousel-arrow-left {
    left: 24px;
  }

  .carousel-arrow-right {
    right: 24px;
  }

  .showroom-container {
    height: auto;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .kitchen-section {
    position: relative;
    width: 100%;
    max-width: 1165px;
    margin: 60px auto;
    padding: 0 64px;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
    min-height: auto;
  }

  .floor-plan-wrapper {
    flex-shrink: 0;
    max-width: 589px;
    margin: 0;
    transform: translateX(-5%);
  }

  .floor-plan-container {
    position: relative;
    width: 589px;
    flex-shrink: 0;
    height: auto;
    aspect-ratio: 589 / 566;
  }

  .line-divider {
    display: flex;
    position: relative;
    width: 1.5px;
    align-self: stretch;
    /* Match height of tallest sibling */
    min-height: 400px;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    margin: 0 30px;
  }

  .line-divider-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .line-divider-inner .line-img {
    display: none;
  }

  .kitchen-brand-logo {
    height: 80px;
    max-width: 320px;
  }

  .kitchen-heading {
    position: relative;
    font-size: 26px;
    letter-spacing: 4px;
    margin: 0;
    text-align: left;
  }

  .hover-text {
    display: none;
  }

  .kitchen-description {
    position: relative;
    font-size: 24px;
    margin: 0 0 20px 0;
    text-align: left;
    width: 100%;
    min-height: 300px;
  }

  .know-more-link {
    display: none;
  }

  .overlay-box {
    display: none;
  }

  .know-more-button {
    position: relative;
    margin: 20px 0 0 0;
    font-size: 16px;
    transform: none;
  }
}

@media (min-width: 1280px) {
  .desktop {
    min-width: 1280px;
  }
}

/* Contact Page Styles */
.contact-page {
  background: white;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.contact-header {
  padding: 24px 64px;
  max-width: 1280px;
  margin: 0 auto;
}

.contact-hero-image {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  height: auto;
  min-height: 400px;
  margin: 0;
  padding: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: visible;
  display: block;
  background-color: #f5f5f5;
}

.contact-facade-img {
  width: 100%;
  height: auto;
  max-height: none;
  min-width: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  margin: 0;
  padding: 0;
}

.contact-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  padding: 64px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.contact-info-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 574px;
  padding: 32px 0;
}

.contact-text-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.contact-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 1.2;
  color: #000000;
  letter-spacing: -1.28px;
  margin: 0;
  white-space: pre-wrap;
}

.contact-details {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.contact-detail-item {
  font-family: 'IBM Plex Sans', 'Noto Sans', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.45;
  color: #121212;
  letter-spacing: -0.1px;
  margin: 0;
  white-space: pre-wrap;
  font-style: normal;
}

.contact-map-container {
  width: 100%;
  max-width: 574px;
  border-radius: 16px;
  overflow: hidden;
}

.contact-map-link {
  display: block;
  width: 100%;
  height: 493px;
  text-decoration: none;
  cursor: pointer;
}

.contact-map-embed {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.contact-map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 16px;
}

.nav-link.contact-active {
  color: #121212;
  opacity: 1;
}

.nav-link {
  text-decoration: none;
  color: inherit;
}

/* Responsive styles for Contact page */
@media (max-width: 768px) {
  .contact-header {
    padding: 24px 16px;
  }

  .contact-hero-image {
    min-height: 250px;
    background-color: #f5f5f5;
    width: 100vw;
    max-width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }

  .contact-facade-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
    min-width: 100%;
    min-height: 300px;
  }

  .contact-section {
    padding: 40px 16px;
    gap: 32px;
  }

  .contact-heading {
    font-size: 32px;
    letter-spacing: -0.8px;
  }

  .contact-detail-item {
    font-size: 16px;
    line-height: 1.5;
  }

  .contact-map-link {
    height: 250px;
  }

  .contact-info-container {
    padding: 24px 0;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .contact-hero-image {
    min-height: 350px;
    width: 100vw;
    max-width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }

  .contact-facade-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
    min-width: 100%;
    min-height: 400px;
  }

  .contact-map-link {
    height: 300px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .contact-hero-image {
    min-height: 500px;
    width: 100vw;
    max-width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }

  .contact-facade-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
    min-width: 100%;
    min-height: 500px;
  }

  .contact-section {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
    padding: 64px 48px;
  }

  .contact-info-container {
    flex: 1;
    max-width: none;
  }

  .contact-map-container {
    flex: 1;
    max-width: none;
  }
}

@media (min-width: 1025px) {
  .contact-section {
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }

  .contact-info-container {
    flex: 0 0 574px;
  }

  .contact-map-container {
    flex: 0 0 574px;
  }
}

/* Partners Page Styles */
.partners-page {
  background: white;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.partners-header {
  padding: 24px 64px;
  max-width: 1280px;
  margin: 0 auto;
}

.partners-content {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 0 4px;
}

.partners-header-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px 0 32px;
  width: 100%;
}

.partners-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  color: #000000;
  letter-spacing: -0.65px;
  margin: 0 0 24px -4px;
  white-space: pre-wrap;
  text-align: left;
}

.partners-description {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.45;
  color: rgba(63, 63, 63, 0.55);
  letter-spacing: -0.1px;
  max-width: 1050px;
  margin: 0 0 0 10px;
}

.partners-description .partners-description-bold {
  font-weight: 700;
  margin: 0 0 16px 0;
}

.partners-description p {
  margin: 0;
}

.partners-carousel-container {
  position: relative;
  width: 100%;
  margin: 60px 0;
  padding: 0;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.partners-carousel-container::-webkit-scrollbar {
  display: none;
}

.partners-cards-wrapper {
  display: flex;
  gap: 20px;
  width: max-content;
  padding-left: 64px;
  padding-right: 0;
  position: relative;
}

.partner-card {
  flex: 0 0 429px;
  min-width: 429px;
  height: 675px;
  border-radius: 0;
  box-shadow: 5px 4px 5.1px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;

  /* Force unified look for all cards */
  background: #000000;
  color: #ffffff;

  /* Card is a link now */
  text-decoration: none;
  cursor: pointer;
}

.partner-card:visited {
  color: #ffffff;
}

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 10px 18px 28px rgba(0, 0, 0, 0.25);
}

.partner-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: 10px 18px 28px rgba(0, 0, 0, 0.25);
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: 2px;
}

.partner-image-container {
  position: relative;
  width: 100%;
  height: 304px;
  overflow: hidden;
  flex-shrink: 0;
  padding: 0;
  margin: 0;
  background: #000;
}

.partner-image {
  width: 101%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  margin-left: -0.5%;
}

.partner-logo-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  background: transparent;
  padding: 0;
}

.partner-logo {
  height: 30px;
  width: auto;
  object-fit: contain;
  display: block;
}

.partner-info {
  flex: 1;
  padding: 40px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
}

.partner-name-logo {
  height: 58px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  object-position: left center;
  display: block;
  margin: 0 0 16px 0;
}

.partner-category {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.47;
  margin: 0 0 24px 0;
  text-transform: uppercase;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.78);
}

.partner-description {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.5;
  margin: 0 0 24px 0;
  flex: 1;
  min-height: 0;
  overflow: hidden;

  /* Clamp to 4 lines + show ellipsis */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;

  /* Fallback height so the last line isn't visually clipped */
  max-height: calc(1.5em * 4);
}

.partner-know-more {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.47;
  text-decoration: underline;
  align-self: flex-end;
  cursor: pointer;
  transition: opacity 0.3s ease;
  margin-top: auto;
  flex-shrink: 0;
}

.partner-know-more:hover {
  opacity: 0.7;
}


.nav-link.partners-active {
  color: #121212;
  opacity: 1;
}

/* Responsive styles for Partners page */
@media (min-width: 768px) {
  .partners-content {
    padding: 0 64px 0 32px;
  }

  .partners-title {
    margin-left: -12px;
  }
}

@media (max-width: 1024px) {
  .partners-title {
    font-size: 24px;
  }

  .partners-cards-wrapper {
    padding-left: 32px;
    padding-right: 0;
  }

  .partners-description {
    font-size: 18px;
  }

  .partner-card {
    min-width: 350px;
    flex: 0 0 350px;
    height: 600px;
    border-radius: 0;
  }

  .partner-name-logo {
    height: 48px;
  }

  .partner-description {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .partners-header {
    padding: 24px 16px;
  }

  .partners-content {
    padding: 0 16px 0 4px;
  }

  .partners-title {
    font-size: 18px;
    letter-spacing: -0.35px;
    margin-left: 6px;
  }

  .partners-description {
    font-size: 16px;
  }

  .partners-carousel-container {
    margin: 40px 0 40px 4px;
    width: calc(100% - 4px);
    scroll-padding-inline-start: 4px;
    overscroll-behavior-x: none;
  }

  .partners-cards-wrapper {
    gap: 20px;
    padding-left: 0;
    padding-right: 0;
  }



  .partner-card {
    min-width: 280px;
    flex: 0 0 280px;
    height: 550px;
    border-radius: 0;
    box-shadow: none;
  }

  .partner-card:hover,
  .partner-card:focus-visible {
    transform: none;
    box-shadow: none;
  }

  .partner-image-container {
    height: 200px;
  }

  .partner-info {
    padding: 24px 20px 20px;
  }

  .partner-name-logo {
    height: 40px;
  }

  .partner-category {
    font-size: 14px;
  }

  .partner-description {
    font-size: 16px;
  }


  .partner-know-more {
    font-size: 16px;
  }
}

/* Partner Detail Page Styles */
.partner-detail-page {
  background: white;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

.partner-detail-header {
  padding: 24px 64px;
  max-width: 1280px;
  margin: 0 auto;
}

.partner-detail-content {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px 64px;
}

.partner-detail-hero {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 0;
  margin-bottom: 30px;
  padding: 0;
}

.partner-detail-hero-image-container {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.partner-detail-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.partner-visit-site-container {
  display: flex;
  justify-content: flex-end;
  padding: 20px 64px 0;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}

.partner-visit-site-link {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.47;
  color: #000000;
  text-decoration: underline;
  cursor: pointer;
  transition: opacity 0.3s ease;
  background: rgba(255, 255, 255, 0.85);
  padding: 6px 12px;
  border-radius: 2px;
}

.partner-visit-site-link:hover {
  opacity: 0.7;
}

.partner-detail-info-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 64px 40px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 24px;
}

.partner-detail-brand-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.partner-detail-logo {
  height: 64px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  margin: 0;
}

.partner-detail-category {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  color: #2a2a2a;
  opacity: 0.85;
  letter-spacing: 2px;
  margin: 0;
  text-transform: uppercase;
}

.partner-detail-category-mixed {
  text-transform: none;
  letter-spacing: 2px;
}

.partner-detail-description {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.47;
  color: #000000;
  margin: 0;
  text-align: center;
}

.partner-detail-gallery-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.partner-detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 10px;
  position: relative;
}

.partner-detail-gallery.partner-gallery-3-cols {
  grid-template-columns: repeat(3, 1fr);
}

.partner-detail-gallery-item {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 0;
}

/* 2-column gallery: equal height via aspect ratio */
.partner-detail-gallery:not(.partner-gallery-3-cols) .partner-detail-gallery-item {
  height: auto;
  aspect-ratio: 3 / 2;
}

/* 3-column portrait gallery */
.partner-gallery-3-cols .partner-detail-gallery-item {
  height: auto;
  aspect-ratio: 2 / 3;
}

.partner-gallery-full .partner-detail-gallery-item {
  height: auto;
  overflow: visible;
}

.partner-gallery-full .partner-detail-gallery-image {
  height: auto;
  width: 100%;
  object-fit: fill;
  transform: none !important;
}
.partner-detail-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease-out;
}

.partner-detail-gallery-item:hover .partner-detail-gallery-image {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
  /* Let clicks pass through if needed, though usually fine */
}

.gallery-overlay-text {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}

.partner-detail-gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Responsive styles for Partner Detail page */
@media (max-width: 768px) {
  .partner-detail-header {
    padding: 24px 16px;
  }

  .partner-detail-content {
    padding: 0 16px 40px;
  }

  .partner-detail-hero-image-container {
    aspect-ratio: 16 / 9;
    min-height: auto;
    max-height: none;
  }

  .partner-visit-site-container {
    padding: 16px 16px 0;
  }

  .partner-visit-site-link {
    font-size: 16px;
  }

  .partner-detail-info-section {
    padding: 10px 16px 24px;
  }

  .partner-detail-logo {
    height: 64px;
    max-width: 260px;
  }

  .partner-detail-category {
    font-size: 22px;
    letter-spacing: 2px;
  }

  .partner-detail-category-mixed {
    letter-spacing: 2px;
  }

  .partner-detail-description {
    font-size: 16px;
  }

  .partner-detail-gallery,
  .partner-detail-gallery.partner-gallery-3-cols {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .partner-detail-gallery-item {
    height: 250px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .partner-detail-content {
    padding: 0 32px 48px;
  }

  .partner-detail-hero-image-container {
    aspect-ratio: 16 / 9;
    min-height: auto;
    max-height: none;
  }

  .partner-visit-site-link {
    font-size: 18px;
  }

  .partner-detail-logo {
    height: 72px;
    max-width: 300px;
  }

  .partner-detail-category {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .partner-detail-description {
    font-size: 18px;
  }

  .partner-detail-gallery {
    padding: 10px;
  }

  .partner-detail-gallery-item {
    height: 350px;
  }
}

@media (min-width: 1024px) {
  .partner-detail-logo {
    height: 80px;
    max-width: 320px;
  }

  .partner-detail-category {
    font-size: 26px;
    letter-spacing: 4px;
  }
}

/* Mobile Navigation Styles */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 20;
  margin-right: 24px;
}

.hamburger .bar {
  width: 100%;
  height: 2px;
  background-color: black;
  transition: all 0.3s ease;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 60px;
}

.close-btn {
  font-size: 28px;
  cursor: pointer;
  padding: 10px;
  line-height: 1;
}

.mobile-nav-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.mobile-nav-link {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  text-transform: uppercase;
  color: #000;
}

/* Mobile Media Query Updates */
@media (max-width: 768px) {
  .logo-container {
    width: 240px;
    /* Bigger logo on mobile */
  }

  /* Vertical About Elementi */
  .text-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
    padding: 0 24px;
  }

  .text-block-1,
  .text-block-3 {
    width: 100% !important;
    max-width: 100% !important;
  }

  .about-heading {
    text-align: center;
    white-space: normal;
  }

  /* Showroom Image & Arrows */
  .showroom-img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
  }

  .arrow-left-inner,
  .arrow-right-inner {
    width: 32px;
    height: 32px;
  }

  .arrow-img {
    width: 16px !important;
    height: 16px !important;
  }

  /* Task 4: Fix Floor Plan Touch Areas via Scale */
  .floor-plan-wrapper {
    overflow: hidden;
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .floor-plan-container {
    width: 600px;
    transform: scale(0.55);
    transform-origin: top center;
    margin: 0 auto;
    margin-bottom: -200px;
  }

  .kitchen-description {
    min-height: 220px;
  }

  /* Refinements centered About Elementi */
  .text-block-1-content {
    align-items: center !important;
  }

  /* Hero Tagline Single Line */
  .tagline-text {
    font-size: 11px;
    text-align: center;
    white-space: nowrap;
    width: 100%;
    margin-top: 5px;
  }

  /* Hero Carousel Arrows */
  .hero-carousel-arrow-left {
    left: 8px;
  }

  .hero-carousel-arrow-right {
    right: 8px;
  }

  .hero-carousel-arrow .arrow-left-inner,
  .hero-carousel-arrow .arrow-right-inner {
    width: 32px;
    height: 32px;
  }

  /* Showroom Arrows Overlay */
  .showroom-wrapper {
    position: relative;
    padding: 0 24px;
    justify-content: center;
  }

  .carousel-arrow-left {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .carousel-arrow-right {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .showroom-container {
    margin: 0;
    max-width: none;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

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

  .showroom-wrapper {
    align-items: center;
    margin-top: 15px !important;
    /* Reduced gap */
  }

  /* Adjust Heading spacing */
  .our-space-heading {
    padding-bottom: 0;
    margin-bottom: 5px;
  }

  /* Horizontal Divider */
  .line-divider {
    display: block !important;
    width: 60%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.2);
    margin: 20px auto;
  }

  .line-divider-inner {
    display: none;
  }

  .about-text {
    text-align: center;
    white-space: normal;
  }

  /* Fix scrolling issue on mobile */
  .desktop {
    padding-bottom: 100px;
    height: auto;
    min-height: 100%;
    overflow-y: auto;
  }
}
/* ============================================================
   Static build additions — replicates behaviour that previously
   lived in React conditional rendering and inline styles.
   No visual changes.
   ============================================================ */

/* Semantic headings render identically to the <p>/<div> they replace */
h1, h2, h3 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-family: inherit;
  letter-spacing: inherit;
  color: inherit;
  text-transform: inherit;
}

/* Nav links are now real anchors */
a.nav-link, a.mobile-nav-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
a.logo-container { display: block; cursor: pointer; }

/* Hamburger vs nav visibility (was a React isMobile conditional) */
.hamburger { display: none; border: 0; background: none; padding: 0; }
@media (max-width: 767px) {
  .nav { display: none; }
  .hamburger { display: flex; }
}
.mobile-menu-overlay[hidden] { display: none; }

/* Hero drag affordance (was inline style) */
.hero-image-container { cursor: grab; user-select: none; -webkit-user-select: none; }
.hero-image-container:active { cursor: grabbing; }

/* Know more is now a real link (was a div with onClick) */
a.know-more-button { display: block; text-decoration: none; color: inherit; cursor: pointer; }

/* Floor plan content panels: all seven are in the HTML for crawlers,
   one visible at a time (was a single React-swapped block) */
.kitchen-content[hidden] { display: none !important; }
.section-overlay-hover[hidden], .section-overlay-polygon-svg[hidden] { display: none !important; }

/* Elements changed from <p>/<div> to semantic tags keep block flow */
span.our-space-text { display: block; }


/* Arjun Rathi has no logo file yet — styled wordmark in the logo slot */
.partner-name-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 34px;
  letter-spacing: 3px;
  color: #ffffff;
  line-height: 58px;
  display: block;
  margin: 0 0 16px 0;
  white-space: nowrap;
}
.partner-detail-name-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 34px;
  letter-spacing: 3px;
  color: #111111;
  line-height: 1.2;
  display: block;
}
@media (max-width: 768px) {
  .partner-name-text { font-size: 26px; line-height: 40px; }
  .partner-detail-name-text { font-size: 26px; }
}


/* Arjun Rathi Design lockup is stacked (mark over wordmark); taller than
   the horizontal wordmarks at equal optical weight */
.partner-name-logo.logo-ard { height: 82px !important; }
.partner-detail-logo.logo-ard { height: 88px; width: auto; }


/* Snaidero's boxed mark needs extra height to match the wide wordmarks */
.partner-name-logo.logo-snaidero { height: 76px !important; }
.kitchen-brand-logo.logo-snaidero { transform: scale(1.35); transform-origin: left center; }
.partner-detail-logo.logo-snaidero { transform: scale(1.3); transform-origin: left center; }


/* ==========================================================================
   Mobile friendliness — new-brand logo caps and touch comfort
   ========================================================================== */
@media (max-width: 768px) {
  .partner-name-logo.logo-ard { height: 56px !important; }
  .partner-name-logo.logo-snaidero { height: 52px !important; }
  .partner-detail-logo.logo-ard { height: 62px; }
}
* { -webkit-tap-highlight-color: transparent; }
a, button, .clickable-area { touch-action: manipulation; }
@media (pointer: coarse) {
  /* thin plan zones get an invisible halo so fingers can land on them */
  .clickable-area:not(.clickable-area-polygon) {
    border: 8px solid transparent;
    background-clip: padding-box;
    margin: -8px;
  }
}


/* Client feedback 1 Sep: more air around the tagline and About band */
.hero-text { margin-top: 56px; }
.text-row { margin-top: 40px; margin-bottom: 96px; }
@media (max-width: 768px) {
  .hero-text { margin-top: 36px; }
  .text-row { margin-top: 28px; margin-bottom: 64px; }
}


/* Contact details: flush left with the heading, even vertical rhythm */
.contact-detail-item {
  margin: 0 0 22px;
  text-indent: 0;
  white-space: normal;
}
.contact-details { padding: 0; margin: 0; }

/* 1 Sep round 2: more air above the tagline and above The Showroom */
.hero-text { margin-top: 100px; }
.text-row { margin-bottom: 120px; }
@media (max-width: 768px) {
  .hero-text { margin-top: 52px; }
  .text-row { margin-bottom: 72px; }
}


/* ==========================================================================
   Partner card logos — equal optical letter-height, no silent width clamping
   (client 1 Sep: sizing undulation across cards)
   ========================================================================== */
.partner-name-logo { max-width: 292px !important; height: auto; }
.partner-name-logo.logo-snaidero { height: 64px !important; }
.partner-name-logo.logo-moroso { height: 36px !important; }
.partner-name-logo.logo-alfdare { height: 38px !important; }
.partner-name-logo.logo-gloster { height: 40px !important; }
.partner-name-logo.logo-dedon { height: 38px !important; }
.partner-name-logo.logo-lualdi { height: 44px !important; }
.partner-name-logo.logo-ard { height: 70px !important; }
@media (max-width: 768px) {
  .partner-name-logo.logo-snaidero { height: 48px !important; }
  .partner-name-logo.logo-moroso { height: 27px !important; }
  .partner-name-logo.logo-alfdare { height: 29px !important; }
  .partner-name-logo.logo-gloster { height: 30px !important; }
  .partner-name-logo.logo-dedon { height: 29px !important; }
  .partner-name-logo.logo-lualdi { height: 33px !important; }
  .partner-name-logo.logo-ard { height: 53px !important; }
}


/* ==========================================================================
   1 Sep round 3: the tagline + About band fills a viewport of its own —
   at its scroll position neither the hero above nor the showroom below shows
   ========================================================================== */
.hero-text { margin-top: clamp(90px, 15vh, 210px); }
.text-row {
  margin-top: clamp(64px, 9vh, 140px);
  margin-bottom: clamp(180px, 28vh, 380px);
}
@media (max-width: 768px) {
  .hero-text { margin-top: 64px; }
  .text-row { margin-top: 36px; margin-bottom: 96px; }
}


/* ==========================================================================
   1 Sep: standardised logo system for the floor-plan panels and detail pages
   — one optical scale, no transforms, even spacing under the mark
   ========================================================================== */
.kitchen-brand-logo, .partner-detail-logo { transform: none !important; }

.kitchen-brand-logo { height: 46px !important; width: auto; max-width: 220px; margin-bottom: 4px; }
.kitchen-brand-logo.logo-snaidero { height: 58px !important; }
.kitchen-brand-logo.logo-moroso { height: 33px !important; }
.kitchen-brand-logo.logo-alfdare { height: 35px !important; }
.kitchen-brand-logo.logo-gloster { height: 36px !important; }
.kitchen-brand-logo.logo-dedon { height: 34px !important; }
.kitchen-brand-logo.logo-lualdi { height: 40px !important; }
.kitchen-brand-header { margin-bottom: 14px; }

.partner-detail-logo { height: 44px !important; width: auto; }
.partner-detail-logo.logo-snaidero { height: 56px !important; }
.partner-detail-logo.logo-moroso { height: 32px !important; }
.partner-detail-logo.logo-alfdare { height: 34px !important; }
.partner-detail-logo.logo-gloster { height: 35px !important; }
.partner-detail-logo.logo-dedon { height: 34px !important; }
.partner-detail-logo.logo-lualdi { height: 39px !important; }
.partner-detail-logo.logo-ard { height: 62px !important; }

@media (max-width: 768px) {
  .kitchen-brand-logo { height: 28px !important; }
  .kitchen-brand-logo.logo-snaidero { height: 36px !important; }
  .kitchen-brand-logo.logo-moroso { height: 21px !important; }
  .kitchen-brand-logo.logo-alfdare { height: 22px !important; }
  .kitchen-brand-logo.logo-gloster { height: 22px !important; }
  .kitchen-brand-logo.logo-dedon { height: 22px !important; }
  .kitchen-brand-logo.logo-lualdi { height: 25px !important; }
  .partner-detail-logo.logo-snaidero { height: 46px !important; }
  .partner-detail-logo.logo-ard { height: 52px !important; }
}


/* ==========================================================================
   1 Sep: card logos share one fixed slot — logo band, category line and
   description all align across every card. Optical sizes preserved via
   per-brand widths inside the slot.
   ========================================================================== */
.partner-name-logo {
  height: 78px !important;
  width: auto;
  max-width: 292px !important;
  object-fit: contain;
  object-position: left center;
  display: block;
  margin-bottom: 12px;
}
.partner-name-logo.logo-snaidero { height: 78px !important; width: 204px; }
.partner-name-logo.logo-moroso { height: 78px !important; width: 213px; }
.partner-name-logo.logo-alfdare { height: 78px !important; width: 248px; }
.partner-name-logo.logo-gloster { height: 78px !important; width: 292px; }
.partner-name-logo.logo-dedon { height: 78px !important; width: 183px; }
.partner-name-logo.logo-lualdi { height: 78px !important; width: 126px; }
.partner-name-logo.logo-ard { height: 78px !important; width: 197px; }

@media (max-width: 768px) {
  .partner-name-logo, .partner-name-logo.logo-snaidero, .partner-name-logo.logo-moroso,
  .partner-name-logo.logo-alfdare, .partner-name-logo.logo-gloster, .partner-name-logo.logo-dedon,
  .partner-name-logo.logo-lualdi, .partner-name-logo.logo-ard { height: 60px !important; }
  .partner-name-logo.logo-snaidero { width: 157px; }
  .partner-name-logo.logo-moroso { width: 164px; }
  .partner-name-logo.logo-alfdare { width: 191px; }
  .partner-name-logo.logo-gloster { width: 225px; }
  .partner-name-logo.logo-dedon { width: 141px; }
  .partner-name-logo.logo-lualdi { width: 97px; }
  .partner-name-logo.logo-ard { width: 152px; }
}


/* Arjun Rathi imagery: lights hang from the ceiling — crops anchor to the top */
img.keep-top { object-position: center top !important; }


/* Partners header: description aligns flush with the OUR PARTNERS heading */
.partners-description { margin-left: 0 !important; }


/* ==========================================================================
   1 Sep final spacing model: the tagline + About block is centred in the
   viewport; the gaps above and below flex with the browser automatically.
   ========================================================================== */
.tagline-about-band {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(44px, 8vh, 120px);
}
.tagline-about-band .hero-text { margin-top: 0 !important; min-height: 0; }
.tagline-about-band .text-row { margin-top: 0 !important; margin-bottom: 0 !important; }

@media (max-width: 768px) {
  .tagline-about-band { min-height: 88svh; gap: 36px; }
}


/* Floor plan hint sits above the plan */
.floor-plan-hover-text { margin: 0 0 18px; }


/* Outdoor panel: Dedon and Gloster stacked, no separator */
.kitchen-brand-logos-stacked {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.kitchen-brand-separator { display: none; }


/* Partners header: title and description on one exact left line, no optical offsets */
.partners-title { margin-left: 0 !important; }
.partners-description { margin: 0 !important; padding: 0 !important; }
.partners-description p { margin-left: 0 !important; padding-left: 0 !important; }
.partners-description .partners-description-bold { margin: 0 0 16px !important; }


/* ==========================================================================
   3 Sep: hero fits the visible screen, so nothing sits below the fold.
   Header is 98px; svh keeps mobile browser chrome honest.
   ========================================================================== */
@media (min-width: 900px) {
  .hero-image-container { height: min(65vw, calc(100vh - 98px)); }
  .hero-image-container { height: min(65vw, calc(100svh - 98px)); }
}

/* Slides whose subject sits low in the frame keep it when the crop tightens */
.hero-carousel-image.focus-low { object-position: center 89%; }


/* ==========================================================================
   3 Sep: partner carousel arrows — the scrollbar is hidden, so mouse users
   need a visible control. Touch devices keep swiping and never see these.
   ========================================================================== */
.partners-carousel-shell { position: relative; }
.partners-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(18, 18, 18, 0.12);
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.partners-arrow svg { width: 17px; height: 17px; display: block; }
.partners-arrow:hover { background: #ffffff; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2); }
.partners-arrow:focus-visible { outline: 2px solid #121212; outline-offset: 3px; }
.partners-arrow-left { left: 18px; }
.partners-arrow-right { right: 18px; }
.partners-arrow[disabled] { opacity: 0; pointer-events: none; }
.partners-arrow[hidden] { display: none; }
@media (hover: none) { .partners-arrow { display: none; } }
@media (max-width: 768px) { .partners-arrow { display: none; } }


/* ==========================================================================
   3 Sep: partner carousel on touch — arrows available there too, sized for
   thumbs, plus snapping so a swipe or a tap always lands on a card edge.
   ========================================================================== */
.partners-carousel-container {
  scroll-padding-left: 64px;
}

@media (hover: none) { .partners-arrow { display: flex; } }

@media (max-width: 768px) {
  .partners-carousel-container { scroll-padding-left: 4px; }
  .partners-arrow {
    display: flex;
    width: 42px;
    height: 42px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  }
  .partners-arrow svg { width: 15px; height: 15px; }
  .partners-arrow-left { left: 8px; }
  .partners-arrow-right { right: 8px; }
}


/* Mobile carousel polish */
@media (max-width: 768px) {
  .partners-arrow { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
  .partners-carousel-container { overscroll-behavior-x: none; }
}


/* No elastic bounce past either end of the partner row — the row stops dead at the last card */
.partners-carousel-container {
  overscroll-behavior-x: none;
  overscroll-behavior-y: auto;
}
