/* =========================================================
   RUNDA HARRIS SITE - CLEAN MASTER CSS
========================================================= */

/* =========================================================
   GLOBAL
========================================================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: #111;
  background: #f5f3ef;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
}

.pagewrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* =========================================================
   SHARED BUTTONS
========================================================= */
.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

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

.pill-btn-light {
  background: #fff;
  color: #162138;
}

.pill-btn-outline {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.45);
  color: #fff;
}

.pill-btn-gold {
  background: #d6af32;
  color: #111;
}

.pill-btn-dark {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
}

/* =========================================================
   SECTION 1 HERO
========================================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #e9eaee;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(255,255,255,0.84) 0%,
      rgba(255,255,255,0.70) 26%,
      rgba(255,255,255,0.36) 48%,
      rgba(255,255,255,0.10) 72%,
      rgba(255,255,255,0.02) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 130px;
}

.hero-textbox {
  width: 100%;
  max-width: 430px;   /* narrower so it stays out of the portrait */
  margin-left: 18px;  /* pushes whole text block further left */
  padding: 0;
}



.eyebrow {
  margin: 0 0 22px;
  max-width: 300px;
  font-size: clamp(1.02rem, 1.2vw, 1.22rem);
  line-height: 1.42;
  color: #213f89;
  letter-spacing: 0.01em;
}

.eyebrow strong {
  font-weight: 800;
}

.hero-section h1 {
  margin: 0;
  max-width: 430px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.8rem, 5.1vw, 5rem);
  line-height: 0.93;
  letter-spacing: -0.04em;
  color: #122a67;
  text-shadow: 0 2px 18px rgba(255,255,255,0.16);
}

.hero-highlight {
  color: #9a744c;
  text-shadow: 0 2px 10px rgba(255,255,255,0.18);
}

/* =========================================================
   SECTION 1 HERO
========================================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #e9eaee;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(255,255,255,0.30) 0%,
      rgba(255,255,255,0.18) 35%,
      rgba(255,255,255,0.08) 65%,
      rgba(255,255,255,0.02) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
}

.hero-copy {
  position: absolute;
  top: 110px;
  left: 90px;
  width: min(820px, calc(100% - 140px));
}

.hero-kicker {
  margin: 0;
  max-width: 760px;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.35rem);
  line-height: 1.35;
  font-weight: 700;
  color: #173c90;
  letter-spacing: 0;
}

.hero-title {
  margin: 48px 0 0 280px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.hero-title-top {
  display: block;
  max-width: 360px;
  font-size: clamp(3rem, 4.4vw, 5.1rem);
  color: #ae7b47;
  text-shadow: 0 2px 10px rgba(255,255,255,0.12);
}

.hero-title-bottom {
  display: block;
  max-width: 360px;
  font-size: clamp(3rem, 4.4vw, 5.1rem);
  color: #16388a;
  text-shadow: 0 2px 10px rgba(255,255,255,0.12);
}

/* =========================================================
   MOBILE - KEEP EXISTING PHONE FRIENDLY LAYOUT
========================================================= */
@media (max-width: 767px) {
  .hero-section,
  .hero-content {
    min-height: 760px;
  }

  .hero-image {
    object-position: 64% top;
  }

  .hero-overlay {
    background:
      linear-gradient(
        to top,
        rgba(255,255,255,0.72) 0%,
        rgba(255,255,255,0.52) 38%,
        rgba(255,255,255,0.18) 100%
      );
  }

  .hero-copy {
    position: absolute;
    left: 13px;
    right: 13px;
    top: auto;
    bottom: 34px;
    width: auto;
    margin: 0;
    padding: 20px 18px;
    background: rgba(255,255,255,0.56);
    border-radius: 20px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .hero-kicker {
    max-width: 100%;
    margin: 0 0 18px;
    font-size: 1.02rem;
    line-height: 1.42;
  }

  .hero-title {
    margin: 0;
    gap: 4px;
  }

  .hero-title-top,
  .hero-title-bottom {
    max-width: 100%;
    font-size: clamp(2.4rem, 11vw, 4.2rem);
    line-height: 0.96;
  }
}

/* =========================================================
   SECTION 2 BIO
========================================================= */
.bio-section {
  padding: 90px 0;
  background: #f8f6f1;
}

.bio-grid {
  display: grid;
  grid-template-columns: 370px 1fr;
  gap: 56px;
  align-items: start;
}

.bio-image-col {
  position: sticky;
  top: 32px;
}

.bio-image {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #ddd;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.bio-text-col h2 {
  margin: 0 0 24px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  color: #1d2f63;
}

.bio-text-col p {
  margin: 0 0 18px;
  font-size: 1.04rem;
  color: #333;
}

/* SECTION 2: align image block lower to match headline top */
.about-transformative-grid {
  align-items: start;
}

.about-image {
  align-self: start;
  margin-top: 46px; /* adjust between 40px and 60px if needed */
}

/* =========================================================
   SECTION 3 SERVICES / TRANSFORMATION PROCESS
========================================================= */
.services-section {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: #d8d4cf;
}

.services-bg-wrap {
  position: absolute;
  inset: 0;
}

.services-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.services-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(17, 24, 39, 0.78) 0%,
      rgba(17, 24, 39, 0.58) 38%,
      rgba(17, 24, 39, 0.22) 70%,
      rgba(17, 24, 39, 0.08) 100%
    );
}

