:root {
  --brand-primary: #b8892b;
  --brand-primary-dark: #8f6a1d;
  --brand-accent: #c1472a;
  --brand-dark: #191714;
  --brand-dark-soft: #2b2721;
  --brand-light: #fbf8f3;
  --brand-cream: #f3ece1;
  --brand-muted: #6b6357;
  --brand-border: #e5dccc;
  --shadow-sm: 0 2px 12px rgba(25, 23, 20, 0.06);
  --shadow-md: 0 14px 40px rgba(25, 23, 20, 0.1);
  --shadow-lg: 0 30px 70px rgba(25, 23, 20, 0.16);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--brand-dark);
  background-color: var(--brand-light);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--brand-primary-dark);
  text-decoration: none;
  transition: color 0.25s ease;
}

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

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--brand-dark);
}

p {
  margin-bottom: 1.15rem;
}

.container {
  max-width: 1220px;
}

.section {
  padding: 104px 0;
  position: relative;
}

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

.section--dark {
  background-color: var(--brand-dark);
  color: #f0eadf;
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: #ffffff;
}

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

.section--image {
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section--image h1,
.section--image h2,
.section--image h3 {
  color: #ffffff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand-primary-dark);
  margin-bottom: 8px;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background-color: var(--brand-primary);
  display: inline-block;
}

.section--dark .eyebrow,
.section--image .eyebrow {
  color: var(--brand-primary);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.15rem);
  margin: 0.35em 0 0.6em;
}

.section-lead {
  font-size: 1.08rem;
  max-width: 62ch;
  color: #4a4437;
}

.section--dark .section-lead,
.section--image .section-lead {
  color: #ded6c6;
}

.display-xl {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.06;
}

.btn {
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  transition: all 0.28s var(--ease-out);
  border: 1px solid transparent;
}

.btn-brand {
  background-color: var(--brand-primary);
  color: #191714;
}

.btn-brand:hover,
.btn-brand:focus {
  background-color: var(--brand-primary-dark);
  color: #191714;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(184, 137, 43, 0.34);
}

.btn-ghost-light {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-ghost-light:hover,
.btn-ghost-light:focus {
  background-color: #ffffff;
  color: var(--brand-dark);
}

.btn-dark {
  background-color: var(--brand-dark);
  color: #ffffff;
}

.btn-dark:hover,
.btn-dark:focus {
  background-color: var(--brand-dark-soft);
  color: #ffffff;
  transform: translateY(-2px);
}

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

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  background-color: var(--brand-primary);
  color: #191714;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background-color: rgba(251, 248, 243, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--brand-border);
  box-shadow: var(--shadow-sm);
  background-color: rgba(251, 248, 243, 0.98);
}

.header-topbar {
  background-color: var(--brand-dark);
  color: #cfc7b8;
  font-size: 0.86rem;
  padding: 9px 0;
}

.header-topbar a,
.header-topbar span {
  color: #cfc7b8;
}

.header-topbar i {
  color: var(--brand-primary);
  margin-right: 7px;
}

.navbar-brand img {
  display: block;
}

.navbar-nav .nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--brand-dark);
  padding: 10px 16px;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  background-color: var(--brand-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: 1px solid var(--brand-border);
  border-radius: 10px;
  padding: 7px 12px;
  color: var(--brand-dark);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(184, 137, 43, 0.25);
}

.navbar-toggler i {
  font-size: 1.15rem;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 140px 0 110px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(25, 23, 20, 0.15) 0%, rgba(25, 23, 20, 0.7) 100%);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero__title {
  font-size: clamp(2.7rem, 6.2vw, 4.8rem);
  color: #ffffff;
  line-height: 1.05;
  margin: 0.25em 0 0.5em;
}

.hero__text {
  font-size: 1.12rem;
  color: #eae3d6;
  max-width: 56ch;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 60px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: 2.15rem;
  color: #ffffff;
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.85rem;
  color: #d6cdbc;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(184, 137, 43, 0.16);
  color: var(--brand-primary-dark);
  border: 1px solid rgba(184, 137, 43, 0.35);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-brand--light {
  background-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.carousel-hero .carousel-item {
  min-height: 78vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.carousel-hero .carousel-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(25, 23, 20, 0.82) 0%, rgba(25, 23, 20, 0.4) 65%, rgba(25, 23, 20, 0.72) 100%);
}

.carousel-hero .carousel-caption {
  position: relative;
  inset: auto;
  text-align: left;
  z-index: 2;
  padding: 0;
}

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

.carousel-hero .carousel-indicators [data-bs-target] {
  width: 34px;
  height: 3px;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.55);
  border: 0;
}

