/* CSS Design System for Taozijia Photography - Premium Editorial Responsive Layout */

/* Editorial Typography Import */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
  /* Curated Fine-Art Palette (No pure black/white, organic warm hues) */
  --color-bg-primary: #FAF9F6;      /* Warm Alabaster */
  --color-bg-secondary: #F4F0EA;    /* Soft Warm Stone / Oatmeal */
  --color-text-primary: #1E251C;    /* Deep Olive Charcoal */
  --color-text-secondary: #5C6259;  /* Muted Sage Slate */
  --color-border-soft: #E5DFD5;     /* Warm Sand Border */
  --color-border-dark: #2D362B;
  
  /* Brand Accents */
  --color-brand-ochre: #C59B73;     /* Muted Gold / Ochre Champagne */
  --color-brand-sage: #5E6F58;      /* Warm Forest Sage */
  --color-brand-sage-hover: #475342;
  --color-brand-terracotta: #D0886A;/* Muted Terracotta Accent */

  /* Fonts */
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Spacing Constraints (Aligned with navigation header width) */
  --width-max: 100rem;
  --width-wide: 100rem;
  --width-normal: 100rem;
  --width-medium: 66rem;
  --width-content: 100rem;
  --width-narrow: 46rem;
}

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

html {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8em;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
}

body {
  background-color: var(--color-bg-primary);
  overflow-x: hidden;
}

/* Body No Scroll state */
.body--no-scroll {
  overflow: hidden !important;
  height: 100vh !important;
}

/* Base Typographic Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15em;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.375rem);
  line-height: 1.1em;
  margin-bottom: 0.35em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.2em;
  margin-bottom: 0.4em;
}

h3 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.2em;
  margin-bottom: 0.5em;
}

h4 {
  font-size: 1.6rem;
  font-weight: 300;
}

p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.8em;
  font-weight: 350;
  color: var(--color-text-secondary);
  margin-bottom: 1.5em;
}

p b, p strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

a {
  color: var(--color-brand-ochre);
  text-decoration: none;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

a:hover {
  color: var(--color-text-primary);
}

hr {
  border: 0;
  height: 1px;
  background-color: var(--color-border-soft);
  margin: clamp(3rem, 6vw, 6rem) 0;
}

/* Width Layout Utilities */
.width-max {
  width: 100%;
  max-width: var(--width-max);
  margin: 0 auto;
}