.services-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0;
}

.services-panel {
  max-width: 620px;
  padding: 40px 42px;
  border-radius: 28px;
  background: rgba(12, 18, 35, 0.44);
  box-shadow: 0 22px 55px rgba(0,0,0,0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.services-panel h2 {
  margin: 0 0 24px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1;
  color: #fff;
}

.services-list {
  margin: 0 0 28px;
  padding-left: 20px;
}

.services-list li {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1.1rem;
}

.services-list a {
  color: #fff;
  transition: opacity 0.25s ease;
}

.services-list a:hover {
  opacity: 0.75;
}

.services-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* =========================================================
   LEGACY / FAIRGROUNDS GIVING SECTION
========================================================= */
.legacy-section {
  overflow-x: hidden;
  padding: 88px 0 90px;
  background: #f6f0e6;
  color: #4b3d31;
}

.legacy-wrap {
  max-width: 1220px;
}

.legacy-header {
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}

.legacy-header h2 {
  margin: 0 0 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 4.6vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #4e4136;
}

.legacy-header p {
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(1.04rem, 1.5vw, 1.42rem);
  line-height: 1.5;
  color: #6a5a4c;
}

.legacy-image-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 42px;
}

.legacy-image {
  min-height: 420px;
  overflow: hidden;
  background: #ddd0c0;
  box-shadow: 0 14px 34px rgba(0,0,0,0.10);
}

.legacy-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.legacy-image-old img {
  filter: sepia(0.65) grayscale(0.3) contrast(0.95);
}

.legacy-quote-box {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: min(92%, 520px);
  padding: 28px 24px;
  transform: translate(-50%, -40%);
  text-align: center;
  background: rgba(255,255,255,0.96);
  border: 5px solid #244c7d;
  box-shadow: 0 12px 28px rgba(0,0,0,0.16);
}

.legacy-quote-box p {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 2.6vw, 2.45rem);
  line-height: 1.2;
  color: #284d77;
}

.legacy-lower-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr 1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 34px;
}

.legacy-card,
.legacy-help,
.legacy-qr-block {
  height: 100%;
  min-height: 255px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 28px 22px 24px;
  background: #fbf7f1;
  border: 2px solid #d8c8b2;
}

.legacy-card h3,
.legacy-help h3,
.legacy-qr-block h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.15;
  color: #55473b;
}

.legacy-price {
  margin-bottom: 18px;
  font-size: 2rem;
  font-weight: 800;
  color: #70593f;
}

.legacy-card p,
.legacy-help p,
.legacy-help li,
.legacy-qr-block p {
  font-size: 1.04rem;
  color: #67574a;
}

.legacy-help ul {
  margin: 16px 0 0 18px;
  padding: 0;
}

.legacy-help li {
  margin: 0 0 10px;
}

.legacy-founders-note {
  display: inline-block;
  margin-top: auto;
  padding: 10px 14px;
  font-size: 0.95rem;
  line-height: 1.3;
  color: #fff;
  background: #b74747;
  border-radius: 10px;
}

.legacy-icon {
  margin: 0 0 16px;
}

