:root {
  --color-primary: #8f1d3f;
  --color-primary-dark: #6f1430;
  --color-primary-soft: #c95a6b;
  --color-background: #fbf4ec;
  --color-surface: #fffaf5;
  --color-surface-alt: #f3e7da;
  --color-border: #e5d3c3;
  --color-text: #5a4a45;
  --color-heading: #7a2340;
  --color-muted: #8b7a73;
  --shadow-soft: 0 18px 40px rgba(122, 35, 64, 0.08);
  --shadow-card: 0 16px 35px rgba(122, 35, 64, 0.06);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--color-text);
  background: linear-gradient(180deg, #fcf7f1 0%, #fbf4ec 100%);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 {
  margin: 0 0 1rem;
  color: var(--color-heading);
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.08;
}
h1 { font-size: clamp(2.5rem, 5vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
ul { padding-left: 1.15rem; }
label { display: inline-block; margin-bottom: .45rem; font-weight: 600; color: var(--color-heading); }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: .95rem 1rem;
  font: inherit;
  color: var(--color-text);
  background: rgba(255,255,255,.95);
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: rgba(143,29,63,.55);
  box-shadow: 0 0 0 4px rgba(143,29,63,.09);
}
textarea { resize: vertical; min-height: 140px; }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.section { padding: 5rem 0; }
.section--tight { padding: 2.5rem 0; }
.section--soft { background: linear-gradient(180deg, rgba(255,255,255,.7), rgba(248,238,228,.8)); }
.section--cta-strip { padding-top: 0; }
.section-title { max-width: 760px; margin-bottom: 2rem; }
.section-title--centered { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow { color: var(--color-primary); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .85rem; }
.skip-link {
  position: absolute; left: -9999px; top: 1rem; background: #fff; padding: .75rem 1rem; z-index: 200;
}
.skip-link:focus { left: 1rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: 1rem 1.5rem; border-radius: 12px; background: var(--color-primary);
  color: #fff; font-weight: 700; transition: .25s ease; border: 1px solid var(--color-primary);
}
.button:hover, .button:focus-visible {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-1px);
}
.button--secondary { background: transparent; color: var(--color-primary); }
.button--secondary:hover, .button--secondary:focus-visible { color: #fff; }
.button--small { padding: .8rem 1.15rem; font-size: .95rem; }
.button--light { background: #fff; color: var(--color-primary); border-color: #fff; }
.button--light:hover, .button--light:focus-visible { background: #f7ebe2; border-color: #f7ebe2; }
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,250,245,.96);
  backdrop-filter: blur(12px); border-bottom: 1px solid rgba(229,211,195,.8);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 86px;
}
.site-logo img { width: 176px; }
.site-nav ul {
  display: flex; align-items: center; gap: 1.25rem; list-style: none; padding: 0; margin: 0;
}
.site-nav a { font-weight: 600; color: var(--color-heading); font-size: .95rem; }
.site-nav a.button,
.site-nav a.button:visited {
  color: #fff !important;
}
.site-nav a.button:hover,
.site-nav a.button:focus-visible,
.site-nav a.button:active {
  color: #fff !important;
}
.site-nav a.is-active:not(.button) { color: var(--color-primary); }

.linkedin-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: .8rem 1.15rem;
  border-radius: 12px;
  background: #0A66C2;
  border: 1px solid #0A66C2;
  color: #fff !important;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(10, 102, 194, .18);
  transition: background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.linkedin-button:hover,
.linkedin-button:focus-visible {
  background: #004182;
  border-color: #004182;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(0, 65, 130, .22);
}
.linkedin-button__icon {
  width: 1.8rem;
  height: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: .45rem;
  background: #fff;
  color: #0A66C2;
}
.linkedin-button--header {
  white-space: nowrap;
  gap: .55rem;
  padding: .58rem .9rem;
  font-size: .88rem;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(10, 102, 194, .16);
}
.linkedin-button--header .linkedin-button__icon {
  width: 1.45rem;
  height: 1.45rem;
  border-radius: .35rem;
}
.linkedin-button--header .linkedin-button__icon svg {
  width: 14px;
  height: 14px;
}
.linkedin-button--footer {
  margin-top: .35rem;
  min-width: 0;
  padding: .85rem 1.1rem;
  border-radius: 999px;
}
.linkedin-button--footer .linkedin-button__icon {
  width: 1.65rem;
  height: 1.65rem;
}
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.nav-toggle {
  display: none; background: transparent; border: 0; padding: .5rem; cursor: pointer;
}
.nav-toggle__line {
  display: block; width: 28px; height: 2px; background: var(--color-primary); margin: 6px 0;
}
.hero {
  padding: 3rem 0 0; position: relative; overflow: hidden;
}
.hero::before,
.page-hero::before {
  content: '';
  position: absolute;
  right: -120px;
  top: -70px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,90,107,.18), rgba(201,90,107,0));
  pointer-events: none;
}
.hero--home {
  background: linear-gradient(180deg, #faf2e9 0%, #f8eee4 100%);
  border-bottom: 1px solid rgba(229,211,195,.75);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}
.hero__content,
.page-hero__content { padding: 2rem 0; position: relative; z-index: 1; }
.hero__content p,
.page-hero__grid p:not(.eyebrow):not(.quote-card) { max-width: 620px; font-size: 1.08rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 2rem 0 1.25rem; }
.hero__note { color: var(--color-heading); font-weight: 500; }
.hero__visual {
  transform: translateX(-2%) scale(1.18);
  transform-origin: center center;
}

.hero__visual img {
  width: 135%;
  max-width: none;
  height: auto;
  border-radius: 0;
  display: block;
}
.page-hero__visual { position: relative; z-index: 1; }
.intro-points {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}
.intro-points__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 2rem;
}
.intro-points__item {
  position: relative; padding-left: 1.6rem; font-size: 1.05rem; color: var(--color-heading); font-weight: 600;
}
.intro-points__item::before {
  content: '✓'; position: absolute; left: 0; top: 0; color: var(--color-primary); font-weight: 700;
}
.stats-grid, .audience-grid, .service-grid, .value-grid, .contact-grid, .cards-3, .cards-2 {
  display: grid; gap: 1.5rem;
}
.stats-grid, .audience-grid, .cards-3 { grid-template-columns: repeat(3, 1fr); }
.service-grid--feature, .cards-2, .value-grid { grid-template-columns: repeat(2, 1fr); }
.contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
.card {
  background: rgba(255,250,245,.94); border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: 1.75rem; box-shadow: var(--shadow-card); height: 100%;
}
.card--soft { background: linear-gradient(180deg, #fff9f3 0%, #f8eee4 100%); }
.card--audience,
.card--service-feature,
.card--value { text-align: center; }
.card--audience .button,
.card--service-feature .button { margin-top: auto; }
.card__illustration {
  width: 100%; border-radius: 18px; margin-bottom: 1.25rem; border: 1px solid rgba(229,211,195,.9);
  background: linear-gradient(180deg, #fffdf9, #f6e7da);
}
.card--service-feature,
.card--value { text-align: left; }
.card--service-feature .card__illustration { margin-bottom: 1.4rem; }
.card--value { background: rgba(255,255,255,.8); }
.list-checks { list-style: none; padding: 0; margin: 1rem 0 0; }
.list-checks li {
  position: relative; padding-left: 1.5rem; margin-bottom: .75rem;
}
.list-checks li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--color-primary); font-weight: 700; }
.band {
  background: linear-gradient(180deg, #fff 0%, #fbf4ec 100%); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border);
}
.cta-panel {
  background: linear-gradient(180deg, #8f1d3f 0%, #7b1736 100%); color: #fff; padding: 3rem; border-radius: 0;
  box-shadow: var(--shadow-soft); display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.cta-panel h2, .cta-panel p { color: #fff; }
.cta-panel > div { flex: 1; min-width: 0; }
.cta-panel .button {
  width: auto;
  min-width: 190px;
  white-space: normal;
  flex-shrink: 0;
  text-align: center;
}

.page-hero {
  position: relative;
  padding: 4rem 0 2rem;
  background: linear-gradient(180deg, rgba(248,238,228,.9), rgba(251,244,236,.35));
}
.page-hero__grid {
  display: grid; grid-template-columns: 1fr .8fr; gap: 2rem; align-items: center;
}
.page-hero__visual {
  min-height: 300px;
  border-radius: 28px;
  background: linear-gradient(180deg, #f8ecdf, #f1dfd0);
  border: 1px solid var(--color-border);
}
.page-hero__visual--image {
  min-height: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: linear-gradient(180deg, #fffaf5, #f3e4d7);
}
.page-hero__visual--image img {
  width: 100%;
  max-width: 540px;
  border-radius: 24px;
  border: 1px solid rgba(229,211,195,.9);
  background: rgba(255,255,255,.55);
}
.cards-2--aligned { align-items: stretch; }
.page-hero--about {
  background: linear-gradient(180deg, #faf2e9 0%, rgba(251,244,236,.55) 100%);
  border-bottom: 1px solid rgba(229,211,195,.75);
}

/* ABOUT PAGE OVERFLOW FIX */
.page-hero--about {
  overflow-x: clip;
}

.page-hero--about .page-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, .8fr);
}

.page-hero--about .page-hero__grid > * {
  min-width: 0;
}

.page-hero--about .page-hero__content {
  min-width: 0;
}

.page-hero--about .page-hero__visual,
.page-hero--about .page-hero__visual--image {
  min-width: 0;
  overflow: hidden;
}

.page-hero--about .page-hero__visual--image img {
  width: 100%;
  max-width: 100%;
  height: auto;
}



.page-hero--compliance {
  overflow-x: clip;
}

.page-hero--compliance .page-hero__grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, .8fr);
}

.page-hero--compliance .page-hero__grid > * {
  min-width: 0;
}

.page-hero--compliance .page-hero__content,
.page-hero--compliance .page-hero__visual {
  min-width: 0;
}


.quote-card {
  border-left: 4px solid var(--color-primary);
  padding-left: 1rem;
  margin-top: 1.25rem;
  color: var(--color-heading);
  font-weight: 600;
}
.booking-grid { align-items: stretch; }
.booking-form-card,
.booking-preview-card { height: 100%; }
.booking-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.booking-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.booking-form__row--single { grid-template-columns: 1fr; }
.booking-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: .5rem;
}
.booking-form__note {
  font-size: .95rem;
  color: var(--color-muted);
  margin: 0;
}
.calendar-preview {
  margin-top: 1.5rem;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  padding: 1.25rem;
}
.calendar-preview__header,
.calendar-preview__weekdays,
.calendar-preview__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .75rem;
}
.calendar-preview__header {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 1rem;
}
.calendar-preview__header span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(143,29,63,.08);
  color: var(--color-primary);
  font-size: .85rem;
  font-weight: 700;
}
.calendar-preview__month {
  margin-bottom: .75rem;
  color: var(--color-heading);
  font-weight: 700;
}
.calendar-preview__weekdays {
  font-size: .85rem;
  font-weight: 700;
  color: var(--color-muted);
  margin-bottom: .75rem;
}
.calendar-preview__day {
  display: grid;
  place-items: center;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-muted);
}
.calendar-preview__day.is-open {
  color: #fff;
  background: linear-gradient(180deg, var(--color-primary), var(--color-primary-dark));
  border-color: var(--color-primary);
}
.calendar-preview__slots {
  display: grid;
  gap: .75rem;
  margin-top: 1rem;
}
.calendar-preview__slot {
  padding: .85rem 1rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff9f3, #f7ebdf);
  border: 1px solid var(--color-border);
  color: var(--color-heading);
  font-weight: 600;
}
.notice-box {
  background: #fff; border: 1px dashed var(--color-border); border-radius: var(--radius-md); padding: 1.25rem;
}
.kicker-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 2rem; }
.kicker-list li { margin-bottom: 0; }
.site-footer {
  margin-top: 0; background: #f6ebe0; border-top: 1px solid var(--color-border); padding: 3.5rem 0 1.25rem;
}
.site-footer__grid { display: grid; grid-template-columns: 1.1fr .8fr 1fr; gap: 2rem; }
.site-footer__logo { width: 200px; margin-bottom: 1rem; }
.site-footer h2 { font-size: 1.5rem; margin-bottom: .75rem; }
.footer-links, .footer-contact, .footer-meta { list-style: none; padding: 0; margin: 0; }
.footer-links li, .footer-contact li, .footer-meta li { margin-bottom: .65rem; }
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1rem;
}
.footer-socials a:not(.linkedin-button) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  padding: .75rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: rgba(255,255,255,.65);
  color: var(--color-heading);
  font-weight: 600;
}
.footer-socials .linkedin-button {
  background: #0A66C2;
  border-color: #0A66C2;
  color: #fff !important;
}
.footer-socials .linkedin-button:hover,
.footer-socials .linkedin-button:focus-visible {
  background: #004182;
  border-color: #004182;
  color: #fff !important;
}
.footer-socials .linkedin-button span:last-child {
  color: #fff;
}
.site-footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: 2rem;
  padding-top: 1rem; border-top: 1px solid var(--color-border); font-size: .95rem; color: var(--color-muted);
}
.legal-copy {
  font-size: .95rem;
  color: var(--color-muted);
}
@media (max-width: 980px) {
  .hero__grid,
  .page-hero__grid,
  .stats-grid,
  .audience-grid,
  .service-grid--feature,
  .contact-grid,
  .cards-3,
  .cards-2,
  .value-grid,
  .site-footer__grid,
  .intro-points__grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: 86px;
    left: 1rem;
    right: 1rem;
    background: rgba(255,250,245,.98);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: var(--shadow-soft);
    display: none;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; align-items: stretch; }
  .nav-toggle { display: block; }
  .cta-panel { flex-direction: column; align-items: flex-start; }
  .site-logo img { width: 160px; }
  .booking-form__row,
  .calendar-preview__weekdays,
  .calendar-preview__grid {
    grid-template-columns: 1fr;
  }
  .booking-form__actions { align-items: stretch; }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .hero { padding-top: 2rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .kicker-list { grid-template-columns: 1fr; }
  .card { padding: 1.35rem; }
  .cta-panel { padding: 2rem; }
  .button { width: 100%; }
  .site-footer__bottom { flex-direction: column; }
}

