@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --ev-primary: #1c1917;
  --ev-primary-soft: #292421;
  --ev-secondary: #8a6a4f;
  --ev-accent: #b58c5f;
  --ev-cream: #f6f1e9;
  --ev-sand: #ede3d3;
  --ev-text: #4d453c;
  --ev-heading: #282322;
  --ev-muted: #6f675d;
  --ev-border: #e3d9c9;
  --ev-white: #ffffff;
  --ev-dark-text: #f2eee7;
  --ev-gold-grad: linear-gradient(135deg, #b58c5f, #e2c495);
  --ev-font-heading: 'Playfair Display', Georgia, serif;
  --ev-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ev-shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.04);
  --ev-shadow-md: 0 15px 40px rgba(0, 0, 0, 0.07);
  --ev-shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.15);
  --ev-radius-sm: 6px;
  --ev-radius-md: 14px;
  --ev-radius-lg: 26px;
  --ev-transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--ev-font-body);
  color: var(--ev-text);
  background: var(--ev-white);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ev-font-heading);
  color: var(--ev-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 3.9rem);
  line-height: 1.12;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
}

h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
}

h4 {
  font-size: 1.3rem;
}

h5 {
  font-size: 1.08rem;
}

a {
  text-decoration: none;
  transition: var(--ev-transition);
  color: var(--ev-secondary);
}

a:hover {
  color: var(--ev-accent);
}

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

p {
  line-height: 1.8;
}

::selection {
  background: var(--ev-accent);
  color: var(--ev-white);
}

.bg-cream {
  background-color: var(--ev-cream);
}

.bg-sand {
  background-color: var(--ev-sand);
}

.bg-dark {
  background-color: var(--ev-primary);
}

.section {
  padding: 105px 0;
}

.section-sm {
  padding: 72px 0;
}

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

.section-cream {
  background: var(--ev-cream);
}

.section-dark {
  background: var(--ev-primary);
  color: var(--ev-dark-text);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5 {
  color: var(--ev-white);
}

.section-sand {
  background: var(--ev-sand);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ev-secondary);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 42px;
  height: 1px;
  background: currentColor;
}

.eyebrow-center {
  justify-content: center;
}

.eyebrow-center::after {
  content: '';
  display: inline-block;
  width: 42px;
  height: 1px;
  background: currentColor;
}

.section-dark .eyebrow {
  color: var(--ev-accent);
}

.section-title {
  margin-bottom: 16px;
}

.section-lead {
  max-width: 660px;
  font-size: 1.1rem;
}

.btn {
  border-radius: 60px;
  font-weight: 500;
  padding: 13px 32px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: var(--ev-transition);
  font-size: 0.95rem;
}

.btn-brand {
  background-color: var(--ev-secondary);
  border-color: var(--ev-secondary);
  color: var(--ev-white);
}

.btn-brand:hover {
  background-color: var(--ev-primary);
  border-color: var(--ev-primary);
  color: var(--ev-white);
  transform: translateY(-3px);
  box-shadow: var(--ev-shadow-md);
}

.btn-outline-brand {
  border-color: var(--ev-secondary);
  color: var(--ev-secondary);
  background: transparent;
}

.btn-outline-brand:hover {
  background: var(--ev-secondary);
  border-color: var(--ev-secondary);
  color: var(--ev-white);
  transform: translateY(-3px);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--ev-white);
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--ev-white);
  border-color: var(--ev-white);
  color: var(--ev-heading);
  transform: translateY(-3px);
}

.btn-light {
  background: var(--ev-white);
  border-color: var(--ev-white);
  color: var(--ev-heading);
}

.btn-light:hover {
  background: var(--ev-cream);
  border-color: var(--ev-cream);
  color: var(--ev-heading);
  transform: translateY(-3px);
}

.btn-xl {
  padding: 16px 44px;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 9px 22px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--ev-heading);
}

.link-arrow i {
  transition: var(--ev-transition);
}

.link-arrow:hover {
  color: var(--ev-secondary);
}

.link-arrow:hover i {
  transform: translateX(5px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  padding: 18px 0;
  transition: var(--ev-transition);
}

.site-header .navbar {
  padding: 0;
}

.site-header .navbar-brand {
  margin-right: 0;
}

.site-header .navbar-brand img {
  height: 46px;
  display: block;
}

.site-header .navbar-nav {
  gap: 6px;
}

.site-header .navbar-nav .nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  padding: 8px 16px;
  position: relative;
  border-radius: 60px;
}

