@font-face {
  font-family: 'PP Monument Wide';
  src: url('../fonts/PPMonumentWide-Regular.woff2') format('woff2'),
       url('../fonts/PPMonumentWide-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Stack Sans Text", sans-serif;
  background: #F7F4F1;
  color: #1e1438;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
}

/* ===== TOKENS ===== */
:root {
  --navy: #5D1B2A;
  --navy2: #2b1b3d;
  --pink: #c8476d;
  --pink-l: #f2dce8;
  --pink-m: #e8c2d4;
  --bg: #F7F4F1;
  --bg2: #F7F4F1;
  --white: #ffffff;
  --grey: #7a6b86;
  --border: #e8d5e2;
  --r: 14px;
  --r-pill: 50px;
}

/* ===== TYPOGRAPHY ===== */
h1 {
  font-size: 56px;
  font-weight: 700;
  font-family: "PP Monument Wide", sans-serif;
  line-height: 1.1;
  color: #5D1B2A;
}
h2 {
  font-size: clamp(24px, 2.8vw, 1.8rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 2.8rem;
  color: #5D1B2A;
}
h3 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}
p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
}

/* ===== SHARED ===== */
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

section.gallery-sec .wrap {
padding: 0 0;

}
section {
  padding: 5rem 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: var(--r-pill);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.22s;
  white-space: nowrap;
}
.btn-dark {
  background: #1D3264;
  color: #8FB7FC;
  transition: all 1s;

}

.btn-dark.outline {
  background: #1D3264;
  color: #fff;
  transition: all 0.2s;

}

.btn.btn-dark.outline:hover {
  color: #fff;
  background: #1D3264;
  border: 1px solid #1D3264;

}

.btn-dark svg {
  position: relative;
  left: 0;
  transition: 0.3s;
  margin-left: 10px;
}

.btn-dark:hover svg {
  position: relative;
  left: 3px;
}
.btn-dark:hover {
  background: #143583;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}
.arrow-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ===================================================
   NAVBAR
=================================================== */
.navbar {
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 14px;
  transition: box-shadow 0.2s;
}

.navbar .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}

.logo {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-right: 2rem;
  flex-shrink: 0;
}
.logo b {
  color: var(--pink);
  font-weight: 700;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    margin-right: 20px;
    justify-content: flex-end;
}
.nav-list > li {
  position: relative;
}
.nav-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  border-radius: 8px;
  transition: background 0.18s;
}

.btn.btn-dark.outline {
  border: 1px solid #fff;
  background: none;
}

.nav-btn:hover {
  color: #1D3264;
}
.nav-btn .ch {
  width: 13px;
  height: 13px;
  transition: transform 0.22s;
}
.nav-list > li.open > .nav-btn .ch {
  transform: rotate(180deg);
}

.nav-dd {
  position: absolute;
  top: 100%;
  left: 0;
  background: #1D3264;
  border-radius: var(--r);
  min-width: 310px;
  box-shadow: 0 8px 30px rgba(30, 20, 56, 0.13);
  padding: 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
}
.nav-list > li:hover .nav-dd {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-list > li:hover > .nav-btn .ch {
  transform: rotate(180deg);
}
.nav-dd a {
  display: block;
  padding: 10px 18px;
  font-size: 15px;
  letter-spacing: 0.4px;
  color: #fff;
  transition: background 0.15s;
}
.nav-dd a:hover {
  color: #E1B4D1;
}

.head {
  background: #e1b4d1;
}

.nav-cta {
  margin-left: auto;
}

/* hamburger */
.ham {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;align-items: flex-end;
}
.ham span {
  display: block;text-align: right;
  width: 35px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.28s;
}

.ham span:nth-child(1) {
  width: 60%

}

.ham span:nth-child(2) {
  width: 80%

}

.ham.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);

}
.ham.active span:nth-child(2) {
  opacity: 0;
}
.ham.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===================================================
   MOBILE MENU
