/* =========================================================
   DIVY PREMIUM REDESIGN
   Phase 1: Header + Hero
   Existing functionality remains unchanged
   ========================================================= */

:root{
  --navy:#101936;
  --ink:#18213d;
  --muted:#6f7686;
  --gold:#a96d22;
  --gold-soft:#d8b071;
  --cream:#fbfaf7;
  --cream-2:#f6f2eb;
  --line:#e7e2d9;
  --white:#fff;
}

body{
  background:var(--cream);
}

/* ---------- TOP BAR ---------- */

.topbar{
  background:var(--navy);
  border:0;
  padding:9px 0;
}

.topbar .wrap{
  max-width:1380px;
}

.topbar,
.topbar a{
  color:#f5f1e9;
}

.topbar span,
.topbar a{
  font-size:12px;
  letter-spacing:.15px;
}


/* ---------- HEADER ---------- */

header{
  background:rgba(251,250,247,.96);
  border-bottom:1px solid rgba(231,226,217,.8);
}

.nav{
  max-width:1380px;
  min-height:112px;
}

.company-logo{
  width:190px;
  height:auto;
}

nav{
  gap:37px;
}

nav a{
  position:relative;
  font-size:14px;
  color:var(--navy);
  transition:color .2s ease;
}

nav a::after{
  content:"";
  position:absolute;
  left:0;
  right:100%;
  bottom:-8px;
  height:1px;
  background:var(--gold);
  transition:right .25s ease;
}

nav a:hover{
  color:var(--gold);
}

nav a:hover::after{
  right:0;
}

.nav>.button{
  border-color:#d5c9b7;
  border-radius:2px;
  min-width:145px;
  background:transparent;
}

.nav>.button:hover{
  background:var(--navy);
  color:#fff;
  border-color:var(--navy);
}


/* ---------- HERO ---------- */

.hero{
  position:relative;
  padding:76px 0 84px;
  background:
    radial-gradient(circle at 15% 20%,rgba(216,176,113,.10),transparent 32%),
    var(--cream);
}

.hero-grid{
  max-width:1380px;
  grid-template-columns:.92fr 1.08fr;
  gap:82px;
  align-items:center;
}

.hero-copy{
  padding:10px 0;
}

.hero .eyebrow{
  color:var(--gold);
  font-size:11px;
  letter-spacing:2.8px;
  margin-bottom:27px;
}

.hero h1{
  max-width:690px;
  color:var(--navy);
  font-size:clamp(4rem,5.4vw,6rem);
  line-height:.98;
  letter-spacing:-3.8px;
  margin-bottom:30px;
}

.hero h1>span{
  color:var(--gold);
}

.hero p{
  max-width:570px;
  color:var(--muted);
  font-size:17px;
  line-height:1.9;
  margin-bottom:32px;
}

.hero-actions{
  gap:16px;
  align-items:center;
}

.hero-actions .button{
  background:var(--navy);
  border-color:var(--navy);
  border-radius:2px;
  min-height:58px;
  padding:0 27px;
  letter-spacing:.1px;
}

.hero-actions .button:hover{
  background:#222e52;
}

.hero-actions .text-link{
  min-height:58px;
  padding:0 10px;
  color:var(--navy);
}

.hero-note{
  position:relative;
  margin-top:43px;
  padding-top:23px;
  color:#7f7568;
  font-size:12px;
}

.hero-note::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:74px;
  height:1px;
  background:var(--gold-soft);
}

.hero-note .line-icon{
  color:var(--gold);
}


/* ---------- HERO CAROUSEL ---------- */

.hero-photo{
  height:520px;
  border-radius:110px 3px 3px 3px;
  background:#e8e2d8;
  box-shadow:0 28px 70px rgba(20,28,51,.13);
}

.hero-photo::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  border:1px solid rgba(255,255,255,.35);
  border-radius:inherit;
}

.photo-shade{
  background:
    linear-gradient(0deg,rgba(10,18,38,.78),rgba(10,18,38,.08) 72%);
}

.photo-tag{
  top:30px;
  right:30px;
  border-color:rgba(255,255,255,.38);
  background:rgba(16,25,54,.16);
  backdrop-filter:blur(6px);
  padding:9px 14px;
  letter-spacing:1.8px;
}

.photo-caption{
  left:38px;
  bottom:34px;
}

.photo-caption>span{
  color:#eee9df;
  letter-spacing:2.5px;
}