.site-header .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 16px;
  bottom: 2px;
  height: 1px;
  width: 0;
  background: var(--ev-accent);
  transition: width 0.3s ease;
}

.site-header .navbar-nav .nav-link:hover::after,
.site-header .navbar-nav .nav-link.active::after {
  width: calc(100% - 32px);
}

.site-header .navbar-nav .nav-link:hover {
  color: var(--ev-accent);
}

.site-header .nav-dropdown .nav-link {
  color: rgba(255, 255, 255, 0.95);
}

.header-info {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
}

.header-info a {
  color: rgba(255, 255, 255, 0.92);
}

.header-info a:hover {
  color: var(--ev-accent);
}

.header-info i {
  color: var(--ev-accent);
  margin-right: 6px;
}

.site-header .navbar-toggler {
  border: none;
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 8px;
  font-size: 1.5rem;
  line-height: 1;
  background: transparent;
}

.site-header .navbar-toggler:focus {
  box-shadow: none;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  padding: 10px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header.is-scrolled .navbar-nav .nav-link {
  color: var(--ev-heading);
}

.site-header.is-scrolled .navbar-nav .nav-link:hover {
  color: var(--ev-secondary);
}

.site-header.is-scrolled .navbar-toggler {
  color: var(--ev-heading);
}

.site-header.is-scrolled .header-info {
  color: var(--ev-heading);
}

.site-header.is-scrolled .header-info a {
  color: var(--ev-heading);
}

.site-header.is-scrolled .header-info a:hover {
  color: var(--ev-secondary);
}

.dropdown-menu {
  border: 0;
  box-shadow: var(--ev-shadow-md);
  border-radius: var(--ev-radius-md);
  padding: 12px;
  margin-top: 12px;
}

.dropdown-menu .dropdown-item {
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.9rem;
}

.dropdown-menu .dropdown-item:hover {
  background: var(--ev-cream);
  color: var(--ev-heading);
}

@media (max-width: 991.98px) {
  .site-header {
    padding: 12px 0;
  }

  .site-header .navbar-collapse {
    background: var(--ev-primary);
    border-radius: 16px;
    padding: 18px;
    margin-top: 14px;
    box-shadow: var(--ev-shadow-lg);
  }

  .site-header .navbar-collapse .nav-link,
  .site-header .nav-dropdown .nav-link,
  .site-header .header-info,
  .site-header .header-info a {
    color: var(--ev-white);
  }

  .site-header .navbar-collapse .nav-link::after {
    left: 0;
  }

  .site-header .navbar-collapse .nav-link:hover::after,
  .site-header .navbar-collapse .nav-link.active::after {
    width: 40px;
  }

  .site-header .header-info {
    flex-wrap: wrap;
    padding: 12px 4px 4px;
    margin-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.85rem;
  }

  .site-header.is-scrolled .navbar-collapse {
    background: var(--ev-primary);
  }

  .site-header.is-scrolled .navbar-collapse .nav-link,
  .site-header.is-scrolled .header-info a {
    color: var(--ev-white);
  }

  .site-header.is-scrolled .header-info {
    color: var(--ev-white);
  }
}

.hero,
.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  position: relative;
  height: 100vh;
  min-height: 620px;
  max-height: 960px;
}

.hero-carousel .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-carousel .carousel-item .container {
  padding-top: 90px;
}

.hero-caption {
  max-width: 720px;
  color: var(--ev-white);
  padding: 40px 0;
}

.hero-caption .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 22px;
}

.hero-caption .hero-tag::before {
  content: '';
  width: 46px;
  height: 1px;
  background: var(--ev-accent);
}

.hero-caption h1 {
  color: var(--ev-white);
  margin-bottom: 22px;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.25);
}

.hero-caption .hero-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.13rem;
  max-width: 580px;
  margin-bottom: 32px;
}

.hero-caption .btn-group-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-carousel .carousel-indicators {
  margin-bottom: 34px;
}

.hero-carousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 60px;
  border: 0;
  background: rgba(255, 255, 255, 0.4);
  margin: 0 5px;
  transition: var(--ev-transition);
}

.hero-carousel .carousel-indicators button.active {
  background: var(--ev-accent);
  width: 34px;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 9%;
  opacity: 0;
  transition: var(--ev-transition);
}

