:root {
  --green-dark: #103B2E;
  --green-dark-2: #0b2b21;
  --sage: #6DBB74;
  --cream: #F6F3EC;
  --gold: #C8A96A;
  --charcoal: #2B2B2B;
  --white: #FFFFFF;

  --font-head: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;

  --container: 1200px;
  --radius: 10px;
  --shadow: 0 12px 32px rgba(16, 59, 46, 0.10);
  --transition: 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--green-dark);
  margin: 0 0 .5em;
  line-height: 1.2;
  font-weight: 700;
}

p {
  margin: 0 0 1em;
}

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: 92%;
  max-width: var(--container);
  margin: 0 auto;
}

section {
  padding: 88px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1em;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.section-head p {
  color: #4b4b4b;
  font-size: 1.02rem;
}

.section-head.align-left {
  margin: 0 0 48px;
  text-align: left;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  padding: 14px 30px;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-dark-2);
}

.btn-gold {
  background: var(--gold);
  color: var(--green-dark);
}

.btn-gold:hover {
  background: #b6975a;
}

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

.btn-outline:hover {
  background: var(--green-dark);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .6);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--green-dark);
}

.btn-block {
  width: 100%;
}

/* =========================
   Header / Navigation
   ========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(246, 243, 236, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(16, 59, 46, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.site-header .logo img {
  width: 90px;
  height: auto;
}

.logo-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.15rem;
  letter-spacing: .08em;
  color: var(--green-dark);
  line-height: 1.1;
}

.logo-text small {
  display: block;
  font-size: .6rem;
  letter-spacing: .28em;
  color: var(--sage);
  font-weight: 600;
}

.main-nav ul {
  display: flex;
  gap: 34px;
}

.main-nav a {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: var(--charcoal);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--green-dark);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  transition: all var(--transition);
}

/* =========================
   Hero (Home)
   ========================= */
.hero {
  padding: 64px 0 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
}

.hero-content h1 span {
  color: var(--sage);
  font-style: italic;
}

.hero-text {
  font-size: 1.05rem;
  color: #4b4b4b;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 28px 0 40px;
}

.hero-quote {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(16, 59, 46, 0.15);
  max-width: 480px;
}