.photo-caption strong{
  font-size:48px;
  line-height:1;
}

.photo-caption p{
  color:#f1eee8;
}

.carousel-controls{
  bottom:28px;
}

.carousel-toggle{
  backdrop-filter:blur(7px);
}


/* ---------- SOFT DIVIDER BELOW HERO ---------- */

.destination-strip{
  background:var(--cream-2);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}


/* ---------- RESPONSIVE ---------- */

@media(max-width:1100px){
  .hero-grid{
    gap:42px;
  }

  .hero h1{
    font-size:clamp(3.6rem,6vw,5rem);
  }

  .hero-photo{
    height:470px;
  }
}

@media(max-width:760px){

  .topbar{
    padding:8px 0;
  }

  .nav{
    min-height:86px;
  }

  .company-logo{
    width:145px;
  }

  .hero{
    padding:42px 0 48px;
  }

  .hero-grid{
    grid-template-columns:1fr;
    gap:34px;
  }

  .hero-copy{
    padding:0;
  }

  .hero .eyebrow{
    margin-bottom:19px;
  }

  .hero h1{
    font-size:52px;
    line-height:1;
    letter-spacing:-2.4px;
    margin-bottom:23px;
  }

  .hero p{
    font-size:15px;
    line-height:1.75;
    margin-bottom:25px;
  }

  .hero-actions{
    flex-wrap:wrap;
  }

  .hero-actions .button{
    min-height:52px;
  }

  .hero-note{
    margin-top:29px;
  }

  .hero-photo{
    height:345px;
    border-radius:68px 3px 3px 3px;
    box-shadow:0 20px 45px rgba(20,28,51,.12);
  }

  .photo-caption{
    left:24px;
    bottom:24px;
  }

  .photo-caption strong{
    font-size:37px;
  }

  .photo-tag{
    top:18px;
    right:17px;
    font-size:8px;
  }
}

/* =========================================================
   PHASE 2 — SERVICES SHOWCASE
   ========================================================= */

.services-showcase{
  position:relative;
  padding:92px 0 96px;
  background:
    radial-gradient(circle at 50% 10%,rgba(216,176,113,.09),transparent 35%),
    #fbfaf7;
  border-top:1px solid #eee8df;
  border-bottom:1px solid #eee8df;
}

.services-heading{
  max-width:820px;
  margin:0 auto 48px;
  text-align:center;
}

.services-kicker{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  color:var(--gold);
  font-size:11px;
  font-weight:700;
  letter-spacing:3px;
  margin-bottom:19px;
}

.services-kicker span{
  display:block;
  width:46px;
  height:1px;
  background:#d8b071;
}

.services-heading h2{
  margin:0 0 16px;
  font-size:clamp(2.9rem,4vw,4.25rem);
  line-height:1.04;
  letter-spacing:-2.4px;
  color:var(--navy);
}

.services-heading h2 em{
  color:var(--gold);
  font-weight:400;
  font-style:italic;
}

.services-heading>p{
  margin:0 auto;
  max-width:650px;
  color:#777d88;
  font-size:16px;
  line-height:1.8;
}


/* ---------- CARDS ---------- */

.services-cards{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:14px;
  align-items:stretch;
}

.journey-service-card{
  min-height:350px;
  display:flex;
  flex-direction:column;
  padding:27px 24px 24px;
  border:1px solid #e5e1da;
  border-radius:7px;
  background:rgba(255,255,255,.72);
  box-shadow:0 7px 25px rgba(31,36,55,.025);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease,
    background .25s ease;
}

.journey-service-card:hover{
  transform:translateY(-5px);
  border-color:#d4c4ad;
  background:#fff;
  box-shadow:0 20px 46px rgba(26,32,55,.08);
}


/* ---------- ICON ---------- */

.journey-service-icon{
  width:64px;
  height:64px;
  flex:0 0 64px;
  display:grid;
  place-items:center;
  margin-bottom:22px;
  border-radius:50%;
  background:#f7f1e8;
  color:#a96d22;
}

.journey-service-icon svg{
  width:31px;
  height:31px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.55;
  stroke-linecap:round;
  stroke-linejoin:round;
}


/* ---------- CARD COPY ---------- */

.journey-service-card h3{
  min-height:62px;
  margin:0 0 15px;
  font:400 22px/1.22 Georgia,'Times New Roman',serif;
  letter-spacing:-.5px;
  color:var(--navy);
}

