:root {
  --bg: #fcf4f7;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: rgba(255, 255, 255, 0.9);
  --text: #493c42;
  --muted: #8b7a83;
  --line: rgba(143, 121, 132, 0.24);
  --accent: #cbb8c3;
  --accent-deep: #967f8c;
  --heading: #3e3438;
  --shadow: 0 18px 50px rgba(125, 103, 114, 0.14);
  --shadow-soft: 0 10px 26px rgba(125, 103, 114, 0.1);
  --radius: 24px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fffdfd 0%, #fcf4f7 42%, #f8eef2 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
}

.wrap {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

/* top bar */
.topbar {
  background: rgba(255, 255, 255, 0.74);
  border-bottom: 1px solid rgba(143, 121, 132, 0.12);
  backdrop-filter: blur(16px);
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.topbar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 10px 0;
  align-items: center;
}

.topbar-grid div:nth-child(2) {
  text-align: center;
}

.topbar-grid div:nth-child(3) {
  text-align: right;
}

/* glass menu header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85); /* replaces image */
}


/*
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);

  /* stronger edge definition 
  border-bottom: 1px solid rgba(160, 140, 150, 0.35);

  /* subtle shadow for depth 
  box-shadow:
    0 6px 18px rgba(120, 100, 110, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

*/



.header-wrap {
  position: relative;
  z-index: 2;
  padding-top: 14px;
}

.header-logo {
  position: absolute;
  top: 22px;
  left: 0;
  z-index: 6;
  width: 320px;
  max-width: 28vw;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  padding: 8px 10px;
  box-shadow: 0 14px 28px rgba(125, 103, 114, 0.14);
  border: 1px solid rgba(197, 183, 194, 0.22);
  backdrop-filter: blur(10px);
}

.header-logo img {
  display: block;
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 10px;
  padding: 30px 0 10px;
}

.mobile-toggle {
  display: none;
  justify-self: end;
  border: 0;
  background: white;
  color: var(--text);
  width: 50px;
  height: 50px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  font-size: 1.2rem;
}

/* tagline row */
.nav-top-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.nav-spacer {
  height: 1px;
}

.menu-tagline {
  text-align: center;
  line-height: 1.2;
}

.menu-tagline div:first-child {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: var(--heading);
  letter-spacing: 0.02em;
}

.menu-tagline div:last-child {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.header-contact-inline {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.2;
  gap: 4px;
}

.header-contact-inline a:hover {
  color: var(--heading);
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  min-width: 0;
}

.nav-list {
  margin: 0;
  padding: 10px 16px 10px 290px;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  width: 100%;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow:
    0 12px 28px rgba(120, 100, 110, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  min-height: 76px;
}

nav > ul > li > a {
  padding: 12px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: #3e3438;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 8px 18px rgba(120, 100, 110, 0.08);
  transition: all 0.25s ease;
}

nav > ul > li > a:hover,
nav > ul > li > a:focus-visible {
  background: rgba(255, 255, 255, 0.45);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 14px 26px rgba(120, 100, 110, 0.18);
  transform: translateY(-2px);
  outline: none;
}

/* general */
.section-pad,
.hero {
  padding: 32px 0;
}

.hero {
  padding-top: 56px;
}

.hero-card,
.feature-card,
.service-card,
.testimonial,
.contact-card,
.about-card,
.cta-banner {
  background: var(--panel);
  border: 1px solid rgba(197, 183, 194, 0.42);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-card,
.feature-card,
.service-card,
.testimonial,
.contact-card,
.about-card,
.cta-banner {
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card:hover,
.service-card:hover,
.testimonial:hover,
.contact-card:hover,
.about-card:hover,
.cta-banner:hover {
  border-color: rgba(159, 141, 155, 0.82);
  box-shadow:
    0 20px 45px rgba(140, 117, 129, 0.18),
    0 0 0 2px rgba(159, 141, 155, 0.1);
  transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(252, 244, 247, 0.92));
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(252, 244, 247, 0.9)),
    linear-gradient(135deg, rgba(182, 160, 171, 0.08), rgba(255, 255, 255, 0.2));
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -10% -25% auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(197, 183, 194, 0.35);
  background: radial-gradient(circle, rgba(197, 183, 194, 0.28), transparent 70%);
  filter: drop-shadow(0 22px 24px rgba(157, 135, 146, 0.18));
  pointer-events: none;
}

.hero-grid,
.split,
.cards,
.service-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 22px;
}

.hero-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-house-visual {
  position: relative;
  width: 100%;
  min-height: 500px;
  border-radius: 28px;
  border: 1px solid rgba(197, 183, 194, 0.35);
  box-shadow: var(--shadow-soft);
  background:
    linear-gradient(180deg, rgba(252, 244, 247, 0.06), rgba(252, 244, 247, 0.22)),
    url("https://images.unsplash.com/photo-1568605114967-8130f3a36994?auto=format&fit=crop&w=1600&q=80") center/cover;
  overflow: visible;
}

.hero-image-logo {
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  max-width: 500px;
  padding: 18px 20px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(197, 183, 194, 0.26);
  box-shadow: 0 24px 46px rgba(125, 103, 114, 0.22);
  backdrop-filter: blur(10px);
}

.hero-image-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.eyebrow,
.section-kicker,
.tag,
.hero-points span {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  color: var(--accent-deep);
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 700;
}

.eyebrow {
  margin-bottom: 20px;
}

.hero-content h1,
.section-header h2,
.cta-content h2 {
  font-family: "Cormorant Garamond", serif;
  color: var(--heading);
}

.hero-content h1 {
  margin: 0 0 16px;
  font-size: clamp(3rem, 4vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.6),
    0 6px 18px rgba(120, 100, 110, 0.25);
}

.hero-content p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: #685a61;
  margin: 0 0 24px;
  max-width: 58ch;
}