=================================================== */
.mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 888;
  background: #fff;
  overflow-y: auto;
  padding-bottom: 100px;
}
.mob-menu.open {
  display: block;
}
.mob-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
}
.mob-close {
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mob-close::before,
.mob-close::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}
.mob-close::before {
  transform: rotate(45deg);
}
.mob-close::after {
  transform: rotate(-45deg);
}
.mob-item {
  border-bottom: 1px solid #e8eaf2;
}
.mob-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: color 0.18s;

  padding: 14px 24px;
  font-size: 18px;
  font-weight: 500;
  color: #152854;
}
.mob-trigger.active {
  color: #7ab0e0;
}
.mob-ch {
  width: 20px;
  height: 20px;
  transition: transform 0.25s;
  color: #7ab0e0;
  flex-shrink: 0;
}
.mob-trigger.active .mob-ch {
  transform: rotate(180deg);
}
.mob-link {
  display: block;
  padding: 14px 24px;
  font-size: 18px;
  font-weight: 500;
  color: #152854;
  transition: color 0.18s;
}
.mob-link:hover {
  color: var(--pink);
}
.mob-sub {
  display: none;
  padding: 4px 0 12px;
  background: #fff;
}
.mob-sub.open {
  display: block;
}
.mob-sub a {
  display: block;
  padding: 11px 24px 11px 32px;
  font-size: 0.95rem;
  font-weight: 400;
  color: #7a6b86;
  transition: color 0.18s;
}
.mob-sub a:hover {
  color: var(--navy);
}
.mob-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 24px 20px;
  background: #fff;
}
.mob-cta .btn {
  width: 100%;
  justify-content: center;
  background: var(--navy2);
  font-size: 0.95rem;
  padding: 16px 28px;
}

/* ===================================================
   HERO
=================================================== */
.hero-outer {
    position: relative;
    overflow: hidden;
    background: url(../images/photo-woman.webp) no-repeat top right;
    min-height: auto;
    background-size: contain;
    padding-top: 62px;
}
/* pink blob background right side */
.hero-blob {
  position: absolute;
  top: -5%;
  right: -8%;
  width: 54%;
  height: 115%;
  background: radial-gradient(
    ellipse 85% 90% at 55% 48%,
    #f2dce8 0%,
    #e6c0d4 50%,
    #d8a8c2 85%,
    transparent 100%
  );
  border-radius: 50% 0 0 50% / 40% 0 0 40%;
  z-index: 0;
  pointer-events: none;
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text {
  padding: 0 0 40px;
}
.hero-text h1 {
  color: var(--navy);
  margin-bottom: 1.2rem;
}
.hero-text h1 em {
  color: var(--pink);
  font-style: normal;
}
.hero-lead {
  font-size: 14px;
  font-family: 'PP Monument Wide';
  color: #5D1B2A;
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #9cff00;
    border-radius: 50%;
    position: relative;
    z-index: 1;
  }

  .pulse-dot::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(156, 255, 0, 0.35);
    transform: scale(1);
    animation: pulse 1.8s ease-out infinite;
    z-index: -1;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 0.7;
    }
    70% {
      transform: scale(2.2);
      opacity: 0;
    }
    100% {
      transform: scale(3.2);
      opacity: 0;
    }
  }

.hero-meta a {
  display: flex;
  align-items: center;
  font-weight: 500;
  gap: 6px;
  font-size: 14px;
  color: #5D1B2A;
  transition: color 0.18s;
}

.f-accept img {
    height: 40px;
}
.hero-meta a:hover {
  color: var(--navy);
}
.hero-meta svg {
  flex-shrink: 0;
  color: var(--pink);
}

/* right photo */
.hero-visual {
  position: relative;
  max-height: 800px;
  display: flex;
  align-items: flex-end;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  background: linear-gradient(
    170deg,
    rgba(242, 220, 232, 0) 0%,
    rgba(216, 168, 194, 0.4) 100%
  );
}

/* swirl decorations */
.swirl {
  position: absolute;
  pointer-events: none;
  z-index: 3;
}
.swirl-l {
  bottom: 30%;
  left: -30px;
  width: 130px;
  opacity: 0.65;
}
.swirl-r {
  top: 18%;
  right: 10px;
  width: 90px;
  opacity: 0.5;
}

