@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

  .welcome-section {
    padding: 100px 0;
    background: #0c2c17; /* Deep Green */
    position: relative;
    overflow: hidden;
  }

  /* Subtle background texture pattern */
  .welcome-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(circle at 80% 20%, rgba(211,159,60,0.06) 0%, transparent 50%),
      radial-gradient(circle at 10% 80%, rgba(155,120,38,0.05) 0%, transparent 50%);
    pointer-events: none;
  }

  .welcome-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  /* ── Left: Image side ── */
  .welcome-image-col {
    position: relative;
  }

  .welcome-image-frame {
    position: relative;
    display: inline-block;
    width: 100%;
  }

  /* Decorative gold border behind image */
  .welcome-image-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid rgba(211,159,60,0.35); /* Gold border */
    border-radius: 2px;
    z-index: 0;
  }

  .welcome-image-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    border-radius: 2px;
    filter: sepia(8%) contrast(1.05);
  }

  /* Small gold accent line on image */
  .welcome-image-frame::after {
    content: '';
    position: absolute;
    bottom: 40px;
    left: -15px;
    width: 3px;
    height: 80px;
    background: linear-gradient(to bottom, #d39f3c, transparent); /* Gold */
    z-index: 2;
  }

  /* ── Right: Text side ── */
  .welcome-text-col {
    position: relative;
    padding-left: 20px;
  }

  /* Decorative SVG icon above eyebrow */
  .welcome-icon {
    display: block;
    margin: 0 auto 20px auto;
    width: 52px;
    height: 52px;
    opacity: 0.75;
  }

  .welcome-eyebrow {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #9b7826; /* Dark Bronze */
    margin: 0 0 18px;
    text-align: center;
  }

  .welcome-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #f5f0e8; /* Off-white */
    line-height: 1.15;
    text-align: center;
    margin: 0 0 36px;
    letter-spacing: 0.5px;
  }

  /* Gold divider line */
  .welcome-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 0 32px;
  }
  .welcome-divider span {
    display: block;
    height: 1px;
    width: 60px;
    background: linear-gradient(to right, transparent, #d39f3c); /* Gold */
  }
  .welcome-divider span:last-child {
    background: linear-gradient(to left, transparent, #d39f3c); /* Gold */
  }
  .welcome-divider i {
    display: block;
    width: 6px;
    height: 6px;
    background: #d39f3c; /* Gold */
    border-radius: 50%;
    font-style: normal;
  }

  .welcome-body {
    font-family: 'Jost', sans-serif;
    font-size: 0.97rem;
    font-weight: 300;
    line-height: 1.95;
    color: #b4c5b9; /* Tinted Green-Grey */
    text-align: center;
    margin: 0 0 16px;
  }

  /* Highlight stat / phone number */
  .welcome-highlight {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: #d39f3c; /* Gold */
    text-align: center;
    display: block;
    margin: 12px 0 36px;
    letter-spacing: 1px;
  }

  /* Learn more link — underline style like reference */
  .welcome-link {
    display: block;
    text-align: center;
    font-family: 'Jost', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #f5f0e8; /* Off-white */
    text-decoration: none;
    position: relative;
    padding-bottom: 8px;
    transition: color 0.3s ease;
  }
  .welcome-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: #d39f3c; /* Gold */
    transition: width 0.4s ease;
  }
  .welcome-link:hover::after {
    width: 160px;
  }
  .welcome-link:hover {
    color: #d39f3c; /* Gold */
    text-decoration: none;
  }

  /* ── Responsive ── */
  @media (max-width: 991px) {
    .welcome-inner {
      grid-template-columns: 1fr;
      gap: 50px;
      padding: 0 24px;
    }
    .welcome-section { padding: 70px 0; }
    .welcome-image-frame img { height: 400px; }
    .welcome-title { font-size: 2.3rem; }
    .welcome-text-col { padding-left: 0; }
  }

  @media (max-width: 576px) {
    .welcome-image-frame::before { display: none; }
    .welcome-image-frame img { height: 300px; }
    .welcome-title { font-size: 1.9rem; }
  }
