/* NEW DESIGN 2025-01-XX: Theme styles from Vite/React project */

/* Font Face Declarations - Local Fonts */
@font-face {
  font-family: 'Inter';
  src: url('../font/inter/Inter-Light.woff2') format('woff2'),
       url('../font/inter/Inter-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

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

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

@font-face {
  font-family: 'Playfair Display';
  src: url('../font/playfair-display/PlayfairDisplay-Regular.woff2') format('woff2'),
       url('../font/playfair-display/PlayfairDisplay-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('../font/playfair-display/PlayfairDisplay-SemiBold.woff2') format('woff2'),
       url('../font/playfair-display/PlayfairDisplay-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display';
  src: url('../font/playfair-display/PlayfairDisplay-Bold.woff2') format('woff2'),
       url('../font/playfair-display/PlayfairDisplay-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* CSS Variables (from Tailwind config) */
:root {
  --background: 0 0% 100%;
  --foreground: 0 0% 6.7%;
  --card: 0 0% 100%;
  --card-foreground: 0 0% 6.7%;
  --popover: 0 0% 100%;
  --popover-foreground: 0 0% 6.7%;
  --primary: 0 0% 0%;
  --primary-foreground: 0 0% 100%;
  --secondary: 0 0% 33.3%;
  --secondary-foreground: 0 0% 100%;
  --muted: 0 0% 96%;
  --muted-foreground: 0 0% 40%;
  --accent: 0 0% 0%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 100%;
  --border: 0 0% 89%;
  --input: 0 0% 89%;
  --ring: 0 0% 0%;
  --divider: 0 0% 93%;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  margin: 0;
  padding: 0;
  padding-top: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Add padding when header is scrolled */
body.has-scrolled-header {
  padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin: 0;
}

/* Utility Classes */
.font-serif {
  font-family: 'Playfair Display', serif;
}

.font-sans {
  font-family: 'Inter', sans-serif;
}

.section-spacing {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section-spacing {
    padding: 7rem 0;
  }
}

.container-custom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container-custom {
    padding: 0 2rem;
  }
}

/* scroll-margin-top for sections is set dynamically in JS based on actual header height */

.piano-divider {
  height: 1px;
  background-color: hsl(var(--divider));
}

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: var(--transition-smooth);
}

.site-header--scrolled {
  background-color: hsl(var(--background));
  padding: 0.75rem 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.site-header--transparent {
  background-color: transparent;
  padding: 1.5rem 0;
}

.main-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .main-nav {
    padding: 0 2rem;
  }
}

.main-nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .main-nav-desktop {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    width: 100%;
    justify-items: stretch;
  }
}

.nav-left,
.nav-right {
  display: none;
}

@media (min-width: 1024px) {
  .nav-left {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
  }

  .nav-left li {
    display: inline-block;
    margin: 0;
    padding: 0;
  }

  .nav-right {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
  }

  .nav-right li {
    display: inline-block;
    margin: 0;
    padding: 0;
  }
}

.nav-link {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: var(--transition-smooth);
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  display: inline-block;
}

.nav-link:hover {
  border-bottom-color: currentColor;
}

.site-header--scrolled .nav-link {
  color: hsl(var(--foreground));
}

.site-header--scrolled .nav-link:hover {
  color: hsl(var(--primary));
}

.site-header--scrolled .nav-link--active {
  color: hsl(var(--primary));
  border-bottom-color: hsl(var(--primary));
}

.site-header--scrolled .nav-link--active:hover {
  color: hsl(var(--primary));
  opacity: 0.85;
}

.site-header--transparent .nav-link {
  color: white;
}

.site-header--transparent .nav-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.site-header--transparent .nav-link--active {
  color: white;
  border-bottom-color: white;
}

.site-header--transparent .nav-link--active:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Ensure active state is visible in all header states */
.nav-link--active {
  border-bottom-color: currentColor !important;
  font-weight: 600;
}

.site-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  outline: none;
  border: none;
  margin: 0 auto;
}

.site-logo img {
  transition: var(--transition-smooth);
  outline: none;
  border: none;
}

.site-header--scrolled .site-logo img {
  width: 5rem;
  height: 5rem;
}

.site-header--transparent .site-logo img {
  width: 150px;
  height: 150px;
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu-btn {
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header--transparent .mobile-menu-btn {
  color: #ffffff;
}

.site-header--scrolled .mobile-menu-btn {
  color: hsl(var(--foreground));
}

.mobile-menu-btn--active {
  color: #000000 !important;
}

.site-header--transparent .mobile-menu-btn--active {
  color: #000000 !important;
}

.mobile-menu-btn svg line {
  transition: var(--transition-smooth);
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
}

.mobile-menu-btn svg line {
  stroke: currentColor;
}

.mobile-menu-btn--active svg line:nth-child(1),
.mobile-menu-btn--active svg line:nth-child(3) {
  transform-origin: center;
  transition: var(--transition-smooth);
}

.mobile-menu-btn--active svg line:nth-child(1) {
  transform: rotate(45deg) translate(2px, 2px);
}

.mobile-menu-btn--active svg line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn--active svg line:nth-child(3) {
  transform: rotate(-45deg) translate(2px, -2px);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background-color: hsl(var(--background));
  padding-top: 6rem;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

@media (min-width: 1024px) {
  .mobile-menu-overlay {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }
}

.mobile-menu-overlay.is-visible {
  display: block;
  opacity: 1;
  visibility: visible;
}

body.mobile-menu-open {
  overflow: hidden;
}

.mobile-menu-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.mobile-menu-nav ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-nav a {
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  display: block;
  padding: 0.5rem 0;
  text-decoration: none;
  transition: var(--transition-smooth);
  color: hsl(var(--foreground));
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.mobile-menu-nav--active {
  color: hsl(var(--primary));
  font-weight: 600;
}

.mobile-menu-overlay .nav-link {
  color: hsl(var(--foreground)) !important;
  border-bottom: none !important;
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
}

.mobile-menu-overlay .nav-link:hover,
.mobile-menu-overlay .nav-link.mobile-menu-nav--active {
  color: hsl(var(--primary)) !important;
}

/* Hero Slider */
.hero-slider {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  transition: opacity 1s;
  opacity: 0;
}

.hero-slide--active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%);
}

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

.hero-slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide-text {
  text-align: center;
  color: white;
  max-width: 64rem;
  margin: 0 auto;
}

.hero-slide-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-slide-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-slide-title {
    font-size: 4.5rem;
  }
}

.hero-slide-subtitle {
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .hero-slide-subtitle {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-slide-subtitle {
    font-size: 1.5rem;
  }
}

.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  transition: var(--transition-smooth);
  z-index: 10;
}

.hero-nav-btn:hover {
  color: rgba(255, 255, 255, 0.7);
}

.hero-nav-btn--prev {
  left: 1rem;
}

@media (min-width: 768px) {
  .hero-nav-btn--prev {
    left: 2rem;
  }
}

.hero-nav-btn--next {
  right: 1rem;
}

@media (min-width: 768px) {
  .hero-nav-btn--next {
    right: 2rem;
  }
}

.hero-nav-btn svg {
  width: 2.5rem;
  height: 2.5rem;
}

@media (min-width: 768px) {
  .hero-nav-btn svg {
    width: 3rem;
    height: 3rem;
  }
}

.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.hero-indicator {
  height: 0.25rem;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  padding: 0;
}

.hero-indicator--active {
  width: 3rem;
  background-color: white;
}

.hero-indicator:not(.hero-indicator--active) {
  width: 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 0;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}

.btn:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.btn--lg {
  height: 2.75rem;
  padding: 0 2rem;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .btn--lg {
    font-size: 1.125rem;
    padding: 1.5rem 2rem;
  }
}

.btn--primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border: 2px solid hsl(var(--primary));
}

.btn--primary:hover {
  background-color: hsl(var(--background));
  color: hsl(var(--primary));
}

.btn--white {
  background-color: white;
  color: black;
  border: 2px solid white;
}

.btn--white:hover {
  background-color: black;
  color: white;
}

/* Cards */
.card {
  border-radius: 0;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--card));
  color: hsl(var(--card-foreground));
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.card--hover {
  transition: var(--transition-smooth);
}

.card--hover:hover {
  border-color: hsl(var(--primary));
}

/* Services Section */
.services-section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .services-section {
    padding: 7rem 0;
  }
}

.services-grid {
  display: grid;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.services-about h2,
.services-list h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .services-about h2,
  .services-list h2 {
    font-size: 2.25rem;
  }
}

.services-about p {
  color: hsl(var(--secondary));
  line-height: 1.75;
  margin-bottom: 1rem;
}

.services-about p:last-of-type {
  font-weight: 500;
  color: hsl(var(--foreground));
}

.services-why {
  margin-top: 2rem;
}

.services-why h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.services-why ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.services-why li {
  display: flex;
  align-items: center;
  color: hsl(var(--secondary));
}

.services-why-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.75rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
}