/* ===================================================
   WHY US
=================================================== */
.why {
  background: var(--bg);
  padding: 5rem 0 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  text-align: left;
  padding: 2rem 1.8rem 2.2rem;
  border-radius: 12px;
}
.why-card:nth-child(1) {
  background: #E5EEFE;
}
.why-card:nth-child(2) {
  background: #FEE8EE;
}
.why-card:nth-child(3) {
  background: #E8E8E8;
}

.why-ic {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why-ic svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.4;
}
.why-card:nth-child(1) .why-ic svg {
  color: #4a6fa5;
}
.why-card:nth-child(2) .why-ic svg {
  color: #c8476d;
}
.why-card:nth-child(3) .why-ic svg {
  color: #7a7a8a;
}
.why-card h3 {
  margin-bottom: 0.7rem;
  font-size: 20px;
  font-weight: 700;
}

.why-card:nth-child(1) h3 {
  color: #1D3264;
}

.why-card:nth-child(1) p {
  color: #546388;
}

.why-card:nth-child(2) h3 {
  color: #5D1B2A;
}

.why-card:nth-child(2) p {
  color: #9F707A;
}

.why-card:nth-child(3) h3 {
  color: #3C3C3B;
}

.why-card:nth-child(3) p {
  color: #777777;
}

.why-card p {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: #4a5068;
}

/* dots indicator shared */
.slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 1.4rem;
}
.slider-dots .dot {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: #c4d0e8;
  cursor: pointer;
  transition: background 0.25s, width 0.25s;
}
.slider-dots .dot.active {
  background: #1e2d5a;
  width: 36px;
}

/* mobile-only slider wrapper */
.mob-slider-outer {
  position: relative;
  overflow: hidden;
}
.mob-slider-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.mob-slider-track .why-card {
  flex-shrink: 0;
  width: 100%;
}

/* ===================================================
   SERVICES
=================================================== */
.services {
  background: var(--bg);
  padding: 5rem 0;
}
.srv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: end;
}

/* ---- photo card (01, 02, 04) ---- */
.srv-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 2px 14px rgba(30, 20, 56, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  /* fixed tall height so photo fills card */
  height: 480px;
}
.srv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(30, 20, 56, 0.14);
}

/* full-bleed photo */
.srv-thumb {
  inset: 0;
  background: linear-gradient(135deg, var(--pink-l), var(--pink-m));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  transition: transform 0.45s ease;
}
.srv-card:hover .srv-thumb {
  transform: scale(1.04);
}
.srv-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}



/* text sits above overlay */
.srv-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 0 54px 0 0;
  z-index: 2;
  padding: 1.4rem 1.4rem 1.6rem;
}
.srv-num {
  font-size: 14px;
  font-weight: 700;
  color: #5D1B2A;
  letter-spacing: 1.5px;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  display: block;
}
.srv-body h3 {
  font-size: 20px;
  font-weight: 500;
  color: #3C3C3B;
  margin-bottom: 0;
  line-height: 1.3;
}

/* description: hidden by default, slides up on hover */
.srv-desc {
  font-size: 0.82rem;
  line-height: 1.6;
  color: #777777;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.15s ease, margin 0.35s ease;
  margin-top: 0;
}
.srv-card:hover .srv-desc {
  max-height: 150px;
  opacity: 1;
  margin-top: 0.65rem;
}

.srv-card:hover .srv-link {
  display: none
}
.srv-link {
  display: none;
  align-items: center;
  gap: 5px;
  visibility: hidden;
  font-size: 0.8rem;
  font-weight: 700;
  color: #1D3264;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.1s ease 0.1s, transform 0.1s ease 0.1s;
  margin-top: 0.55rem;
}

.srv-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  visibility: visible;
}

.srv-card:hover .srv-link {
  opacity: 1;
  transform: translateY(0);
}

