/* 
  Avenue Küche — Custom Luxury Website Stylesheet
  Design System: Swiss Modernism, Editorial Serif Accent, High Contrast Slate
*/

/* Local Fonts */
@font-face {
  font-family: 'Lora';
  src: url('/fonts/Lora-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lora';
  src: url('/fonts/Lora-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-ExtraLight.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Custom Variables definitions */
:root {
  /* Font pairings */
  --font-title: 'Lora', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', 'Graphik', Arial, sans-serif;
  
  /* Color Canvas */
  --color-bg-light: #fefefe;
  --color-bg-dark: #121212;
  --color-bg-gray: #f7f7f7;
  --color-text-dark: #111111;
  --color-text-light: #525252;
  --color-white: #ffffff;
  --color-border: #e8e8e8;
  --color-border-dark: #2c2c2c;
  --color-accent-blue: #0f172a;
  
  /* Layout constraints */
  --header-height: 95px;
  --sidebar-width: 80px;

  /* Easing curves */
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-standard: cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base resets & styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  font-size: 16px;
  font-family: var(--font-body);
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  margin: 0;
}

/* Link Resets */
a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

/* Main Site Header Layout */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--color-white);
  border-bottom: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0 40px; /* Leaving right side pure for the CTA block */
  z-index: 1000;
  transition: transform 0.3s var(--ease-standard);
}

/* Logo Design */
.header-logo-container {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: var(--font-body);
  font-size: 28px;
  line-height: 0.95;
  color: var(--color-text-dark);
}

.logo-main {
  font-weight: 500;
  letter-spacing: -0.02em;
}

.logo-sub {
  font-weight: 300;
  letter-spacing: -0.03em;
  margin-left: 2px;
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--color-text-light);
  margin-top: 5px;
  text-transform: uppercase;
}

/* Main Navigation Menu links */
.desktop-navigation {
  height: 100%;
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 40px;
}

.nav-links {
  display: flex;
  height: 100%;
}

.nav-links li {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-item {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-dark);
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  transition: all 0.25s var(--ease-standard);
  position: relative;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 34px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--color-text-dark);
  transition: all 0.25s var(--ease-standard);
  transform: translateX(-50%);
}

.nav-item:hover {
  opacity: 0.8;
}

.nav-item:hover::after {
  width: 40%;
}

/* Header CTA Controls Block */
.header-controls {
  display: flex;
  align-items: flex-start;
  height: 100%;
}

.cta-schedule-btn {
  height: var(--header-height);
  padding: 0 35px;
  background-color: var(--color-bg-dark);
  color: var(--color-white);
  border: none;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sane button sizes inside overlays and drawers */
.drawer-footer .cta-schedule-btn,
.modal-success-screen .cta-schedule-btn {
  height: 55px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
}

/* Menu Burger Button for responsive drawers */
.menu-burger-btn {
  height: 100%;
  width: 75px;
  padding: 0;
  background-color: var(--color-white);
  border: none;
  border-left: 1px solid var(--color-border);
  cursor: pointer;
  display: flex; /* Centered layout for burger lines */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background-color 0.25s var(--ease-standard);
}

.menu-burger-btn:hover {
  background-color: var(--color-bg-gray);
}

.burger-line {
  background-color: var(--color-text-dark);
  height: 1.5px;
  width: 22px;
  border-radius: 1px;
  transition: all 0.25s var(--ease-standard);
}

/* Sidebar & Main view grid splits */
.page-wrapper {
  display: flex;
  margin-top: var(--header-height);
  min-height: calc(100vh - var(--header-height));
  width: 100%;
}

/* Left white sidebar containing vertical social layout */
.social-sidebar {
  width: var(--sidebar-width);
  background-color: var(--color-white);
  border-right: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: fixed;
  top: var(--header-height);
  left: 0;
  bottom: 0;
  z-index: 99;
  padding-bottom: 80px;
}

.sidebar-wrapper {
  display: flex;
  flex-direction: column;
  gap: 35px;
  align-items: center;
}

.social-icon-link {
  color: var(--color-text-dark);
  display: inline-flex;
  cursor: default;
}

.social-icon-link:hover {
  transform: none;
  color: var(--color-text-dark);
}

.social-svg {
  width: 20px;
  height: 20px;
  font-size: 20px;
  transition: opacity 0.25s var(--ease-standard);
}

/* Main scrollable body area */
.main-content {
  flex: 1;
  margin-left: var(--sidebar-width);
  min-width: 0; /* Prevents layout breakouts */
}

/* Infinite Hero Container */
.hero-container {
  height: calc(100vh - var(--header-height));
  min-height: 520px;
  max-height: 850px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #000;
}

.hero-slides-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Individual Slides */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

/* Hero Background Images inside Stylesheet to avoid Inline Styles */
.slide-background-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.08);
  transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slide.active .slide-background-image {
  transform: scale(1);
}

#bg-img-1 {
  background-image: url('/luxury_kitchen_hero.webp');
}

#bg-img-2 {
  background-image: url('/luxury_kitchen_concrete.webp');
}

#bg-img-3 {
  background-image: url('/luxury_kitchen_wood.webp');
}

#bg-img-4 {
  background-image: url('/luxury_kitchen_marble.webp');
}

/* Dramatic Dark overlay on hero background images */
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(18, 18, 18, 0.55) 0%,
    rgba(18, 18, 18, 0.2) 50%,
    rgba(18, 18, 18, 0.7) 100%
  );
  z-index: 2;
}