.legacy-icon-brick {
  position: relative;
  width: 68px;
  height: 36px;
  background: #c7a77b;
  border-radius: 4px;
  transform: skew(-22deg);
  box-shadow:
    26px -10px 0 0 #d4b48a,
    0 0 0 2px rgba(90,65,38,0.08) inset;
}

.legacy-icon-tree {
  width: 74px;
  height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #ccb18d;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}

.legacy-qr-block {
  text-align: center;
}

.legacy-qr-link {
  display: block;
  color: inherit;
}

.legacy-qr-wrap {
  display: inline-block;
  padding: 12px;
  margin: 8px 0 14px;
  background: #fff;
  border: 2px solid #d8c8b2;
}

.legacy-qr-wrap a {
  display: inline-block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.legacy-qr-wrap a:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.legacy-qr-link:hover .legacy-qr-wrap {
  transform: scale(1.02);
}

.legacy-qr-wrap img {
  width: 190px;
  max-width: 100%;
  height: auto;
  display: block;
}

.legacy-qr-url {
  margin-top: auto;
  word-break: break-word;
  font-size: 0.98rem;
}

.legacy-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.legacy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 34px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 22px rgba(0,0,0,0.10);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

.legacy-btn-gold {
  background: #c8a47a;
  color: #fff;
}

.legacy-btn-blue {
  background: #204d80;
  color: #fff;
}

/* =========================================================
   SECTION 4 CONTACT
========================================================= */
.contact-section {
  padding: 90px 0;
  background:
    radial-gradient(circle at top right, rgba(213,171,54,0.08), transparent 30%),
    linear-gradient(90deg, #07101f 0%, #0b1220 55%, #161412 100%);
  color: #fff;
}

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

.contact-left {
  max-width: 560px;
}

.contact-kicker {
  margin: 0 0 18px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #69c9ff;
}

.contact-left h2 {
  margin: 0 0 22px;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: #fff;
}

.contact-lead {
  margin: 0 0 20px;
  font-size: clamp(1.2rem, 2vw, 1.9rem);
  line-height: 1.35;
  font-weight: 600;
  color: #f5f5f5;
}

.contact-subtext {
  margin: 0 0 28px;
  font-size: 1.12rem;
  color: rgba(255,255,255,0.74);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.social-box {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  transition: transform 0.25s ease, background 0.25s ease;
}

.social-box:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.11);
}

.contact-card {
  padding: 32px;
  border-radius: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact-card h3 {
  margin: 0 0 12px;
  font-size: 2.1rem;
  line-height: 1.05;
  color: #fff;
}

.contact-card-intro {
  margin: 0 0 24px;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.76);
}

.contact-item {
  margin-bottom: 18px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
}

.contact-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.contact-item a,
.contact-item p {
  margin: 0;
  font-size: 1.22rem;
  font-weight: 600;
  color: #fff;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 8px;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
  .bio-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .bio-image-col {
    position: static;
    max-width: 420px;
  }

  .contact-card {
    max-width: 560px;
  }

  .legacy-lower-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 980px) {
  .legacy-lower-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 820px) {
  .legacy-image-row {
    grid-template-columns: 1fr;
  }

  .legacy-image {
    min-height: 320px;
  }

  .legacy-quote-box {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    margin: -10px auto 0;
  }
}

@media (max-width: 767px) {
  .pagewrap {
    width: min(100% - 26px, 1000px);
  }

  .hero-section,
  .hero-content {
    min-height: 760px;
  }

  .hero-image {
    object-position: 64% top;
  }

  .hero-overlay {
    background:
      linear-gradient(
        to top,
        rgba(255,255,255,0.72) 0%,
        rgba(255,255,255,0.52) 38%,
        rgba(255,255,255,0.18) 100%
      );
  }

  .hero-content {
    align-items: flex-end;
    justify-content: flex-start;
    padding-top: 0;
    padding-bottom: 34px;
  }

  .hero-textbox {
    max-width: 100%;
    margin-left: 0;
    padding: 20px 18px;
    background: rgba(255,255,255,0.56);
    border-radius: 20px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .eyebrow {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: 1.02rem;
  }

  .hero-section h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 11vw, 4.2rem);
    line-height: 0.96;
  }

  .bio-section,
  .contact-section {
    padding: 64px 0;
  }

  .services-section {
    height: auto;
    min-height: auto;
  }

  .services-bg-desktop {
    display: none;
  }

  .services-bg-mobile {
    display: block;
  }

  .services-content {
    min-height: auto;
    height: auto;
    align-items: flex-end;
    padding: 50px 0;
  }

  .services-panel {
    padding: 26px 20px;
  }

  .contact-left h2 {
    line-height: 1;
  }

  .contact-card {
    padding: 24px 18px;
  }

  .contact-item a,
  .contact-item p {
    font-size: 1.05rem;
  }
}

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

  .legacy-lower-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .legacy-card,
  .legacy-help,
  .legacy-qr-block {
    width: 100%;
    min-height: auto;
    height: auto;
  }

  .legacy-qr-wrap img {
    width: 200px;
  }

  .legacy-buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .legacy-btn {
    width: 100%;
    max-width: 360px;
  }
}