.journey-service-card>p{
  margin:0 0 22px;
  color:#737a88;
  font-size:13px;
  line-height:1.75;
}

.journey-service-card>a{
  margin-top:auto;
  padding-top:17px;
  border-top:1px solid #eee9e1;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color:#9b6422;
  font-size:10px;
  font-weight:700;
  letter-spacing:1.45px;
}

.journey-service-card>a span{
  font-size:18px;
  line-height:1;
  font-weight:400;
  transition:transform .2s ease;
}

.journey-service-card:hover>a span{
  transform:translateX(4px);
}


/* ---------- MAIN CTA ---------- */

.services-main-cta{
  display:flex;
  justify-content:center;
  margin-top:34px;
}

.services-main-cta .button{
  min-width:255px;
  min-height:54px;
  border-radius:2px;
  background:linear-gradient(135deg,#9d671f,#b9853b);
  border-color:#a9742d;
  color:#fff;
  font-size:11px;
  letter-spacing:1.7px;
  box-shadow:0 12px 26px rgba(169,109,34,.15);
}

.services-main-cta .button:hover{
  background:var(--navy);
  border-color:var(--navy);
}


/* ---------- TABLET ---------- */

@media(max-width:1200px){
  .services-cards{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:900px){
  .services-cards{
    grid-template-columns:repeat(2,1fr);
  }

  .journey-service-card{
    min-height:320px;
  }
}


/* ---------- MOBILE ---------- */

@media(max-width:760px){

  .services-showcase{
    padding:58px 0 62px;
  }

  .services-heading{
    margin-bottom:32px;
  }

  .services-kicker{
    gap:11px;
    font-size:9px;
    letter-spacing:2px;
  }

  .services-kicker span{
    width:25px;
  }

  .services-heading h2{
    font-size:40px;
    letter-spacing:-1.5px;
  }

  .services-heading>p{
    font-size:14px;
    line-height:1.7;
  }

  .services-cards{
    grid-template-columns:1fr;
    gap:13px;
  }

  .journey-service-card{
    min-height:auto;
    padding:24px 21px 20px;
  }

  .journey-service-icon{
    width:57px;
    height:57px;
    margin-bottom:18px;
  }

  .journey-service-icon svg{
    width:28px;
    height:28px;
  }

  .journey-service-card h3{
    min-height:auto;
    font-size:24px;
  }

  .journey-service-card>p{
    font-size:14px;
  }

  .services-main-cta{
    margin-top:24px;
  }

  .services-main-cta .button{
    width:100%;
  }
}

/* =========================================================
   PHASE 3 — OPPORTUNITIES REDESIGN
   ========================================================= */

#opportunities{
  max-width:none;
  width:100%;
  padding:86px max(50px,calc((100% - 1380px)/2)) 92px;
  background:#fff;
}

#opportunities .section-heading{
  max-width:1380px;
  margin:0 auto 38px;
  align-items:flex-end;
}

#opportunities .section-heading .eyebrow{
  color:var(--gold);
  font-size:11px;
  letter-spacing:2.8px;
}

#opportunities .section-heading h2{
  font-size:clamp(3rem,4vw,4.3rem);
  letter-spacing:-2.5px;
  color:var(--navy);
}

#opportunities .section-heading>p{
  max-width:390px;
  color:#747b89;
  font-size:15px;
  line-height:1.75;
}


/* ---------- FILTER BAR ---------- */

#opportunities .filters{
  max-width:1380px;
  margin:0 auto;
  padding:10px;
  gap:10px;
  background:#f8f5ef;
  border:1px solid #e7e0d6;
  border-radius:8px;
  box-shadow:0 12px 34px rgba(24,33,61,.045);
}

#opportunities .filters label{
  min-height:58px;
  background:#fff;
  border-color:#e2ddd5;
  border-radius:5px;
}

#opportunities .filters input,
#opportunities .filters select{
  height:56px;
  color:var(--navy);
  font-size:14px;
}

#opportunities .filters .search>span{
  color:#8c7b64;
}

#opportunities .filters>.button{
  min-height:58px;
  padding:0 28px;
  border-radius:4px;
  background:var(--navy);
  border-color:var(--navy);
}

#opportunities .filters>.button:hover{
  background:#263255;
}