.width-wide {
  width: 100%;
  max-width: var(--width-wide);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.width, .width-normal {
  width: 100%;
  max-width: var(--width-normal);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.width-medium {
  width: 100%;
  max-width: var(--width-medium);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.width-content {
  width: 100%;
  max-width: var(--width-content);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.width-narrow {
  width: 100%;
  max-width: var(--width-narrow);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
}

.font-center {
  text-align: center;
}

/* Header & Premium Navigation */
#header {
  background: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  position: sticky;
  height: 180px;
  top: -80px;
  z-index: 10000;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom: 1px solid transparent;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  width: 100%;
}

.header-wrap > * {
  /* Let explicit widths define children sizes */
}

.header-logo {
  width: 25%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.header-logo-img {
  display: block;
  overflow: hidden;
  text-indent: -10000px;
  width: 130px;
  height: 130px;
  background-image: url('../images/logo.webp');
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-menu {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-menu-mobile {
  display: none;
}

.header-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2rem;
}

.header-menu ul li {
  position: relative;
}

.header-menu ul li a {
  display: inline-block;
  padding: 0.5rem 0;
  color: var(--color-text-primary);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1em;
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
}

/* Underline Hover Reveal */
.header-menu ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: var(--color-brand-ochre);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-menu ul li a:hover {
  color: var(--color-brand-ochre);
}

.header-menu ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-menu ul > li.menu-item-has-children > a {
  padding-right: 18px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="%231E251C" stroke-width="2"><polyline points="6 9 12 15 18 9"/></svg>');
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: right center;
}

.header-menu ul li.menu-item-has-children:hover > a {
  color: var(--color-brand-ochre);
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="%23C59B73" stroke-width="2"><polyline points="18 15 12 9 6 15"/></svg>');
}

/* Desktop Submenu Cards */
.header-menu .sub-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: -20px;
  z-index: 100;
  background: var(--color-bg-primary);
  border-radius: 16px;
  border: 1px solid var(--color-border-soft);
  box-shadow: 0 20px 50px rgba(30,37,28,0.06);
  width: 440px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  
  /* Smooth Hover Tunnel & Delay Protection */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s step-end;
  transition-delay: 0.15s; /* 150ms delay on mouse leave to prevent accidental closure */
}

/* Hover Bridge: transparent buffer covering the 15px gap */
.header-menu .sub-menu::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 25px;
  background: transparent;
}

.header-menu ul li:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s; /* Appear instantly on hover */
}

.header-menu .sub-menu li {
  margin: 0;
  width: 100%;
  border-bottom: 1px solid var(--color-bg-secondary);
}

.header-menu .sub-menu li:last-child {
  border-bottom: none;
}

.header-menu .sub-menu li a {
  padding: 1rem 1.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  display: block;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  white-space: normal;
}

.header-menu .sub-menu li a::after {
  display: none;
}

.header-menu .sub-menu li a:hover {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
}

.menu-item__description {
  display: block;
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  font-weight: 350;
  line-height: 1.5em;
  margin-top: 0.25rem;
  white-space: normal;
}

/* Action button header */
.header-button {
  width: 25%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header-button-btn {
  font-size: 1rem;
  height: 3.25rem;
  line-height: 3.25rem;
  font-weight: 600;
  color: var(--color-bg-primary) !important;
  background-color: var(--color-brand-sage);
  border: 1px solid var(--color-brand-sage);
  border-radius: 1.625rem;
  padding: 0 2rem;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.02em;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-button-btn:hover {
  background-color: var(--color-brand-sage-hover);
  border-color: var(--color-brand-sage-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(94, 111, 88, 0.15);
}

/* Shrink header fixed states */
#header.fixed {
  height: 130px;
  top: -50px;
}
#header.fixed .header-logo-img {
  width: 95px;
  height: 95px;
}

#header.fixed2 {
  height: 90px;
  top: 0;
  border-bottom: 1px solid var(--color-border-soft);
}
#header.fixed2 .header-logo-img {
  width: 75px;
  height: 75px;
}
#header.fixed2 .header-menu ul li a {
  font-size: 0.95rem;
}
#header.fixed2 .header-button-btn {
  font-size: 0.9rem;
  height: 2.75rem;
  line-height: 2.75rem;
  padding: 0 1.5rem;
}

/* Section Headings */
.elm-heading {
  padding-top: clamp(4rem, 8vw, 8rem);
  padding-bottom: clamp(2rem, 4vw, 4rem);
}

.font-heading1 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: -0.03em;
}

.font-subheading {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.6em;
  font-weight: 300;
  color: var(--color-text-secondary);
  max-width: 44rem;
  margin: 1rem auto 0 auto;
}

/* Hero sliders carousel */
.elm-heroes {
  position: relative;
  margin-bottom: clamp(4rem, 8vw, 8rem);
  overflow: hidden;
}

.elm-heroes-slider {
  width: 100%;
}

.elm-item {
  width: 100%;
}

.elm-img {
  overflow: hidden;
  border-radius: 16px;
  background-color: var(--color-bg-secondary);
}