.services-section {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: #d8d4cf;
}

.services-bg-wrap {
  position: absolute;
  inset: 0;
}

.services-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-bg-desktop {
  display: block;
  object-position: center center;
}

.services-bg-mobile {
  display: none;
  object-position: center center;
}

.services-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(17, 24, 39, 0.78) 0%,
      rgba(17, 24, 39, 0.58) 38%,
      rgba(17, 24, 39, 0.22) 70%,
      rgba(17, 24, 39, 0.08) 100%
    );
}

.services-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0;
}

@media (max-width: 767px) {
  .services-section {
    height: auto;
    min-height: auto;
  }

  .services-bg-desktop {
    display: none;
  }

  .services-bg-mobile {
    display: block;
  }

  .services-content {
    height: auto;
    min-height: auto;
    align-items: flex-end;
    padding: 50px 0;
  }
}

  /* =========================================================
     SECTION 3 SERVICES - MOBILE FIX
  ========================================================= */

  .services-section {
    position: relative;
    min-height: 860px;   /* taller mobile section */
    height: auto;
    overflow: hidden;
  }

  .services-bg-wrap {
    position: absolute;
    inset: 0;
  }

  .services-bg-desktop {
    display: none;
  }

  .services-bg-mobile {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;   /* keeps more of her visible */
  }

  .services-overlay {
    background:
      linear-gradient(
        to top,
        rgba(12, 18, 35, 0.72) 0%,
        rgba(12, 18, 35, 0.42) 38%,
        rgba(12, 18, 35, 0.14) 100%
      );
  }

  .services-content {
    position: relative;
    z-index: 2;
    min-height: 860px;   /* match section height */
    height: auto;
    display: flex;
    align-items: flex-end;
    padding: 34px 0;
  }

  .services-panel {
    width: 100%;
    padding: 26px 20px;
    border-radius: 26px;
    background: rgba(12, 18, 35, 0.46);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }



/* =========================================================
   HERO DESKTOP POSITION FIX - PUT AT VERY END OF CSS
========================================================= */
@media (min-width: 768px) {
  .hero-content {
    padding-top: 105px !important;
  }

  .hero-textbox {
    width: 100%;
    max-width: 360px !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
  }

  .eyebrow {
    max-width: 260px !important;
    margin-bottom: 18px !important;
    font-size: clamp(0.98rem, 1.05vw, 1.12rem) !important;
    line-height: 1.38 !important;
  }

  .hero-section h1 {
    max-width: 360px !important;
    font-size: clamp(2.45rem, 4.35vw, 4.45rem) !important;
    line-height: 0.94 !important;
  }
}