.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next {
  opacity: 1;
}

.hero-carousel .carousel-control-prev i,
.hero-carousel .carousel-control-next i {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 60px;
  font-size: 1.1rem;
  transition: var(--ev-transition);
  background: rgba(0, 0, 0, 0.2);
}

.hero-carousel .carousel-control-prev:hover i,
.hero-carousel .carousel-control-next:hover i {
  background: var(--ev-accent);
  border-color: var(--ev-accent);
}

@media (max-width: 991.98px) {
  .hero,
  .hero-carousel,
  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item {
    height: 92vh;
    min-height: 560px;
  }

  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    display: none;
  }
}

.page-hero {
  position: relative;
  padding: 210px 0 110px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--ev-white);
  text-align: center;
}

.page-hero .page-title {
  color: var(--ev-white);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

.page-hero .page-lead {
  color: rgba(255, 255, 255, 0.9);
  max-width: 660px;
  margin: 18px auto 0;
  font-size: 1.1rem;
}

.breadcrumb-wrap {
  display: inline-flex;
  justify-content: center;
  margin-top: 20px;
}

.breadcrumb-wrap nav {
  display: inline-block;
}

.breadcrumb-wrap .breadcrumb {
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  padding: 10px 24px;
  border-radius: 60px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.breadcrumb-wrap .breadcrumb-item,
.breadcrumb-wrap .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.breadcrumb-wrap .breadcrumb-item a:hover {
  color: var(--ev-white);
}

.breadcrumb-wrap .breadcrumb-item.active {
  color: var(--ev-accent);
}

.breadcrumb-wrap .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.45);
}

.service-card {
  background: var(--ev-white);
  border-radius: var(--ev-radius-md);
  overflow: hidden;
  border: 0;
  box-shadow: var(--ev-shadow-sm);
  transition: var(--ev-transition);
  height: 100%;
}

.service-card:hover {
  box-shadow: var(--ev-shadow-md);
  transform: translateY(-8px);
}

.service-card .card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.service-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-card:hover .card-img-wrap img {
  transform: scale(1.06);
}

.service-card .card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.22), transparent 45%);
}

.service-card .card-body-icon {
  position: absolute;
  bottom: -26px;
  right: 24px;
  z-index: 2;
  width: 56px;
  height: 56px;
  background: var(--ev-secondary);
  color: var(--ev-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.3rem;
  box-shadow: var(--ev-shadow-md);
}

.service-card .card-body {
  padding: 30px 30px 28px;
}

.service-card .card-body h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.service-card .card-body p {
  color: var(--ev-text);
  margin-bottom: 18px;
}

.service-card .card-link {
  font-weight: 600;
  color: var(--ev-secondary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-card .card-link i {
  transition: var(--ev-transition);
}

.service-card .card-link:hover {
  color: var(--ev-heading);
}

.service-card .card-link:hover i {
  transform: translateX(5px);
}

.feature-card {
  background: var(--ev-white);
  border-radius: var(--ev-radius-md);
  padding: 38px 32px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--ev-transition);
  box-shadow: var(--ev-shadow-sm);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ev-shadow-md);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--ev-cream);
  color: var(--ev-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.feature-card h4 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.feature-card p {
  color: var(--ev-text);
  margin-bottom: 0;
}

.section-dark .feature-card h4 {
  color: var(--ev-heading);
}

.stat-card {
  text-align: center;
  padding: 20px 10px;
}

.stat-number {
  font-family: var(--ev-font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--ev-white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number .suffix {
  color: var(--ev-accent);
}

.stat-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.stat-line {
  width: 40px;
  height: 1px;
  background: var(--ev-accent);
  margin: 0 auto 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--ev-radius-md);
  overflow: hidden;
  grid-column: span 4;
}

.gallery-item.col-span-6 {
  grid-column: span 6;
}

.gallery-item.row-span-2 {
  grid-row: span 2;
}

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

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 65%);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  opacity: 0;
  transition: var(--ev-transition);
}

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

.gallery-overlay span {
  color: var(--ev-white);
  font-family: var(--ev-font-heading);
  font-size: 1.2rem;
  transform: translateY(14px);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .gallery-item,
  .gallery-item.col-span-6,
  .gallery-item.row-span-2 {
    grid-column: span 6;
  }
}

@media (max-width: 575.98px) {
  .gallery-item,
  .gallery-item.col-span-6,
  .gallery-item.row-span-2 {
    grid-column: span 12;
  }
}

.testimonial-card {
  background: var(--ev-white);
  border-radius: var(--ev-radius-md);
  padding: 36px;
  height: 100%;
  box-shadow: var(--ev-shadow-sm);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--ev-font-heading);
  font-size: 6rem;
  line-height: 1;
  color: var(--ev-sand);
  position: absolute;
  top: 16px;
  right: 28px;
  z-index: 0;
}

