/*
Theme Name: IBJD Custom
Theme URI: https://interiorsbyjustdesign.com
Description: Custom theme for Interiors by Just Design - no page builders
Author: Logic Web Media
Version: 1.0.0
*/

@font-face {
  font-family: "Austrian";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://interiorsbyjustdesign.com/wp-content/themes/ibjd-custom/assets/fonts/austrian.woff2") format("woff2");
}
@font-face {
  font-family: "Austrian";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("https://interiorsbyjustdesign.com/wp-content/themes/ibjd-custom/assets/fonts/austrian-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Saol Display";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("https://interiorsbyjustdesign.com/wp-content/themes/ibjd-custom/assets/fonts/austrian-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Amsterline";
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url("https://interiorsbyjustdesign.com/wp-content/themes/ibjd-custom/assets/fonts/Amsterline.ttf") format("truetype");
}


/* ============================================
   VARIABLES
============================================ */
:root {
  --gold: #9C8F6C;
  --taupe: #B4AFA1;
  --black: #000000;
  --white: #ffffff;
  --off-white: #f9f8f6;
  --text: #333333;
  --light-gray: #f2f0ec;
  --border: #e0dbd3;
  --nav-height: 80px;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================
   TYPOGRAPHY
============================================ */
.font-heading {
  font-family: 'Austrian', 'Playfair Display', serif;
  font-style: italic;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Austrian', 'Playfair Display', serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
}

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
}

/* ============================================
   LAYOUT
============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.container--narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 80px 0;
}

.section--lg {
  padding: 120px 0;
}

/* ============================================
   NAVIGATION
============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  gap: 20px;
}

.nav-logo img {
  height: 130px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  height: var(--nav-height);
  gap: 8px;
}

.nav-menu > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-menu > li > a {
  display: block;
  padding: 6px 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--black);
  transition: color 0.2s;
  position: relative;
}

.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--black);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-menu > li.current-menu-item > a::after,
.nav-menu > li > a:hover::after {
  transform: scaleX(1);
}

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a {
  color: var(--black);
}

/* Dropdown */
.nav-menu .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 100;
}

.nav-menu li:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 10px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--black);
  border-bottom: 1px solid var(--border);
  transition: background 0.15s, color 0.15s;
}

.dropdown li:last-child a { border-bottom: none; }

.dropdown li a:hover {
  background: var(--off-white);
  color: var(--gold);
}

/* Right side nav */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.nav-phone {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--black);
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-phone:hover { color: var(--gold); }

.btn-consultation {
  display: inline-block;
  padding: 10px 20px;
  background: var(--taupe);
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-consultation:hover { background: var(--gold); color: var(--white); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), opacity 0.2s ease;
  transform-origin: center;
}

/* Open → X: span 1 drops down, span 3 rises up, both rotate 45° */
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  overflow-y: auto;
  z-index: 999;
  padding: 20px 0 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu a {
  display: block;
  padding: 14px 40px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--border);
}

.mobile-menu .mobile-sub a {
  padding-left: 60px;
  font-size: 12px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.05em;
  color: #666;
}

/* ============================================
   HERO SLIDER
============================================ */
.hero-slider {
  position: relative;
  height: 75vh;
  overflow: hidden;
  margin-top: var(--nav-height);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-1 { background-image: url('https://interiorsbyjustdesign.com/wp-content/uploads/slides/slide1.webp'); }
.slide-2 { background-image: url('https://interiorsbyjustdesign.com/wp-content/uploads/slides/slide2.webp'); }
.slide-3 { background-image: url('https://interiorsbyjustdesign.com/wp-content/uploads/slides/slide3.jpg'); }
.slide-4 { background-image: url('https://interiorsbyjustdesign.com/wp-content/uploads/slides/slide4.jpg'); }
.slide-5 { background-image: url('https://interiorsbyjustdesign.com/wp-content/uploads/slides/slide5.jpg'); }
.slide-6 { background-image: url('https://interiorsbyjustdesign.com/wp-content/uploads/slides/slide6.jpg'); }

.slide-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 14px;
}