/* =========================================================
   SECTION 1 HERO
========================================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #e9eaee;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(255,255,255,0.30) 0%,
      rgba(255,255,255,0.18) 35%,
      rgba(255,255,255,0.08) 65%,
      rgba(255,255,255,0.02) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
}

.hero-copy {
  position: absolute;
  top: 110px;
  left: 90px;
  width: min(820px, calc(100% - 140px));
}

.hero-kicker {
  margin: 0;
  max-width: 760px;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.35rem);
  line-height: 1.35;
  font-weight: 700;
  color: #173c90;
  letter-spacing: 0;
}

.hero-title {
  margin: 48px 0 0 280px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.hero-title-top {
  display: block;
  max-width: 360px;
  font-size: clamp(3rem, 4.4vw, 5.1rem);
  color: #ae7b47;
  text-shadow: 0 2px 10px rgba(255,255,255,0.12);
}

.hero-title-bottom {
  display: block;
  max-width: 360px;
  font-size: clamp(3rem, 4.4vw, 5.1rem);
  color: #16388a;
  text-shadow: 0 2px 10px rgba(255,255,255,0.12);
}

/* =========================================================
   MOBILE - KEEP EXISTING PHONE FRIENDLY LAYOUT
========================================================= */
@media (max-width: 767px) {
  .hero-section,
  .hero-content {
    min-height: 760px;
  }

  .hero-image {
    object-position: 64% top;
  }

  .hero-overlay {
    background:
      linear-gradient(
        to top,
        rgba(255,255,255,0.72) 0%,
        rgba(255,255,255,0.52) 38%,
        rgba(255,255,255,0.18) 100%
      );
  }

  .hero-copy {
    position: absolute;
    left: 13px;
    right: 13px;
    top: auto;
    bottom: 34px;
    width: auto;
    margin: 0;
    padding: 20px 18px;
    background: rgba(255,255,255,0.56);
    border-radius: 20px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .hero-kicker {
    max-width: 100%;
    margin: 0 0 18px;
    font-size: 1.02rem;
    line-height: 1.42;
  }

  .hero-title {
    margin: 0;
    gap: 4px;
  }

  .hero-title-top,
  .hero-title-bottom {
    max-width: 100%;
    font-size: clamp(2.4rem, 11vw, 4.2rem);
    line-height: 0.96;
  }
}

:root {
  --sidebar-width: 202px;
  --sidebar-bg-1: #04101d;
  --sidebar-bg-2: #020913;
  --sidebar-border: rgba(255,255,255,0.08);
  --gold: #d8af2f;
  --text-light: rgba(255,255,255,0.92);
  --text-soft: rgba(255,255,255,0.74);
  --text-dim: rgba(255,255,255,0.56);
}

/* MAIN PAGE SHIFT */
.site-main,
main.site-main,
.page-shell,
.page-content {
  margin-left: var(--sidebar-width);
}

/* DESKTOP SIDEBAR */
.site-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  z-index: 999;
  background: linear-gradient(180deg, var(--sidebar-bg-1) 0%, var(--sidebar-bg-2) 100%);
  border-right: 1px solid rgba(255,255,255,0.06);
}

.sidebar-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px 18px;
}

.sidebar-logo {
  display: inline-block;
  width: 116px;
  margin: 10px 0 10px 6px;
}

.sidebar-logo img {
  width: 116px;
  height: 116px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.sidebar-tag {
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  line-height: 1.4;
  margin: 0 0 26px 18px;
  letter-spacing: 0.02em;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.3;
  padding: 8px 0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sidebar-nav a:hover {
  color: #ffffff;
}

.sidebar-nav a.is-active {
  color: var(--gold);
  font-weight: 600;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 50%;
  flex: 0 0 12px;
  position: relative;
}

.sidebar-nav a.is-active .nav-dot {
  border-color: rgba(216,175,47,0.95);
}

.sidebar-nav a.is-active .nav-dot::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--gold);
}

.sidebar-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.76);
  font-size: 13px;
  line-height: 1.55;
}

/* MOBILE TOP BAR */
.mobile-topbar {
  position: sticky;
  top: 0;
  z-index: 1001;
  height: 72px;
  background: linear-gradient(180deg, var(--sidebar-bg-1) 0%, var(--sidebar-bg-2) 100%);
  border-bottom: 1px solid var(--sidebar-border);
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
}

.mobile-brand img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.mobile-menu-toggle {
  appearance: none;
  border: 0;
  background: transparent;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  margin-left: auto;
}