.testimonial-card .testimonial-stars {
  color: var(--ev-accent);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.testimonial-card .testimonial-text {
  font-size: 1.05rem;
  color: var(--ev-text);
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--ev-border);
  padding-top: 20px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ev-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ev-secondary);
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-author h5 {
  margin-bottom: 2px;
  font-size: 1.05rem;
}

.testimonial-author .author-position {
  font-size: 0.85rem;
  color: var(--ev-muted);
  margin: 0;
}

.partner-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
}

.partner-item {
  opacity: 0.55;
  filter: grayscale(100%);
  transition: var(--ev-transition);
  max-height: 44px;
}

.partner-item img {
  max-height: 44px;
  width: auto;
}

.partner-item:hover {
  opacity: 1;
  filter: grayscale(0);
}

.section-dark .partner-item {
  opacity: 0.6;
  filter: grayscale(100%) brightness(2);
}

.section-dark .partner-item:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1);
}

.cta-section {
  background-size: cover;
  background-position: center;
  padding: 120px 0;
}

.cta-card {
  background: var(--ev-primary);
  border-radius: 28px;
  padding: 64px 60px;
  overflow: hidden;
  position: relative;
}

@media (max-width: 767.98px) {
  .cta-card {
    padding: 48px 28px;
  }
}

.cta-card h2 {
  color: var(--ev-white);
}

.cta-card .cta-text {
  color: var(--ev-dark-text);
  max-width: 520px;
}

.form-control {
  border: 1px solid var(--ev-border);
  border-radius: var(--ev-radius-sm);
  padding: 14px 18px;
  font-size: 0.95rem;
  background: var(--ev-white);
  color: var(--ev-heading);
  transition: var(--ev-transition);
}

.form-control:focus {
  border-color: var(--ev-accent);
  box-shadow: 0 0 0 0.2rem rgba(181, 140, 95, 0.15);
  background: var(--ev-white);
  color: var(--ev-heading);
}

.form-select {
  border-color: var(--ev-border);
  border-radius: var(--ev-radius-sm);
  padding: 14px 18px;
  font-size: 0.95rem;
}

.form-label {
  font-weight: 500;
  color: var(--ev-heading);
  font-size: 0.92rem;
  margin-bottom: 8px;
}

.form-check-input:checked {
  background-color: var(--ev-secondary);
  border-color: var(--ev-secondary);
}

.contact-card {
  background: var(--ev-white);
  border-radius: var(--ev-radius-md);
  padding: 32px;
  box-shadow: var(--ev-shadow-sm);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-list-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-list-item:not(:last-child) {
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--ev-border);
}

.contact-list-item .contact-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--ev-cream);
  color: var(--ev-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.contact-list-item h5 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.contact-list-item p {
  margin-bottom: 0;
}

.map-embed {
  border-radius: var(--ev-radius-md);
  overflow: hidden;
  box-shadow: var(--ev-shadow-md);
  line-height: 0;
}

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

.accordion-custom .accordion-item {
  border: 0;
  border-radius: var(--ev-radius-md) !important;
  overflow: hidden;
  background: transparent;
  margin-bottom: 14px;
}

.accordion-custom .accordion-button {
  background: var(--ev-white);
  border: 1px solid var(--ev-border);
  border-radius: var(--ev-radius-md) !important;
  padding: 22px 28px;
  font-weight: 600;
  color: var(--ev-heading);
  font-size: 1.05rem;
  box-shadow: none;
}

.accordion-custom .accordion-button:not(.collapsed) {
  background: var(--ev-white);
  color: var(--ev-secondary);
  border-color: var(--ev-secondary);
}

.accordion-custom .accordion-button:focus {
  box-shadow: none;
}

.accordion-custom .accordion-button::after {
  color: var(--ev-secondary);
}

.accordion-custom .accordion-body {
  background: transparent;
  padding: 20px 28px 26px;
  color: var(--ev-text);
  border: 1px solid transparent;
  border-top: 0;
}

.price-card {
  background: var(--ev-white);
  border-radius: var(--ev-radius-md);
  padding: 40px 34px;
  height: 100%;
  box-shadow: var(--ev-shadow-sm);
  text-align: center;
  border: 1px solid var(--ev-border);
  position: relative;
  transition: var(--ev-transition);
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--ev-shadow-md);
}