.carousel-hero .carousel-indicators .active {
  background-color: var(--brand-primary);
}

.carousel-hero .carousel-control-prev,
.carousel-hero .carousel-control-next {
  width: 62px;
  opacity: 0.75;
}

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

.section--image .container {
  position: relative;
  z-index: 1;
}

.gift-card {
  background-color: #ffffff;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

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

.gift-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-color: var(--brand-cream);
}

.gift-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.gift-card:hover .gift-card__media img {
  transform: scale(1.07);
}

.gift-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: #ffffff;
  color: var(--brand-primary-dark);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.gift-card__body {
  padding: 26px 26px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gift-card__title {
  font-size: 1.32rem;
  margin-bottom: 0.55rem;
}

.gift-card__text {
  color: #4a4437;
  font-size: 0.97rem;
  margin-bottom: 1.2rem;
}

.gift-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--brand-border);
}

.gift-card__price {
  font-family: var(--font-display);
  font-size: 1.28rem;
  color: var(--brand-primary-dark);
}

.gift-card__link {
  font-weight: 600;
  color: var(--brand-primary-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gift-card__link i {
  transition: transform 0.3s var(--ease-out);
}

.gift-card__link:hover i {
  transform: translateX(5px);
}

.feature {
  background-color: #ffffff;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  height: 100%;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

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

.feature__icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background-color: var(--brand-cream);
  color: var(--brand-primary-dark);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.feature__title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feature__text {
  font-size: 0.95rem;
  color: #4a4437;
  margin-bottom: 0;
}

.section--dark .feature {
  background-color: var(--brand-dark-soft);
  border-color: #3c362d;
}

.section--dark .feature__icon {
  background-color: rgba(184, 137, 43, 0.18);
  color: var(--brand-primary);
}

.section--dark .feature__text {
  color: #cdc4b3;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background-color: var(--brand-cream);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}

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

.gallery-item--lg {
  grid-column: span 7;
  aspect-ratio: 16 / 11;
}

.gallery-item--sm {
  grid-column: span 5;
  aspect-ratio: 5 / 4;
}

.gallery-item--md {
  grid-column: span 6;
  aspect-ratio: 4 / 3;
}

.gallery-item--full {
  grid-column: span 12;
  aspect-ratio: 21 / 8;
}

.gallery-item__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(25, 23, 20, 0) 0%, rgba(25, 23, 20, 0.85) 100%);
  color: #ffffff;
}

.gallery-item__caption h3,
.gallery-item__caption h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.gallery-item__caption p {
  font-size: 0.9rem;
  color: #ddd4c4;
  margin: 0;
}

.testimonial {
  background-color: #ffffff;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  padding: 34px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial__stars {
  color: var(--brand-primary);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.testimonial__quote {
  font-size: 1.02rem;
  line-height: 1.75;
  color: #3b352c;
  margin-bottom: 1.4rem;
}

.testimonial__author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--brand-cream);
  flex: 0 0 auto;
}

.testimonial__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial__name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brand-dark);
  margin: 0;
}

.testimonial__role {
  font-size: 0.85rem;
  color: #6b6357;
  margin: 0;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 84px;
  background-color: #ffffff;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.partner-logo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.partner-logo img {
  max-height: 46px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

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

.process-step {
  position: relative;
  padding: 32px 26px 30px;
  background-color: #ffffff;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  height: 100%;
}

.process-step__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--brand-primary);
  line-height: 1;
  margin-bottom: 14px;
}

.process-step__title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.process-step__text {
  font-size: 0.94rem;
  color: #4a4437;
  margin: 0;
}

.stat {
  text-align: center;
  padding: 26px 14px;
}

.stat__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--brand-primary);
  line-height: 1;
}

.stat__label {
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4a4437;
  margin-top: 10px;
}

.section--dark .stat__label {
  color: #cdc4b3;
}