.services-list-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  padding: 1.5rem;
  border: 1px solid hsl(var(--divider));
  transition: var(--transition-smooth);
}

.service-card:hover {
  border-color: hsl(var(--primary));
}

.service-card-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.service-card-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  color: hsl(var(--primary));
}

.service-card-text h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-card-text p {
  color: hsl(var(--secondary));
}

/* Gallery Section */
.gallery-section {
  padding: 5rem 0;
  background-color: hsl(var(--muted));
}

@media (min-width: 768px) {
  .gallery-section {
    padding: 7rem 0;
  }
}

.gallery-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .gallery-section h2 {
    font-size: 2.25rem;
  }
}

.gallery-section p {
  text-align: center;
  color: hsl(var(--secondary));
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.gallery-grid {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    display: grid;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-item-overlay {
  background-color: rgba(0, 0, 0, 0.2);
}

.gallery-mobile {
  display: block;
  position: relative;
}

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

.gallery-mobile img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(100%);
}

.gallery-mobile-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0.5rem;
  color: black;
  border: none;
  cursor: pointer;
}

.gallery-mobile-nav--prev {
  left: 0.5rem;
}

.gallery-mobile-nav--next {
  right: 0.5rem;
}

.gallery-mobile-nav svg {
  width: 1.5rem;
  height: 1.5rem;
}