.mobile-nav {
  display: none;
  position: sticky;
  top: 72px;
  z-index: 1000;
  background: #06101c;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav a {
  display: block;
  padding: 15px 18px;
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  text-decoration: none;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.mobile-nav a.is-active {
  color: var(--gold);
}

.mobile-nav.is-open {
  display: block;
}

/* BREAKPOINTS */
@media (max-width: 1100px) {
  :root {
    --sidebar-width: 176px;
  }

  .sidebar-logo {
    width: 100px;
  }

  .sidebar-logo img {
    width: 100px;
    height: 100px;
  }

  .sidebar-tag {
    margin-left: 8px;
  }

  .site-main,
  main.site-main,
  .page-shell,
  .page-content {
    margin-left: var(--sidebar-width);
  }
}

@media (max-width: 767px) {
  .site-sidebar {
    display: none;
  }

  .mobile-topbar {
    display: flex;
  }

  .site-main,
  main.site-main,
  .page-shell,
  .page-content {
    margin-left: 0;
  }
}


/* =========================================================
   SECTION 2 - ABOUT
========================================================= */
.about-section {
  position: relative;
  background: #f4efe8;
  padding: 88px 0 92px;
}

.about-wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 34px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 430px);
  gap: 44px;
  align-items: start;
}

.about-copy {
  color: #2d3340;
}

.about-kicker {
  margin: 0 0 12px 0;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7d6f5f;
}

.about-copy h2 {
  margin: 0 0 22px 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(34px, 4.1vw, 60px);
  line-height: 1.04;
  font-weight: 700;
  color: #2c3340;
}

.about-copy p {
  margin: 0 0 18px 0;
  font-size: 17px;
  line-height: 1.82;
  color: #394150;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-image-col {
  position: relative;
}

.about-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(0,0,0,0.12);
}

/* =========================================================
   NOTEBOOK
========================================================= */
@media (max-width: 1366px) {
  .about-wrap {
    padding: 0 28px;
  }

  .about-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 390px);
    gap: 34px;
  }
}

/* =========================================================
   TABLET
========================================================= */
@media (max-width: 1024px) {
  .about-section {
    padding: 72px 0 76px;
  }

  .about-wrap {
    padding: 0 24px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-image-col {
    max-width: 520px;
  }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 767px) {
  .about-section {
    padding: 58px 0 62px;
  }

  .about-wrap {
    padding: 0 18px;
  }

  .about-kicker {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .about-copy h2 {
    margin-bottom: 18px;
  }

  .about-copy p {
    font-size: 15px;
    line-height: 1.74;
    margin-bottom: 15px;
  }

  .about-image {
    border-radius: 18px;
  }
}




/* =========================================================
   SECTION 2 - DARK ABOUT BLOCK
========================================================= */
.about-transformative-dark {
  background: #1f2632;
  padding: 88px 0 96px;
  position: relative;
  z-index: 1;
}

.about-transformative-dark .about-transformative-wrap {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}

.about-transformative-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 1fr);
  gap: 44px;
  align-items: start;
}

/* =========================================================
   LEFT TEXT COLUMN
========================================================= */
.about-transformative-dark .about-transformative-copy {
  color: #e8ecf2;
}

.about-transformative-dark .about-transformative-kicker {
  margin: 0 0 12px;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b7c0cd;
}

.about-transformative-dark .about-transformative-copy h2 {
  margin: 0 0 24px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(34px, 4.1vw, 60px);
  line-height: 1.05;
  font-weight: 700;
  color: #ffffff;
}

.about-transformative-dark .about-transformative-copy p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 1.82;
  color: rgba(232,236,242,0.92);
}

.about-transformative-dark .about-transformative-copy p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   SMALL FLOAT IMAGE INSIDE TEXT
========================================================= */
.about-float-image {
  float: left;
  width: 180px;
  max-width: 30%;
  height: auto;
  margin: 6px 22px 14px 0;
  display: block;
  shape-outside: inset(0 round 0);
}

.about-transformative-copy-float::after {
  content: "";
  display: block;
  clear: both;
}

/* =========================================================
   RIGHT IMAGE COLUMN
========================================================= */
.about-image {
  position: relative;
}

.about-image a {
  display: block;
}

.about-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(0,0,0,0.28);
}

/* =========================================================
   NOTEBOOK
========================================================= */
@media (max-width: 1366px) {
  .about-transformative-dark .about-transformative-wrap {
    width: min(1140px, calc(100% - 48px));
  }

.about-transformative-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 34px;
}

  .about-float-image {
    width: 165px;
    margin: 6px 20px 12px 0;
  }
}