#opportunities .filters label:focus-within{
  border-color:#c7ae87;
  box-shadow:0 0 0 3px rgba(169,109,34,.07);
}


/* ---------- RESULT LINE ---------- */

#opportunities .results-line{
  max-width:1380px;
  margin:25px auto 17px;
}

#opportunities .results-line p{
  color:#7d8390;
}

#opportunities .reset{
  color:#8c642e;
}

#opportunities .reset:hover{
  color:var(--navy);
}


/* ---------- JOB GRID ---------- */

#opportunities .jobs-grid{
  max-width:1380px;
  margin:0 auto;
  gap:18px;
}


/* ---------- JOB CARD ---------- */

#opportunities .job-card{
  min-height:405px;
  padding:28px 27px 21px;
  background:#fff;
  border:1px solid #e7e1d8;
  border-radius:7px;
  box-shadow:0 8px 26px rgba(25,33,55,.025);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

#opportunities .job-card:hover{
  transform:translateY(-4px);
  border-color:#d6c5ad;
  box-shadow:0 18px 44px rgba(25,33,55,.08);
}

#opportunities .job-card-top{
  margin-bottom:21px;
}

#opportunities .flag{
  width:50px;
  height:50px;
  background:#f8f3eb;
  font-size:24px;
}

#opportunities .country-label{
  color:#596177;
  font-size:10px;
  letter-spacing:1.8px;
}


/* ---------- TITLE ---------- */

#opportunities .job-card h3{
  margin-bottom:13px;
  font:400 26px/1.2 Georgia,'Times New Roman',serif;
  letter-spacing:-.5px;
  color:var(--navy);
}

#opportunities .job-card h3 a{
  transition:color .2s ease;
}

#opportunities .job-card h3 a:hover{
  color:var(--gold);
}


/* ---------- META ---------- */

#opportunities .job-meta{
  margin-bottom:19px;
  color:#727988;
  font-size:13px;
}


/* ---------- SALARY ---------- */

#opportunities .salary{
  padding-top:17px;
  border-top:1px solid #eee9e1;
  color:var(--navy);
  font-size:25px;
}

#opportunities .salary small{
  color:#7b818d;
  font-size:11px;
}


/* ---------- REQUIREMENTS ---------- */

#opportunities .requirements{
  padding-top:17px;
  margin:17px 0 20px;
  border-top:1px solid #eee9e1;
  color:#6f7684;
}

#opportunities .requirements span{
  color:#b18346;
}


/* ---------- CARD BOTTOM ---------- */

#opportunities .card-bottom{
  margin-top:auto;
  padding-top:18px;
  border-top:1px solid #eee9e1;
}

#opportunities .category{
  padding:5px 11px;
  border:1px solid #eadfce;
  border-radius:20px;
  background:#faf6ef;
  color:#876238;
}

#opportunities .card-bottom>a{
  color:var(--navy);
  font-size:12px;
  letter-spacing:.15px;
}

#opportunities .card-bottom>a:hover{
  color:var(--gold);
}


/* ---------- LISTING NOTE ---------- */

#opportunities .listing-note{
  max-width:880px;
  margin:31px auto 0;
  color:#8a8f99;
  font-size:11px;
  line-height:1.8;
}


/* ---------- MOBILE ---------- */

@media(max-width:760px){

  #opportunities{
    padding:58px 18px 62px;
  }

  #opportunities .section-heading{
    display:block;
    margin-bottom:27px;
  }

  #opportunities .section-heading h2{
    font-size:40px;
    letter-spacing:-1.5px;
  }

  #opportunities .section-heading>p{
    margin-top:16px;
    font-size:14px;
  }

  #opportunities .filters{
    grid-template-columns:1fr 1fr;
    padding:9px;
  }

  #opportunities .filters .search{
    grid-column:1/-1;
  }

  #opportunities .filters>.button{
    grid-column:1/-1;
  }

  #opportunities .jobs-grid{
    grid-template-columns:1fr;
  }

  #opportunities .job-card{
    min-height:auto;
    padding:24px 21px 20px;
  }

  #opportunities .job-card h3{
    font-size:25px;
  }

  #opportunities .flag{
    width:47px;
    height:47px;
  }

  #opportunities .listing-note{
    text-align:left;
  }
}

/* =========================================================
   PHASE 4 — HOW IT WORKS
   ========================================================= */