.price-card {
  background-color: #ffffff;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  padding: 38px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

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

.price-card--featured {
  border-color: var(--brand-primary);
  box-shadow: 0 22px 50px rgba(184, 137, 43, 0.18);
}

.price-card__ribbon {
  position: absolute;
  top: -14px;
  left: 32px;
  background-color: var(--brand-primary);
  color: #191714;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 15px;
  border-radius: 999px;
}

.price-card__name {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.price-card__desc {
  font-size: 0.93rem;
  color: #4a4437;
  margin-bottom: 1.4rem;
}

.price-card__amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--brand-dark);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.price-card__amount span {
  font-size: 1rem;
  color: #6b6357;
  font-family: var(--font-body);
}

.price-card__features {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.price-card__features li {
  display: flex;
  gap: 12px;
  font-size: 0.94rem;
  color: #3b352c;
}

.price-card__features i {
  color: var(--brand-primary-dark);
  margin-top: 5px;
}

.price-card .btn {
  margin-top: auto;
}

.accordion-item {
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 14px;
  background-color: #ffffff;
  overflow: hidden;
}

.accordion-button {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-dark);
  background-color: #ffffff;
  padding: 22px 24px;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: var(--brand-cream);
  color: var(--brand-primary-dark);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(184, 137, 43, 0.22);
}

.accordion-button::after {
  background-size: 1rem;
}

.accordion-body {
  padding: 6px 24px 26px;
  color: #3b352c;
  font-size: 0.97rem;
}

.newsletter {
  background-color: var(--brand-dark-soft);
  color: #f0eadf;
  border-radius: var(--radius-lg);
  padding: 60px 56px;
  position: relative;
  overflow: hidden;
}

.newsletter h2,
.newsletter h3 {
  color: #ffffff;
}

.newsletter p {
  color: #d3cb ba;
  color: #d3cbba;
  margin-bottom: 0;
}

.newsletter__form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.newsletter__form .form-control {
  flex: 1 1 220px;
  min-width: 200px;
}

.cta-band {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 118px 0;
  color: #ffffff;
  text-align: center;
}

.cta-band h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4.4vw, 3.3rem);
}

.cta-band p {
  color: #e2dacb;
  max-width: 60ch;
  margin: 0 auto 2rem;
}

.form-control,
.form-select {
  border-radius: 12px;
  border: 1px solid var(--brand-border);
  padding: 14px 18px;
  font-size: 0.97rem;
  background-color: #ffffff;
  color: var(--brand-dark);
}

.form-control::placeholder {
  color: #8c8474;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(184, 137, 43, 0.18);
  background-color: #ffffff;
  color: var(--brand-dark);
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #b0392b;
  box-shadow: 0 0 0 4px rgba(176, 57, 43, 0.12);
}

.form-message {
  display: none;
  margin-top: 18px;
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 0.94rem;
}

.form-message.is-visible {
  display: block;
}

.form-message--success {
  background-color: #e8f5ee;
  color: #175c3a;
  border: 1px solid #bfe3d0;
}

.form-message--error {
  background-color: #fdecea;
  color: #8c2318;
  border: 1px solid #f5c6c0;
}

.contact-info {
  display: flex;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--brand-border);
}

.contact-info__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--brand-cream);
  color: var(--brand-primary-dark);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  flex: 0 0 auto;
}

.contact-info__title {
  font-size: 1rem;
  margin-bottom: 2px;
}

.contact-info__value {
  color: #4a4437;
  font-size: 0.96rem;
  margin: 0;
}

.map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--brand-border);
  line-height: 0;
}

.map-frame iframe {
  width: 100%;
  height: 440px;
  border: 0;
  display: block;
  filter: grayscale(0.15) contrast(1.02);
}

.site-footer {
  background-color: var(--brand-dark);
  color: #c9c1b3;
  padding: 84px 0 30px;
}

.site-footer h3,
.site-footer h4 {
  color: #ffffff;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}

.site-footer a {
  color: #c9c1b3;
  display: inline-block;
  padding: 5px 0;
}

.site-footer a:hover {
  color: var(--brand-primary);
}

.site-footer p {
  color: #c9c1b3;
  font-size: 0.94rem;
  margin-bottom: 10px;
}

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

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #3c362d;
  display: grid;
  place-items: center;
  color: #c9c1b3;
  transition: all 0.28s var(--ease-out);
}

.footer-socials a:hover {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #191714;
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 58px;
  padding-top: 26px;
  border-top: 1px solid #2f2b24;
  font-size: 0.87rem;
  color: #a89f8f;
}

.page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 150px 0 96px;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(25, 23, 20, 0.62);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: #ffffff;
}

.page-hero p {
  color: #e2dacb;
  max-width: 62ch;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 14px;
}