.price-card.price-featured {
  border: 2px solid var(--ev-secondary);
  background: var(--ev-cream);
}

.price-card .price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ev-secondary);
  color: var(--ev-white);
  padding: 5px 18px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 40px;
  white-space: nowrap;
}

.price-card h4 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.price-value {
  font-family: var(--ev-font-heading);
  font-size: 2.9rem;
  font-weight: 700;
  color: var(--ev-heading);
  line-height: 1.1;
  margin: 18px 0 6px;
}

.price-value small {
  font-size: 1rem;
  color: var(--ev-muted);
  font-weight: 400;
}

.price-period {
  color: var(--ev-muted);
  font-size: 0.88rem;
  margin-bottom: 22px;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  text-align: left;
}

.price-features li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--ev-border);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li i {
  color: var(--ev-secondary);
  font-size: 0.85rem;
}

.blog-card {
  background: var(--ev-white);
  border-radius: var(--ev-radius-md);
  overflow: hidden;
  box-shadow: var(--ev-shadow-sm);
  transition: var(--ev-transition);
  height: 100%;
}

.blog-card:hover {
  box-shadow: var(--ev-shadow-md);
  transform: translateY(-6px);
}

.blog-card .blog-thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

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

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

.blog-card .blog-thumb .blog-date {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--ev-white);
  color: var(--ev-heading);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 40px;
  box-shadow: var(--ev-shadow-sm);
}

.blog-card .blog-thumb .blog-date i {
  color: var(--ev-secondary);
  margin-right: 6px;
}

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

.blog-card .blog-body h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.blog-card .blog-body h4 a {
  color: var(--ev-heading);
}

.blog-card .blog-body h4 a:hover {
  color: var(--ev-secondary);
}

.blog-card .blog-body .blog-excerpt {
  font-size: 0.95rem;
  color: var(--ev-text);
  margin-bottom: 16px;
}

.blog-footer {
  background: var(--ev-primary);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 70px;
}

.blog-footer .footer-title {
  color: var(--ev-white);
  font-size: 1.2rem;
  font-family: var(--ev-font-heading);
  margin-bottom: 22px;
}

.blog-footer .footer-text {
  font-size: 0.95rem;
}

.footer-social a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 1rem;
}

.footer-social a:hover {
  background: var(--ev-secondary);
  border-color: var(--ev-secondary);
  color: var(--ev-white);
}

.blog-footer .footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-footer .footer-list li {
  margin-bottom: 10px;
}

.blog-footer .footer-list a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  position: relative;
  transition: var(--ev-transition);
}

.blog-footer .footer-list a:hover {
  color: var(--ev-accent);
  padding-left: 6px;
}

.blog-footer .footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.blog-footer .footer-contact-item i {
  color: var(--ev-accent);
  margin-top: 5px;
  width: 18px;
}

.blog-footer .footer-contact-item span {
  display: flex;
  flex-direction: column;
}

.blog-footer .footer-contact-item a {
  color: rgba(255, 255, 255, 0.75);
}

.blog-footer .footer-contact-item a:hover {
  color: var(--ev-accent);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.25);
  padding: 22px 0;
  margin-top: 20px;
  font-size: 0.85rem;
}

.footer-bottom .footer-legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bottom .footer-legal-list a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.footer-bottom .footer-legal-list a:hover {
  color: var(--ev-accent);
}