/* About page specific smaller hero title */
.page-hero__title--small {
    font-size: clamp(1.25rem, 2.5vw, 2.5rem);
}

/* Booking */
.booking-embed-card {
    padding: 1.5rem;
}

.booking-embed__actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.booking-embed {
    width: 100%;
    min-height: 950px;
    border-radius: 1rem;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.booking-embed iframe {
    display: block;
    width: 100%;
    min-height: 950px;
    border: 0;
    background: #ffffff;
}

/* Cookies Banner */
.cookie-banner__link {
    color: #93c5fd;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-banner__link:hover {
    color: #ffffff;
}
.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 99999;
}

.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0f172a 0%, #111827 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.30);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    flex-wrap: wrap;
}

.cookie-banner__content {
    flex: 1 1 560px;
    min-width: 280px;
}

.cookie-banner__title {
    margin: 0 0 0.35rem 0;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.cookie-banner__text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
}

.cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-banner__button {
    appearance: none;
    border: 0;
    border-radius: 999px;
    padding: 0.8rem 1.3rem;
    font: inherit;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.18s ease, opacity 0.18s ease, box-shadow 0.18s ease;
    min-width: 110px;
}

.cookie-banner__button:hover {
    transform: translateY(-1px);
    opacity: 0.96;
}

.cookie-banner__button--accept {
    background: #0a66c2;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(10, 102, 194, 0.35);
}