.slide.active { opacity: 1; }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
}

.slide-content {
  position: absolute;
  bottom: 80px;
  left: 80px;
  right: 80px;
  color: var(--white);
  text-align: center;
}

.slide-content h1 {
  font-family: 'Austrian', 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.slide-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

/* Slider controls */
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 18px;
}

.slider-prev { left: 30px; }
.slider-next { right: 30px; }
.slider-prev:hover,
.slider-next:hover { background: rgba(255,255,255,0.3); }

.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}

.slider-dot.active { background: var(--white); }

/* ============================================
   QUOTE + INTRO SECTION
============================================ */
.quote-intro-section {
  background: #d9d4cc;
  padding: 70px 40px 80px;
  text-align: center;
}

.quote-script {
  font-family: 'Austrian', 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 38px);
  font-style: italic;
  font-weight: 400;
  color: var(--black);
  line-height: 1.5;
  margin-bottom: 44px;
  letter-spacing: 0.01em;
}

.quote-intro-body {
  max-width: 780px;
  margin: 0 auto;
}

.quote-intro-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 18px;
}

.quote-intro-body p {
  font-size: 14px;
  color: #4a4540;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ============================================
   MEET ROBYN
============================================ */
.meet-robyn-section {
  background: var(--white);
  padding: 80px 60px;
}

.meet-robyn-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.meet-robyn-heading {
  font-family: 'Austrian', 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  font-style: normal;
  color: var(--black);
  margin-bottom: 24px;
}

.meet-robyn-text p {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 18px;
}

.text-link-rose {
  color: #c0627a;
  text-decoration: none;
}
.text-link-rose:hover { text-decoration: underline; }

.meet-robyn-photo img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: grayscale(20%);
}

@media (max-width: 768px) {
  .meet-robyn-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0;
  }
  .meet-robyn-section { padding: 60px 24px; }
}

/* ============================================
   FEATURED PROJECTS
============================================ */
.featured-projects-section {
  background: var(--white);
  padding: 70px 60px 50px;
}

.featured-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 6px;
}

.featured-large {
  display: block;
  overflow: hidden;
}

.featured-large img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.featured-large:hover img { transform: scale(1.03); }

.featured-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.featured-small {
  display: block;
  overflow: hidden;
  flex: 1;
}

