    :root {
      --card-bg: #3c3526;
      --text-muted: #9d9d9d;
      --text-body: rgba(255, 255, 255, 0.6);
      --gold: #CAA56A;
      --gold-light: #C9A96E;
      --gold-start: #d9c369;
      --gold-end: #c69c3e;
      --gold-dark: #a1701d;
      --gold-mid: #d0aa4a;
      --bg: #111111;
      --bg-dark: #0a0a0a;
      --white: #ffffff;

      --gold-border:  #CAA56A;
      --gold-input:   rgba(201,169,110,0.55);
      --bg-outer:     #1a1a1a;
      --bg-card:      #2a2618; 
      --bg-card2:     #2e2b1e;
      --text-label:   rgba(255,255,255,0.55);
      --text-ph:      rgba(201,169,110,0.55);
      --input-line:   rgba(255,255,255,0.25);
    }
    /* ── Reset ─────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: #fff;
      font-family: 'Faustina', serif;
      overflow-x: hidden;
    }
    .services-page {
      max-width: 1400px;
      margin: 0 auto;
      padding: 110px 60px 30px;
    }

    .top-row {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 40px;
      margin-bottom: 64px;
    }
    
    .main-heading {
      flex: 1;
      font-family: 'Fredoka', sans-serif;
      font-weight: 300;
      font-size: clamp(32px, 4.2vw, 58px);
      line-height: 1.15;
      color: #fff;
      letter-spacing: -0.5px;
    }
    .main-heading em {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-weight: 400;
      color: var(--white);
      font-size: 1.05em;
    }

    .tagline-right {
      display: flex;
      align-items: baseline;
      gap: 20px;
      flex-shrink: 0;
      padding-bottom: 6px;
    }
    .tagline-line {
      width: 120px;
      height: 2px;
      background: var(--gold);
      flex-shrink: 0;
    }
    .tagline-text {
      font-family: 'Fredoka', sans-serif;
      font-weight: 400;
      font-size: clamp(20px, 2.2vw, 32px);
      color: #fff;
      white-space: nowrap;
    }
    .section-intro {
      margin-bottom: 52px;
    }
    .section-eyebrow {
      font-family: 'Fredoka', sans-serif;
      font-weight: 400;
      font-size: 16px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 14px;
      display: block;
    }
    .section-desc {
      font-family: 'Faustina', serif;
      font-weight: 300;
      font-size: 15px;
      line-height: 1.75;
      color: var(--white);
    }
    .services-grid {
      display: flex;
      flex-direction: row;
      gap: 0;
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 2px;
      overflow: hidden;
      height: 480px; 
    }

    .service-card {
      position: relative;
      overflow: hidden;
      cursor: pointer;
      height: 100%;
      flex: 1 1 0;
      min-width: 0;
      transition: flex 0.52s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .services-grid:hover .service-card { flex: 0.6 1 0; }
    .services-grid:hover .service-card:hover { flex: 1.1 1 0; }

    .service-card-img {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center center;
      display: block;
      transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
                  filter  0.45s ease;
      filter: brightness(0.72);
    }
    .service-card:hover .service-card-img {
      transform: scale(1);
      filter: brightness(1);
    }
    .service-card-overlay {
      position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(
        to bottom,
        rgba(0,0,0,0)    0%,
        rgba(0,0,0,0.10) 35%,
        rgba(0,0,0,0.70) 72%,
        rgba(0,0,0,0.92) 100%
      );
      transition: background 0.42s ease;
    }
    .service-card:hover .service-card-overlay {
      background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.08) 0%,
        rgba(0,0,0,0.32) 38%,
        rgba(0,0,0,0.85) 70%,
        rgba(0,0,0,0.97) 100%
      );
    }

    .service-card-topline {
      position: absolute;
      top: 0; left: 0; right: 0; height: 2px;
      z-index: 3;
      background: linear-gradient(90deg,
        rgba(0,0,0,0) 0%, #c9a96e 25%, #e8d5a8 50%, #c9a96e 75%, rgba(0,0,0,0) 100%);
      opacity: 0;
      transform: scaleX(0.4);
      transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
    }
    .service-card:hover .service-card-topline {
      opacity: 0.75;
      transform: scaleX(1);
    }

    .service-card + .service-card {
      border-left: 1px solid rgba(255,255,255,0.07);
    }

    .service-card-info {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      z-index: 2;
      padding: 0 24px 28px;
    }
  
    .service-card-name {
      text-align: center;
      font-family: 'Fredoka', sans-serif;
      font-weight: 300;
      font-size: clamp(16px, 1.6vw, 22px);
      line-height: 1.25;
      color: #fff;
      margin-bottom: 0;
      transition: color 0.3s ease;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .service-card:hover .service-card-name {
      color: var(--gold-light);
      white-space: normal;
    }

    .service-card-desc {
      text-align: center;
      font-family: 'Faustina', serif;
      font-weight: 300;
      font-size: 13px;
      line-height: 1.68;
      color: rgba(255,255,255,0.78);
      overflow: hidden;
      transform: translateY(10px);
    }
    .service-card:hover .service-card-desc {
      opacity: 1;
      max-height: 100px;
      transform: translateY(0);
    }

    .bottom-section {
      margin-top: 72px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 36px;
      text-align: center;
    }
    .cta-form-bottom{
      display: flex;
      justify-content: center;
      padding: 0 0 50px 0;
    }

    .bottom-quote {
      font-family: 'Faustina', serif;
      font-weight: 300;
      font-size: 16px;
      line-height: 1.75;
      color: var(--white);
    }
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }
    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.2s; }
    .delay-3 { transition-delay: 0.3s; }
    .delay-4 { transition-delay: 0.4s; }
    .delay-5 { transition-delay: 0.5s; }

    .cta-card {
      display: grid;
      grid-template-columns: 55% 45%;
      padding: 30px 50px 30px 50px;
      width: 100%;
      max-width: 1300px;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid var(--gold);
      background: linear-gradient(110deg, rgba(38, 36, 32, 0.10) 0.41%, rgba(201, 169, 110, 0.30) 100%);
      box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
      
    }
    .cta-image-side {
      position: relative;
      min-height: 460px;
      overflow: hidden;
    }

    .cta-image-side img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
      display: block;
      border-radius: 10px;
    }

    .cta-form-side {
      padding: 10px 40px 12px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 0;
      position: relative;
    }
    .cta-heading {
      font-family: 'Fredoka', sans-serif;
      font-weight: 300;
      font-size: clamp(28px, 3.2vw, 42px);
      line-height: 1.2;
      color: #fff;
      margin-bottom: 20px;
      letter-spacing: 0.3px;
      text-transform: capitalize;
    }

/* ─────────────────── CTA FORM ─────────────────── */
.cta-section {display: flex;justify-content: center; padding: 30px 70px 80px; }