@media (max-width: 767.98px) {
  .footer-bottom .footer-legal-list {
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 480px;
  z-index: 2200;
  background: var(--ev-white);
  border-radius: var(--ev-radius-md);
  box-shadow: var(--ev-shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 24px 26px;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}

.cookie-banner.cookie-banner-show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner-content {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cookie-banner-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--ev-cream);
  color: var(--ev-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.cookie-banner h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.cookie-banner p {
  font-size: 0.88rem;
  color: var(--ev-text);
  margin: 0;
}

.cookie-banner p a {
  color: var(--ev-secondary);
  font-weight: 500;
}

.cookie-banner p a:hover {
  color: var(--ev-heading);
}

.cookie-banner-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

@media (max-width: 575.98px) {
  .cookie-banner {
    max-width: none;
    right: 14px;
    left: 14px;
    bottom: 14px;
  }

  .cookie-banner-actions {
    flex-direction: column-reverse;
  }

  .cookie-banner-actions .btn {
    width: 100%;
  }
}

.form-notification {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2400;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 380px;
  max-width: calc(100vw - 32px);
  background: var(--ev-white);
  border-radius: var(--ev-radius-md);
  padding: 18px 20px;
  box-shadow: var(--ev-shadow-lg);
  border-left: 5px solid var(--ev-accent);
  opacity: 0;
  transform: translateY(24px);
  visibility: hidden;
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
}

.form-notification.show {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.form-notification .form-toast-icon {
  font-size: 24px;
  color: var(--ev-accent);
  line-height: 1;
  margin-top: 2px;
}

.form-notification h6 {
  font-size: 1.02rem;
  margin: 0 0 4px;
}

.form-notification p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--ev-text);
  line-height: 1.5;
}

.form-notification .form-toast-close {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--ev-muted);
  font-size: 0.85rem;
  padding: 2px 4px;
  cursor: pointer;
  line-height: 1;
  transition: var(--ev-transition);
}

.form-notification .form-toast-close:hover {
  color: var(--ev-heading);
}

.form-notification.success {
  border-left-color: #2e9d5a;
}

.form-notification.success .form-toast-icon {
  color: #2e9d5a;
}

.form-notification.error {
  border-left-color: #cc4b3f;
}

.form-notification.error .form-toast-icon {
  color: #cc4b3f;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  z-index: 900;
  background: var(--ev-secondary);
  color: var(--ev-white);
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--ev-shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--ev-transition);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--ev-heading);
  color: var(--ev-white);
  transform: translateY(-4px);
}

.team-card {
  background: var(--ev-white);
  border-radius: var(--ev-radius-md);
  overflow: hidden;
  box-shadow: var(--ev-shadow-sm);
  transition: var(--ev-transition);
  height: 100%;
}

.team-card:hover {
  box-shadow: var(--ev-shadow-md);
  transform: translateY(-6px);
}

.team-card .team-photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ev-sand);
}

.team-card .team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.team-card:hover .team-photo img {
  transform: scale(1.05);
}

.team-card .team-body {
  padding: 22px 26px;
  text-align: center;
}

.team-card .team-body h5 {
  margin-bottom: 4px;
  font-size: 1.15rem;
}

.team-card .team-body .team-role {
  color: var(--ev-secondary);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.timeline-list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-list::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  width: 1px;
  background: var(--ev-border);
}

.timeline-item {
  position: relative;
  padding-left: 44px;
  padding-bottom: 40px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 3px solid var(--ev-accent);
  background: var(--ev-white);
}

.timeline-year {
  font-family: var(--ev-font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ev-secondary);
  margin-bottom: 6px;
}

.timeline-item h5 {
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

@media (max-width: 575.98px) {
  .section {
    padding: 76px 0;
  }

  .section-sm {
    padding: 56px 0;
  }

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

  .site-header .navbar-brand img {
    height: 40px;
  }

  .form-notification {
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
  }
}
/* ===== QA fixes: header/nav/hero/footer contrast & mobile overlap ===== */
.site-header {
  background: #1c1917 !important;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97) !important;
}
.page-hero {
  background-color: #141210;
  margin-top: 86px;
}
.footer-bottom {
  background: #0e0c0a;
}

/* Prevent fixed header from overlapping the hero on small screens */
@media (max-width: 991.98px) {
  .page-hero {
    margin-top: 74px;
  }
}

/* ===== Static visible cookie bar (QA fix) ===== */
.ev-cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2147483000;
  background: #1c1917;
  color: #f5f1ea;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  padding: 16px 18px;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 0.92rem;
  line-height: 1.5;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.ev-cookie-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.ev-cookie-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #f5f1ea;
}
.ev-cookie-text strong {
  color: #ffffff;
}
.ev-cookie-text a {
  color: #e2c495;
  text-decoration: underline;
}
.ev-cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.ev-cookie-actions button {
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 40px;
  padding: 9px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  background: transparent;
}
.ev-cookie-actions .ev-cookie-accept {
  background: #ffffff;
  color: #1c1917;
  border-color: #ffffff;
}
.ev-cookie-actions button:hover {
  opacity: 0.9;
}
@media (max-width: 640px) {
  .ev-cookie-bar-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .ev-cookie-actions {
    width: 100%;
  }
  .ev-cookie-actions button {
    flex: 1;
  }
}