.featured-small img {
  width: 100%;
  height: 100%;
  min-height: 215px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.featured-small:hover img { transform: scale(1.03); }

/* ============================================
   CONSULTATION CTA
============================================ */
.consult-cta-section {
  background: var(--white);
  padding: 60px 40px 80px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.consult-phones {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-phone {
  display: inline-block;
  padding: 12px 36px;
  background: var(--taupe);
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: background 0.2s;
}

.btn-phone:hover { background: var(--gold); color: var(--white); }

@media (max-width: 768px) {
  .featured-projects-section { padding: 50px 24px 40px; }
  .featured-grid { grid-template-columns: 1fr; }
  .featured-large img { height: 280px; }
  .featured-small img { min-height: 180px; }
}

/* ============================================
   PORTFOLIO GRID
============================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-item:hover img { transform: scale(1.05); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: background 0.3s;
}

.portfolio-item:hover .portfolio-overlay { background: rgba(0,0,0,0.35); }

.portfolio-label {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
}

.portfolio-item:hover .portfolio-label {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   SERVICES GRID
============================================ */
.services-section {
  background: var(--white);
  padding: 80px 40px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  padding: 32px 24px;
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 14px;
}

.service-card p {
  font-size: 13px;
  color: #777;
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials-section {
  background: var(--off-white);
  padding: 80px 40px;
  text-align: center;
}

.testimonial-slider {
  max-width: 750px;
  margin: 40px auto 0;
  position: relative;
}

.testimonial-item {
  display: none;
}

.testimonial-item.active { display: block; }

.testimonial-item blockquote {
  font-family: 'Austrian', 'Playfair Display', serif;
  font-size: clamp(17px, 2vw, 22px);
  font-style: italic;
  font-weight: 400;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 24px;
}

.testimonial-author {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

/* ============================================
   BEFORE / AFTER SECTION
============================================ */
.before-after-section {
  padding: 80px 40px;
  background: var(--white);
  text-align: center;
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  margin-top: 50px;
}

.ba-item {
  position: relative;
  overflow: hidden;
}

.ba-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s;
}

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

.ba-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--white);
  padding: 4px 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
}

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
  background: var(--black);
  padding: 80px 40px;
  text-align: center;
}

.cta-section h2 {
  font-family: 'Austrian', 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-style: italic;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  font-size: 14px;
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover { background: #8a7d5e; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover { background: #333; }

/* ============================================
   PRESS SECTION
============================================ */
.press-section {
  padding: 50px 40px;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.press-logos img {
  height: 90px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity 0.2s;
}

.press-logos img:hover { opacity: 0.8; }

/* ============================================
   FOOTER
============================================ */
.site-footer {
  background: #1a1814;
  padding: 60px 40px 30px;
  color: rgba(255,255,255,0.6);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo img {
  height: 180px;
  width: auto;
  margin-bottom: 18px;
  opacity: 0.85;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

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

.footer-social a {
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  transition: color 0.2s;
}

.footer-social a:hover { color: var(--gold); }

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-links li { margin-bottom: 8px; }

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ============================================
   INNER PAGE HERO
============================================ */
.page-hero {
  background: var(--off-white);
  padding: 100px 40px 60px;
  text-align: center;
  margin-top: var(--nav-height);
}

.page-hero .eyebrow { margin-bottom: 12px; }

.page-hero h1 {
  font-family: 'Austrian', 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 400;
  font-style: italic;
}

/* ============================================
   CONTENT PAGE
============================================ */
.page-content {
  padding: 60px 40px;
}

.page-content-inner {
  max-width: 860px;
  margin: 0 auto;
}

.page-content h2 {
  font-family: 'Austrian', 'Playfair Display', serif;
  font-size: 28px;
  font-style: italic;
  margin: 40px 0 16px;
}

.page-content p {
  margin-bottom: 18px;
  font-size: 15px;
  color: #555;
}

/* ============================================
   BEFORE/AFTER PAGE
============================================ */
.ba-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 60px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.ba-project {
  border: 1px solid var(--border);
  overflow: hidden;
}

.ba-project-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.ba-project-images img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.ba-project-info {
  padding: 20px;
}

.ba-project-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ba-project-info p {
  font-size: 13px;
  color: #777;
}

/* ============================================
   TOWN PAGES
============================================ */
.town-page .page-hero {
  background: var(--off-white);
}

/* ============================================
   CONTACT PAGE
============================================ */
.contact-section {
  padding: 60px 40px;
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-form label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--black);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--black);
  margin-bottom: 24px;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.contact-form textarea { height: 140px; resize: vertical; }

.contact-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  margin-top: 28px;
}

.contact-info p { font-size: 14px; color: #555; }

/* ============================================
   BLOG / NEWS
============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  border: none;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.blog-card:hover { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }

.blog-card-img {
  height: 220px;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.blog-card:hover .blog-card-img img { transform: scale(1.04); }

.blog-card-body {
  padding: 24px;
}

.blog-card-body .eyebrow { margin-bottom: 10px; }

.blog-card-body h3 {
  font-family: 'Austrian', 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  margin-bottom: 12px;
}

.blog-card-body p {
  font-size: 13px;
  color: #777;
  line-height: 1.7;
}

/* ============================================
   REVIEWS PAGE
============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 60px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.review-card {
  background: var(--off-white);
  padding: 32px;
  border-left: 3px solid var(--gold);
}

.review-card blockquote {
  font-family: 'Austrian', 'Playfair Display', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.6;
}

.review-card .reviewer {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .container,
  .container--narrow { padding: 0 24px; }

  .section,
  .section--lg { padding: 60px 0; }

  .nav-menu { display: none; }
  .nav-toggle { display: flex; }

  .hero-slider { height: 100svh; }

  .slide-content { left: 30px; right: 30px; bottom: 60px; }
  .slide-content h1 { font-size: 32px; }

  .portfolio-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .services-grid { grid-template-columns: 1fr; gap: 20px; }

  .ba-grid { grid-template-columns: 1fr; }
  .ba-page-grid { grid-template-columns: 1fr; padding: 40px 24px; }

  .contact-inner { grid-template-columns: 1fr; gap: 40px; }

  .blog-grid { grid-template-columns: 1fr; padding: 40px 24px; }
  .reviews-grid { grid-template-columns: 1fr; padding: 40px 24px; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .press-logos { gap: 20px; }
  .press-logos img { height: 50px; }

  /* Page hero */
  .page-hero { padding: 60px 24px 40px; }

  /* Page content */
  .page-content { padding: 40px 24px; }

  /* CTA block */
  .cta-block { padding: 56px 24px; }

  /* Consult banner */
  .consult-banner { padding: 56px 24px; }

  /* Keep consultation btn on mobile */
  .btn-consultation { font-size: 9px; padding: 8px 14px; }

  /* Nav logo smaller */
  .nav-logo img { height: 70px; }

  .slider-prev { left: 12px; }
  .slider-next { right: 12px; }

  .quote-section { padding: 50px 24px; }
  .intro-section { padding: 60px 24px; }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* ============================================
   GLOBAL COMPONENTS — single source of truth
============================================ */

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* Three-column grid */
.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px;
}

/* Section wrappers */
.section { padding: 80px 40px; }
.section--white { background: var(--white); }
.section--offwhite { background: var(--off-white); }
.section--dark { background: var(--black); color: var(--white); }
.section--gold { background: var(--gold); color: var(--white); }
.section--taupe { background: #d9d4cc; }

.section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* Typography helpers */
.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.section--dark .section-eyebrow,
.section--gold .section-eyebrow { color: rgba(255,255,255,0.7); }

.section-title {
  font-family: 'Austrian', 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 24px;
}

.section-body {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  max-width: 640px;
}
.section--dark .section-body { color: rgba(255,255,255,0.75); }

/* Card */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px;
}
.card h3 {
  font-family: 'Austrian', 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  margin-bottom: 12px;
}
.card p { font-size: 14px; color: #666; line-height: 1.7; }

/* Image with caption */
.img-wrap { position: relative; overflow: hidden; }
.img-wrap img { width: 100%; display: block; object-fit: cover; }
.img-caption {
  font-size: 12px;
  color: #999;
  text-align: center;
  padding: 8px 0;
  font-style: italic;
}

/* CTA block */
.cta-block {
  text-align: center;
  padding: 80px 40px;
  background: var(--black);
  color: var(--white);
}
.cta-block .section-title { color: var(--white); margin-bottom: 16px; }
.cta-block p { color: rgba(255,255,255,0.7); margin-bottom: 32px; font-size: 15px; }
.cta-phones {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-phones a {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid var(--taupe);
  color: var(--white);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: background 0.3s, color 0.3s;
}
.cta-phones a:hover { background: var(--white); color: var(--black); }

/* Process steps */
.steps { counter-reset: step; }
.step {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  align-items: flex-start;
}
.step::before {
  counter-increment: step;
  content: counter(step, upper-roman);
  font-family: 'Austrian', serif;
  font-size: 28px;
  font-style: italic;
  color: var(--gold);
  min-width: 48px;
  flex-shrink: 0;
}
.step h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.step p { font-size: 14px; color: #666; line-height: 1.7; }

/* Page content styles */
.page-content h1,
.page-content h2,
.page-content h3 {
  font-family: 'Austrian', 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  color: var(--black);
  margin: 32px 0 14px;
}
.page-content h1 { font-size: clamp(28px,3vw,44px); }
.page-content h2 { font-size: clamp(22px,2.5vw,34px); }
.page-content h3 { font-size: 22px; }
.page-content ul, .page-content ol {
  margin: 0 0 18px 24px;
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}
.page-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 24px 0;
}
.page-content a { color: var(--gold); }
.page-content a:hover { color: var(--black); }
.page-content strong { color: var(--black); font-weight: 600; }

/* Responsive */
@media (max-width: 768px) {
  .two-col, .three-col { grid-template-columns: 1fr; gap: 32px; padding: 48px 20px; }
  .two-col.reverse { direction: ltr; }
  .section { padding: 48px 20px; }
  .cta-phones { flex-direction: column; align-items: center; }
}

/* ============================================
   BLOG
============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.blog-card { display: flex; flex-direction: column; }
.blog-card__img { display: block; overflow: hidden; }
.blog-card__img img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.4s; display: block; }
.blog-card__img:hover img { transform: scale(1.04); }
.blog-card__body { padding: 24px 0; flex: 1; display: flex; flex-direction: column; }
.blog-card__date { font-size: 11px; color: #999; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.blog-card__title { font-family: 'Austrian', 'Playfair Display', serif; font-size: 22px; font-style: italic; font-weight: 400; line-height: 1.3; margin-bottom: 12px; }
.blog-card__title a { color: var(--black); text-decoration: none; }
.blog-card__title a:hover { color: var(--gold); }
.blog-card__excerpt { font-size: 14px; color: #666; line-height: 1.7; flex: 1; margin-bottom: 16px; }
.blog-card__link { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); text-decoration: none; }

/* ============================================
   PORTFOLIO GRID
============================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.portfolio-item { display: block; overflow: hidden; aspect-ratio: 1; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; display: block; }
.portfolio-item:hover img { transform: scale(1.05); }

/* ============================================
   REVIEWS GRID
============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

/* ============================================
   BTN OUTLINE
============================================ */
.btn-outline {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid var(--black);
  color: var(--black);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}
.btn-outline:hover { background: var(--black); color: var(--white); }

/* ============================================
   RESPONSIVE ADDITIONS
============================================ */
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .three-col { grid-template-columns: 1fr; }
}

/* ============================================
   CONSULTATION BANNER (full-width kitchen bg)
============================================ */
.consult-banner {
  position: relative;
  background-image: url('https://interiorsbyjustdesign.com/wp-content/uploads/2026/05/Bauman-JC-101.jpg');
  background-size: cover;
  background-position: center 40%;
  padding: 90px 60px;
  overflow: hidden;
}
.consult-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.52);
}
.consult-banner__content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}
.consult-banner__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.consult-banner__title {
  font-family: 'Austrian', 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.2;
}
.consult-banner__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.consult-banner__btn {
  display: inline-block;
  padding: 13px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.consult-banner__btn--white {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
}
.consult-banner__btn--white:hover {
  background: transparent;
  color: var(--white);
}
.consult-banner__btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}
.consult-banner__btn--outline:hover {
  background: var(--white);
  color: var(--black);
}
@media (max-width: 600px) {
  .consult-banner { padding: 60px 24px; }
  .consult-banner__btns { flex-direction: column; }
}

/* ============================================
   RALEWAY — ACCENT FONT (matches live site)
============================================ */
.accent-text,
.nav-eyebrow,
blockquote cite,
.testimonial-author {
  font-family: 'Raleway', sans-serif;
}

/* ============================================
   LONG ISLAND MEET YOUR SECTION
============================================ */
.li-meet-section {
  background: var(--off-white);
  text-align: center;
  padding: 80px 40px;
}
.li-meet-section__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--taupe);
  display: block;
  margin-bottom: 10px;
}
.li-meet-section__script {
  font-family: 'Austrian', 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 82px);
  font-style: italic;
  font-weight: 400;
  color: var(--black);
  line-height: 1.1;
  display: block;
}