/* ---- featured card (03) — no photo, white bg, always shows text ---- */
.srv-card.featured {
  background: #fff;
  height: auto; /* auto height, slightly taller via padding */
  transform: translateY(-20px);
  box-shadow: 0 14px 40px rgba(200, 71, 109, 0.18);
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.srv-card.featured:hover {
  transform: translateY(-26px);
  box-shadow: 0 20px 48px rgba(200, 71, 109, 0.24);
}

/* featured has a real photo thumb on top */
.srv-card.featured .srv-thumb {
  position: relative;
  inset: auto;
  height: 220px;
  flex-shrink: 0;
  font-size: 3.5rem;
}
.srv-card.featured .srv-overlay {
  display: none;
}
.srv-card.featured .srv-body {
  position: static;
  padding: 1.2rem 1.4rem 1.8rem;
}
.srv-card.featured .srv-num {
  color: var(--pink);
}
.srv-card.featured .srv-body h3 {
  color: var(--navy);
  font-size: 0.95rem;
}
.srv-card.featured .srv-desc {
  font-size: 0.82rem;
  color: var(--grey);
  max-height: none;
  opacity: 1;
  margin-top: 0.5rem;
  overflow: visible;
}
.srv-card.featured .srv-link {
  color: var(--pink);
  opacity: 1;
  transform: none;
  text-decoration: none;
  font-weight: 700;
}
.srv-card.featured .srv-link:hover {
  text-decoration: underline;
}

/* ===================================================
   QUOTE
=================================================== */
.quote-sec {
  padding: 0 0;
  text-align: center;
}
.quote-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}
.quote-mark {
  font-size: 4.5rem;
  line-height: 0.5;
  color: var(--pink);
  opacity: 0.15;
  display: block;
  margin-bottom: 0.4rem;
}
.quote-text {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
}
.quote-text em {
  color: var(--pink);
  font-style: italic;
}
.quote-sec img {
    margin: auto;
}

/* ===================================================
   GALLERY SLIDER
=================================================== */
.gallery-sec {
  background: var(--bg);
  padding: 5rem 0 0;
}
.slider-wrap {
  position: relative;
  margin-top: 0.5rem;
}
.slider-overflow {
  overflow: hidden;
}
.slider-track {
  display: flex;
  gap: 16px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.slide {
  flex-shrink: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #e8d0e0, #d0b8cc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  cursor: pointer;
}
.slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: 0.3s;
}

.slide img:hover {
  transform: scale(1.05);
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1D3264;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.2s;
}
.slider-btn:hover {
  background: #2d4080;
}
.slider-btn svg {
  width: 17px;
  height: 17px;
}
.slider-prev {
  left: -80px;
}
.slider-next {
  right: -80px;
}
/* gallery dots (hidden on desktop, shown on mobile) */
.gallery-dots {
  display: none;
}

/* ===================================================
   FAQ
=================================================== */
.faq-sec {
  background: var(--bg);
  padding: 5rem 0 0;
}
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(30, 20, 56, 0.05);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.3rem 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: #3C3C3B;
  text-align: left;
  gap: 1rem;
  transition: color 0.18s;
  font-family: inherit;
}
.faq-q:hover {
  color: #8FB7FC;
}
.faq-ic {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.22s;
}
.faq-ic svg {
  width: 28px;
  height: 28px;
  color: #7ab0d8;
  transition: transform 0.22s;
}
.faq-item.open > .faq-q {
  color: #3C3C3B;
}


.faq-item.open .faq-ic {
  background: transparent;
  border-color: #a8c4e0;
}
/* open = minus icon (rotate one arm) */
.faq-item.open .faq-ic svg {
  color: #7ab0d8;
}
.faq-a {
  display: none;
  padding: 0 1.6rem 1.5rem;
  font-size: 0.88rem;
  line-height: 1.8;
  color: #6b6b7a;
}
.faq-a p {
  margin-bottom: 0.9rem;
  color: #777777;
  font-size: 0.88rem;
}
.faq-a p:last-child {
  margin-bottom: 0;
}

/* ===================================================
   PRICING
=================================================== */
.pricing-sec {
  background: var(--bg);
  padding: 5rem 0 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.ptable {
  border-radius: 18px;
  background: #fff;
  padding: 30px 30px 35px;
  box-shadow: 0 1px 8px rgba(30, 20, 56, 0.06);
}
.ptable-head {
  font-weight: 700;
  font-size: 18px;
  color: #5D1B2A; /* dark burgundy like screenshot */
  margin-bottom: 20px;
  padding-bottom: 0;
}
/* separator line between rows */
.prow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 8px 10px;
  gap: 1.5rem;
  font-size: 16px;
}