.process-section{
  position:relative;
  padding:95px 0 100px;
  background:
    radial-gradient(circle at 50% 0%,rgba(216,176,113,.08),transparent 34%),
    #f7f3ec;
  border-top:1px solid #e8e1d7;
  border-bottom:1px solid #e8e1d7;
}

.process-section .section-heading{
  display:block;
  max-width:800px;
  margin:0 auto 55px;
  text-align:center;
}

.process-section .section-heading .eyebrow{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  color:var(--gold);
  font-size:10px;
  letter-spacing:3px;
  margin-bottom:18px;
}

.process-section .section-heading .eyebrow::before,
.process-section .section-heading .eyebrow::after{
  content:"";
  width:42px;
  height:1px;
  background:#d8b071;
}

.process-section .section-heading h2{
  margin:0 0 17px;
  font-size:clamp(3rem,4.2vw,4.4rem);
  line-height:1.04;
  letter-spacing:-2.4px;
  color:var(--navy);
}

.process-section .section-heading>p{
  max-width:600px;
  margin:0 auto;
  color:#777d89;
  font-size:15px;
  line-height:1.8;
}


/* ---------- STEPS ---------- */

.process-section .steps{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.process-section .steps article{
  position:relative;
  min-height:290px;
  padding:32px 30px 28px;
  border:1px solid #e4ddd3;
  border-radius:7px;
  background:rgba(255,255,255,.72);
  overflow:hidden;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.process-section .steps article:hover{
  transform:translateY(-5px);
  border-color:#d2bea1;
  box-shadow:0 18px 42px rgba(25,33,55,.07);
}


/* ---------- STEP NUMBER ---------- */

.process-section .steps article>span{
  display:flex;
  align-items:center;
  justify-content:center;
  width:58px;
  height:58px;
  margin-bottom:38px;
  border-radius:50%;
  background:#f4eadc;
  color:#a96d22;
  font:400 22px Georgia,'Times New Roman',serif;
}

.process-section .steps article::after{
  content:"";
  position:absolute;
  top:61px;
  left:88px;
  right:30px;
  height:1px;
  background:#e8dfd2;
}


/* ---------- COPY ---------- */

.process-section .steps h3{
  margin:0 0 15px;
  color:var(--navy);
  font:400 26px/1.2 Georgia,'Times New Roman',serif;
  letter-spacing:-.6px;
}

.process-section .steps p{
  margin:0;
  color:#737a87;
  font-size:14px;
  line-height:1.85;
}


/* ---------- MOBILE ---------- */

@media(max-width:760px){

  .process-section{
    padding:60px 0 64px;
  }

  .process-section .section-heading{
    margin-bottom:33px;
  }

  .process-section .section-heading .eyebrow{
    font-size:9px;
    letter-spacing:2px;
    gap:10px;
  }

  .process-section .section-heading .eyebrow::before,
  .process-section .section-heading .eyebrow::after{
    width:24px;
  }

  .process-section .section-heading h2{
    font-size:40px;
    letter-spacing:-1.5px;
  }

  .process-section .section-heading>p{
    font-size:14px;
  }

  .process-section .steps{
    grid-template-columns:1fr;
    gap:13px;
  }

  .process-section .steps article{
    min-height:auto;
    padding:25px 22px;
  }

  .process-section .steps article>span{
    width:52px;
    height:52px;
    margin-bottom:25px;
  }

  .process-section .steps article::after{
    top:51px;
    left:78px;
    right:22px;
  }

  .process-section .steps h3{
    font-size:24px;
  }
}

/* =========================================================
   PHASE 5 — ABOUT
   ========================================================= */

.about{
  max-width:1180px;
  padding-top:96px;
  padding-bottom:96px;
  gap:90px;
  align-items:center;
}

.about .eyebrow{
  color:var(--gold);
  font-size:10px;
  letter-spacing:2.8px;
}

.about h2{
  font-size:clamp(3rem,4vw,4.25rem);
  line-height:1.05;
  letter-spacing:-2.3px;
}

.about .large-copy{
  color:var(--navy);
  font:400 27px/1.4 Georgia,'Times New Roman',serif;
  letter-spacing:-.4px;
  margin-bottom:17px;
}

.about p{
  color:#737a87;
  font-size:15px;
  line-height:1.9;
}

.about .text-link{
  margin-top:8px;
  color:#9d6826;
}


/* =========================================================
   PHASE 6 — REVIEWS
   ========================================================= */

#reviews{
  max-width:none;
  width:100%;
  padding:90px max(50px,calc((100% - 1380px)/2)) 95px;
  background:#fbfaf7;
  border-top:1px solid #ebe5dc;
}

#reviews .section-heading{
  max-width:1380px;
  margin:0 auto 18px;
}