/* Quote intro top rated heading */
.quote-intro-toprated {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  text-align: center;
  margin-bottom: 8px;
}

/* ============================================
   FIXES — services heading + consult banner image + gaps
============================================ */
.services-heading {
  font-family: 'Montserrat', sans-serif !important;
  font-size: clamp(22px, 3vw, 36px) !important;
  font-style: normal !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em !important;
  color: var(--black) !important;
  margin-top: 10px;
}

/* Fix consult banner to use kitchen image */
.consult-banner {
  background-image: url('https://interiorsbyjustdesign.com/wp-content/uploads/2026/05/spaces-kitchen-01-006-baumgarten-country-pointe-plainview-long-island-ny-JCCMD-2048x1366-1.jpg') !important;
}

/* Fix Meet Robyn gap */
.meet-robyn-section {
  padding: 80px 60px !important;
}
.meet-robyn-inner {
  gap: 60px !important;
}

/* Fix quote section bottom spacing */
.quote-intro-section {
  padding-bottom: 60px !important;
}

/* ============================================
   FEATURED PROJECTS — left image full height match
============================================ */
.featured-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
  align-items: stretch !important;
}
.featured-large {
  display: block !important;
  height: 100% !important;
}
.featured-large img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}
.featured-stack {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  height: 100% !important;
}
.featured-small {
  display: block !important;
  flex: 1 !important;
  overflow: hidden !important;
}
.featured-small img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* ============================================
   SPACES & ROOMS PAGE