.elm-img img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Scroll Below button link */
.elm-heroes-below {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border-soft);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  z-index: 100;
  cursor: pointer;
  text-indent: -9999px;
  overflow: hidden;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%235E6F58" stroke-width="1.5"><line x1="12" y1="5" x2="12" y2="19"/><polyline points="19 12 12 19 5 12"/></svg>');
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 10px 25px rgba(30, 37, 28, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.elm-heroes-below:hover {
  transform: translateX(-50%) translateY(4px);
  box-shadow: 0 15px 30px rgba(30, 37, 28, 0.1);
}

/* Layout boxes, text grids */
.block-box {
  padding-top: clamp(4rem, 8vw, 8rem);
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

.elm-block-line-bottom {
  border-bottom: 1px solid var(--color-border-soft);
}

.box-text-cols {
  display: flex;
  justify-content: space-between;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.box-text-col1 {
  width: 46%;
}

.box-text-col2 {
  width: 48%;
  flex-grow: 1;
}

.box-text-col2 p {
  margin-bottom: 1.5rem;
}

.box-text-align-center .box-text-cols {
  justify-content: center;
}

.box-text-align-center .box-text-col2 {
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
}

.box-text-align-center .font-subheading {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.5vw, 1.875rem);
  line-height: 1.6em;
  color: var(--color-text-primary);
  font-weight: 350;
  max-width: 100%;
}

/* Services Stage Grid Layout (Upgraded Asymmetry) */
.elm-services {
  padding-top: clamp(4rem, 8vw, 8rem);
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

.box-text-background-color1 {
  background-color: var(--color-bg-secondary);
}

.elm-services-heading {
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.elm-services-list1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.elm-services-list1-item {
  background: var(--color-bg-primary);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(30, 37, 28, 0.02);
  border: 1px solid var(--color-border-soft);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

/* Staggered grid offset for luxury magazine feel */
.elm-services-list1-item:nth-child(even) {
  transform: translateY(2.5rem);
}

.elm-services-list1-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(30, 37, 28, 0.06);
}

.elm-services-list1-item:nth-child(even):hover {
  transform: translateY(2.1rem);
}

.elm-services-list1-image {
  overflow: hidden;
}

.elm-services-list1-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.elm-services-list1-item:hover .elm-services-list1-image img {
  transform: scale(1.03);
}

.elm-services-list1-text {
  padding: 3rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.elm-services-list1-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.elm-services-list1-text .font-text-small {
  margin-bottom: 2rem;
  line-height: 1.7em;
  font-weight: 350;
  flex-grow: 1;
}

.font-text-link-arrow a {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-brand-ochre);
  letter-spacing: 0.02em;
}

.font-text-link-arrow a:after {
  content: '→';
  margin-left: 8px;
  font-size: 1.25rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.font-text-link-arrow a:hover:after {
  transform: translateX(6px);
}

/* Blog Card Grid Styles */
.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}

.blog-list-item {
  background: var(--color-bg-primary);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(30, 37, 28, 0.02);
  border: 1px solid var(--color-border-soft);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(30, 37, 28, 0.06);
}

.blog-list-image {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.blog-list-image::before {
  content: "";
  display: block;
  padding-top: 70%; /* 4:3 landscape ratio */
}

.blog-list-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-list-item:hover .blog-list-image img {
  transform: scale(1.03);
}

.blog-list-text {
  padding: 2.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-list-text h3 {
  font-size: 1.35rem;
  line-height: 1.4em;
  font-family: var(--font-heading);
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--color-text-primary);
}

.blog-list-text .font-text-small {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6em;
  margin-bottom: 1.5rem;
  font-weight: 350;
}

.blog-list-text .font-text-link-arrow a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-brand-ochre);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.blog-list-text .font-text-link-arrow a:after {
  display: none;
}

.blog-list-text .font-text-link-arrow a:hover {
  color: var(--color-brand-sage);
}

@media (max-width: 1023px) {
  .blog-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .blog-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .blog-list-text {
    padding: 1.75rem;
  }
}

/* Reviews and Testimonials Carousel Styles */
.elm-reviews {
  padding-top: clamp(4rem, 8vw, 8rem);
  padding-bottom: clamp(4rem, 8vw, 8rem);
}

.elm-reviews-heading h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
}

.elm-reviews-slider-item {
  display: flex;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: 1.5rem 0;
}

.elm-reviews-slider-image {
  width: 40%;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 20px;
}

.elm-reviews-slider-image img {
  width: 100%;
  height: 480px !important;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(30,37,28,0.04);
}

.elm-reviews-slider-text {
  width: 55%;
  text-align: left;
}

.elm-reviews-slider-text .font-subheading {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.6em;
  color: var(--color-text-primary);
  font-weight: 350;
  font-style: italic;
  max-width: 100%;
  margin-bottom: 2rem;
}

.elm-reviews-name2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-brand-ochre);
}

/* Submenu Doors Navigation Cards */
.elm-doors {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  margin-top: 3rem;
}

.elm-doors-item {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  border: 1px solid var(--color-border-soft);
  box-shadow: 0 15px 35px rgba(30,37,28,0.02);
}

.elm-doors-wrap {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
}

.elm-doors-image {
  width: 100%;
  height: 100%;
}

.elm-doors-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.elm-doors-item:hover .elm-doors-image img {
  transform: scale(1.04);
}

.elm-doors-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem;
  background: linear-gradient(transparent, rgba(30,37,28,0.85));
  color: var(--color-bg-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  text-align: left;
}

/* Portfolios grid sections */
.elm-portfolio-image img {
  border-radius: 16px;
  height: 480px;
  object-fit: cover;
}

/* Utility helper class to handle layout states (toggled by scripts.js) */
.hidden {
  display: none !important;
}

/* Portfolio item filter drawers */
.eml-sort-line {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: flex-start;
}

.eml-sort-button {
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border-soft);
  color: var(--color-text-primary);
  padding: 0.75rem 2.25rem;
  border-radius: 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.eml-sort-button:hover {
  border-color: var(--color-brand-ochre);
  color: var(--color-brand-ochre);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(197, 155, 115, 0.08);
}

.eml-sort-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-brand-ochre);
  color: var(--color-bg-primary);
  font-size: 0.8rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  font-weight: 700;
}

