:root {
  --bg: #f5efe7;
  --bg-soft: #fffaf4;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #1f2933;
  --muted: #5f6c7b;
  --brand: #0f2d41;
  --brand-deep: #0a343a;
  --brand-soft: #d9ece8;
  --accent: #c08b5c;
  --accent-deep: #915f33;
  --line: rgba(15, 52, 58, 0.12);
  /*--shadow: 0 24px 60px rgba(17, 32, 48, 0.12);*/
  --shadow: box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  --radius-lg: 28px;
  --radius-md: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(192, 139, 92, 0.14), transparent 28%),
    linear-gradient(180deg, #f7f1e8 0%, #fbf8f2 52%, #f4ede3 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-shell {
  overflow-x: hidden;
}

.navbar {
    padding: 5px 0;
    transition: all 0.35s ease;
    background: #fbf8f2;
}

/*.navbar.scrolled {*/
/*  background: var(--bg-soft);*/
  /*backdrop-filter: blur(18px);*/
  /*box-shadow: 0 14px 40px rgba(10, 52, 58, 0.22);*/
/*  box-shadow: 0 14px 40px #ceaa5054;*/
/*  padding: 2px 0;*/
/*}*/

.navbar.scrolled {
    /*background: var(--bg-soft);*/
    background: #fbf8f2;
    /* backdrop-filter: blur(18px); */
    /* box-shadow: 0 14px 40px rgba(10, 52, 58, 0.22); */
    box-shadow: 0 14px 40px #ceaa5033 !important;
    padding: 2px 0;
    position: fixed;
    width: 100%;
    transition: all .3s ease;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: #fff;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #e7c8a7);
  color: var(--brand-deep);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-text small {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.78;
}

.nav-link {
  color: #0a343a;
  font-weight: 600;
  margin: 0 0.35rem;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #000;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.navbar-toggler {
  border: 0;
  background: rgba(255, 255, 255, 0.1);
}

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

.navbar-toggler-icon {
  filter: invert(1);
}

.btn-brand {
  background: linear-gradient(135deg, var(--accent), #d1a071);
  border: 0;
  color: #fff;
  font-weight: 700;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(192, 139, 92, 0.28);
}

.btn-brand:hover {
  background: linear-gradient(135deg, var(--accent-deep), var(--accent));
  color: #fff;
}

.hero-section {
    position: relative;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    padding: 1rem 0 4rem;
    background: linear-gradient(120deg, #0f2d41fa, #12344de3), url(https://images.unsplash.com/photo-1505664194779-8beaceb93744?auto=format&fit=crop&w=1600&q=80) center / cover;
    color: #fff;
    /*margin-top: 140px;*/
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  /*background:*/
  /*  linear-gradient(180deg, rgba(4, 15, 20, 0.08), rgba(4, 15, 20, 0.3)),*/
  /*  radial-gradient(circle at right bottom, rgba(192, 139, 92, 0.28), transparent 28%);*/
  /*background: radial-gradient(circle at top right, rgba(212, 168, 79, 0.20), transparent 28%), radial-gradient(circle at bottom left, rgba(45, 106, 139, 0.18), transparent 28%), linear-gradient(135deg, #0e1b2e, #12344d);*/
  background: radial-gradient(circle at top right, rgba(212, 168, 79, 0.20), transparent 28%), radial-gradient(circle at bottom left, rgba(45, 106, 139, 0.18), transparent 28%), linear-gradient(135deg, #0e1b2e57, #12344d6e);
}

.hero-section .container {
  z-index: 2;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.4;
}

.orb-one {
  width: 280px;
  height: 280px;
  left: -4rem;
  top: 6rem;
  background: rgba(192, 139, 92, 0.35);
}

.orb-two {
  width: 340px;
  height: 340px;
  right: -6rem;
  bottom: 3rem;
  background: rgba(255, 255, 255, 0.14);
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f7d8b7;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.section-tag {
  /*background: rgba(15, 92, 91, 0.08);*/
  /*border-color: rgba(15, 92, 91, 0.12);*/
  /*color: var(--brand);*/
    background: transparent;
    /* border-color: rgba(15, 92, 91, 0.12); */
    /*color: var(--brand);*/
    padding: 0;
    border: none;
    color: #d0ac54;
}

.hero-title,
.section-intro h2,
.section-head h2,
.contact-panel h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 53px;
  margin-bottom: 15px !important;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 4.2rem);
  line-height: 0.94;
  margin: 1.2rem 0 1.35rem;
  /*max-width: 10ch;*/
}

.hero-copy {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 59ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.highlight-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.75rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 600;
    font-size: 14px;
}

.hero-visual {
  position: relative;
  min-height: 540px;
}

.hero-card {
  /*position: absolute;*/
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.main-image-card {
  inset: 1.5rem 2rem 6rem 3rem;
  background: #fff;
}

.main-image-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.stat-card {
  right: 0;
  top: 3rem;
  width: 220px;
  padding: 1.3rem;
  background: rgba(255, 250, 244, 0.98);
  color: var(--brand-deep);
}

.stat-number {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
}

.stat-label {
  color: var(--muted);
  line-height: 1.6;
}

.quote-card {
  left: 0;
  bottom: 0;
  max-width: 320px;
  padding: 1.4rem;
  background: rgba(10, 52, 58, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-card p {
  margin: 0;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.84);
}

.section {
  position: relative;
  padding: 6.2rem 0;
}

.intro-section {
  margin-top: -2.5rem;
}

.section-intro h2,
.section-head h2,
.contact-panel h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  color: var(--brand-deep);
  margin: 1rem 0 0;
}

.section-head p,
.lead,
.section p {
  color: var(--muted);
  line-height: 1.9;
}

.info-card,
.service-card,
.process-card,
.mini-panel {
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.info-card,
.service-card,
.process-card {
  padding: 2rem;
}

.info-card i,
.service-icon,
.mini-panel i {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(15, 92, 91, 0.12), rgba(192, 139, 92, 0.2));
  color: var(--brand);
  font-size: 1.35rem;
  margin-bottom: 1.1rem;
}

.info-card h3,
.service-card h3,
.process-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  margin-bottom: 0.7rem;
  color: var(--brand-deep);
}

.practice-section {
  background:
    radial-gradient(circle at top right, rgba(15, 92, 91, 0.07), transparent 30%),
    var(--bg-soft);
}

.service-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.service-icon {
  margin-bottom: 1rem;
}

.founder-image-wrap {
  position: relative;
  padding-right: 2rem;
}

.founder-image {
  border-radius: 34px;
  min-height: 600px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.experience-badge {
  position: absolute;
  right: 0;
  bottom: 2rem;
  max-width: 240px;
  padding: 1.2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.experience-badge span {
  display: block;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  font-weight: 800;
}

.experience-badge strong {
  display: block;
  margin-top: 0.45rem;
  line-height: 1.5;
  color: var(--brand-deep);
}

.founder-points {
  margin-top: 1rem;
}

.mini-panel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
}

.mini-panel i {
  margin: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 1rem;
  flex: 0 0 auto;
}

.mini-panel span {
  font-weight: 700;
  color: var(--brand-deep);
}

.approach-section {
  background:
    linear-gradient(180deg, rgba(15, 92, 91, 0.05), rgba(15, 92, 91, 0)), #0000000a;
}

.process-card {
  position: relative;
  padding-top: 4.25rem;
}

.process-number {
  position: absolute;
  left: 2rem;
  top: 1.4rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(15, 92, 91, 0.18);
}

.contact-panel {
  background:
    radial-gradient(circle at top right, rgba(212, 168, 79, 0.20), transparent 28%), radial-gradient(circle at bottom left, rgba(45, 106, 139, 0.18), transparent 28%), linear-gradient(135deg, #0e1b2ede, #12344df7), url(https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1400&q=80) center / cover;
  border-radius: 36px;
  padding: 3rem;
  color: #fff;
  box-shadow: var(--shadow);
}

.contact-panel h2,
.contact-panel p {
  color: #fff;
}

.contact-card {
  padding: 1.7rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(15px);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-item:last-of-type {
  border-bottom: 0;
}

.contact-item i {
  color: #ca9768;
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
  color: var(--muted);
}

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

img.map-style {
    height: 419px !important;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  /*.navbar {*/
  /*  background: rgba(10, 52, 58, 0.88);*/
  /*  backdrop-filter: blur(18px);*/
  /*}*/

  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
  }

  .hero-section {
    min-height: auto;
    padding-top: 2rem;
  }

  .hero-visual {
    min-height: 430px;
  }

  .main-image-card {
    inset: 0.5rem 1rem 5.5rem 1rem;
  }

  .quote-card {
    left: 1rem;
  }

  .founder-image-wrap {
    padding-right: 0;
  }

  .founder-image {
    min-height: 520px;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    max-width: none;
  }

  .hero-actions .btn,
  .btn-brand {
    width: 100%;
  }

  .hero-visual {
    min-height: 380px;
  }

  .stat-card {
    width: 180px;
    top: 1rem;
  }

  .quote-card {
    right: 1rem;
    left: 1rem;
    max-width: none;
  }

  .section {
    padding: 4.8rem 0;
  }

  .contact-panel {
    padding: 2rem;
    border-radius: 28px;
  }

  .experience-badge {
    position: static;
    max-width: none;
    margin-top: 1rem;
  }

  .hero-highlights {
    flex-direction: column;
  }
  
  .site-top {
      display: none;
  }
}


/*-----------*/

a.btn {
    border-radius: 999px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.85rem 1.2rem !important;
    font-size: 17px;
}

.membership-card {
    padding: 20px;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.area-about-card {
background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 30px;
    }
    
.area-about-card ul {
    padding-left: 0;
}
   
   .area-about-card .icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--text);
}
    
    .map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

form {
    border-radius: 5px;
}

label {
    display: block;
}

input[type=text], select {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#memberships {
    background: linear-gradient(180deg, rgba(15, 92, 91, 0.05), rgba(15, 92, 91, 0)), #0000000a;
}

.hero-section .row {
    margin-top: 0px;
}

nav .container {
    display: flex !important;
}

.navbar-data {
    display: flex;
    justify-content: space-between;
}

.consultation-header-btn {
    display: flex;
    justify-content: end !important;
}

.consultation-header-btn a {
    border-radius: 0;
}

.site-top {
    background: #fff;
    box-shadow: 0 14px 40px #ceaa5021 !important;
    position: relative;
    z-index: 999999;
}

span.heading-change {
    color: #d0ac54;
}

.service-card ul {
    padding-left: 20px;
}

.service-card ul li {
    margin-top: 5px;
}




@media (min-width: 992px) {
    .navbar-expand-lg {
        display: block !important;
    }
    section {
  scroll-margin-top: 100px;
}
}


@media (max-width: 767px) {
    .consultation-header-btn {
        display: none !important;
    }
}