============================================ */
.spaces-hero {
  background: var(--off-white);
  padding: 140px 40px 120px;
  text-align: center;
  margin-top: var(--nav-height);
}
.spaces-hero__inner .eyebrow { color: var(--gold); }
.spaces-hero__inner h1 {
  font-family: 'Austrian', 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 54px);
  font-style: italic;
  font-weight: 400;
  color: var(--black);
  margin: 12px 0;
}
.spaces-hero__sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #777;
  max-width: 560px;
  margin: 0 auto;
}
.spaces-section { padding: 80px 0; background: var(--white); }
.spaces-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 500;
  font-style: normal;
  text-align: center;
  letter-spacing: 0.01em;
  margin-bottom: 60px;
  color: var(--black);
}
.spaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.spaces-card {
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.spaces-card__img {
  height: 380px;
  overflow: hidden;
}
.spaces-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.spaces-card:hover .spaces-card__img img { transform: scale(1.05); }
.spaces-card__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  padding: 18px 0 6px;
  text-align: center;
}
.spaces-cta {
  text-align: center;
  padding: 60px 0 20px;
}
.spaces-cta h3 {
  font-family: 'Austrian', 'Playfair Display', serif !important;
  font-size: clamp(28px, 3vw, 42px);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--black);
  margin: 10px 0 28px;
}
@media (max-width: 900px) {
  .spaces-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .spaces-grid { grid-template-columns: 1fr; }
  .spaces-card__img { height: 260px; }
}