.elm-sort-block {
  display: none;
  background: var(--color-bg-secondary);
  border-radius: 24px;
  padding: 3rem;
  margin-bottom: 3.5rem;
  border: 1px solid var(--color-border-soft);
  box-shadow: 0 20px 45px rgba(30, 37, 28, 0.03);
}

.elm-sort-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border-soft);
  padding-bottom: 1rem;
}

.elm-sort-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 450;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.eml-sort-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-primary);
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
  outline: none;
}

.eml-sort-close svg {
  stroke: currentColor;
  fill: none;
}

.eml-sort-close:hover {
  color: var(--color-brand-terracotta);
}

.elm-sort-description {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.65em;
  margin-bottom: 2rem;
}

.elm-sort-box {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.elm-sort-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.elm-sort-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: 0.02em;
}

.elm-sort-elms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.elm-sort-elm {
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border-soft);
  padding: 0.6rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  outline: none;
}

.elm-sort-elm svg {
  display: none;
  stroke: currentColor;
  fill: none;
}

.elm-sort-elm:hover {
  border-color: var(--color-brand-ochre);
  color: var(--color-brand-ochre);
}

.elm-sort-elm.active {
  background: var(--color-brand-sage);
  color: var(--color-bg-primary);
  border-color: var(--color-brand-sage);
}

.elm-sort-elm.active svg {
  display: inline-block;
}

.elm-sort-footer {
  display: flex;
  gap: 1.5rem;
}

.elm-sort-apply {
  background-color: var(--color-brand-sage);
  color: var(--color-bg-primary);
  border: 1px solid var(--color-brand-sage);
  padding: 0.85rem 2.5rem;
  border-radius: 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.elm-sort-apply:hover {
  background-color: var(--color-brand-sage-hover);
  border-color: var(--color-brand-sage-hover);
  box-shadow: 0 10px 20px rgba(94, 111, 88, 0.12);
}

.elm-sort-clear {
  background: transparent;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border-soft);
  padding: 0.85rem 2.5rem;
  border-radius: 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.elm-sort-clear:hover {
  border-color: var(--color-text-primary);
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
}

.elm-sort-nothing {
  text-align: center;
  padding: 5rem 2rem;
  background-color: var(--color-bg-secondary);
  border-radius: 24px;
  border: 1px solid var(--color-border-soft);
  margin-bottom: 4rem;
}

.elm-sort-nothing-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text-primary);
  margin-bottom: 2rem;
}

.elm-sort-nothing-clear {
  background-color: var(--color-brand-ochre);
  color: var(--color-bg-primary);
  border: 1px solid var(--color-brand-ochre);
  padding: 0.85rem 2.5rem;
  border-radius: 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.elm-sort-nothing-clear:hover {
  background-color: var(--color-text-primary);
  border-color: var(--color-text-primary);
  box-shadow: 0 10px 20px rgba(30, 37, 28, 0.1);
}

/* Photo Gallery Grid Items layout */
.elm-samples-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 3rem;
}

.elm-samples-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: 16px;
  border: 1px solid var(--color-border-soft);
}

/* Standard sizes matching WordPress markup */
.elm-samples-item.w100 {
  width: 100%;
}

.elm-samples-item.w70 {
  width: calc(70% - 12px);
}

.elm-samples-item.w50 {
  width: calc(50% - 12px);
}

.elm-samples-item.w30 {
  width: calc(30% - 16px);
}

.elm-samples-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  background-color: var(--color-bg-secondary);
}

.elm-img-horizontal {
  height: 380px;
}

.elm-img-vertical {
  height: 560px;
}