/* Custom Text Blocks Overlays */
.hero-text-block {
  position: absolute;
  bottom: 12%;
  left: 10%;
  max-width: 580px;
  z-index: 3;
  color: var(--color-white);
  padding: 30px;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s, opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.hero-slide.active .hero-text-block {
  transform: translateY(0);
  opacity: 1;
}

.slide-subtitle {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  opacity: 0.85;
  margin-bottom: 22px;
  display: block;
}

.slide-title {
  font-family: var(--font-title);
  font-size: 5rem;
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 25px;
  color: var(--color-white);
  letter-spacing: -0.01em;
}

.slide-description {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.65;
  opacity: 0.85;
}

/* Carousel HUD Lines */
.hero-slider-nav {
  position: absolute;
  bottom: 8%;
  left: 12%;
  z-index: 10;
  display: flex;
  gap: 12px;
  align-items: center;
}

.slider-nav-bar {
  width: 45px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.35);
  border: none;
  border-radius: 1px;
  cursor: pointer;
  padding: 0;
  transition: width 0.3s var(--ease-premium), background-color 0.3s var(--ease-standard);
}

.slider-nav-bar:hover {
  background-color: rgba(255, 255, 255, 0.75);
}

.slider-nav-bar.active {
  background-color: var(--color-white);
  width: 65px;
}

/* Master Navigation Left/Right Arrows */
.hero-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: rgba(18, 18, 18, 0.25);
  color: var(--color-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  backdrop-filter: blur(5px);
  transition: background-color 0.25s var(--ease-standard), border-color 0.25s var(--ease-standard), transform 0.25s var(--ease-premium);
}

.hero-arrow-btn i {
  font-size: 24px;
}

.hero-arrow-btn:hover {
  background-color: rgba(18, 18, 18, 0.7);
  border-color: rgba(255, 255, 255, 0.61);
}

.arrow-prev {
  left: 30px;
}
.arrow-next {
  right: 30px;
}

.arrow-prev:hover {
  transform: translateY(-50%) translateX(-4px);
}
.arrow-next:hover {
  transform: translateY(-50%) translateX(4px);
}


/* Core Layout Section Settings */
.section-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

/* 1. Elegant About Narrative Styles */
.about-section {
  padding: 130px 0;
  background-color: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border);
}

.headline-meta {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-text-light);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-serif-title {
  font-family: var(--font-title);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--color-text-dark);
  line-height: 1.15;
  margin-bottom: 50px;
  letter-spacing: -0.01em;
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: flex-start;
}

.body-p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: 30px;
}

.body-p:last-of-type {
  margin-bottom: 0px;
}

.about-right-text {
  display: flex;
  flex-direction: column;
  gap: 35px;
  border-left: 1px solid var(--color-border);
  padding-left: 45px;
}

.stat-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-number {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--color-text-dark);
  line-height: 1;
}

.stat-caption {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}


/* 2. Collections / Brands Line Styles */
.brands-section {
  padding: 120px 0;
  background-color: var(--color-bg-gray);
  border-bottom: 1px solid var(--color-border);
}

.section-serif-title {
  font-family: var(--font-title);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--color-text-dark);
  margin-bottom: 60px;
  letter-spacing: -0.01em;
}

.section-caption {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text-light);
  margin-top: -45px;
  margin-bottom: 50px;
}

.collections-flex-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.collection-item-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: transform 0.35s var(--ease-premium), box-shadow 0.35s var(--ease-premium);
}

.collection-item-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.card-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease-standard);
  z-index: 1;
}

.collection-item-card:hover .card-image-bg {
  transform: scale(1.04);
}

/* Material representation cards background declarations */
#card-img-fs-1 {
  /* Matte stainless background representation */
  background-image: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.95) 100%), url('/luxury_kitchen_hero.webp');
}

#card-img-fs-2 {
  /* Satin concrete background representation */
  background-image: linear-gradient(135deg, rgba(82, 82, 82, 0.8) 0%, rgba(38, 38, 38, 0.95) 100%), url('/luxury_kitchen_concrete.webp');
}

#card-img-fs-3 {
  /* Rich warm veneered timber background representation */
  background-image: linear-gradient(135deg, rgba(67, 20, 7, 0.7) 0%, rgba(18, 6, 2, 0.95) 100%), url('/luxury_kitchen_wood.webp');
}

.card-glass-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 35px;
  background: linear-gradient(transparent, rgba(18, 18, 18, 0.92) 55%);
  color: var(--color-white);
  transition: transform 0.35s var(--ease-premium);
}

.card-line-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.card-line-desc {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.75;
  margin-bottom: 22px;
}

.card-material-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
}


/* 3. Products Spec Catalog with interactive filters tab */
.products-section {
  padding: 120px 0;
  background-color: var(--color-bg-light);
  border-bottom: 1px solid var(--color-border);
}

/* Tab filter layout selectors */
.product-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-tab {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background-color: var(--color-bg-gray);
  color: var(--color-text-light);
  border: 1px solid var(--color-border);
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.25s var(--ease-standard);
}

.filter-tab:hover {
  background-color: var(--color-text-dark);
  color: var(--color-white);
  border-color: var(--color-text-dark);
}

.filter-tab.active {
  background-color: var(--color-text-dark);
  color: var(--color-white);
  border-color: var(--color-text-dark);
}

/* Dynamic Gallery Grid setting */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.gallery-item-card {
  display: none; /* Controlled dynamically via JS classes */
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  transition: transform 0.35s var(--ease-standard), opacity 0.35s var(--ease-standard), box-shadow 0.35s var(--ease-standard);
  opacity: 0;
}

.gallery-item-card.show {
  display: flex;
  flex-direction: column;
  opacity: 1;
}

.gallery-img-box {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s var(--ease-standard);
}

.gallery-item-card:hover .gallery-img-box {
  transform: scale(1.03);
}