.hero-lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  margin-bottom: 22px;
  max-width: 760px;
}

.hero-lead-form input {
  background: rgba(255, 255, 255, 0.92);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #d0bac5, #b69aa8);
  color: white;
  box-shadow: 0 16px 35px rgba(178, 152, 166, 0.28);
}

.section-header {
  text-align: center;
  margin-bottom: 24px;
}

.section-header span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-deep);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
}

.section-header h2 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 0.98;
    text-shadow: 1px 1px 3px black;			/*MOL added main text shadow */

}

.section-header p {
  max-width: 68ch;
  margin: 0 auto;
  color: #72636c;
  line-height: 1.85;
}

.cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.service-card,
.contact-card,
.testimonial,
.about-card {
  padding: 28px;
  height: 100%;
}

.feature-card h3,
.service-card h3,
.contact-card h3,
.about-card h3,
.footer-grid h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.95rem;
  line-height: 1;
  color: var(--heading);
}

.feature-card p,
.service-card p,
.contact-card p,
.about-card p,
.testimonial p {
  margin: 0;
  line-height: 1.8;
  color: #6f6169;
}

.split {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.about-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #6f6169;
  line-height: 1.9;
}

.about-image-card {
  padding: 0;
  overflow: hidden;
}

.about-image {
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(252, 244, 247, 0.18), rgba(252, 244, 247, 0.3)),
    url("photo-1576941089067-2de3c901e126.jpg") center/cover;
}

.service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -60px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 183, 194, 0.18), transparent 70%);
}

.media-gallery {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: 22px;
  align-items: stretch;
}

.gallery-thumbs {
  height: 620px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  overflow-y: auto;
  padding-right: 6px;
  align-content: start;
}

.thumb {
  position: relative;
  height: 150px;
  min-height: 150px;
  max-height: 150px;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(197, 183, 194, 0.45);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.thumb:hover,
.thumb.is-active {
  transform: translateY(-2px);
  border-color: rgba(159, 141, 155, 0.78);
  box-shadow:
    0 16px 30px rgba(140, 117, 129, 0.18),
    0 0 0 2px rgba(159, 141, 155, 0.1);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(79, 65, 72, 0.8);
  color: white;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-main {
  min-width: 0;
}

.gallery-stage {
  height: 620px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(197, 183, 194, 0.45);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.gallery-stage img,
.gallery-stage video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #efe6eb;
}

.gallery-thumbs::-webkit-scrollbar {
  width: 8px;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
  background: rgba(159, 141, 155, 0.35);
  border-radius: 999px;
}

.cta-banner {
  padding: 30px;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
  overflow: hidden;
}

.cta-image {
  min-height: 240px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(252, 244, 247, 0.22), rgba(252, 244, 247, 0.42)),
    url("78ba0415-7dd6-4493-a62c-5ccdecfbaac1.png") center/cover;
}

.cta-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.cta-content p {
  margin: 0;
  color: #6f6169;
  line-height: 1.8;
}

.testimonial {
  display: grid;
  gap: 16px;
}

.quote-mark {
  font-size: 3rem;
  line-height: 1;
  color: rgba(159, 141, 155, 0.6);
  height: 30px;
  font-family: "Cormorant Garamond", serif;
}

.client {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 4px;
}

.client-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, #d9c9d4, #c2afbc);
}