/* ============================================
   BEFORE/AFTER SUB-GALLERY GRID
============================================ */
.ba-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.ba-gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.ba-nav {
  text-align: center;
  margin-bottom: 40px;
}
.btn-outline-dark {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--black);
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-dark:hover { background: var(--black); color: var(--white); }
@media (max-width: 768px) {
  .ba-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-gallery-item img { height: 200px; }
}
@media (max-width: 480px) {
  .ba-gallery-grid { grid-template-columns: 1fr; }
}

/* ============================================
   DROPDOWN NAV — matches live site style
============================================ */
.nav-menu li.has-dropdown {
  position: relative;
}

.nav-arrow {
  font-size: 9px;
  margin-left: 4px;
  opacity: 0.6;
  vertical-align: middle;
}

.nav-menu li.has-dropdown .dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  min-width: 240px;
  padding: 8px 0;
  list-style: none;
  box-shadow: 0 16px 48px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.05);
  border: 1px solid rgba(156,143,108,0.15);
  border-radius: 2px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  pointer-events: none;
}

.nav-menu li.has-dropdown:hover .dropdown,
.nav-menu li.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-menu li.has-dropdown .dropdown li {
  border-bottom: none;
}

.nav-menu li.has-dropdown .dropdown li a {
  display: block;
  padding: 9px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s, letter-spacing 0.2s;
}
.nav-menu li.has-dropdown .dropdown li a:hover {
  color: var(--black);
  letter-spacing: 0.18em;
  background: transparent;
}