.gallery-mobile-counter {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: hsl(var(--secondary));
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.gallery-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gallery-modal-close:hover {
  color: rgba(255, 255, 255, 0.7);
}

.gallery-modal-close svg {
  width: 2rem;
  height: 2rem;
}

.gallery-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gallery-modal-nav:hover {
  color: rgba(255, 255, 255, 0.7);
}

.gallery-modal-nav--prev {
  left: 1rem;
}

.gallery-modal-nav--next {
  right: 1rem;
}

.gallery-modal-nav svg {
  width: 2.5rem;
  height: 2.5rem;
}

.gallery-modal img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .testimonials-section {
    padding: 7rem 0;
  }
}

.testimonials-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .testimonials-section h2 {
    font-size: 2.25rem;
  }
}

.testimonials-section p {
  text-align: center;
  color: hsl(var(--secondary));
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.testimonial-badges {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto 3rem;
}

@media (min-width: 640px) {
  .testimonial-badges {
    flex-direction: row;
    align-items: stretch;
  }
}

.testimonial-badge {
  display: flex;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem;
  border: 1px solid hsl(var(--divider));
  border-radius: 0;
  background-color: hsl(var(--muted));
}

.testimonial-badge-logo {
  width: 10rem;
  height: 5rem;
  flex-shrink: 0;
  object-fit: contain;
}

.testimonial-badge-content {
  margin: 0;
}

.testimonial-badge-rating {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: hsl(var(--foreground));
}

.testimonial-badge-stars {
  display: flex;
  gap: 0.35rem;
  margin: 0.35rem 0;
  color: #f6b800;
}

.testimonial-badge-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.testimonial-badge-meta {
  margin: 0;
  color: hsl(var(--secondary));
  font-size: 0.95rem;
}


.testimonials-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid {
    display: grid;
  }
}