#reviews .eyebrow{
  color:var(--gold);
  font-size:10px;
  letter-spacing:2.8px;
}

#reviews .section-heading h2{
  font-size:clamp(3rem,4vw,4.2rem);
  letter-spacing:-2.3px;
}

#reviews #write-review{
  border-radius:2px;
  min-height:52px;
  background:var(--navy);
  border-color:var(--navy);
}

#reviews .review-disclosure{
  max-width:1380px;
  margin:0 auto 28px;
  color:#858a94;
  font-size:12px;
}

#public-reviews{
  max-width:1380px;
  margin:0 auto;
}

.reviews-grid{
  gap:18px;
}

.review-card{
  min-height:285px;
  padding:28px 27px 25px;
  border:1px solid #e5dfd6;
  border-radius:7px;
  background:#fff;
  box-shadow:0 8px 26px rgba(25,33,55,.025);
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.review-card:hover{
  transform:translateY(-4px);
  border-color:#d6c2a5;
  box-shadow:0 18px 42px rgba(25,33,55,.07);
}

.review-stars{
  color:#a96d22;
  font-size:20px;
  letter-spacing:2px;
  margin-bottom:24px;
}

.review-quote{
  color:#687080;
  font:400 17px/1.85 Arial,Helvetica,sans-serif;
  margin-bottom:27px;
}

.review-card strong{
  display:block;
  margin-top:auto;
  color:var(--navy);
  font-size:14px;
}


/* =========================================================
   PHASE 7 — CONTACT
   ========================================================= */

.contact-section{
  max-width:1180px;
  margin-top:80px;
  margin-bottom:80px;
  padding:56px 60px;
  border-radius:8px;
  background:
    radial-gradient(circle at 80% 10%,rgba(216,176,113,.13),transparent 35%),
    var(--navy);
  box-shadow:0 25px 60px rgba(16,25,54,.12);
}

.contact-section .eyebrow{
  color:#ddb875;
  font-size:10px;
  letter-spacing:2.8px;
}

.contact-section h2{
  font-size:clamp(3rem,4vw,4.15rem);
  line-height:1.05;
  letter-spacing:-2.2px;
}

.contact-section p{
  color:#c4c8d1;
}

.contact-actions{
  min-width:290px;
  gap:10px;
}

.contact-actions .button.gold{
  width:100%;
  min-height:54px;
  border-radius:2px;
  background:linear-gradient(135deg,#d4aa67,#e6c68f);
  color:var(--navy);
  border:0;
}

.contact-actions>a:not(.button){
  color:#fff;
  font-size:15px;
  opacity:.93;
}

.contact-actions>a[href*="instagram.com"]{
  margin-top:4px;
  color:#e3bd7d;
}


/* =========================================================
   PHASE 8 — FOOTER
   ========================================================= */

footer{
  background:#f5f1ea;
  border-top:1px solid #e3ddd3;
  padding-top:48px;
}

.footer-top{
  margin-bottom:38px;
}

.footer-top .company-logo{
  width:165px;
}

.footer-top p{
  color:#6f7580;
  font-family:Georgia,'Times New Roman',serif;
  font-size:16px;
}

.footer-top>a:last-child{
  color:var(--navy);
}

.footer-bottom{
  padding-top:21px;
  padding-bottom:22px;
  border-color:#ddd6cc;
}

.footer-bottom,
.footer-bottom button,
.footer-bottom a{
  color:#777d87;
}

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

.credit{
  padding-bottom:24px;
  color:#99958f;
}


/* =========================================================
   MOBILE — FINAL SECTIONS
   ========================================================= */

@media(max-width:760px){

  .about{
    padding-top:60px;
    padding-bottom:60px;
    gap:20px;
  }

  .about h2{
    font-size:40px;
    letter-spacing:-1.5px;
  }

  .about .large-copy{
    font-size:23px;
  }


  #reviews{
    padding:60px 18px 64px;
  }

  #reviews .section-heading{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:21px;
  }

  #reviews .section-heading h2{
    font-size:40px;
    letter-spacing:-1.5px;
  }

  #reviews #write-review{
    width:100%;
  }

  .review-card{
    min-height:auto;
    padding:24px 21px;
  }

  .review-quote{
    font-size:15px;
  }


  .contact-section{
    margin-top:55px;
    margin-bottom:55px;
    padding:35px 26px;
  }

  .contact-section h2{
    font-size:40px;
    letter-spacing:-1.5px;
  }

  .contact-actions{
    width:100%;
    min-width:0;
  }


  footer{
    padding-top:35px;
  }

  .footer-top .company-logo{
    width:145px;
  }
}