.muted-inline {
  color: var(--muted);
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
  color: var(--text);
  outline: none;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

footer {
  margin-top: 34px;
  padding: 34px 0 18px;
  background: linear-gradient(180deg, rgba(239, 226, 232, 0.72), rgba(252, 244, 247, 0.97));
  border-top: 1px solid var(--line);
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: start;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 14px;
}

.footer-logo {
  width: 220px;
  max-width: 100%;
}

.footer-copy {
  max-width: 40ch;
  color: var(--muted);
  line-height: 1.8;
}

.footer-nav {
  display: grid;
  gap: 10px;
}

.footer-nav a {
  color: var(--muted);
}

.footnote {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* responsive */
@media (max-width: 1080px) {
  .hero-grid,
  .split,
  .cards,
  .contact-grid,
  .footer-grid,
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cards .feature-card:last-child,
  .contact-grid .contact-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .topbar-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .topbar-grid div:nth-child(2),
  .topbar-grid div:nth-child(3) {
    text-align: center;
  }

  .header-wrap {
    padding-top: 10px;
  }

.header-logo {
  position: absolute;
  top: 22px;
  left: 0;
  z-index: 6;

  width: 380px !important;   /* force larger */
  max-width: none !important; /* remove restriction */

  padding: 6px;
  
  background: rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  box-shadow: 0 14px 28px rgba(125, 103, 114, 0.14);
  border: 1px solid rgba(197, 183, 194, 0.22);
  backdrop-filter: blur(10px);
}

.header-logo img {
  width: 100% !important;
  height: auto;
  display: block;
}

  .nav-shell {
    grid-template-columns: 1fr auto;
    padding-top: 0;
  }

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-top-row {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nav-spacer {
    display: none;
  }

  .header-contact-inline {
    align-items: center;
    margin-top: 8px;
  }

  nav {
    grid-column: 1 / -1;
    position: relative;
    display: none;
    width: 100%;
  }

  nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 8px;
    border-radius: 24px;
    min-height: 0;
  }

  nav > ul > li > a {
    width: 100%;
    text-align: left;
    padding: 14px 12px;
    border-radius: 16px;
  }

  .hero-grid,
  .split,
  .cards,
  .contact-grid,
  .footer-grid,
  .service-grid,
  .cta-grid,
  .media-gallery {
    grid-template-columns: 1fr !important;
  }

  .hero-lead-form {
    grid-template-columns: 1fr;
  }

  .hero-house-visual {
    min-height: 340px;
  }

  .hero-image-logo {
    top: 14px;
    left: 14px;
    right: 14px;
    width: auto;
    max-width: none;
    padding: 12px;
  }

  .gallery-thumbs {
    order: 2;
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .gallery-main {
    order: 1;
  }

  .gallery-stage {
    height: 340px;
  }

  .thumb {
    height: 120px;
    min-height: 120px;
    max-height: 120px;
  }
}






html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 180px;
}







.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(197, 183, 194, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-deep);
}









/* subtle scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.in-view,
  .reveal-delay-1,
  .reveal-delay-2,
  .reveal-delay-3 {
    opacity: 1;
    transform: none;
    transition: none;
  }
}









/* ===== SOFT SECTION FLOW ===== */
.section-pad,
.hero,
.faq-section,
.insights-section,
.credentials-section {
  position: relative;
  z-index: 1;
}

/* soft top highlight between sections */
.section-pad::before,
.faq-section::before,
.insights-section::before,
.credentials-section::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 1180px);
  height: 80px;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.75) 0%,
    rgba(252, 244, 247, 0.45) 45%,
    rgba(252, 244, 247, 0) 75%
  );
  filter: blur(10px);
  z-index: 0;
}

/* subtle divider line */
.section-pad::after,
.faq-section::after,
.insights-section::after,
.credentials-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(88%, 1120px);
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(197, 183, 194, 0),
    rgba(197, 183, 194, 0.45),
    rgba(197, 183, 194, 0)
  );
  z-index: 0;
}

/* keep content above transition layers */
.section-pad > .wrap,
.hero > .wrap,
.faq-section > .wrap,
.insights-section > .wrap,
.credentials-section > .wrap {
  position: relative;
  z-index: 1;
}

/* make first section clean at top */
.hero::before,
.hero::after {
  display: none;
}

@media (max-width: 900px) {
  .section-pad::before,
  .faq-section::before,
  .insights-section::before,
  .credentials-section::before {
    top: -24px;
    height: 48px;
    width: min(94%, 94%);
  }
}








[data-parallax] {
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform 0.08s linear;
}

@media (prefers-reduced-motion: reduce) {
  [data-parallax] {
    transform: none !important;
    transition: none !important;
  }
}