/* =========================================================
   TABLET
========================================================= */
@media (max-width: 1024px) {
  .about-transformative-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }



  .about-transformative-dark .about-transformative-wrap {
    width: min(980px, calc(100% - 40px));
  }

  .about-transformative-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image {
    max-width: 640px;
  }

  .about-float-image {
    width: 150px;
    max-width: 32%;
    margin: 6px 18px 12px 0;
  }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 767px) {
  .about-transformative-dark {
    padding: 58px 0 62px;
  }

  .about-transformative-dark .about-transformative-wrap {
    width: calc(100% - 28px);
  }

  .about-transformative-dark .about-transformative-kicker {
    font-size: 13px;
    margin-bottom: 10px;
  }

  .about-transformative-dark .about-transformative-copy h2 {
    margin-bottom: 18px;
  }

  .about-transformative-dark .about-transformative-copy p {
    font-size: 15px;
    line-height: 1.74;
    margin-bottom: 15px;
  }

  .about-float-image {
    float: left;
    width: 120px;
    max-width: 38%;
    margin: 4px 14px 10px 0;
  }

  .about-image img {
    border-radius: 18px;
  }
}


/* =========================================================
   SECTION 4 - MY TEAM
========================================================= */
.team-section {
  background: #1f2632;
  padding: 92px 0 96px;
  position: relative;
}

.team-wrap {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}

.team-header {
  max-width: 860px;
  margin: 0 auto 42px auto;
  text-align: center;
}

.team-kicker {
  margin: 0 0 10px 0;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b7c0cd;
}

.team-intro {
  margin: 0 0 18px 0;
  font-size: clamp(17px, 1.45vw, 24px);
  line-height: 1.5;
  color: rgba(232,236,242,0.92);
}

.team-header h2 {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(42px, 5.6vw, 88px);
  line-height: 0.98;
  font-weight: 700;
  color: #ffffff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

.team-card {
  color: #ffffff;
}

.team-image-wrap {
  background: #151b25;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(0,0,0,0.28);
}

.team-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.team-caption {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(232,236,242,0.92);
}

.team-caption strong {
  color: #ffffff;
  font-weight: 700;
}

/* =========================================================
   NOTEBOOK
========================================================= */
@media (max-width: 1366px) {
  .team-wrap {
    width: min(1140px, calc(100% - 48px));
  }

  .team-grid {
    gap: 28px;
  }
}

/* =========================================================
   TABLET
========================================================= */
@media (max-width: 1024px) {
  .team-section {
    padding: 76px 0 80px;
  }

  .team-wrap {
    width: min(980px, calc(100% - 40px));
  }

  .team-grid {
    gap: 24px;
  }

  .team-caption {
    font-size: 17px;
  }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 767px) {
  .team-section {
    padding: 58px 0 62px;
  }

  .team-wrap {
    width: calc(100% - 28px);
  }

  .team-header {
    margin-bottom: 28px;
  }

  .team-kicker {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .team-intro {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .team-image-wrap {
    border-radius: 16px;
  }

  .team-caption {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.55;
  }
}


.services-bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.services-bg-wrap picture,
.services-bg-wrap img {
  display: block;
  width: 100%;
  height: 100%;
}

.services-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}


.services-content {
  position: relative;
}

/* NEW "Services" heading */
.services-title {
  position: absolute;
  top: -10px; /* desktop position */
  left: 0;

  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.05;

  color: #ffffff;
  letter-spacing: 0.5px;

  pointer-events: none;
  z-index: 5;
}

/* OPTIONAL: tighten alignment with panel */
.services-panel {
  position: relative;
}

/* MOBILE ONLY */
@media (max-width: 900px) {
  .services-title {
    top: 90px;
    left: 20px;
    font-size: 42px;
    line-height: 1.05;
    z-index: 5;
  }
}

.contact-form {
  margin-top: 28px;
  position: relative;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.field label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #f4ead7;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 1rem;
  font-family: inherit;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255,255,255,0.65);
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(212, 177, 106, 0.9);
  box-shadow: 0 0 0 3px rgba(212, 177, 106, 0.18);
}

@media (max-width: 760px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-actions .pill-btn,
  .contact-actions button.pill-btn {
    width: 100%;
    text-align: center;
  }
}


/* =========================================================
   SOCIAL ICON BUTTONS
========================================================= */
.social-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 0;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  overflow: hidden;
}

.social-icon-link:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.14);
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

.social-icon-link img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}