.breadcrumb-item,
.breadcrumb-item a {
  color: #d6cdbc;
  font-size: 0.86rem;
}

.breadcrumb-item a:hover {
  color: var(--brand-primary);
}

.breadcrumb-item.active {
  color: #ffffff;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #a89f8f;
}

.legal-content h2 {
  font-size: 1.6rem;
  margin: 2.4rem 0 0.9rem;
}

.legal-content h3 {
  font-size: 1.2rem;
  margin: 1.8rem 0 0.7rem;
}

.legal-content p,
.legal-content li {
  color: #3b352c;
}

.legal-content ul {
  padding-left: 1.3rem;
}

.legal-content ul li {
  margin-bottom: 8px;
}

.team-card {
  background-color: #ffffff;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

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

.team-card__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background-color: var(--brand-cream);
}

.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

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

.team-card__body {
  padding: 24px;
}

.team-card__name {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.88rem;
  color: var(--brand-primary-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.team-card__text {
  font-size: 0.93rem;
  color: #4a4437;
  margin: 0;
}

.post-card {
  background-color: #ffffff;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

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

.post-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--brand-cream);
}

.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.post-card:hover .post-card__media img {
  transform: scale(1.06);
}

.post-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card__meta {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-primary-dark);
  margin-bottom: 12px;
}

.post-card__title {
  font-size: 1.32rem;
  margin-bottom: 0.6rem;
}

.post-card__text {
  font-size: 0.95rem;
  color: #4a4437;
  margin-bottom: 1.2rem;
}