.testimonial-card {
  padding: 2rem;
  border: 1px solid hsl(var(--divider));
}

.testimonial-icon {
  width: 2rem;
  height: 2rem;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
}

.testimonial-text {
  color: hsl(var(--secondary));
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.875rem;
}

.testimonials-mobile {
  display: block;
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
}

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

.testimonials-mobile-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
  gap: 1rem;
}

.testimonials-mobile-nav button {
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.testimonials-mobile-nav button:hover {
  background-color: hsl(var(--muted));
}

.testimonials-mobile-nav button svg {
  width: 1.5rem;
  height: 1.5rem;
}

.testimonials-mobile-counter {
  font-size: 0.875rem;
  color: hsl(var(--secondary));
}

.testimonials-bottom {
  display: none;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-bottom {
    display: block;
  }
}

.testimonials-bottom-card {
  padding: 2rem;
  border: 1px solid hsl(var(--divider));
  max-width: 28rem;
  margin: 0 auto;
}




/* Jobs Section */
.jobs-section {
  padding: 5rem 0;
  background-color: hsl(var(--muted));
}

@media (min-width: 768px) {
  .jobs-section {
    padding: 7rem 0;
  }
}

.jobs-section-content {
  max-width: 64rem;
  margin: 0 auto;
}

.jobs-header {
  text-align: center;
  margin-bottom: 3rem;
}

.jobs-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  color: hsl(var(--primary));
}

.jobs-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .jobs-header h2 {
    font-size: 2.25rem;
  }
}

.jobs-header p {
  color: hsl(var(--secondary));
  max-width: 42rem;
  margin: 0 auto;
}

.jobs-card {
  padding: 2rem;
  border: 1px solid hsl(var(--divider));
}

@media (min-width: 768px) {
  .jobs-card {
    padding: 3rem;
  }
}

.jobs-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.jobs-requirements {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.jobs-requirements li {
  display: flex;
  align-items: flex-start;
}

.jobs-requirements-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.75rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.jobs-requirements li span {
  color: hsl(var(--secondary));
}

.jobs-cta {
  background-color: hsl(var(--background));
  padding: 1.5rem;
  border: 1px solid hsl(var(--divider));
}

.jobs-cta p {
  text-align: center;
  margin-bottom: 1.5rem;
  color: hsl(var(--secondary));
}

.jobs-cta p strong {
  color: hsl(var(--foreground));
}

.jobs-cta-btn-wrapper {
  display: flex;
  justify-content: center;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .contact-section {
    padding: 7rem 0;
  }
}

.contact-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .contact-section h2 {
    font-size: 2.25rem;
  }
}