/* ============================================
   TEAM PAGE
============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}
.team-card { text-align: center; }
.team-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  margin-bottom: 16px;
}
.team-card h3 {
  font-family: 'Austrian','Playfair Display',serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  margin-bottom: 4px;
}
.team-title {
  font-family: 'Montserrat',sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 12px;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }

/* ============================================
   PRESS PAGE
============================================ */
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.press-item img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--border);
}
@media (max-width: 768px) { .press-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .press-grid { grid-template-columns: 1fr; } }

/* ============================================
   MY JOURNEY PAGE
============================================ */
.journey-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--black);
}
.journey-video-heading {
  font-family: 'Montserrat',sans-serif !important;
  font-size: clamp(16px,2vw,22px) !important;
  font-weight: 500 !important;
  font-style: normal !important;
  text-align: center;
  margin: 60px 0 32px;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
@media (max-width: 640px) { .video-grid { grid-template-columns: 1fr; } }

/* ============================================
   FUN FACTS PAGE
============================================ */
.funfacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
}
.funfact-item { padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.funfact-num {
  display: block;
  font-family: 'Austrian','Playfair Display',serif;
  font-size: 48px;
  font-style: italic;
  color: var(--taupe);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 8px;
}
.funfact-item h3 {
  font-family: 'Montserrat',sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  font-style: normal !important;
  margin-bottom: 12px;
  color: var(--black);
}
.funfact-item p { font-size: 15px; line-height: 1.7; }
@media (max-width: 640px) { .funfacts-grid { grid-template-columns: 1fr; } }

/* Before & After Hub — Austrian script header (matches live site) */
.ba-hero {
  background: #fff;
  padding: 60px 40px 50px;
  border-bottom: 1px solid #f0ece4;
}
.ba-hero .spaces-hero__inner .eyebrow {
  color: #b0aca4;
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 700;
}
.ba-hero .ba-hero__title {
  font-family: 'Austrian', 'Playfair Display', serif;
  font-size: 41px;
  font-weight: 500;
  font-style: normal;
  color: var(--black);
  margin: 10px 0 0;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .ba-hero .ba-hero__title { font-size: 28px; }
}

/* ========== CONTACT PAGE ========== */
.contact-wrap { padding: 60px 0 80px; background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; align-items: start; }

/* Info Column */
.contact-services { font-size: 13px; color: #777; margin: 6px 0 28px; }
.contact-methods { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.contact-method {
  display: flex; flex-direction: column; gap: 2px;
  padding: 14px 18px; border: 1px solid #e8e3d9;
  text-decoration: none; color: var(--black);
  transition: border-color 0.2s, background 0.2s;
}
.contact-method:hover { border-color: var(--gold); background: #faf8f4; }
.contact-method__label { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.contact-method__number { font-family: 'Austrian','Playfair Display',serif; font-size: 22px; font-style: italic; }
.contact-method__tag { font-size: 11px; color: #888; }
.contact-method__sub { font-size: 13px; color: #555; }
.contact-address { margin-bottom: 28px; font-size: 14px; line-height: 1.7; color: #444; }
.contact-address p { margin: 0 0 4px; }
.contact-satisfaction { padding: 16px; background: #faf8f4; border-left: 3px solid var(--gold); }
.contact-satisfaction__badge { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 6px; }
.contact-satisfaction p { font-size: 13px; color: #555; line-height: 1.6; margin: 0; }

/* Form */
.contact-form__title { font-family: 'Austrian','Playfair Display',serif; font-size: 28px; font-style: italic; margin: 4px 0 24px; color: var(--black); }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: flex; flex-direction: column; gap: 0; }
.form-row--2 { flex-direction: row; gap: 12px; }
.form-row--3 { flex-direction: row; gap: 12px; }
.form-row--2 .form-field,
.form-row--3 .form-field { flex: 1; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; padding: 11px 14px; border: 1px solid #ddd8ce;
  font-family: 'Montserrat', sans-serif; font-size: 13px;
  background: #faf8f4; color: var(--black); outline: none;
  transition: border-color 0.2s; box-sizing: border-box;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--gold); }
.form-field textarea { resize: vertical; }
.form-radio-group { display: flex; gap: 20px; padding: 8px 0; }
.form-radio { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--black); cursor: pointer; }
.btn-contact-submit {
  background: var(--black); color: #fff; border: none;
  padding: 14px 32px; font-family: 'Montserrat',sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; cursor: pointer; transition: background 0.2s; margin-top: 4px;
}
.btn-contact-submit:hover { background: var(--gold); }

/* Towns */
.contact-towns { margin-top: 60px; padding-top: 40px; border-top: 1px solid #f0ece4; text-align: center; }
.contact-towns__list { font-size: 13px; color: #888; line-height: 2; max-width: 860px; margin: 0 auto; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row--2, .form-row--3 { flex-direction: column; }
}

/* ========== REVIEWS PAGE ========== */
.reviews-wrap { padding: 60px 0 80px; background: #fff; }
.reviews-intro { text-align: center; margin-bottom: 50px; }
.reviews-intro__title { font-family: 'Austrian','Playfair Display',serif; font-size: clamp(24px,3vw,38px); font-style: italic; font-weight: 400; color: var(--black); margin: 8px 0 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 60px; }
.review-card { background: #faf8f4; padding: 28px 24px; border-bottom: 3px solid var(--gold); display: flex; flex-direction: column; gap: 14px; }
.review-card__stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.review-star { color: var(--gold); }
.review-card__quote { font-family: 'Austrian','Playfair Display',serif; font-size: 16px; font-style: italic; line-height: 1.7; color: var(--black); margin: 0; }
.review-card__author { margin-top: auto; }
.review-card__name { display: block; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.review-card__loc { display: block; font-size: 12px; color: #999; margin-top: 2px; }
.reviews-external { text-align: center; padding-top: 20px; }
.reviews-external__links { display: flex; justify-content: center; gap: 16px; margin-top: 16px; flex-wrap: wrap; }
.reviews-ext-btn { padding: 12px 28px; border: 1px solid var(--gold); color: var(--black); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; transition: background 0.2s, color 0.2s; }
.reviews-ext-btn:hover { background: var(--gold); color: #fff; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ========== FAQ PAGE ========== */
.faq-wrap { padding: 60px 0 80px; background: #fff; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid #e8e3d9; }
.faq-item:first-child { border-top: 1px solid #e8e3d9; }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; background: none; border: none; cursor: pointer; text-align: left;
  font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 600;
  color: var(--black); gap: 16px;
}
.faq-question:hover { color: var(--gold); }
.faq-question[aria-expanded="true"] { color: var(--gold); }
.faq-icon { font-size: 22px; font-weight: 300; color: var(--gold); flex-shrink: 0; line-height: 1; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { padding: 0 0 22px; font-size: 14px; line-height: 1.8; color: #555; margin: 0; }

/* ============================================
   LIGHTBOX
   ============================================ */
#ibjd-lb {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
#ibjd-lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
}
#ibjd-lb-stage {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#ibjd-lb-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  border-radius: 4px;
}
#ibjd-lb-counter {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  margin-top: 10px;
  font-family: sans-serif;
}
#ibjd-lb-close {
  position: fixed;
  top: 18px;
  right: 22px;
  z-index: 3;
  background: none;
  border: none;
  color: #fff;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity .2s;
}
#ibjd-lb-close:hover { opacity: 1; }
#ibjd-lb-prev, #ibjd-lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 28px;
  padding: 16px 20px;
  cursor: pointer;
  border-radius: 4px;
  transition: background .2s;
}
#ibjd-lb-prev:hover, #ibjd-lb-next:hover { background: rgba(255,255,255,0.25); }
#ibjd-lb-prev { left: 16px; }
#ibjd-lb-next { right: 16px; }
@media (max-width: 600px) {
  #ibjd-lb-prev { left: 4px; padding: 12px 14px; }
  #ibjd-lb-next { right: 4px; padding: 12px 14px; }
}