.cookie-banner__button--reject {
    background: rgba(255, 255, 255, 0.10);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

@media (max-width: 768px) {
    .cookie-banner {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
    }

    .cookie-banner__inner {
        padding: 1rem;
    }

    .cookie-banner__actions {
        width: 100%;
    }

    .cookie-banner__button {
        flex: 1 1 140px;
    }
}
.booking-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #eef4f8 100%);
    border: 1px solid #dbe4ea;
    border-radius: 18px;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.booking-placeholder__title {
    margin: 0 0 0.75rem 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
}

.booking-placeholder__text {
    margin: 0 0 1.5rem 0;
    max-width: 560px;
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
}

.booking-placeholder__button {
    appearance: none;
    border: 0;
    border-radius: 999px;
    padding: 0.9rem 1.5rem;
    font: inherit;
    font-weight: 700;
    font-size: 0.98rem;
    color: #ffffff;
    background: linear-gradient(135deg, #0a66c2 0%, #004182 100%);
    box-shadow: 0 10px 24px rgba(10, 102, 194, 0.28);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.booking-placeholder__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(10, 102, 194, 0.34);
}

.booking-placeholder__button:active {
    transform: translateY(0);
}

.booking-placeholder__button:focus-visible {
    outline: 3px solid rgba(10, 102, 194, 0.22);
    outline-offset: 3px;
}