.contact-section > p {
  text-align: center;
  color: hsl(var(--secondary));
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.contact-grid {
  display: grid;
  gap: 3rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(var(--primary));
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-info-text h3 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-info-text p,
.contact-info-text a {
  color: hsl(var(--secondary));
  text-decoration: none;
  transition: var(--transition-smooth);
}

.contact-info-text a:hover {
  color: hsl(var(--primary));
}

.contact-info-text a.contact-phone {
  font-size: 1.125rem;
}

.contact-divider {
  padding-top: 1.5rem;
  border-top: 1px solid hsl(var(--divider));
}

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

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid hsl(var(--divider));
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  transition: var(--transition-smooth);
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: hsl(var(--primary));
}

.contact-textarea {
  resize: none;
  min-height: 120px;
}

.contact-select {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid hsl(var(--divider));
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.contact-select:focus {
  outline: none;
  border-color: hsl(var(--primary));
}

.contact-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-checkbox {
  margin-top: 0.25rem;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}

.contact-checkbox-label {
  font-size: 0.875rem;
  color: hsl(var(--secondary));
  cursor: pointer;
}

.contact-checkbox-label a {
  color: hsl(var(--primary));
  text-decoration: none;
}

.contact-checkbox-label a:hover {
  text-decoration: underline;
}

.contact-submit {
  width: 100%;
}

.form-success {
            border: 1px solid #3d7046;
            padding: 10px;
            margin-bottom: 10px;
            background-color: #f0f9eb;
            display: none;
        }
        .form-success:not(:empty) {
            display: block;
        }
/* Footer */
.site-footer {
  background-color: hsl(var(--background));
  border-top: 1px solid hsl(var(--divider));
}

.footer-content {
  padding: 4rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

.footer-col-text {
  font-size: 0.875rem;
  color: hsl(var(--secondary));
  line-height: 1.75;
  margin: 0;
}

.footer-col-title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: hsl(var(--foreground));
}

.footer-col-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col-link {
  font-size: 0.875rem;
  color: hsl(var(--secondary));
  text-decoration: none;
  transition: var(--transition-smooth);
  display: inline-block;
}

.footer-col-link:hover {
  color: hsl(var(--primary));
}

.footer-col p,
.footer-col a {
  font-size: 0.875rem;
  color: hsl(var(--secondary));
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-col a:hover {
  color: hsl(var(--primary));
}

.footer-col h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social-link {
  display: inline-block;
  color: hsl(var(--secondary));
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-social-link:hover {
  color: hsl(var(--primary));
}

.footer-social a {
  display: inline-block;
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-divider {
  margin: 2rem 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--divider));
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom a,
.footer-bottom-link {
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-bottom a:hover,
.footer-bottom-link:hover {
  color: hsl(var(--primary));
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 40;
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border: 2px solid hsl(var(--primary));
  padding: 0.75rem;
  transition: var(--transition-smooth);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
}

.back-to-top--visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: hsl(var(--background));
  color: hsl(var(--primary));
}

.back-to-top svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Layout Main (for WBCE blocks) */
.layout-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .layout-main {
    padding: 0 2rem;
  }
}

.layout-main__top,
.layout-main__bottom {
  width: 100%;
  margin-bottom: 2rem;
}

.layout-main__content {
  width: 100%;
}

@media (min-width: 768px) {
  .layout-main__content {
    width: 50%;
    float: left;
  }
}

@media (min-width: 1024px) {
  .layout-main__content {
    width: 70%;
    float: left;
  }
}

.layout-main__content--full {
  width: 100%;
  float: none;
}

.layout-main__sidebar {
  width: 100%;
}

@media (min-width: 768px) {
  .layout-main__sidebar {
    width: 50%;
    float: right;
  }
}

@media (min-width: 1024px) {
  .layout-main__sidebar {
    width: 30%;
    float: right;
  }
}

.layout-main::after {
  content: "";
  display: table;
  clear: both;
}

.page-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .page-title {
    font-size: 2.25rem;
  }
}

/* Legal / Content Pages */
.legal-page {
  padding: 5rem 0 5rem;
}

@media (min-width: 768px) {
  .legal-page {
    padding: 5rem 0 6rem;
  }
}

.legal-page__wrapper {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 80px;
}

.legal-title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .legal-title {
    font-size: 3rem;
  }
}

.legal-sections {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  color: hsl(var(--secondary));
  font-size: 1rem;
  line-height: 1.8;
  padding-top: 80px;
}

.legal-section__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: hsl(var(--foreground));
}

.legal-section__subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
  color: hsl(var(--foreground));
}

.legal-section p {
  margin: 0 0 1rem;
}

.legal-list {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  list-style: disc;
}

.legal-link {
  color: hsl(var(--foreground));
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: var(--transition-smooth);
}

.legal-link:hover {
  color: hsl(var(--primary));
  border-bottom-color: currentColor;
}