/* ===== Fixed header overlap on mobile (QA fix) ===== */
@media (max-width: 991.98px) {
  #service-hero.service-hero {
    padding-top: 120px !important;
  }
}

/* ===== QA accessibility / layout overrides ===== */

/* Give the fixed header a readable translucent backdrop so white nav
   text has sufficient contrast even over light areas. */
.site-header {
  background-color: rgba(26, 22, 18, 0.55);
}
.site-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.97);
}

/* Provide a solid dark fallback behind white text on image/gradient
   hero and feature sections so contrast checks resolve correctly. */
.service-hero,
.hero,
.s-section,
.cta-section {
  background-color: #16110d;
}

/* Darken eyebrows on light (cream/sand/white) sections for AA contrast. */
.bg-cream .eyebrow,
.bg-sand .eyebrow,
.bg-white .eyebrow {
  color: #6d4d30;
}

/* Give gallery caption text its own dark backdrop so it stays readable
   and passes contrast even over busy imagery. */
.gallery-overlay span {
  background-color: rgba(15, 12, 9, 0.72);
  padding: 6px 12px;
  border-radius: 8px;
  color: #ffffff;
}

/* Mobile: push hero below the fixed header to remove overlap. */
@media (max-width: 991.98px) {
  .service-hero {
    margin-top: 92px;
  }
  .service-hero .container {
    padding-top: 8px;
  }
}

/* ===== QA fixes: breadcrumb contrast on dark hero ===== */
.page-hero .breadcrumb-wrap .breadcrumb {
  background: #201b17;
}
.page-hero .breadcrumb-wrap .breadcrumb-item,
.page-hero .breadcrumb-wrap .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.95);
}
.page-hero .breadcrumb-wrap .breadcrumb-item.active {
  color: #e2c495;
}

/* ===== Price page QA: breadcrumb + outline-button contrast ===== */
.page-hero .breadcrumb {
  --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.55);
}
.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a {
  color: #f6f0e7;
}
.page-hero .breadcrumb-item a:hover {
  color: #ffffff;
}
.page-hero .breadcrumb-item.active {
  color: #e8cb9d;
}

/* Darken outline-brand text/border for WCAG AA on cream/sand/white. */
.btn-outline-brand {
  color: #4a3019 !important;
  border-color: #4a3019 !important;
}
.btn-outline-brand:hover {
  color: #ffffff !important;
  background-color: #4a3019 !important;
  border-color: #4a3019 !important;
}

/* Neutralise the Services dropdown toggle when rendered as a button. */
.site-header .navbar-nav button.nav-link {
  background: none;
  border: 0;
  box-shadow: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.95);
}
.site-header.is-scrolled .navbar-nav button.nav-link {
  color: #282322;
}
@media (max-width: 991.98px) {
  .site-header .navbar-collapse button.nav-link {
    color: var(--ev-white);
  }
}

/* ===== Home page fixes (index.html) ===== */

/* Ensure fixed header does not overlap the home hero on small screens. */
@media (max-width: 991.98px) {
  #homeHero {
    margin-top: 86px;
  }
}
@media (max-width: 575.98px) {
  #homeHero {
    margin-top: 74px;
  }
}

/* Provide the missing .bg-brand colour so the white "28 Years" badge is not
   white-on-white (the badge text/icon sits on a solid dark-brown panel). */
.bg-brand {
  background-color: #6e4c2c;
  color: #ffffff;
}

/* Darken outlined brand buttons on light cream/white sections for AA. */
.btn-outline-brand {
  color: #6f4c2b;
  border-color: #8a6a4f;
}

/* CTA section: force headings white (dark headings on dark image were failing)
   and use a lighter gold eyebrow for contrast on the dark backdrop. */
.cta-section h1,
.cta-section h2,
.cta-section h3,
.cta-section h4,
.cta-section h5,
.cta-section p,
.cta-section .eyebrow {
  color: #ffffff;
}
.cta-section .eyebrow::before,
.cta-section .eyebrow::after {
  background: #e2c495;
}