.post-card__link {
  margin-top: auto;
  font-weight: 600;
  color: var(--brand-primary-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.post-card__link i {
  transition: transform 0.3s var(--ease-out);
}

.post-card__link:hover i {
  transform: translateX(5px);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2000;
  background-color: #ffffff;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 26px 28px;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  transform: translateY(150%);
  transition: transform 0.55s var(--ease-out);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__text {
  flex: 1 1 340px;
}

.cookie-banner__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin: 0 0 6px;
}

.cookie-banner__desc {
  font-size: 0.9rem;
  color: #4a4437;
  margin: 0;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-cookie {
  border: 1px solid var(--brand-primary);
  background-color: var(--brand-primary);
  color: #191714;
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
}

.btn-cookie:hover {
  background-color: var(--brand-primary-dark);
  border-color: var(--brand-primary-dark);
}

.btn-cookie--decline {
  background-color: transparent;
  color: var(--brand-dark);
  border-color: var(--brand-border);
}

.btn-cookie--decline:hover {
  background-color: var(--brand-cream);
  color: var(--brand-dark);
  border-color: var(--brand-border);
}

.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--brand-primary);
  color: #191714;
  border: 0;
  display: grid;
  place-items: center;
  font-size: 1rem;
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
}

.to-top.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.to-top:hover {
  background-color: var(--brand-primary-dark);
}

.divider-warm {
  width: 70px;
  height: 3px;
  border-radius: 3px;
  background-color: var(--brand-primary);
  margin: 0 auto 22px;
}

.object-fit-cover {
  object-fit: cover;
}

.ratio-warm {
  background-color: var(--brand-cream);
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

  .hero {
    min-height: auto;
    padding: 120px 0 86px;
  }

  .hero__stats {
    gap: 24px;
    margin-top: 44px;
  }

  .gallery-item--lg,
  .gallery-item--sm,
  .gallery-item--md {
    grid-column: span 12;
    aspect-ratio: 16 / 11;
  }

  .newsletter {
    padding: 44px 32px;
  }

  .carousel-hero .carousel-item {
    min-height: 66vh;
  }

  .navbar-collapse {
    padding: 18px 0 8px;
  }
}

@media (max-width: 575.98px) {
  body {
    font-size: 16px;
  }

  .section {
    padding: 62px 0;
  }

  .newsletter {
    padding: 34px 24px;
    border-radius: var(--radius-md);
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 22px 20px;
  }

  .btn-cookie {
    width: 100%;
    text-align: center;
  }

  .cta-band {
    padding: 84px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
/* =========================================================
   QA overrides: contrast + link fixes (added, non-destructive)
   ========================================================= */

/* Solid dark base behind the photo-background hero and image sections
   so light-on-dark text is measured against the correct background. */
.page-hero {
  background-color: var(--brand-dark);
}

.section--image {
  background-color: var(--brand-dark);
}

/* Gallery captions sit on top of a photo; give them an opaque dark base. */
.gallery-item__caption {
  background-color: #191714;
}

/* Team member names must be dark: the cards are white even though they
   live inside the ".section--dark" wrapper (which forces h3 to #fff). */
.section--dark .team-card__name {
  color: var(--brand-dark);
}

/* Stat numbers on the light backgrounds need a slightly deeper gold. */
.stat__value {
  color: var(--brand-primary-dark);
}

/* ...but keep the brighter gold on the dark image sections. */
.section--image .stat__value {
  color: var(--brand-primary);
}

/* Small uppercase eyebrow text: darken a touch on light sections.
   Dark sections/image sections keep their brighter gold (higher specificity). */
.eyebrow {
  color: #6f5113;
}

/* The services dropdown toggle is now a <button>: make it look like the
   other navigation links. */
.navbar-nav button.nav-link {
  background: transparent;
  border: 0;
  color: var(--brand-dark);
  cursor: pointer;
}

/* QA contrast overrides (blog page) */
.eyebrow {
  color: #6f5010;
}
.section--cream .btn-outline-brand {
  color: #6f5010;
  border-color: #6f5010;
}
.section--cream .accordion-button:not(.collapsed) {
  color: #6f5010;
}
.stat__value {
  color: #a87c20;
}
.section--dark .form-label {
  color: #e2dacb;
}
.site-footer a.btn-brand,
.site-footer a.btn-brand:hover,
.site-footer a.btn-brand:focus {
  color: #191714;
}
.page-hero {
  background-color: #191714;
}
.section--image {
  background-color: #191714;
}

/* =========================================================
   QA overrides (contacts page): contrast fixes
   ========================================================= */

/* Process-step cards are white even inside the ".section--dark"
   wrapper, which forces h3 to #fff (white-on-white). */
.section--dark .process-step__title {
  color: var(--brand-dark);
}

/* Open accordion button on a plain (non-cream) light section:
   deepen the gold so it meets contrast on white/cream. */
.accordion-button:not(.collapsed) {
  color: #6f5010;
}

/* Stat labels sit on the dark image section: lighten them so they
   are readable against the dark background. */
.section--image .stat__label {
  color: #d6cdbc;
}

/* QA fix: ensure form labels stay readable on the dark (#2b2721) form panel */
[style*="background-color: #2b2721"] .form-label,
#aanvraag .form-label,
.section--dark .form-label {
  color: #ece6da !important;
}

[style*="background-color: #2b2721"] .form-check-label,
#aanvraag .form-check-label {
  color: #d3cbba !important;
}

/* QA fix: dark form panel inputs need visible text and placeholders */
[style*="background-color: #2b2721"] .form-control,
[style*="background-color: #2b2721"] .form-select,
#aanvraag .form-control,
#aanvraag .form-select {
  color: #2b2721;
}

/* =========================================================
   QA overrides (price page): make the comparison table readable
   ========================================================= */
/* Bootstrap's .table sets --bs-table-bg to the body background (white),
   which made the light-on-dark table text invisible inside .section--dark.
   Force a transparent background so the dark section shows through. */
.section--dark .table,
.section--dark .table > :not(caption) > * > * {
  --bs-table-bg: transparent;
  --bs-table-color: #cfc7b8;
  --bs-table-border-color: #2f2b24;
  background-color: transparent;
}

.section--dark .table-responsive {
  background-color: transparent;
}

/* Dropdown toggle rendered as a <button> in the header: align it with links. */
.navbar-nav button.nav-link.dropdown-toggle {
  display: flex;
  align-items: center;
}

/* =========================================================
   QA overrides (homepage): contrast fixes
   ========================================================= */

/* The hero and the assortment carousel use a photo background with only a
   gradient overlay, so they have no computed background-color. Without an
   explicit dark base the light-on-dark text is measured against the cream
   body background. Give these containers an opaque dark base that sits
   behind the (inline-styled) background image. */
.hero {
  background-color: #191714;
}

.carousel-hero {
  background-color: #191714;
}

.carousel-hero .carousel-item {
  background-color: #191714;
}

/* Ensure the "Diensten" dropdown toggle (now a button) keeps nav-link appearance */
.navbar .nav-link.dropdown-toggle[type="button"] {
  background: transparent;
  border: 0;
  font: inherit;
  text-align: inherit;
  cursor: pointer;
}