/* Mock images representation backgrounds using curated styling */
#g-img-1 { background-image: linear-gradient(rgba(18,18,18,0.1), rgba(18,18,18,0.45)), url('/luxury_kitchen_hero.webp'); }
#g-img-2 { background-image: linear-gradient(rgba(18,18,18,0.1), rgba(18,18,18,0.45)), url('/luxury_kitchen_concrete.webp'); }
#g-img-3 { background-image: linear-gradient(rgba(18,18,18,0.1), rgba(18,18,18,0.45)), url('/luxury_kitchen_wood.webp'); }
#g-img-4 { background-image: linear-gradient(rgba(18,18,18,0.1), rgba(18,18,18,0.45)), url('/luxury_kitchen_marble.webp'); }
#g-img-5 { background-image: linear-gradient(rgba(18,18,18,0.1), rgba(18,18,18,0.45)), url('/luxury_kitchen_hero.webp'); }
#g-img-6 { background-image: linear-gradient(rgba(18,18,18,0.1), rgba(18,18,18,0.45)), url('/luxury_kitchen_concrete.webp'); }

.gallery-content {
  padding: 24px;
  background-color: var(--color-white);
  flex: 1;
}

.gallery-item-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text-dark);
}

.gallery-item-caption {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-light);
}


/* 4. Dark Experience Studios block (Kitchens) */
.kitchens-section {
  padding: 110px 0;
  background-color: var(--color-bg-dark);
}

.kitchens-cta-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.serif-title-white {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 30px;
}

.white-p-desc {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 50px;
}

.showroom-addresses-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.showroom-block {
  border-left: 2px solid rgba(255, 255, 255, 0.25);
  padding-left: 20px;
  transition: border-color 0.3s var(--ease-standard);
}

.showroom-block:hover {
  border-color: var(--color-white);
}

.sr-city {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-white);
  margin-bottom: 5px;
}

.sr-street {
  display: block;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 350;
  color: rgba(255, 255, 255, 0.6);
}

.luxury-quote {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 50px;
  border-radius: 4px;
}

.quote-text {
  font-family: var(--font-title);
  font-style: italic;
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 25px;
}

.quote-author {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}


/* Elegant Footer design */
.site-footer {
  background-color: #fafafa;
  border-top: 1px solid var(--color-border);
  padding: 90px 40px 40px 40px;
  margin-left: 0; /* Keeps full aligned context */
}

.footer-top-row {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 11fr); /* Generous padding on brand section */
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--color-border);
}

.footer-brand-segment {
  display: flex;
  flex-direction: column;
}

.footer-logo-main {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--color-text-dark);
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-text-light);
  margin-top: 5px;
  text-transform: uppercase;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.links-group-header {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-text-dark);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.f-link {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--color-text-light);
  transition: color 0.25s var(--ease-standard);
  display: inline-block;
}

.f-link:hover {
  color: var(--color-text-dark);
}

.footer-bottom-row {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright-text {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-light);
}

.footer-legal {
  display: flex;
  gap: 25px;
}

.legal-item {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--color-text-light);
  transition: color 0.25s var(--ease-standard);
}

.legal-item:hover {
  color: var(--color-text-dark);
}


/* 5. Mobile Navigation Slide-Out Menu Drawer (Responsive) */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(18, 18, 18, 0);
  backdrop-filter: blur(0px);
  z-index: 2000;
  visibility: hidden;
  transition: visibility 0.4s var(--ease-premium), background-color 0.4s var(--ease-premium), backdrop-filter 0.4s var(--ease-premium);
}

.drawer-overlay.open {
  visibility: visible;
  background-color: rgba(18, 18, 18, 0.45);
  backdrop-filter: blur(6px);
}

.drawer-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background-color: var(--color-white);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  padding: 40px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-premium);
}

.drawer-overlay.open .drawer-container {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.drawer-logo {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.drawer-close-btn {
  background: none;
  border: none;
  font-size: 32px;
  font-weight: 300;
  color: var(--color-text-dark);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s var(--ease-standard);
}

.drawer-close-btn:hover {
  color: var(--color-text-light);
}

.drawer-nav {
  flex: 1;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.drawer-item {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--color-text-dark);
  display: block;
  transition: opacity 0.25s var(--ease-standard), padding-left 0.25s var(--ease-premium);
}

.drawer-item:hover {
  opacity: 0.7;
  padding-left: 8px;
}

.drawer-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drawer-contact-info {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 550;
  letter-spacing: 0.05em;
  color: var(--color-text-light);
  text-transform: uppercase;
  text-align: center;
  margin-top: 10px;
}


/* 6. Private Tour Booking Form Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(18, 18, 18, 0);
  backdrop-filter: blur(0px);
  z-index: 3000;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: visibility 0.4s var(--ease-premium), background-color 0.4s var(--ease-premium), backdrop-filter 0.4s var(--ease-premium);
}

.modal-overlay.open {
  visibility: visible;
  background-color: rgba(18, 18, 18, 0.65);
  backdrop-filter: blur(8px);
}

.modal-card {
  background-color: var(--color-white);
  padding: 55px;
  width: 100%;
  max-width: 820px;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  position: relative;
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.4s var(--ease-premium), opacity 0.4s var(--ease-premium);
}

.modal-overlay.open .modal-card {
  transform: scale(1);
  opacity: 1;
}

.modal-close-btn {
  position: absolute;
  top: 35px;
  right: 40px;
  background: none;
  border: none;
  font-size: 38px;
  font-weight: 300;
  color: var(--color-text-dark);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s var(--ease-standard);
}

.modal-close-btn:hover {
  color: var(--color-text-light);
}

.modal-header {
  margin-bottom: 40px;
}

.modal-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.modal-serif-title {
  font-family: var(--font-title);
  font-size: 2.3rem;
  font-weight: 300;
  color: var(--color-text-dark);
  line-height: 1.2;
}

.modal-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-text-light);
  margin-top: 10px;
}

/* Elegant Grid Form inside scheduler */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-text-dark);
}