/* =========================================================
   MOBILE COMPACT POLISH
   ========================================================= */

@media(max-width:760px){

  /* Services */
  .services-showcase{
    padding-top:48px;
    padding-bottom:50px;
  }

  .services-heading{
    margin-bottom:25px;
  }

  .journey-service-card{
    padding:21px 19px 18px;
  }

  .journey-service-icon{
    width:52px;
    height:52px;
    flex-basis:52px;
    margin-bottom:15px;
  }

  .journey-service-card h3{
    font-size:22px;
    margin-bottom:11px;
  }

  .journey-service-card>p{
    font-size:13px;
    line-height:1.65;
    margin-bottom:16px;
  }

  .journey-service-card>a{
    padding-top:14px;
  }


  /* How it works */
  .process-section{
    padding-top:50px;
    padding-bottom:52px;
  }

  .process-section .section-heading{
    margin-bottom:27px;
  }

  .process-section .steps article{
    padding:21px 19px;
  }

  .process-section .steps article>span{
    width:48px;
    height:48px;
    margin-bottom:20px;
  }

  .process-section .steps article::after{
    top:45px;
    left:72px;
  }

  .process-section .steps h3{
    font-size:22px;
    margin-bottom:10px;
  }

  .process-section .steps p{
    font-size:13px;
    line-height:1.7;
  }


  /* About */
  .about{
    padding-top:50px;
    padding-bottom:50px;
  }

  .about .large-copy{
    font-size:21px;
  }

  .about p{
    font-size:14px;
    line-height:1.75;
  }


  /* Reviews */
  #reviews{
    padding-top:52px;
    padding-bottom:54px;
  }

  .review-card{
    padding:21px 19px;
  }

  .review-stars{
    margin-bottom:17px;
    font-size:18px;
  }

  .review-quote{
    font-size:14px;
    line-height:1.7;
    margin-bottom:20px;
  }


  /* Contact */
  .contact-section{
    margin-top:45px;
    margin-bottom:45px;
    padding:30px 24px;
  }

  .contact-section h2{
    font-size:36px;
  }

  .contact-section p{
    font-size:13px;
  }


  /* Footer */
  footer{
    padding-top:28px;
  }

  .footer-top{
    margin-bottom:25px;
  }

  .footer-bottom{
    padding-top:17px;
    padding-bottom:17px;
  }
}

/* =========================================================
   DESKTOP HEADING SIZE POLISH
   Mobile remains unchanged
   ========================================================= */

@media(min-width:761px){

  /* Hero */
  .hero h1{
    font-size:clamp(3.4rem,4.4vw,4.9rem);
    line-height:1.01;
    letter-spacing:-3px;
  }

  /* Opportunities */
  #opportunities .section-heading h2{
    font-size:clamp(2.7rem,3.4vw,3.65rem);
    letter-spacing:-2px;
  }

  /* Services */
  .services-heading h2{
    font-size:clamp(2.7rem,3.5vw,3.7rem);
    letter-spacing:-2px;
  }

  /* How it works */
  .process-section .section-heading h2{
    font-size:clamp(2.8rem,3.5vw,3.8rem);
    letter-spacing:-2px;
  }

  /* About */
  .about h2{
    font-size:clamp(2.8rem,3.5vw,3.8rem);
    letter-spacing:-2px;
  }

  /* Reviews */
  #reviews .section-heading h2{
    font-size:clamp(2.8rem,3.5vw,3.8rem);
    letter-spacing:-2px;
  }

  /* Contact */
  .contact-section h2{
    font-size:clamp(2.8rem,3.5vw,3.8rem);
    letter-spacing:-2px;
  }
}

/* Hero note icon + text alignment */
.hero-note{
  align-items:center;
}

.hero-note .line-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  line-height:1;
  margin:0;
  transform:translateY(-1px);
}