.quote-line {
  width: 36px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-quote p {
  margin: 0;
  font-family: var(--font-head);
  font-style: italic;
  color: var(--green-dark);
  font-size: 1.05rem;
}

.hero-visual {
  position: relative;
}

.hero-art {
  position: relative;
  border-radius: 0 200px 0 0;
  overflow: hidden;
  aspect-ratio: 1/1.05;
  /* box-shadow: var(--shadow); */
}

.hero-art svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-art img,
.arch-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.arch-media {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.arch-media.arch-tr {
  border-radius: 0 140px 0 0;
  aspect-ratio: 5/4;
}

.arch-media.arch-tl {
  border-radius: 140px 0 0 0;
  aspect-ratio: 5/4;
}

.hero-tag {
  position: absolute;
  top: 28px;
  right: 28px;
  background: rgba(16, 59, 46, 0.55);
  backdrop-filter: blur(3px);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 8px;
  max-width: 220px;
}

.hero-tag span {
  display: block;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.hero-tag p {
  margin: 0;
  font-family: var(--font-head);
  font-style: italic;
  font-size: .95rem;
}

/* Pillars strip */
.pillars {
  background: var(--green-dark);
  margin-top: 56px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.pillar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 30px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  transition: background var(--transition);
}

.pillar:last-child {
  border-right: none;
}

.pillar:hover {
  background: rgba(255, 255, 255, 0.06);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
}

.pillar-icon svg {
  width: 22px;
  height: 22px;
}

.pillar h4 {
  color: var(--white);
  font-size: 1rem;
  margin: 0 0 2px;
}

.pillar p {
  margin: 0;
  font-size: .82rem;
  color: rgba(255, 255, 255, 0.75);
}

/* =========================
   Values
   ========================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 34px 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(16, 59, 46, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.value-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(109, 187, 116, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
}

.value-icon svg {
  width: 26px;
  height: 26px;
}

.value-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.value-card p {
  font-size: .85rem;
  color: #5a5a5a;
  margin: 0;
}

/* =========================
   Ventures preview / cards
   ========================= */
.section-alt {
  background: var(--white);
}

.ventures-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.venture-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(16, 59, 46, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.venture-media {
  aspect-ratio: 4/3;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.venture-media svg {
  width: 100%;
  height: 100%;
}

.venture-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

.venture-card:hover .venture-media img {
  transform: scale(1.06);
}

.venture-body {
  padding: 22px;
}

.venture-body h4 {
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.venture-body p {
  font-size: .86rem;
  color: #5a5a5a;
  margin-bottom: 14px;
}

.venture-link {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.venture-link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.venture-card:hover .venture-link svg {
  transform: translateX(4px);
}

.center-cta {
  text-align: center;
  margin-top: 48px;
}

/* =========================
   Trust / Why band
   ========================= */
.trust-band {
  background: var(--green-dark);
  color: var(--white);

  /* border-bottom: 10px solid #ffffff; */
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.trust-item {
  text-align: center;
  padding: 0 12px;
}

.trust-item .value-icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
}

.trust-item h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 6px;
}

.trust-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: .84rem;
  margin: 0;
}

/* =========================
   CTA banner
   ========================= */
.cta-banner {
  position: relative;
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  max-width: 720px;
  margin: 0 auto 26px;
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

.leaf-deco {
  position: absolute;
  width: 340px;
  height: 340px;
  opacity: .08;
  z-index: 1;
}

.leaf-deco.tl {
  top: -60px;
  left: -60px;
}

.leaf-deco.br {
  bottom: -60px;
  right: -60px;
  transform: rotate(180deg);
}


@media(max-width:500px) {
  .cta-banner h2 {
    line-height: 1.5;
  }
}



/* =========================
   Footer
   ========================= */
.site-footer {
  background: var(--green-dark-2);
  color: rgba(255, 255, 255, 0.8);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo-text strong {
  color: var(--white);
}

.footer-brand .logo img {
  width: 120px;
  height: auto;
}

.footer-brand p {
  font-size: .88rem;
  margin: 16px 0 20px;
  max-width: 280px;
  /* color: rgba(255, 255, 255, 0.65); */
  color: #FFFFFF;
}

.footer-col h5 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: .88rem;
  /* color: rgba(255, 255, 255, 0.65); */
  color: #FFFFFF;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .86rem;
  /* color: rgba(255, 255, 255, 0.65); */
  color: #FFFFFF;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.social-row a {
  width: 36px;
  height: 36px;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.social-row a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-dark);
}

.social-row svg {
  width: 16px;
  height: 16px;
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px 0;
  font-size: .88rem;
  color: #ffffff;
}

.footer-bottom a {
  color: #ffffff;
}

.footer-bottom a:hover {
  color: var(--gold);
}


@media(max-width:500px) {
  .footer-bottom {
    text-align: center;

    display: flex;
    justify-content: center;
  }
}



/* banner */
.page-hero {
  background:
    linear-gradient(rgba(11, 43, 33, 0.82), rgba(16, 59, 46, 0.88)),
    url('https://images.unsplash.com/photo-1612103183244-7598b792bb05?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
  color: var(--white);
  padding: 110px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* Generic content grids reused across inner pages */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.4rem;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: .85rem;
  color: #5a5a5a;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 0;
}

.card {
  background: var(--white);
  border: 1px solid rgba(16, 59, 46, 0.08);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card .value-icon {
  margin: 0 0 18px;
}

.service-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.service-card p {
  font-size: .88rem;
  color: #5a5a5a;
}

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

.service-card ul li {
  font-size: .84rem;
  color: #4b4b4b;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.service-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.process-step h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.process-step p {
  font-size: .84rem;
  color: #5a5a5a;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  text-align: center;
}

.team-photo {
  aspect-ratio: 1/1;
  border-radius: 50%;
  width: 120px;
  margin: 0 auto 16px;
  overflow: hidden;
}

.team-photo svg {
  width: 100%;
  height: 100%;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.team-card span {
  font-size: .78rem;
  color: var(--sage);
  font-weight: 600;
  letter-spacing: .03em;
}

/* Timeline (About) */
.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: rgba(16, 59, 46, 0.15);
}

.timeline-item {
  position: relative;
  padding-bottom: 36px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
}

.timeline-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.timeline-item span {
  font-size: .78rem;
  color: var(--sage);
  font-weight: 700;
  letter-spacing: .05em;
}

.timeline-item p {
  font-size: .88rem;
  color: #5a5a5a;
  margin: 6px 0 0;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 30px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-item .value-icon {
  flex-shrink: 0;
  margin: 0;
  background: rgba(200, 169, 106, 0.16);
  color: var(--gold);
}

.contact-info-item h4 {
  font-size: .95rem;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: .86rem;
  color: #5a5a5a;
  margin: 0;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(16, 59, 46, 0.08);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(16, 59, 46, 0.18);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: .92rem;
  background: var(--cream);
  color: var(--charcoal);
  transition: border-color var(--transition);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sage);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: .78rem;
  color: #7a7a7a;
  margin-top: 10px;
}

.form-success {
  display: none;
  background: rgba(109, 187, 116, 0.15);
  border: 1px solid var(--sage);
  color: var(--green-dark);
  padding: 14px 16px;
  border-radius: 6px;
  font-size: .86rem;
  margin-bottom: 18px;
}

.map-block {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(16, 59, 46, 0.08);
  aspect-ratio: 16/7;
}

.map-block svg {
  width: 100%;
  height: 100%;
}

/* =========================
   Services / Pricing
   ========================= */
.price-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--green-dark);
  background: rgba(200, 169, 106, 0.18);
  padding: 5px 12px;
  border-radius: 20px;
  margin-top: 14px;
}

.category-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.category-band h2 {
  margin: 0;
}

.category-tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sage);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.price-card {
  background: var(--white);
  border: 1px solid rgba(16, 59, 46, 0.1);
  border-radius: var(--radius);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.price-card.featured {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
  transform: scale(1.03);
}

.price-card.featured h3,
.price-card.featured h4 {
  color: var(--white);
}

.price-card .plan-tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.price-card h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.price-card .plan-desc {
  font-size: .85rem;
  opacity: .75;
  margin-bottom: 22px;
}

.price-card ul {
  margin: 0 0 26px;
  flex-grow: 1;
}

.price-card ul li {
  font-size: .86rem;
  padding-left: 22px;
  position: relative;
  margin-bottom: 12px;
}

.price-card:not(.featured) ul li {
  color: #4b4b4b;
}

.price-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sage);
  font-weight: 700;
}

.price-card.featured ul li::before {
  color: var(--gold);
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 980px) {

  .hero-grid,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .pillars-grid,
  .values-grid,
  .ventures-grid,
  .trust-grid,
  .stat-grid,
  .services-grid,
  .process-grid,
  .team-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 64px 0;
  }

  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--cream);
    /* border-top: 1px solid rgba(16, 59, 46, 0.1); */
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }

  .main-nav.open {
    max-height: 400px;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 10px 6%;
    gap: 0;
  }

  .main-nav a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(16, 59, 46, 0.08);
  }

  .nav-toggle {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .pillars-grid,
  .values-grid,
  .ventures-grid,
  .trust-grid,
  .stat-grid,
  .services-grid,
  .process-grid,
  .team-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .pillar {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}




/* about start */


.about-section {
  padding: 50px 0;
  background: #f6f3ec;
  overflow: hidden;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  /* border-radius:20px; */
  border-top-left-radius: 150px;
  /* box-shadow:0 20px 60px rgba(16,59,46,.12); */
}

.about-subtitle {
  display: inline-block;
  margin-bottom: 18px;
  padding: 10px 22px;
  border: 1px solid #c8a96a;
  border-radius: 50px;
  color: #103b2e;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-section h2 {
  color: #103b2e;
  font-size: 35px;
  line-height: 1.5;
  margin-bottom: 30px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.about-section p {
  color: #4b4b4b;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
  /* font-weight:400; */
}

@media(max-width:991px) {

  .about-section {
    padding: 50px 0;
  }

  /* .about-image{
        margin-bottom:40px;
    } */

  .about-image img {
    height: 500px;
  }

  .about-section h2 {
    font-size: 40px;
  }

}

@media(max-width:767px) {

  .about-section {
    padding: 50px 0;
    padding-bottom: 0px !important;
  }

  .about-image img {
    height: 380px;
    border-top-left-radius: 100px;
  }

  .about-subtitle {
    font-size: 12px;
    padding: 8px 10px;
    line-height: 1.8;

    text-align: center;
  }

  .about-section h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .about-section p {
    font-size: 15px;
    line-height: 1.8;
  }

}

/* about end */



/* mission section start */


.mv-section {
  padding: 30px 0;
  background: #f6f3ec;
}

.mv-heading {
  margin-bottom: 40px;
}

/* .mv-heading span{
    display:inline-block;
    color:#c8a96a;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    font-family:'Montserrat',sans-serif;
} */

.mv-heading h2 {
  margin-top: 12px;
  color: #103b2e;
  font-size: 36px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.vision-box {
  background: #103b2e;
  color: #fff;
  padding: 60px 45px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.mv-number {
  position: absolute;
  right: 25px;
  top: 20px;
  font-size: 90px;
  color: rgba(255, 255, 255, .08);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.vision-box i {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #c8a96a;
  color: #103b2e;
  font-size: 34px;
  margin-bottom: 30px;
}

.vision-box h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.vision-box p {
  color: #f5f5f5;
  line-height: 1.9;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
}

.mission-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mission-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  gap: 25px;
  align-items: flex-start;
  transition: .35s;
  /* border-left: 5px solid #103b2e; */
  /* box-shadow:0 12px 35px rgba(0,0,0,.05); */
}

.mission-card:hover {
  transform: translateX(10px);
}

.mission-icon {
  min-width: 65px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  /* background: #103b2e; */
  background: rgba(109, 187, 116, 0.14);
  color: #103b2e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.mission-card h4 {
  color: #103b2e;
  font-size: 20px;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.mission-card p {
  color: #666;
  margin: 0;
  line-height: 1.9;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
}

@media(max-width:991px) {

  .mv-section {
    padding: 30px 0;
  }

  /* .vision-box {
    margin-bottom: 40px;
  } */

}

@media(max-width:767px) {

  .mv-heading h2 {
    font-size: 28px;
  }

  .vision-box {
    padding: 40px 30px;
  }

  .vision-box h3 {
    font-size: 25px;
  }

  .mission-card {
    flex-direction: column;
    gap: 20px;
  }

  .mission-card h4 {
    font-size: 20px;
  }


  .vision-box i {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }


  .mission-icon {
    min-width: 50px;
    width: 50px;
    height: 50px;
    font-size: 17px;
  }
}

/* mission end */


/*  */


.verticals-section {
  padding: 50px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.verticals-title {
  margin-bottom: 40px;
}

.verticals-title span {
  display: inline-block;
  color: #c8a96a;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.verticals-title h2 {
  color: #103b2e;
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  margin-top: 12px;
}

.vertical-card {
  position: relative;
  background: #fff;
  padding: 35px 30px;
  border-radius: 25px;
  height: 100%;
  transition: .4s;
  overflow: hidden;
  border: 1px solid rgba(200, 169, 106, .25);
  /* box-shadow:0 15px 45px rgba(16,59,46,.06); */
}

/* .vertical-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:6px;
    height:100%;
    background:#c8a96a;
    transition:.4s;
} */

.vertical-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(16, 59, 46, .12);
}

.vertical-card:hover::before {
  width: 100%;
  opacity: .05;
}

.vertical-icon {
  width: 55px;
  height: 55px;
  border-radius: 18px;
  background: rgba(109, 187, 116, 0.14);
  color: #103b2e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 25px;
  transition: .4s;
}

.vertical-card:hover .vertical-icon {
  transform: rotate(-8deg) scale(1.08);
}

.vertical-card h3 {
  color: #103b2e;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  letter-spacing: 1.3px;
  line-height: 1.35;
  margin-bottom: 18px;
}

.vertical-card p {
  color: #666;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 0;
}

.card-number {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 55px;
  color: #103b2e;
  opacity: .06;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

@media(max-width:991px) {

  .verticals-section {
    padding: 50px 0;
  }

  .verticals-title h2 {
    font-size: 40px;
  }

}

@media(max-width:767px) {

  .verticals-section {
    padding: 50px 0;
  }

  .verticals-title {
    margin-bottom: 45px;
  }

  .verticals-title h2 {
    font-size: 28px;
  }

  .vertical-card {
    padding: 28px;
  }

  .vertical-card h3 {
    font-size: 18px;
    line-height: 1.5;
  }

  .vertical-icon {
    width: 65px;
    height: 65px;
    font-size: 26px;
  }

}

/* end */



/* why choose us */

.whychoose-section {
  padding: 50px 0;
  background: #103b2e;
  position: relative;
  overflow: hidden;
}

.whychoose-section-title {
  margin-bottom: 40px;
}

.whychoose-section-title span {
  display: inline-block;
  color: #c8a96a;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.whychoose-section-title h2 {
  color: #fff;
  margin-top: 15px;
  font-size: 36px;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}

.whychoose-card {
  position: relative;
  height: 100%;
  padding: 38px;
  border-radius: 22px;
  /* background:rgba(246,243,236,.96); */
  /* background-color: #ffffff; */
  overflow: hidden;
  transition: .4s;
  border: 1px solid rgba(246, 243, 236, 0.96);

}

.whychoose-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #c8a96a;
  transition: .45s;
  opacity: .12;
}

.whychoose-card:hover::before {
  width: 100%;
}

.whychoose-card:hover {
  transform: translateY(-8px);
}

.whychoose-card.active {
  background: #c8a96a;
}

.whychoose-card.active h3,
.whychoose-card.active p {
  color: #103b2e;
}

.whychoose-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(246, 243, 236, 0.96);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #103b2e;
  font-size: 20px;
  margin-bottom: 25px;
  /* box-shadow:0 10px 25px rgba(0,0,0,.08); */
}

.whychoose-card.active .whychoose-icon {
  background: #103b2e;
  color: #fff;
}

.whychoose-card h3 {
  color: #ffffff;
  font-size: 23px;
  letter-spacing: 1.3x;
  line-height: 1.4;
  margin-bottom: 18px;
  font-family: 'Playfair Display', serif;
}

.whychoose-card p {
  color: #d4cbcb;
  line-height: 1.9;
  margin: 0;
  font-size: 15px;
  font-family: 'Montserrat', sans-serif;
}

@media(max-width:991px) {

  .whychoose-section {
    padding: 50px 0;
  }

  .whychoose-section-title h2 {
    font-size: 35px;
  }

}

@media(max-width:767px) {

  .whychoose-section {
    padding: 50px 0;
  }

  .whychoose-section-title {
    margin-bottom: 45px;
  }

  .whychoose-section-title h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .whychoose-card {
    padding: 30px;
  }

  .whychoose-card h3 {
    font-size: 18px;
    letter-spacing: 1.2px;
  }

  /* .whychoose-icon{
        width:60px;
        height:60px;
        font-size:24px;
    } */

}


/* why choose end */



/* services page start */

.service-section {
  padding: 50px 0;
  background: #ffffff;
}

.service-section-title {
  max-width: 850px;
  margin: 0 auto 70px;
}

.service-section-title span {
  color: #c8a96a;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.service-section-title h2 {
  color: #103b2e;
  font-size: 35px;
  letter-spacing: 1.4px;
  line-height: 1.5;
  margin: 15px 0 20px;
  font-family: 'Playfair Display', serif;
}

.service-section-title p {
  color: #5a5a5a;
  font-size: 15px;
  line-height: 1.9;
  font-family: 'Montserrat', sans-serif;
}

.service-card {
  border-radius: 20px;
  overflow: hidden;
  transition: .4s;
  /* box-shadow: 0 15px 45px rgba(0, 0, 0, .08); */
  /* height: 100%; */
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-image {
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: .5s;
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-content {
  padding: 30px;
  background: #f6f3ec;
}

.service-content h3 {
  color: #103b2e;
  font-size: 21px;
  letter-spacing: 1.3px;
  line-height: 1.4;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

.service-content p {
  color: #5a5a5a;
  font-size: 15px;
  line-height: 1.9;
  font-family: 'Montserrat', sans-serif;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #103b2e;
  font-weight: 500;
  text-decoration: none;
  margin-top: 15px;
  transition: .3s;
}

.service-btn:hover {
  color: #c8a96a;
  gap: 15px;
}

.view-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  letter-spacing: 1.5px;
  background: #103b2e;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  transition: .35s;
}

.view-service-btn:hover {
  background: #c8a96a;
  color: #103b2e;
}

@media(max-width:991px) {

  .service-section-title h2 {
    font-size: 35px;
  }

  .service-image img {
    height: 220px;
  }

}

@media(max-width:767px) {

  .service-section {
    padding: 50px 0;
  }

  .service-section-title {
    margin-bottom: 45px;
  }

  .service-section-title h2 {
    font-size: 28px;
  }

  .service-content {
    padding: 25px;
  }

  .service-content h3 {
    font-size: 18px;
    line-height: 1.7;
  }

  .service-image img {
    height: 210px;
  }

}

/* service page end */


/* service detail page  */


.service-detail {
  padding: 50px 0;
  background: #fff;
}

.service-detail-content img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 35px;
}

.service-detail-content h2 {
  color: #103b2e;
  font-size: 30px;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.service-detail-content h3 {
  color: #103b2e;
  font-size: 23px;
  margin: 35px 0 20px;
  font-family: 'Playfair Display', serif;
}

.service-detail-content p {
  color: #5a5a5a;
  line-height: 1.9;
  font-size: 16px;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.service-list li {
  margin-bottom: 15px;
  color: #5a5a5a;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
}

.service-list i {
  color: #c8a96a;
}

.service-detail-content blockquote {
  background: #f6f3ec;
  border-left: 5px solid #c8a96a;
  padding: 30px;
  margin: 35px 0;
  border-radius: 12px;
  color: #103b2e;
  font-size: 20px;
  font-family: 'Playfair Display', serif;
  line-height: 1.7;
}

.service-detail-sidebar {
  background: #f6f3ec;
  padding: 35px;
  border-radius: 20px;
  position: sticky;
  top: 100px;
}

.service-detail-sidebar h3 {
  color: #103b2e;
  margin-bottom: 25px;
  font-size: 23px;
  font-family: 'Playfair Display', serif;
}

.service-detail-sidebar .form-control,
.service-detail-sidebar .form-select {
  height: 55px;
  border: none;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
}

.service-detail-sidebar textarea.form-control {
  height: auto;
}

.service-detail-sidebar .form-control:focus,
.service-detail-sidebar .form-select:focus {
  box-shadow: none;
  border: 1px solid #c8a96a;
}

.service-detail-btn {
  width: 100%;
  height: 55px;
  border: none;
  border-radius: 50px;
  background: #103b2e;
  color: #fff;
  font-weight: 600;
  transition: .3s;
  font-family: 'Montserrat', sans-serif;
}

.service-detail-btn:hover {
  background: #c8a96a;
  color: #103b2e;
}

@media(max-width:991px) {

  .service-detail {
    padding: 50px 0;
  }

  .service-detail-content h2 {
    font-size: 28px;
  }

  .service-detail-sidebar {
    /* margin-top: 40px; */
    position: relative;
    top: 0;
  }

}

@media(max-width:767px) {

  .service-detail {
    padding: 50px 0;
  }

  .service-detail-content h2 {
    font-size: 25px;
  }

  .service-detail-content h3 {
    font-size: 20px;
  }

  .service-detail-sidebar {
    padding: 25px;
  }

  .service-detail-sidebar h3 {
    font-size: 20px;
  }

}

/* detail page end */


/* contact page star */

.contact-section {
  padding: 50px 0px;
  background: #f6f3ec;
}

.contact-section-title span {
  color: #c8a96a;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
}

.contact-section-title h2 {
  color: #103b2e;
  font-size: 36px;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  margin: 15px 0;
}

.contact-section-title p {
  color: #666;
  max-width: 720px;
  margin: auto;
  line-height: 1.8;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-card {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  transition: .4s;
  /* box-shadow:0 15px 40px rgba(0,0,0,.05); */
}

.contact-card:hover {
  transform: translateY(-6px);
}

.contact-card .icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #103b2e;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-card h5 {
  color: #103b2e;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-card>div:not(.icon) {
  min-width: 0;
}

.contact-card p,
.contact-card a {
  color: #666;
  text-decoration: none;
  line-height: 1.8;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-card a:hover {
  color: #c8a96a;
}

.contact-form {
  background: #fff;
  padding: 45px;
  border-radius: 20px;
  /* box-shadow:0 20px 60px rgba(0,0,0,.08); */
}

.contact-form .form-control,
.contact-form .form-select {
  height: 58px;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 15px 20px;
  box-shadow: none;
}

.contact-form textarea.form-control {
  height: auto;
  resize: none;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: #c8a96a;
  box-shadow: none;
}

.contact-btn {
  background: #103b2e;
  color: #fff;
  border: none;
  padding: 16px 40px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: .4s;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.contact-btn:hover {
  background: #c8a96a;
  color: #fff;
}

@media(max-width:991px) {

  .contact-form {
    padding: 30px;
  }

  .contact-section-title h2 {
    font-size: 28px;
    line-height: 1.4;
  }

  .contact-section-title h2 br {
    display: none;
  }

}


@media(max-width:567px) {

  .contact-card {
    gap: 14px;
    padding: 20px;
  }

  .contact-card .icon {
    width: 50px;
    height: 50px;
    font-size: 17px;
  }

  .contact-card h5 {
    font-size: 17px;
  }

}


/* contact page end */


/* ventures page end */

.ventures-page-section {
  padding: 50px 0;
  background: #f6f3ec;
}

.ventures-page-title {
  max-width: 900px;
  margin: 0 auto 70px;
}

.ventures-page-title span {
  color: #c8a96a;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ventures-page-title h2 {
  color: #103b2e;
  font-size: 36px;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  margin: 15px 0 20px;
  line-height: 1.4;
}

.ventures-page-title p {
  color: #666;
  line-height: 1.9;
  font-size: 15px;
}

.ventures-heading {
  margin-bottom: 35px;
}

.ventures-heading h3 {
  color: #103b2e;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 600;
  position: relative;
  padding-left: 22px;
}

.ventures-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 36px;
  background: #c8a96a;
  border-radius: 30px;
}

.ventures-consulting,
.ventures-brands,
.ventures-upcoming {
  margin-bottom: 80px;
}

.ventures-highlight-card {
  background: #103b2e;
  color: #fff;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

.ventures-highlight-card h4 {
  color: #c8a96a;
  font-size: 25px;
  font-family: "Playfair Display", serif;
  margin-bottom: 20px;
  letter-spacing: 1.4px;
}

.ventures-highlight-card p {
  color: rgba(255, 255, 255, .85);
  line-height: 1.9;
  margin: 0;
  font-size: 15px;
}

.venture-page-card {
  /* background:#fff; */
  background: rgba(109, 187, 116, 0.14);
  padding: 35px;
  border-radius: 18px;
  height: 100%;
  transition: .4s;
  border: 1px solid rgba(16, 59, 46, .08);
  /* box-shadow:0 15px 40px rgba(0,0,0,.05); */
}

.venture-page-card:hover {
  transform: translateY(-8px);
  border-color: #c8a96a;
}

.venture-page-card h4 {
  color: #103b2e;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  letter-spacing: 1.1px;
  margin-bottom: 18px;
  line-height: 1.4;
}

.venture-page-card p {
  color: #666;
  line-height: 1.8;
  margin: 0;
  font-size: 15px;
}

.ventures-footer {
  background: #fff;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .05);
}

.ventures-footer p {
  color: #666;
  font-size: 15px;
  line-height: 1.9;
  max-width: 900px;
  margin: 0 auto 25px;
}

.ventures-footer h3 {
  color: #103b2e;
  font-size: 30px;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  margin: 0;
}

@media (max-width:991px) {

  .ventures-page-section {
    padding: 50px 0;
  }

  .ventures-page-title h2 {
    font-size: 36px;
  }

  .ventures-heading h3 {
    font-size: 30px;
  }

  .ventures-highlight-card {
    padding: 35px;
  }

  .ventures-highlight-card h4 {
    font-size: 26px;
  }

  .venture-page-card h4 {
    font-size: 24px;
  }

  .ventures-footer {
    padding: 40px 25px;
  }

  .ventures-footer h3 {
    font-size: 30px;
  }

}

@media (max-width:767px) {

  .ventures-page-title h2 {
    font-size: 26px;
  }

  .ventures-page-title h2 br {
    display: none;
  }

  .ventures-page-title p,
  .venture-page-card p,
  .ventures-highlight-card p,
  .ventures-footer p {
    font-size: 15px;
  }

  .ventures-heading h3 {
    font-size: 24px;
    line-height: 1.5;
  }

  .ventures-highlight-card h4 {
    font-size: 23px;
    line-height: 1.5;
  }

  .ventures-highlight-card,
  .venture-page-card {
    padding: 25px;
  }

  .ventures-footer h3 {
    font-size: 25px;
    line-height: 1.5;
  }

  .venture-page-card h4 {
    font-size: 20px;
    line-height: 1.5;
  }

}

/* venture page end */



/* story section */

.our-story-section {
  padding: 50px 0;
  background: #ffffff;
}

.our-story-title {
  max-width: 900px;
  margin: auto;
  margin-bottom: 20px;
}

.our-story-title span {
  color: #c8a96a;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
}

.our-story-title h2 {
  color: #103b2e;
  font-size: 36px;
  line-height: 1.5;
  margin-top: 15px;
  font-family: "Playfair Display", serif;
}

.story-top {
  max-width: 1050px;
  margin: 0 auto 70px;
}

.story-top p {
  font-size: 16px;
  color: #666;
  line-height: 2;
  margin-bottom: 30px;
}

.story-middle {
  margin-bottom: 70px;
}

.story-image {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  height: 620px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .10);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .6s;
}

.story-image:hover img {
  transform: scale(1.08);
}

.story-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(16, 59, 46, .85),
      rgba(16, 59, 46, .15));
}

.story-year {
  position: absolute;
  bottom: 35px;
  left: 35px;
  width: 150px;
  height: 150px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2;
}

.story-year span {
  font-size: 13px;
  color: #888;
  text-transform: uppercase;
}

.story-year h3 {
  margin-top: 5px;
  font-size: 44px;
  color: #103b2e;
  font-family: "Playfair Display", serif;
}

.story-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.story-card {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  /* box-shadow: 0 15px 45px rgba(0, 0, 0, .05); */
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  border-left: 5px solid #c8a96a;
  transition: .35s;
}

.story-card:hover {
  transform: translateY(-8px);
}

.story-card p {
  margin: 0;
  color: #666;
  line-height: 1.9;
  font-size: 16px;
}

.story-bottom {
  max-width: 1050px;
  margin: auto;
}

.story-bottom p {
  font-size: 16px;
  color: #666;
  line-height: 2;
  margin-bottom: 40px;
}

.story-quote {
  background: #103b2e;
  border-radius: 22px;
  padding: 70px;
  text-align: center;
  position: relative;
}

.story-quote::before {
  content: "❝";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #c8a96a;
  font-size: 80px;
  opacity: .35;
}

.story-quote h3 {
  color: #fff;
  font-size: 30px;
  line-height: 1.6;
  letter-spacing: 1.5px;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  max-width: 950px;
  margin: auto;
}

@media(max-width:991px) {

  .our-story-section {
    padding: 50px 0;
  }

  .our-story-title h2 {
    font-size: 36px;
  }

  .story-image {
    height: 450px;
    /* margin-bottom: 40px; */
  }

  .story-card {
    padding: 25px;
  }

  .story-quote {
    padding: 45px 25px;
  }

  .story-quote h3 {
    font-size: 28px;
  }

}

@media(max-width:767px) {

  .our-story-title h2 {
    font-size: 27px;
  }

  .story-top p,
  .story-card p,
  .story-bottom p {
    font-size: 15px;
  }

  .story-year span{
    font-size: 10px;
  }

  .story-image {
    height: 350px;
  }

  .story-year {
    width: 110px;
    height: 110px;
    left: 20px;
    bottom: 20px;
  }

  .story-year h3 {
    font-size: 30px;
  }

  .story-quote h3 {
    font-size: 20px;
  }

}
/* about page closing statement */
.about-closing-section {
  padding: 110px 0;
  text-align: center;
}

.about-closing-section .container {
  max-width: 900px;
}

.about-closing-quote {
  color: #103b2e;
  font-size: 30px;
  line-height: 1.6;
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-style: italic;
  margin: 0 auto;
}

.about-closing-rule {
  display: block;
  width: 70px;
  height: 2px;
  background: #c8a96a;
  margin: 36px auto;
}

.about-closing-invitation {
  color: #555;
  font-size: 18px;
  line-height: 1.9;
  max-width: 640px;
  margin: 0 auto 34px;
}

.about-closing-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.about-closing-tagline span {
  color: #c8a96a;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  position: relative;
}

.about-closing-tagline span:not(:last-child)::after {
  content: "◆";
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translate(50%, -50%);
  font-size: 8px;
  letter-spacing: 0;
  color: #c8a96a;
  opacity: .6;
}

@media(max-width:991px) {
  .about-closing-section {
    padding: 60px 0;
  }

  .about-closing-quote {
    font-size: 23px;
  }

  .about-closing-rule {
    margin: 28px auto;
  }

  .about-closing-invitation {
    font-size: 16px;
  }

  .about-closing-tagline {
    gap: 14px;
  }

  .about-closing-tagline span {
    font-size: 17px;
    letter-spacing: 3px;
  }

  .about-closing-tagline span:not(:last-child)::after {
    right: -14px;
  }
}