.form-input, .form-select, .form-textarea {
  font-family: var(--font-body);
  font-size: 13.5px;
  padding: 14px 18px;
  color: var(--color-text-dark);
  background-color: var(--color-bg-gray);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.25s var(--ease-standard), background-color 0.25s var(--ease-standard);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: #a3a3a3;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--color-text-dark);
  background-color: var(--color-white);
}

.form-textarea {
  height: 110px;
  resize: none;
}

.form-submit-btn {
  background-color: var(--color-bg-dark);
  color: var(--color-white);
  border: none;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.11em;
  padding: 18px 0;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.25s var(--ease-standard);
  margin-top: 10px;
}

.form-submit-btn:hover {
  background-color: #262626;
}

/* Success Wizard Frame inside Modal */
.modal-success-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background-color: var(--color-white);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.4s var(--ease-standard), opacity 0.4s var(--ease-standard);
}

.modal-success-screen.visible {
  visibility: visible;
  opacity: 1;
}

.success-content {
  text-align: center;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.success-icon-badge {
  background-color: #f0fdf4;
  color: #16a34a;
  border: 2px solid #bbf7d0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.success-badge-svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-serif-title {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--color-text-dark);
  margin-bottom: 18px;
}

.success-p {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--color-text-light);
}

.mt-6 { margin-top: 24px; }
.w-full { width: 100%; }


/* ==========================================
   ELEGANT RESPONSIVE ADAPTATIONS (Media Queries)
   ========================================== */

/* Ultra wide screen tweaks */
@media screen and (min-width: 1600px) {
  .hero-text-block {
    left: 12%;
    bottom: 15%;
  }
}

/* General Desktop (up to 1200px) */
@media screen and (max-width: 1200px) {
  .about-content-grid {
    gap: 50px;
  }
  
  .slide-title {
    font-size: 4.2rem;
  }
}

/* Medium Tablets & iPads (up to 1024px) */
@media screen and (max-width: 1024px) {
  :root {
    --header-height: 85px;
  }
  
  .site-header {
    padding: 0 0 0 25px;
  }
  
  .desktop-navigation {
    display: none; /* Hide main links on tablet */
  }
  
  .cta-schedule-btn {
    padding: 0 25px;
    font-size: 12.5px;
  }
  
  .menu-burger-btn {
    width: 65px;
  }
  
  .about-content-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  
  .about-right-text {
    border-left: none;
    border-top: 1px solid var(--color-border);
    padding-left: 0;
    padding-top: 45px;
    flex-direction: row;
    justify-content: space-between;
  }
  
  .collections-flex-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .kitchens-cta-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .footer-top-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* Mobile Screens (up to 768px) */
@media screen and (max-width: 768px) {
  :root {
    --header-height: 80px;
    --sidebar-width: 0px; /* Hide social sidebar */
  }
  
  .social-sidebar {
    display: none; /* Collapses sidebar entirely */
  }
  
  .main-content {
    margin-left: 0; /* Align perfectly with no sidebar buffer margin */
  }
  
  .site-header {
    background-color: var(--color-white);
  }

  .logo-text {
    font-size: 24px;
  }
  
  .logo-tagline {
    font-size: 7px;
  }

  #open-booking-btn {
    display: none; /* Mobile navigation hides the header CTA, uses drawer CTA instead */
  }
  
  .menu-burger-btn {
    border-left: none; /* Smooth clean integration */
    width: 65px;
  }
  
  .hero-container {
    height: calc(100vh - var(--header-height));
    min-height: 480px;
  }
  
  .hero-text-block {
    left: 5%;
    right: 5%;
    bottom: 12%;
    padding: 15px;
    max-width: 100%;
  }
  
  .slide-title {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .slide-description {
    font-size: 13.5px;
  }
  
  .hero-slider-nav {
    left: 8%;
    bottom: 6%;
  }
  
  .hero-arrow-btn {
    display: none; /* Remove distracting overlay arrows on touch screens */
  }
  
  .section-container {
    padding: 0 24px;
  }
  
  .about-section {
    padding: 85px 0;
  }
  
  .about-serif-title {
    font-size: 2.3rem;
    margin-bottom: 35px;
  }
  
  .about-right-text {
    flex-direction: column;
    gap: 30px;
  }
  
  .brands-section {
    padding: 85px 0;
  }
  
  .collections-flex-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .collection-item-card {
    height: 400px;
  }
  
  .products-section {
    padding: 85px 0;
  }
  
  .section-serif-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .section-caption {
    margin-top: -15px;
    margin-bottom: 35px;
  }
  
  .product-filters {
    gap: 8px;
    margin-bottom: 30px;
  }
  
  .filter-tab {
    padding: 10px 18px;
    font-size: 11.5px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .kitchens-section {
    padding: 80px 0;
  }
  
  .serif-title-white {
    font-size: 2.2rem;
  }
  
  .luxury-quote {
    padding: 30px 24px;
  }
  
  .quote-text {
    font-size: 17px;
  }
  
  .modal-card {
    padding: 35px 24px;
  }
  
  .modal-serif-title {
    font-size: 1.7rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .modal-form {
    gap: 15px;
  }
  
  .footer-top-row {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 40px;
  }
  
  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================
   Welcome Narrative Section Styles (Image Replication)
   ========================================== */
.welcome-narrative-section {
  padding: 130px 0;
  background-color: var(--color-bg-light);
  width: 100%;
}

.welcome-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.welcome-layout-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: flex-start;
}

.welcome-title-col {
  position: relative;
}

.welcome-serif-title {
  font-family: var(--font-title);
  font-size: 3.8rem;
  font-weight: 300;
  line-height: 1.15;
  color: var(--color-text-dark);
  letter-spacing: -0.01em;
}

.welcome-content-col {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.welcome-lead-paragraph {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-dark);
  letter-spacing: -0.01em;
  max-width: 720px;
}

.welcome-sub-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
}

.welcome-body-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-light);
}