.prow:last-child {
  background: #FCF9F6;
}
.prow:first-of-type {
  border-top: none;
}
.prow .lbl {
  color: #777;
  flex: 1;
  font-weight: 300;
  letter-spacing: 0.2px;
  line-height: 1.4;
}
.prow .val {
  font-weight: 700;
  color: #5D1B2A;
  white-space: nowrap;
  font-size: 0.9rem;
}
.pricing-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ===================================================
   DIRECTIONS
=================================================== */
.dir-sec {
  background: var(--bg);
  padding: 5rem 0;
}
.dir-grid {
  display: grid;
  grid-template-columns: 1fr 54%;
  gap: 3rem;
  align-items: center;
  background: #fff;
  padding: 70px;
  border-radius: 20px;
}
.map-box {
  border-radius: var(--r);
  overflow: hidden;
  height: 570px;
  width: 400px;
}
.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.dir-content h2 {
  text-align: left;
  margin-bottom: 0.8rem;
}
.dir-content > .lead {
  font-size: 0.9rem;
  margin-bottom: 1.6rem;
  color: #777777;
  line-height: 1.7;
}
.dir-content > .lead strong {
  color: #1e1438;
}
.dir-content > .lead a {
  color: #1D3264;
  font-weight: 600;
  text-decoration: underline;
}
.dir-opts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.dir-opt {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  background: #FBE8EC;
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
}
.dir-txt {
  flex: 1;
}
.dir-txt h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #5D1B2A;
}
.dir-txt p {
  font-size: 0.84rem;
  line-height: 1.65;
  color: #9F707A;
}
.dir-txt p strong {
  color: #9F707A;
  font-weight: 600;
}
.dir-ic {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.dir-ic svg {
  width: 20px;
  height: 20px;
  color: #c8476d;
  stroke-width: 1.4;
}

/* ===================================================
   FOOTER
=================================================== */
footer {
  background: #d9a8bc url(../images/bg-footer.svg) no-repeat left 40px;
  background-size: contain;
  color: #3a1020;
  padding: 3.5rem 0 0;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1.2fr 0.8fr 1.6fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
/* big stacked logo */
.f-brand {
}
.f-logo-big {
  font-size: 2.6rem;
  font-weight: 700;
  color: #3a1020;
  line-height: 1;
  margin-bottom: 1.6rem;
  letter-spacing: -1px;
}
.f-addr-block strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #3a1020;
  margin-bottom: 0.4rem;
}

.f-addr-block {
    margin-top: 20px;
}

.f-addr-block p {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: #5a2535;
  line-height: 1.8;
  margin: 0;
}
.f-addr-block svg {
  flex-shrink: 0;
  color: #5a2535;
}
.f-col h5 {
  font-size: 16px;
  font-weight: 700;
  color: #5D1B2A;
  letter-spacing: 0.3px;
  margin-bottom: 0.8rem;
  text-transform: none;
}
.f-col ul li {
  margin-bottom: 0.4rem;
}
.f-col ul li a {
  font-size: 0.85rem;
  color: #5a2535;
  transition: color 0.18s;
}
.f-col ul li a:hover {
  color: #3a1020;
}
/* accept badges */
.f-accept {
  display: flex;
      flex-wrap: wrap;
      gap: 23px;
      margin-top: 0.6rem;
      align-content: center;
      align-items: center;
}
.f-accept-badge {
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #3a1020;
}
/* socials */
.socials {
  display: flex;
  gap: 10px;
  margin-bottom: 50px;
}
.soc {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition:  0.2s;
}
.soc:hover {
  transform: scale(1.04);
}
.soc svg {
  width: 16px;
  height: 16px;
}
/* newsletter */
.nl-form {
  margin-top: 0.6rem;
}
.nl-in {
    width: 100%;
    padding: 15px 16px;
    border-radius: 14px;
    border: none;
    font-weight: 300;
    background: #fff;
    color: #1e1438;
    font-family: inherit;
    font-size: 0.85rem;
    outline: none;
    margin-bottom: 10px;
}
.nl-in::placeholder {
  color: #aaa;
}
/* bottom bar */
.footer-bot {
  border-top: 1px solid rgba(100, 30, 50, 0.2);
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.78rem;
  color: #5a2535;
  flex-wrap: wrap;
}
.footer-bot a {
  color: #5a2535;
  text-decoration: underline;
}
.footer-bot a:hover {
  color: #3a1020;
}

/* ===================================================
   RESPONSIVE
=================================================== */

@media (max-width: 1300px) {

  .slider-next {
      right: 30px;
  }

  .slider-prev {
      left: 30px;
  }

}

@media (max-width: 1150px) {

  .hero-outer {
      position: relative;
      overflow: hidden;
      background: url(../images/photo-woman.webp) no-repeat bottom right;
      min-height: auto;
      background-size: 76%;
      padding-top: 62px;
  }

}




@media (max-width: 1024px) {
  .srv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .srv-card {
    height: 500px;
    margin-bottom: 10px
  }
  .srv-card.featured {
    transform: none;
    height: auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-btn {
    gap: 2px;
    padding: 8px 8px;
    font-size: 14px;
  }

  .dir-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 3rem;
    align-items: center;
    background: #fff;
    padding: 70px;
    border-radius: 20px;
}

.map-box {
    border-radius: var(--r);
    overflow: hidden;
    height: 400px;
    width: 100%;
}

}

.why-mob {
  display: none;
}
@media (max-width: 768px) {
  .nav-list,
  .nav-cta {
    display: none;
  }

  /* WHY mobile slider – hidden on desktop */
  .why-mob {
    display: block;
  }

.faq-sec,
  .dir-sec {
    padding: 2rem 0;
}

.dir-content h2 {
      font-size: 24px;
  }

footer {
  background: #d9a8bc
}

footer .wrap {

    padding: 0 40px;
}

  .pricing-sec {
    padding: 2rem 0 0;
  }


  .ham {
    display: flex;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 2rem;
    min-height: auto;
  }

  .navbar .wrap {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 24px 24px;
    gap: 0;
    justify-content: space-between;
}

  .hero-blob {
    display: none;
  }
  .hero-outer .hero-text {
    padding: 2rem 0 0;
  }
  .hero-visual {
    height: 240px;
    max-height: 240px;
  }

  /* WHY – mobile slider */
  .why-grid {
    display: none;
  }
  .why-mob {
    display: block;
  }

  .srv-grid {
    grid-template-columns: 1fr;
  }
  .srv-card {
    height: 500px;
    margin-bottom: 10px
  }

.why {
        padding: 2.4rem 0 30px;
}

.hero-visual {
  display: none;
}
  .services {
      background: var(--bg);
      padding: 2.4rem 0 50px;
  }

  .slider-wrap {
    position: relative;
    padding: 0 20px;
  }

  .gallery-sec {
    background: var(--bg);
    padding: 3rem 0 0;
}


  .slide img {
    width: 100%;
    height: 310px;
  }

.quote-sec img {
  margin: auto;
  padding: 0 20px;
}
  .srv-card.featured {
    transform: none;
    height: auto;
  }
  .srv-desc {
    max-height: none !important;
    opacity: 1 !important;
    margin-top: 0.55rem !important;
  }
  .srv-link {
    opacity: 1 !important;
    transform: none !important;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .dir-grid {
    grid-template-columns: 1fr;
            padding: 28px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bot {
    flex-direction: column;
    text-align: center;
  }

  .hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
  }
  section {
    padding: 3.5rem 0;
  }
  .hero-outer {
    min-height: auto;
    padding-bottom: 64px;
    padding-top: 0;
    background: none;
  }

  .head {
        background: #e1b4d1 url(../images/bg-header.svg) no-repeat top right;
  }
  .navbar {
    padding: 0
  }
  h1 {
    font-size: 45px;
    font-weight: 700;
    font-family: "PP Monument Wide", sans-serif;
    line-height: 1.3;
    color: #5D1B2A;
}

img.header-img {
    position: absolute;
    right: 0;
    top: -50px;
}


  /* gallery mobile – 1 slide, dots visible, buttons hidden */
  .slider-btn {
    display: none;
  }
  .gallery-dots {
    display: flex;
  }
  .ptable {
    border-radius: 18px;
    background: #fff;
    padding: 24px 20px 35px;
    box-shadow: 0 1px 8px rgba(30, 20, 56, 0.06);
}
.prow .lbl {
    color: #777;
    flex: 1;
    font-size: 13px;
  }

  h2 {
    margin-bottom: 20px;
  }

}
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
body.no-scroll {
  overflow: hidden;
}

/* ===================================================
   CLASSES REPLACING INLINE STYLES
=================================================== */
.swirl-l {
  position: absolute;
  bottom: 28%;
  left: 50%;
  margin-left: -10px;
  z-index: 2;
  pointer-events: none;
}
.swirl-r {
  position: absolute;
  top: 18%;
  right: 2%;
  z-index: 2;
  pointer-events: none;
  width: 80px;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.why-card--blue {
  background: #dce6f5;
  padding: 2rem 1.8rem 2.2rem;
}
.why-card--pink {
  background: #fae0e4;
  padding: 2rem 1.8rem 2.2rem;
}
.why-card--grey {
  background: #e8e8ec;
  padding: 2rem 1.8rem 2.2rem;
}
.srv-thumb--1 {
  background: linear-gradient(160deg, #e8b8cc 0%, #c490a8 100%);
}
.srv-thumb--2 {
  background: linear-gradient(160deg, #d8e8c8 0%, #a8c888 100%);
}
.srv-thumb--3 {
  background: linear-gradient(160deg, #c8dce8 0%, #90b4c8 100%);
}
.srv-thumb--4 {
  background: linear-gradient(160deg, #dcd8f0 0%, #a8a0d8 100%);
}
.slide--1 {
  background: linear-gradient(135deg, #e4d0e4, #c8b0d0);
}
.slide--2 {
  background: linear-gradient(135deg, #f0e4d0, #ddd0b0);
}
.slide--3 {
  background: linear-gradient(135deg, #d0e0ec, #b0c4d4);
}
.slide--4 {
  background: linear-gradient(135deg, #ece4d0, #d8c8a8);
}
.slide--5 {
  background: linear-gradient(135deg, #d8e4d0, #b8cca8);
}
.slide--6 {
  background: linear-gradient(135deg, #e4d4ec, #c8b4d8);
}
.dir-h2 {
    text-align: left;
    margin-bottom: 1rem;
    color: #5D1B2A;
    font-size: 32px;
}
.dir-addr-link {
  color: #6b1a2a;
  font-weight: 600;
  text-decoration: underline;
}
.f-addr-jihlava {
  margin-top: 1rem;
}
.f-col-h5-gap {
  margin-top: 1.6rem;
}
.socials--mb {
  margin-bottom: 1.6rem;
}
.btn-nl-submit {
  width: 100%;
  justify-content: center;
  margin-top: 0.7rem;
  background: #1e2d5a;
}
.btn-nl-submit:hover {
  background: #2d4080;
}
.nl-disclaimer {
  margin-top: 0.6rem;
  font-size: 0.72rem;
  color: rgba(80, 30, 50, 0.6);
}
.nl-disclaimer-link {
  color: rgba(80, 30, 50, 0.7);
  text-decoration: underline;
}
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.88);
  align-items: center;
  justify-content: center;
}
.lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}
.lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lb-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}
.lb-prev {
  left: 16px;
}
.lb-next {
  right: 16px;
}
.lb-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 8px;
  object-fit: contain;
}


@media (min-width: 1700px) {
  .hero-outer {
      background: #E1B4D1 url(../images/photo-woman.webp) no-repeat 80% top;
          background-size: contain;
  }

}

@media (min-width: 2400px) {
  .hero-outer {
      background: #E1B4D1 url(../images/photo-woman.webp) no-repeat 63% top;
          background-size: contain;
  }

}