.elm-samples-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.elm-samples-wrap:hover img {
  transform: scale(1.03);
}

.elm-samples-tags {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.elm-samples-tags span {
  background: rgba(250, 249, 246, 0.9);
  backdrop-filter: blur(5px);
  color: var(--color-text-primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
}

/* Pricing Grid Lists (Upgraded Luxury Card Layout) */
.elm-prices2-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: clamp(3rem, 6vw, 6rem);
}

.elm-prices2-item {
  background: var(--color-bg-primary);
  border: 1.5px solid var(--color-border-soft);
  border-radius: 24px;
  padding: clamp(2.5rem, 5vw, 5rem);
  box-shadow: 0 20px 45px rgba(30, 37, 28, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.elm-prices2-item:hover {
  transform: translateY(-4px);
  border-color: var(--color-brand-ochre);
  box-shadow: 0 30px 60px rgba(30, 37, 28, 0.05);
}

.elm-prices2-title {
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  margin-bottom: 2rem;
  font-family: var(--font-heading);
  font-weight: 400;
}

.elm-prices2-description {
  font-size: 1.1rem;
  line-height: 1.7em;
  font-weight: 350;
  color: var(--color-text-secondary);
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.elm-prices2-pitch {
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: 2rem;
  font-size: 1.15rem;
  line-height: 1.6em;
}

/* Checklist features styles */
.elm-prices2-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  gap: 0.85rem;
}

.elm-prices2-features li {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  text-align: left;
  gap: 10px;
}

.elm-prices2-features li::before {
  content: "✓";
  color: var(--color-brand-ochre);
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1;
  margin-top: 2px;
}

.elm-prices2-price {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.font-price-box {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  font-family: var(--font-heading);
  line-height: 1;
}

.font-price-box .sing {
  font-size: 1.6rem;
  font-weight: 450;
  color: var(--color-brand-ochre);
  position: relative;
  top: -0.75rem;
  margin-right: 0.2rem;
}

.font-price-box .sum {
  font-size: clamp(3.5rem, 6vw, 4.5rem);
  font-weight: 450;
  color: var(--color-text-primary);
  line-height: 1;
  letter-spacing: -0.03em;
}

.font-price-box .tax {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-left: 0.3rem;
  align-self: flex-end;
  position: relative;
  bottom: 0.6rem;
}

.elm-prices2-booking {
  margin-bottom: 2.5rem;
  width: 100%;
}

.elm-button {
  background: var(--color-brand-sage);
  color: var(--color-bg-primary);
  border: 1px solid var(--color-brand-sage);
  padding: 1.15rem 3.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.elm-button:hover {
  background: var(--color-brand-sage-hover);
  border-color: var(--color-brand-sage-hover);
  box-shadow: 0 10px 20px rgba(94,111,88,0.15);
}

/* FAQ Accordion boxes */
.elm-faqs-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.elm-faqs-item {
  border: 1px solid var(--color-border-soft);
  border-radius: 12px;
  background: var(--color-bg-primary);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.elm-faqs-item.active {
  border-color: var(--color-brand-ochre);
}

.elm-faqs-question {
  padding: 1.5rem 2.25rem;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background-color 0.3s ease;
}

.elm-faqs-question svg {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  stroke: var(--color-text-primary);
  fill: none;
}

.elm-faqs-item.active .elm-faqs-question svg {
  transform: rotate(180deg);
  stroke: var(--color-brand-ochre);
}

.elm-faqs-question:hover {
  background-color: var(--color-bg-secondary);
}

.elm-faqs-answer {
  display: none;
  padding: 0 2.25rem 2.25rem 2.25rem;
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.7em;
}

/* Two-column Content Layout Grid (Desktop) */
.content-columns {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

/* Premium Minimalist Luxury Forms */
.form-feedback {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border-soft);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 24px;
}

.form-feedback label {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.form-feedback select,
.form-feedback input[type="text"],
.form-feedback textarea {
  border: none !important;
  border-bottom: 1.5px solid var(--color-border-soft) !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0.75rem 0 !important;
  font-size: 1.1rem;
  transition: border-color 0.3s ease !important;
}

.form-feedback select:focus,
.form-feedback input[type="text"]:focus,
.form-feedback textarea:focus {
  border-bottom-color: var(--color-text-primary) !important;
}

/* Awards & Recognition Logos block */
.elm-awards {
  padding-top: clamp(4rem, 8vw, 8rem);
  padding-bottom: clamp(4rem, 8vw, 8rem);
  background-color: var(--color-bg-primary);
}

.elm-awards-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3rem 2rem;
  justify-items: center;
  align-items: center;
  margin-top: 3rem;
}

.elm-awards-item {
  width: 100%;
  max-width: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.elm-awards-item img {
  max-width: 100%;
  height: auto;
  filter: none !important;
  opacity: 0.95;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.elm-awards-item:hover img {
  filter: none !important;
  opacity: 1;
  transform: translateY(-4px) scale(1.04);
}

/* Global Footer Styles (Desktop Layout Grid) */
#footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border-soft);
}

.footer {
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.footer__row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem 2rem;
}

.footer__col {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer__title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.45rem;
  color: var(--color-text-primary);
  margin-bottom: 2rem;
}

/* Reset Footer Bullet Points */
.footer ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer ul li a {
  color: var(--color-text-secondary);
  font-weight: 400;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: var(--color-brand-ochre);
  text-decoration: none;
}

.footer__address {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.6em;
}

.footer__social a svg {
  fill: var(--color-text-primary) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer__social a:hover svg {
  fill: var(--color-brand-ochre) !important;
  transform: translateY(-3px);
}

/* Scroll top button */
#scroll-top {
  background-color: var(--color-brand-sage);
}
#scroll-top:hover {
  background-color: var(--color-brand-sage-hover);
}

/* Hamburger mobile button elements */
.header-burger {
  display: none;
}

.header-burger-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem;
  outline: none;
}

.header-burger-btn .title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--color-text-primary);
  font-family: var(--font-body);
}

.header-burger-btn .line {
  position: relative;
  width: 22px;
  height: 2px;
  background-color: var(--color-text-primary);
  display: inline-block;
  transition: background-color 0.3s ease;
}

.header-burger-btn .line::before,
.header-burger-btn .line::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background-color: var(--color-text-primary);
  left: 0;
  transition: transform 0.3s ease, top 0.3s ease;
}

.header-burger-btn .line::before {
  top: -6px;
}

.header-burger-btn .line::after {
  top: 6px;
}

.header-burger-btn.active .line {
  background-color: transparent;
}

.header-burger-btn.active .line::before {
  top: 0;
  transform: rotate(45deg);
}

.header-burger-btn.active .line::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ==========================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ========================================== */

/* 1. Large Laptops / Screens (under 1366px) */
@media (max-width: 1366px) {
  #header {
    height: 140px;
    top: -50px;
  }
  .header-logo-img {
    width: 100px;
    height: 100px;
  }
}

/* 2. Tablets (under 1024px) */
@media (max-width: 1023px) {
  #header {
    height: 90px !important;
    top: 0 !important;
    border-bottom: 1px solid var(--color-border-soft);
  }
  
  .header-wrap {
    height: 90px;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .header-wrap > * {
    width: auto !important;
  }
  
  /* Show Hamburger, hide standard menu row */
  .header-burger {
    display: block;
    order: 1;
  }
  
  .header-logo {
    order: 2;
  }
  
  .header-logo-img {
    width: 70px;
    height: 70px;
  }
  
  .header-button {
    order: 3;
  }
  
  .header-button-btn {
    font-size: 0.9rem;
    height: 2.75rem;
    line-height: 2.75rem;
    padding: 0 1.5rem;
  }
  
  /* Slide-out Sidebar Menu Drawer */
  .header-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100vh;
    background-color: var(--color-bg-primary);
    box-shadow: 15px 0 50px rgba(30, 37, 28, 0.12);
    z-index: 9999;
    padding: 7rem 2rem 2rem 2rem;
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
    overflow-y: auto;
  }
  
  .header-menu.active {
    left: 0;
  }
  
  .header-menu ul {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }
  
  .header-menu ul li a {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.5rem 0;
    display: block;
  }
  
  .header-menu ul li a::after {
    display: none; /* Hide hover underline line on mobile */
  }
  
  /* Mobile sub-menus display accordion style */
  .header-menu .sub-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0.5rem 0 0 1rem;
    display: none;
    width: 100%;
    animation: none;
  }
  
  .header-menu ul li.menu-item-has-children.active > ul.sub-menu {
    display: flex;
  }
  
  /* Interactive Background Overlay */
  .header-menu-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30, 37, 28, 0.4);
    backdrop-filter: blur(4px);
    z-index: 9998;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .header-menu.active ~ .header-menu-background {
    display: block;
    opacity: 1;
  }
  
  /* Grids collapse to 1 Column */
  .elm-services-list1 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  /* Disable staggered offset */
  .elm-services-list1-item {
    transform: none !important;
  }
  
  .elm-prices2-list {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .content-columns {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .elm-doors {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .elm-doors-wrap {
    height: 380px;
  }
}

/* 3. Small Tablets & Phones (under 768px) */
@media (max-width: 767px) {
  .box-text-cols {
    flex-direction: column;
    gap: 3rem;
  }
  
  .box-text-col1, .box-text-col2 {
    width: 100% !important;
  }
  
  .box-text-image-right .box-text-cols {
    flex-direction: column; /* keep standard stack order */
  }
  
  /* Portfolio Grid list collapse */
  .elm-samples-item.w70,
  .elm-samples-item.w50,
  .elm-samples-item.w30 {
    width: 100% !important;
  }
  
  .elm-img-horizontal,
  .elm-img-vertical {
    height: 320px !important;
  }
  
  /* Testimonial slider layouts */
  .elm-reviews-slider-item {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .elm-reviews-slider-image {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .elm-reviews-slider-image img {
    height: 320px !important;
  }
  
  .elm-reviews-slider-text {
    width: 100%;
    text-align: center;
  }
  
  .elm-reviews-slider-text .font-subheading {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  /* Footer 2 Columns grid */
  .footer__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 1.5rem;
  }
  
  .footer__col {
    margin-bottom: 0;
  }
  
  /* Awards logos */
  .elm-awards-list {
    gap: 2rem;
  }
  
  .elm-awards-item {
    width: calc(33.33% - 1.5rem);
    min-width: 110px;
  }
}

/* 4. Small Phones (under 480px) */
@media (max-width: 480px) {
  #header {
    height: 75px !important;
  }
  .header-wrap {
    height: 75px;
    padding: 0 1rem;
  }
  .header-logo-img {
    width: 55px;
    height: 55px;
  }
  .header-button-btn {
    font-size: 0.8rem;
    height: 2.35rem;
    line-height: 2.35rem;
    padding: 0 1rem;
  }
  
  /* Footer 1 Column stack */
  .footer__row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer__copyright {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  
  .elm-awards-item {
    width: calc(50% - 1rem);
  }
}

/* Service Areas Redesign styling */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.region-card {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border-soft);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: left;
}

.region-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--color-text-primary);
  border-bottom: 1px solid var(--color-border-soft);
  padding-bottom: 0.75rem;
}

.region-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.region-card ul li {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  position: relative;
  padding-left: 1.25rem;
}

.region-card ul li::before {
  content: "•";
  color: var(--color-brand-ochre);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  line-height: 1;
}

.studio-callout {
  background-color: #FAF8F5;
  border-radius: 24px;
  padding: 4rem;
  margin-bottom: 6rem;
  border: 1px solid var(--color-border-soft);
  text-align: center;
}

.studio-callout-text {
  max-width: 44rem;
  margin: 0 auto;
}

.studio-callout h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: var(--color-text-primary);
}

.studio-callout p {
  font-size: 1.05rem;
  line-height: 1.75em;
  color: var(--color-text-secondary);
  margin-bottom: 2.5rem;
}

.location-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.location-showcase-card {
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border-soft);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}

.location-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(30, 37, 28, 0.04);
  border-color: var(--color-brand-ochre);
}

.location-card-image {
  position: relative;
  width: 100%;
}

.location-card-image::before {
  content: "";
  display: block;
  padding-top: 65%;
}

.location-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
}

.location-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--color-text-primary);
}

.location-card-content p {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.6em;
  margin-bottom: 1.5rem;
}

.location-tag {
  background-color: var(--color-bg-secondary);
  color: var(--color-brand-sage);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.4rem 1rem;
  border-radius: 1rem;
}

/* Service Areas Responsiveness */
@media (max-width: 1023px) {
  .regions-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .location-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .location-showcase-grid {
    grid-template-columns: 1fr;
  }
  .studio-callout {
    padding: 2.5rem 1.5rem;
  }
}