/* Luxury Card Button block matching the attachment */
.about-us-box-wrapper {
  margin-top: 15px;
  display: flex;
  justify-content: flex-start;
}

.about-us-box-link {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 260px;
  height: 155px;
  background-color: var(--color-bg-dark);
  color: var(--color-white);
  padding: 24px;
  position: relative;
  transition: background-color 0.25s var(--ease-premium), transform 0.25s var(--ease-premium);
}

.about-us-arrow {
  align-self: flex-end;
  width: 28px;
  height: 28px;
  color: var(--color-white);
  transition: transform 0.25s var(--ease-premium);
}

.about-us-arrow i {
  font-size: 28px;
}

.about-us-text-label {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Fluid Hover Effects */
.about-us-box-link:hover {
  background-color: #1e1e1e;
  transform: translateY(-4px);
}

.about-us-box-link:hover .about-us-arrow {
  transform: translate(3px, -3px);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .welcome-narrative-section {
    padding: 80px 0;
  }
  
  .welcome-layout-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .welcome-serif-title {
    font-size: 3rem;
  }
  
  .welcome-lead-paragraph {
    font-size: 1.2rem;
  }
  
  .welcome-sub-columns {
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .welcome-narrative-section {
    padding: 60px 0;
  }
  
  .welcome-container {
    padding: 0 20px;
  }
  
  .welcome-serif-title {
    font-size: 2.4rem;
    line-height: 1.2;
  }
  
  .welcome-lead-paragraph {
    font-size: 1.1rem;
    line-height: 1.45;
  }
  
  .welcome-sub-columns {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .about-us-box-link {
    width: 100%;
    height: 135px;
    padding: 20px;
  }
}

/* ==========================================
   Luxury Brands Section Style (Replicating Image)
   ========================================== */
.luxury-brands-section {
  padding: 130px 0;
  background-color: var(--color-bg-light);
  width: 100%;
}

.brands-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

.brands-title-main {
  font-family: var(--font-title);
  font-size: 3.2rem;
  font-weight: 300;
  text-align: center;
  color: var(--color-text-dark);
  margin-bottom: 70px;
  letter-spacing: -0.01em;
}

.brands-panel-grid {
  display: flex; /* Flex layout allows for fluid, animatable column widths */
  width: 100%;
  gap: 0; /* Fully continuous shoulder-to-shoulder layout like attachment */
  border: 1px solid var(--color-border);
  overflow: hidden;
  background-color: var(--color-white);
}

.brand-panel-card {
  flex: 1; /* Match equal distribution initially (25% each) */
  min-width: 0; /* Prevents text and content from breaking layout flow */
  position: relative;
  height: 580px;
  background-color: var(--color-white);
  border-right: 1px solid var(--color-border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: flex 0.65s var(--ease-premium), background-color 0.4s var(--ease-standard);
}

.brand-panel-card:last-child {
  border-right: none;
}

.brand-panel-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) contrast(0.95);
  opacity: 0.11; /* Exceedingly light and ethereal background image matching the faded mockup */
  z-index: 1;
  transition: transform 0.65s var(--ease-premium), opacity 0.5s var(--ease-standard), filter 0.5s var(--ease-standard);
}

.brand-panel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.78); /* Soft premium white fade overlay */
  z-index: 2;
  transition: background-color 0.4s var(--ease-standard), opacity 0.5s var(--ease-standard), visibility 0.5s var(--ease-standard);
}

.brand-logo-container {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  transform-origin: center center;
  transition: transform 0.65s var(--ease-premium), top 0.65s var(--ease-premium), left 0.65s var(--ease-premium), opacity 0.4s var(--ease-standard);
}

#b-bg-1 {
  background-image: url('/luxury_kitchen_hero.webp');
}

#b-bg-2 {
  background-image: url('/luxury_kitchen_concrete.webp');
}

#b-bg-3 {
  background-image: url('/luxury_kitchen_wood.webp');
}

#b-bg-4 {
  background-image: url('/luxury_kitchen_marble.webp');
}

/* Default hover styles when no segment is active (mouse resting in natural grid) */
.brands-panel-grid:not(.has-active-child) .brand-panel-card:hover .brand-panel-bg {
  transform: scale(1.06);
  opacity: 0.22; /* Slightly more visible details of kitchen on hover */
}

.brands-panel-grid:not(.has-active-child) .brand-panel-card:hover .brand-panel-overlay {
  background-color: rgba(255, 255, 255, 0.65); /* Less overlays on focus */
}

.brands-panel-grid:not(.has-active-child) .brand-panel-card:hover .brand-logo-container {
  transform: translate(-50%, -50%) scale(1.05);
}

/* Interactive Active states (When a vertical strip is clicked) */
.brand-panel-card.expanded {
  flex: 2.3; /* Expands to take about 57% of total width dynamically */
}

.brand-panel-card.expanded .brand-panel-bg {
  transform: scale(1.03);
  opacity: 1.0; /* Full visibility */
  filter: grayscale(0%) contrast(1.0); /* Remove grayscale filter, showing the image under it fully */
}