.cta-card {
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  background: linear-gradient(131deg, rgba(38,36,32,0.1) 0%, rgba(201,169,110,0.3) 100%);
  display: flex; gap: 25px; align-items: center;
  padding: 18px;
  min-height: 560px;
  box-shadow: 0 4px 4px rgba(0,0,0,0.25);
}

.cta-img {
  flex-shrink: 0; max-width: 800px; width: 100%; height: 492px;
  border-radius: 8px; overflow: hidden;
  /* box-shadow: 4px 4px 4px rgba(0,0,0,0.44); */
  position: relative;
}

.cta-form {
  flex: 1;
  display: flex; flex-direction: column; gap: 19px;
  padding: 10px 12px;
}

.cta-form-title {
  font-family: 'Fredoka', sans-serif; font-weight: 300;
  font-size: 48px; line-height: 1.05; color: var(--white);
  text-transform: capitalize;
  margin-bottom: 50px;
}

.port-port-form-fields { display: flex; flex-direction: column; gap: 28px; }

.port-form-field {
  border-bottom: 1.6px solid rgba(157,157,157,0.5);
  padding-bottom: 8px;
}
.port-form-field label {
  font-family: 'Fredoka', sans-serif; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--white); display: block; margin-bottom: 6px;
}
.port-form-field input {
  background: transparent; border: none; outline: none;
  font-family: 'Faustina', serif; font-style: italic; font-weight: 300;
  font-size: 16px; color: var(--grey); width: 100%;
}
.port-form-field input::placeholder { color: var(--grey); }

.form-privacy {
  font-family: 'Faustina', serif; font-weight: 300;
  font-size: 13px; color: var(--light-grey);
  margin: 12px auto;
}

.form-submit {
  padding: 11px 24px;
  border: 1px solid var(--gold);
  font-family: 'Fredoka', sans-serif; font-size: 15px;
  letter-spacing: 0.5px; color: var(--white);
  background: transparent; cursor: pointer;
  transition: background 0.3s, color 0.3s;
  text-transform: uppercase; align-self: flex-start;
}
.form-submit:hover { background: var(--Gold-Gradient-Dark-1); color: var(--white); }


   @media (max-width: 1140px) {

    .cta-section {
        padding: 80px 10px 80px;
    }
    .cta-card {
        display: flex;
        flex-direction: column;
    }
}

    @media (max-width: 768px) {
      .cta-image-side { min-height: 280px; }
      .cta-form-side  { padding: 36px 28px 40px; }
      .form-submit    { align-self: stretch; text-align: center; }
      .cta-card { grid-template-columns: 1fr; }
      .tagline-line { width: 60px; }
      .top-row { flex-direction: column; align-items: flex-start; gap: 24px; }
      .services-page { padding: 90px 20px 30px; }
      .cta-section {
          padding: 30px 10px 80px;
      }
      .cta-img {
          flex-shrink: 0;
          width: 100%;
          display: none;
          height: auto;
      }
      .cta-form-title{
        font-size: 27px;

      }
    }
    @media (max-width: 900px) {
      .services-grid {
        flex-direction: column;
        height: auto;
        border: none;
      }
      .service-card {
        height: 220px;
        flex: none !important;
        margin-top: 20px;
      }
      .services-grid:hover .service-card,
      .services-grid:hover .service-card:hover { flex: none; }
      .service-card-name { white-space: normal; }
    }