.brand-panel-card.expanded .brand-panel-overlay {
  opacity: 0; /* White overlay disappears */
  visibility: hidden;
}

.brand-panel-card.expanded .brand-logo-container {
  top: calc(100% - 50px);
  left: 40px;
  transform: translate(0, -50%) scale(1.1); /* Smoothly migrates to the bottom left under the image */
}

.brand-panel-card.shrunk {
  flex: 0.56; /* Remaining strips become thin, taking about 14% each */
}

.brand-panel-card.shrunk .brand-panel-bg {
  opacity: 0.04; /* Keep shrunk background minimal */
}

.brand-panel-card.shrunk .brand-logo-container {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg) scale(0.64); /* Vertically rotate into 90 degrees and fit cleanly inside */
}

.brand-logo-svg {
  width: 100%;
  height: auto;
  max-width: 170px;
  display: block;
}

.brand-logo-svg text {
  pointer-events: none;
}

/* Responsive Scaling for Brands Panel */
@media (max-width: 1100px) {
  .brands-title-main {
    font-size: 2.6rem;
    margin-bottom: 50px;
  }
  
  .brand-panel-card {
    height: 480px;
  }
}

@media (max-width: 900px) {
  .brands-panel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid var(--color-border);
    background-color: var(--color-white);
  }
  
  .brand-panel-card {
    height: 380px;
    border: none;
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    flex: none !important; /* Override flex layout on grid */
  }

  .brand-panel-card:nth-child(2n) {
    border-right: none;
  }

  .brand-panel-card:last-child,
  .brand-panel-card:nth-last-child(2) {
    border-bottom: none;
  }

  /* Reset interactive states on smaller viewports where vertical strips are wide grid sections */
  .brand-logo-container {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 150px !important;
    transition: transform 0.65s var(--ease-premium), top 0.65s var(--ease-premium), left 0.65s var(--ease-premium), opacity 0.4s var(--ease-standard) !important;
  }

  /* On hover in tablet responsive mode: overlay disappears and logo slides to bottom-left */
  .brand-panel-card:hover .brand-panel-bg {
    transform: scale(1.04) !important;
    opacity: 1.0 !important;
    filter: grayscale(0%) contrast(1.0) !important;
  }

  .brand-panel-card:hover .brand-panel-overlay {
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .brand-panel-card:hover .brand-logo-container {
    top: calc(100% - 40px) !important;
    left: 40px !important;
    transform: translate(0, -50%) scale(1.05) !important;
  }
}

@media (max-width: 550px) {
  .luxury-brands-section {
    padding: 80px 0;
  }
  
  .brands-container {
    padding: 0 20px;
  }
  
  .brands-title-main {
    font-size: 2.1rem;
    line-height: 1.25;
    margin-bottom: 40px;
  }
  
  .brands-panel-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0; /* Remove vertical space completely between 4 images */
    border: 1px solid var(--color-border);
  }
  
  .brand-panel-card {
    height: 260px;
    border-radius: 0; /* Remove borders radius to prevent round gap separators */
    border: none;
    border-bottom: 1px solid var(--color-border);
    flex: none !important;
  }

  .brand-panel-card:last-child {
    border-bottom: none;
  }

  /* Custom logo alignment under mouse focus on small screens */
  .brand-panel-card:hover .brand-logo-container {
    top: calc(100% - 35px) !important;
    left: 30px !important;
    transform: translate(0, -50%) scale(0.95) !important;
  }
}

/* ==========================================
   One Extraordinary Kitchen Section
   ========================================== */
.extraordinary-section {
  width: 100%;
  background-color: #000000;
}

.ex-header-wrapper {
  background-color: #000000;
  padding: 120px 0 110px 0;
  width: 100%;
}

.ex-header-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.ex-header-accent-line {
  width: 6px;
  height: 110px;
  background-color: var(--color-white);
  flex-shrink: 0;
}

.ex-header-text-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
}

.ex-header-title {
  font-family: var(--font-title);
  font-size: 3.4rem;
  font-weight: 300;
  color: var(--color-white);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.ex-header-description {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: #a3a3a3;
  margin-top: 5px;
}

.ex-body-wrapper {
  position: relative;
  background-color: #000000;
  padding: 120px 0;
  width: 100%;
}

.ex-body-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background-color: var(--color-white);
  z-index: 1;
}

@media (min-width: 1301px) {
  .ex-body-wrapper::before {
    width: calc(50% - 104px);
  }
}

@media (max-width: 1300px) and (min-width: 801px) {
  .ex-body-wrapper::before {
    width: 42%;
  }
}

@media (max-width: 800px) {
  .ex-body-wrapper::before {
    display: none;
  }
}

.ex-body-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 130px; /* Big vertical spacing between overlapping cards to breathe */
}

.ex-row {
  position: relative;
  display: flex;
  width: 100%;
  height: 480px; /* Reduced by 40px from 520px */
  overflow: visible; /* To allow card overlapping properly */
}

.ex-left-pane {
  position: relative;
  width: 42%;
  height: 100%;
  display: flex;
  align-items: center;
}

.ex-right-pane {
  position: relative;
  width: 58%;
  height: 100%;
}

.ex-card {
  position: absolute;
  right: -90px; /* Overlaps into the right image pane */
  top: 50%;
  transform: translateY(-50%);
  width: 460px; /* Increased by 60px from 400px */
  height: 230px; /* Reduced by 20px from 250px */
  background-color: var(--color-white);
  padding: 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: none; /* No border initially */
  z-index: 10;
  cursor: pointer;
  box-shadow: none; /* No shadow initially */
  transition: transform 0.6s var(--ease-premium), box-shadow 0.6s var(--ease-premium);
}

.ex-card-decor {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.ex-card-arrow {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-dark);
  transition: transform 0.5s var(--ease-premium);
}

.ex-svg-arrow {
  width: 24px;
  height: 24px;
  font-size: 24px;
  transition: transform 0.5s var(--ease-premium);
}

.ex-card-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ex-card-title {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--color-text-dark);
  letter-spacing: -0.01em;
}

.ex-card-link-label {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-text-light);
  letter-spacing: 0.02em;
}

.ex-image-container {
  position: absolute;
  left: -40px; /* Overshoots left into the white segment slightly */
  right: 20px; /* Elegant black padding reduced from 120px to 20px to increase width by 100px */
  top: 0;
  bottom: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ex-image-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s var(--ease-premium);
}

#ex-image-bg-brands {
  background-image: url('/luxury_kitchen_hero.webp');
}

#ex-image-bg-kitchens {
  background-image: url('/luxury_kitchen_concrete.webp');
}

#ex-image-bg-appliances {
  background-image: url('/luxury_kitchen_wood.webp');
}

/* Hover effects */
.ex-card:hover {
  transform: translate(12px, -50%); /* Micro translation of the card */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: none; /* Ensure no stroke/border on hover */
}

.ex-card:hover .ex-card-arrow {
  transform: translate(4px, -4px);
}

.ex-row:hover .ex-image-bg {
  transform: scale(1.05); /* Zoom matching elite look */
}

/* Responsive constraints */
@media (max-width: 1100px) {
  .ex-header-title {
    font-size: 2.8rem;
  }
  
  .ex-header-accent-line {
    height: 90px;
  }
  
  .ex-card {
    width: 380px; /* Kept proportional to increased standard size of 460px */
    height: 210px; /* Reduced to match height reduction */
    padding: 30px;
    right: -40px;
    border: none;
    box-shadow: none;
  }
  
  .ex-card-title {
    font-size: 1.35rem;
  }
  
  .ex-image-container {
    right: 20px; /* Kept wide */
  }
}

@media (max-width: 800px) {
  .ex-header-wrapper {
    padding: 70px 0;
  }
  
  .ex-header-container {
    padding: 0 24px;
    gap: 30px;
  }
  
  .ex-header-title {
    font-size: 2.1rem;
    line-height: 1.25;
  }
  
  .ex-header-accent-line {
    height: 70px;
    width: 4px;
  }
  
  .ex-body-wrapper {
    background: var(--color-bg-light); /* Clean light layout for mobile screen */
    padding: 60px 0;
  }
  
  .ex-body-container {
    gap: 90px !important; /* Give extra breathing room for the overlapping layout */
  }
  
  .ex-row {
    flex-direction: column-reverse; /* Reorders: image pane at top, card pane at bottom */
    height: auto;
    padding: 0 24px;
    position: relative;
  }
  
  .ex-left-pane {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 10; /* Renders card on top of the image to overlap successfully */
  }
  
  .ex-right-pane {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }
  
  .ex-image-container {
    position: relative;
    left: 0;
    right: 0;
    width: 100%;
    height: 280px;
    margin-top: 0; /* Reset since it's now at the top of the row column */
  }
  
  .ex-card {
    position: relative;
    right: 0;
    top: 0;
    transform: none;
    width: 90%; /* Compact centered card style for maximum polish */
    margin: -56px auto 0 auto; /* Exact 20% overlap of the 280px image height (20% = 56px) */
    height: auto;
    min-height: 160px;
    padding: 24px;
    box-shadow: none;
    border: none;
    background-color: var(--color-white);
  }
  
  /* On hover on mobile/tablet, show drop shadow and no borders */
  .ex-card:hover {
    transform: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: none;
  }
}

/* ==========================================
   Experience Beyond Luxury Section Styles
   ========================================== */
.experience-cta-section {
  background-color: #000000;
  width: 100%;
  padding: 110px 0 130px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.cta-left-col {
  flex: 1.1;
}

.cta-title {
  font-family: var(--font-title);
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.cta-mid-col {
  flex: 1.2;
  max-width: 440px;
}

.cta-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: #a3a3a3;
}

.cta-right-col {
  flex: 0.9;
  display: flex;
  justify-content: flex-end;
}

.cta-button-card {
  width: 280px;
  height: 140px;
  background-color: var(--color-white);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  border: none; /* No border/stroke initially */
  box-shadow: none; /* No shadow initially */
  transition: transform 0.6s var(--ease-premium), box-shadow 0.6s var(--ease-premium);
}

.cta-button-decor {
  display: flex;
  justify-content: flex-end;
}

.cta-card-arrow {
  width: 28px;
  height: 28px;
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--ease-premium);
}

.cta-svg-arrow {
  width: 22px;
  height: 22px;
  font-size: 22px;
  transition: transform 0.5s var(--ease-premium);
}

.cta-button-label {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-text-dark);
  letter-spacing: -0.01em;
}

/* Hover Interactivity */
.cta-button-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.12); /* elegant glow dropshadow of the white card */
}

.cta-button-card:hover .cta-card-arrow {
  transform: translate(3px, -3px);
}

/* Responsive CTA */
@media (max-width: 1024px) {
  .cta-container {
    gap: 40px;
  }
  
  .cta-title {
    font-size: 2.5rem;
  }
  
  .cta-button-card {
    width: 240px;
    height: 130px;
    padding: 24px;
  }
  
  .cta-button-label {
    font-size: 1rem;
  }
}

@media (max-width: 800px) {
  .experience-cta-section {
    padding: 70px 0 90px 0;
  }

  .cta-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding: 0 24px;
  }
  
  .cta-left-col, .cta-mid-col, .cta-right-col {
    width: 100%;
    flex: none;
    max-width: none;
  }
  
  .cta-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  
  .cta-text {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .cta-right-col {
    justify-content: center;
    margin-top: 10px;
  }
  
  .cta-button-card {
    width: 90%;
    max-width: 380px;
    height: 130px;
    padding: 24px;
    margin: 0 auto;
    border: none;
    box-shadow: none;
  }
  
  .cta-button-card:hover {
    transform: none;
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.12);
    border: none;
  }
}

/* ==========================================
   Converted High-Fidelity Footer Section
   ========================================== */
.main-footer {
  background-color: #ffffff;
  color: #000000;
  width: 100%;
  padding: 100px 0 60px 0;
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
}

/* Row 1: Logo & Nav Links */
.footer-row-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 50px;
}

.footer-logo-box .footer-logo-link {
  text-decoration: none;
  display: inline-block;
}

.footer-logo-box .f-logo-main {
  font-family: var(--font-body);
  font-size: 2.2rem;
  font-weight: 700;
  color: #000000;
  letter-spacing: -0.01em;
}

.footer-logo-box .f-logo-sub {
  font-family: var(--font-body);
  font-size: 2.2rem;
  font-weight: 300;
  color: #000000;
  margin-left: 2px;
}

.footer-logo-box .f-logo-tagline {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: #000000;
  margin-top: 5px;
  margin-bottom: 0;
}

.footer-nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  padding: 0;
  margin: 0;
}

.footer-nav-item {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-nav-item:hover {
  opacity: 0.6;
}

/* Row 2: Location, Contact & Action card */
.footer-row-middle {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1.4fr;
  gap: 40px;
  padding: 60px 0;
  border-top: 1px solid #eaeaea;
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 15px;
  margin-top: 0;
}

.footer-address-text, 
.contact-detail-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.6;
  color: #404040;
  margin: 0;
}

.contact-sub-block.mt-6 {
  margin-top: 30px;
}

.footer-social-icons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.f-social-svg {
  width: 22px;
  height: 22px;
  font-size: 22px;
  color: #737373;
  transition: color 0.3s ease;
}

.f-social-svg:hover {
  color: #000000;
}

/* Action card (Black background) */
.footer-col-action {
  display: flex;
  justify-content: flex-end;
}

.footer-cta-card {
  width: 280px;
  height: 140px;
  background-color: #000000;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: transform 0.5s var(--ease-premium), box-shadow 0.5s var(--ease-premium);
}

.footer-cta-decor {
  display: flex;
  justify-content: flex-end;
}

.footer-cta-arrow {
  width: 24px;
  height: 24px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease-premium);
}

.footer-svg-arrow {
  width: 20px;
  height: 20px;
  font-size: 20px;
  transition: transform 0.4s var(--ease-premium);
}

.footer-cta-label {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -0.01em;
}

/* Hover on Black card */
.footer-cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.footer-cta-card:hover .footer-cta-arrow {
  transform: translate(3px, -3px);
}

/* Row 3: Sub links and horizontal divider line */
.footer-row-sublinks {
  display: flex;
  align-items: center;
  width: 100%;
  padding-bottom: 50px;
}

.footer-sublinks {
  display: flex;
  gap: 30px;
}

.footer-sublink-item {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: #111111;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.footer-sublink-item:hover {
  opacity: 0.6;
}

.footer-divider-line {
  flex: 1;
  border-top: 1px solid #eaeaea;
  margin-left: 40px;
}

/* Row 4: Brands with social links & Copyright */
.footer-row-brands {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 10px;
}

.footer-brand-blocks {
  display: grid;
  grid-template-columns: repeat(4, auto);
  column-gap: 50px;
  align-items: flex-end;
}

.f-brand-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.f-brand-logo {
  height: 36px;
  display: flex;
  align-items: center;
}

.f-brand-svg {
  height: 32px;
  display: block;
}

.f-brand-socials {
  display: flex;
  gap: 12px;
  align-items: center;
}

.f-brand-social-svg {
  width: 15px;
  height: 15px;
  font-size: 15px;
  color: #737373;
  transition: color 0.3s ease;
}

.f-brand-social-svg:hover {
  color: #000000;
}

.footer-copyright-box .copyright-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: #737373;
  margin: 0;
}

/* Footer Responsiveness */
@media (max-width: 1100px) {
  .footer-row-middle {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-col-action {
    grid-column: span 2;
    justify-content: flex-start;
  }
  
  .footer-brand-blocks {
    grid-template-columns: repeat(2, auto);
    row-gap: 30px;
  }
  
  .footer-row-brands {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}

@media (max-width: 800px) {
  .main-footer {
    padding: 60px 0 40px 0;
  }
  
  .footer-container {
    padding: 0 24px;
  }
  
  .footer-row-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding-bottom: 40px;
  }
  
  .footer-nav-links {
    flex-direction: column;
    gap: 15px;
  }
  
  .footer-row-middle {
    grid-template-columns: 1fr;
    padding: 40px 0;
  }
  
  .footer-col-action {
    grid-column: span 1;
    justify-content: center;
  }
  
  .footer-cta-card {
    width: 100%;
    max-width: 380px;
  }
  
  .footer-row-sublinks {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 40px;
  }
  
  .footer-sublinks {
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-divider-line {
    display: none;
  }
  
  .footer-brand-blocks {
    grid-template-columns: 1fr;
    row-gap: 24px;
    width: 100%;
  }
  
  .f-brand-block {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 10px;
  }
  
  .f-brand-logo {
    height: 30px;
  }
}


