/* ── TOKENS ────────────────────────────────── */
:root {
    --cream: #F4EFE6;
    --charcoal: #181817;
    --warm-gray: #8C8880;
    --gold: #B8975A;
    --light-gold: #D4B483;
    --pale-gold: #EDE0C8;
    --off-white: #F9F6F1;
    --stone: #2A2825;
    --border: rgba(184, 151, 90, 0.22);
    --text: #282724;
    font-family: jost, sans-serif;
}
/* Smooth rendering */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
      font-family: "Jost", sans-serif;
    color: var(--text);
    
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

button { font-family: 'Jost', sans-serif; }

/* ── TYPOGRAPHY HELPERS ─────────────────────── */




/* ══════════════════════════════════════════════
   NAV
══════════════════════════════════════════════ */
.nav.scrolled {
    padding: 10px 64px;
    background: #181817; /* ✅ fully solid */
    backdrop-filter: none; /* optional: remove blur */
    border-bottom: 1px solid rgba(184, 151, 90, .1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.nav {
  background: #181817;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 64px;
    transition: padding .35s ease, background .35s ease;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-weight: 400;
  letter-spacing: .04em; white-space: nowrap;
}
.nav-links { 
  display: flex; 
  font-family: 'Jost';
  font-style: normal;
  font-weight: 300;
  gap: 40px; 
  list-style: none; 
  font-size: .7rem; 
  letter-spacing: .2em; 
  text-transform: uppercase; 
}
.nav-links a { 
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    transition: color .2s;
}
.nav-links a:hover { 
  color: var(--gold); 
}

.mobile-nav {
  display: none;
}
.nav-dropdown { 
  position: relative; 
}
.dropdown-toggle { 
  display: flex; 
  align-items: center; 
  gap: 4px; 
}
.dropdown-toggle::after { 
  content: '▾'; 
  font-size: .8em; 
  opacity: .6; 
}
.dropdown-menu {
  position: absolute; 
  top: 100%; 
  left: 0;
  background: var(--charcoal);
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  min-width: 200px;
  opacity: 0; 
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .3s, visibility .3s, transform .3s;
  z-index: 100;
  padding: 8px 0;
  margin-top: 12px;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; 
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li { 
  list-style: none; 
}
.dropdown-menu a {
  display: block; 
  padding: 8px 20px;
  font-size: .65rem; 
  letter-spacing: .18em;
  color: var(--muted-cream); 
  transition: color .2s, background .2s;
}
.dropdown-menu a:hover { 
  color: var(--text-cream); 
  background: var(--gold-dim);
}
.nav-right { 
  display: flex; 
  align-items: center; 
  gap: 24px; 
}
.nav-phone {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
    letter-spacing: .06em;
}
.nav-phone strong {
    color: var(--light-gold);
    font-weight: 500;
}
.nav-cta {
  background: var(--gold); 
  color: #fff;
  padding: 11px 22px; 
  font-size: .68rem; 
  font-weight: 500;
  letter-spacing: .16em; 
  text-transform: uppercase;
  border: none; 
  cursor: pointer; 
  white-space: nowrap;
  padding: 11px 22px; font-size: .68rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  border: none; cursor: pointer; white-space: nowrap;
  transition: background .2s;
}

.mobile-nav {
  display: flex;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: all .3s ease;

}

.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-mobile {
  display: none;
}
/* ===== MOBILE HEADER FINAL ===== */
.nav-mobile {
  display: none;
}

@media (max-width: 768px) {

  /* HIDE DESKTOP NAV */
  .nav-links,
  .nav-right,
  .hamburger {
    display: none !important;
  }

  .nav {
    padding: 14px 0px;
    width:90%;
  }

  /* MOBILE GRID */
  .nav-mobile {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  /* LOGO */
  .nav-mobile-logo {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .nav-mobile-logo img {
    width: 26px;
  }

  .nav-mobile-logo span {
    font-size: 10px;
    line-height: 1.1;
    color: #fff;
  }

  /* PHONE CENTER */
  .nav-mobile-phone {
    text-align: center;
    font-size: 9px;
    color: rgba(255,255,255,0.6);
  }

  .nav-mobile-phone strong {
    display: block;
    font-size: 12px;
    color: var(--gold);
    letter-spacing: .05em;
  }

  /* CTA RIGHT */
  .nav-mobile-cta {
    text-align: center;
    width: 24%;
    background: var(--gold);
    color: #111;
    font-size: 9px;
    padding: 8px 10px;
    text-decoration: none;
    letter-spacing: .12em;
    font-weight: 600;
    white-space: nowrap;
  }

}

/* ══════════════════════════════════════════════
   PROFESSIONAL HERO LEFT SIDE
══════════════════════════════════════════════ */

.hero {
   display: flex;
    min-height: 100vh;
    position: relative;
    min-height: 100vh;
    background: var(--charcoal);
    display: grid;
    grid-template-columns: 58% 42%;   
    overflow: hidden;
}
.hero-h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 28px;
  max-width: 640px;
}

.hero-h1 em {
  display: block;
  font-style: italic;
  color: var(--light-gold);
  margin-top: 8px;
}
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 36px;
    animation: fadeUp .7s .1s both;
}
.hero-eyebrow-line {
    width: 36px;
    height: 1px;
    background: var(--gold);
}

.hero-eyebrow-text {
    font-size: 9px;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}
.hero-p {
    font-size: 15px;
    font-weight: 300;
    color: rgba(255, 255, 255, .5);
    line-height: 1.85;
    max-width: 440px;
    margin-bottom: 52px;
    animation: fadeUp .7s .4s both;
}
.hero-watermark {
    position: absolute;
    top: 50%;
    left: 29%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    width: 44%;
    max-width: 560px;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;   /* KEY FIX */
  padding: 140px 80px;
}
.hero-actions {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeUp .7s .55s both;
}
.btn-gold {
    background: var(--gold);
    color: var(--charcoal);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 18px 38px;
    display: inline-block;
    transition: background .2s, transform .2s;
}
.btn-outline {
    border: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .55);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 17px 30px;
    display: inline-block;
    transition: border-color .2s, color .2s;
}
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, .06);
    animation: fadeUp .7s .7s both;
}
.stat-num {
    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
    font-weight: 300;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
}
.stat-num sup {
    font-size: 18px;
    color: var(--gold);
}
.stat-label {
    font-size: 9px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .28);
}
.scroll-hint-text {
    font-size: 8px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .25);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}
.professional-hero-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-right: 30px;
}
.hero-right {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hero-img-main {
    flex: 1;
    background: linear-gradient(160deg, #1e1b16 0%, #252018 40%, #1a1a1c 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height:'100%'
}
.hero-img-main .grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(184, 151, 90, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(184, 151, 90, .05) 1px, transparent 1px);
    background-size: 56px 56px;
}
.photo-placeholder {
    position: relative;
    z-index: 2;
    border: 1px solid rgba(184, 151, 90, .18);
    width: 72%;
    height: 68%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}
.hero-badge-strip {
    background: var(--gold);
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.hero-badge-strip .divider {
    width: 1px;
    height: 14px;
    background: rgba(24, 24, 23, .25);
}
.hero-img-main .photo-placeholder {
    position: relative;
    z-index: 2;
    border: 1px solid rgba(184, 151, 90, .18);
    width: 72%;
    height: 68%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 72px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
}
.scroll-hint-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(var(--gold), transparent);
    animation: scrollPulse 2s ease infinite;
}
.scroll-hint-text {
    font-size: 8px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .25);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.intro-ribbon {
    background: var(--cream);
    padding: 88px 72px;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: center;
}

.intro-serif {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(32px, 3vw, 46px);
    font-weight: 300;
    color: var(--text);
    line-height: 1.12;
}

.intro-serif em {
    font-style: italic;
    color: var(--gold);
}

.intro-copy p {
    font-size: 15px;
    font-weight: 300;
    color: var(--warm-gray);
    line-height: 1.9;
    margin-bottom: 18px;
}
.intro-copy strong {
    color: var(--text);
    font-weight: 500;
}
*
/* five C */

.values-v2 {
    background: var(--charcoal);
    padding: 100px 72px;
    position: relative;
    overflow: hidden;
}
.values-v2::before {
    content: "CCCCC";
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Cormorant Garamond", serif;
    font-size: 280px;
    font-weight: 300;
    color: rgba(255, 255, 255, .025);
    letter-spacing: -.02em;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.values-v2-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 72px;
}

.section-eyebrow {
    font-size: 9px;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    font-weight: 500;
}
.values-v2-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 300;
    color: #fff;
    line-height: 1.06;
}
.values-v2-title em {
    font-style: italic;
    color: var(--light-gold);
}
.values-v2-title .wit {
    display: block;
    font-family: "Jost", sans-serif;
    font-size: clamp(13px, 1.2vw, 16px);
    font-weight: 300;
    color: rgba(255, 255, 255, .28);
    letter-spacing: .04em;
    margin-top: 14px;
    font-style: normal;
}

.values-v2-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, .4);
    line-height: 1.85;
    font-weight: 300;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.values-v2-intro strong {
    color: rgba(255, 255, 255, .7);
    font-weight: 400;
}
.values-v2-list {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, .06);
}
.v2-card {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    transition: background .25s;
    position: relative;
}
.v2-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);

  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}
.v2-card:hover {
  background: linear-gradient(
    90deg,
    rgba(184,151,90,0.08) 0%,
    rgba(0,0,0,0) 60%
  );
}
.v2-card:hover::before {
  transform: scaleY(1);
}
.v2-letter {
    font-family: "Cormorant Garamond", serif;
    font-size: 52px;
    font-weight: 300;
    color: rgba(184, 151, 90, .25);
    line-height: 1;
    transition: color .25s;
}
.v2-letter-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 0;
    border-right: 1px solid rgba(255, 255, 255, .06);
}
.v2-title-col {
    padding: 36px 40px;
    border-right: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.v2-word {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.v2-tagline {
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}
.v2-desc-col {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.v2-desc-main {
    font-size: 14px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 10px;
}
.v2-desc-proof {
    font-size: 11px;
    color: rgba(184, 151, 90, .6);
    font-style: italic;
    line-height: 1.5;
}
.services {
    padding: 100px 72px;
    background: var(--off-white);
}
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
}
.services-header .section-h2 {
    color: var(--text);
}
.section-h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(36px, 3.5vw, 52px);
    font-weight: 300;
    line-height: 1.08;
}
.section-h2 em {
    font-style: italic;
    color: var(--gold);
}
.view-all {
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--warm-gray);
    border-bottom: 1px solid var(--border);
    padding-bottom: 2px;
    transition: color .2s, border-color .2s;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(0, 0, 0, .06);
}
.service-card {
    background: #fff;
    padding: 44px 38px;
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    display: block;
}

.service-num {
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-weight: 300;
    color: rgba(184, 151, 90, .12);
    line-height: 1;
    margin-bottom: 20px;
}
.service-arrow {
    position: absolute;
    top: 36px;
    right: 36px;
    font-size: 18px;
    color: var(--border);
    transition: color .3s, transform .3s;
}
.service-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 14px;
    line-height: 1.2;
}
.service-card p {
    font-size: 13px;
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 22px;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, .1);
    z-index: 1;
}
.service-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}
.service-from {
    font-size: 9px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}
.service-card:hover::after {
    transform: scaleX(1);
}
/* ══════════════════════════════════════════════
   process
══════════════════════════════════════════════ */
.process {
    background: var(--stone);
    padding: 100px 72px;
}
.process .section-h2 {
    color: #fff;
    margin-bottom: 16px;
}
.process-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
    margin-top: 64px;
}
.process-track::before {
    content: "";
    position: absolute;
    top: 32px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), var(--border), var(--border), transparent);
}
.process-step {
    padding: 0 16px;
    text-align: center;
}
.process-step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--stone);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
    transition: border-color .3s, background .3s;
}
.process-step-circle span {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 300;
    color: var(--gold);
}
.process-step h4 {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: .03em;
}
.process-step p {
    font-size: 11px;
    color: rgba(255, 255, 255, .32);
    line-height: 1.75;
}
.project-strip {
    background: var(--cream);
    padding: 88px 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.project-strip .section-h2 {
    color: var(--text);
    margin-bottom: 24px;
}
.project-strip .section-h2 em {
    font-style: italic;
    color: var(--gold);
}
.project-strip p {
    font-size: 14px;
    color: var(--warm-gray);
    line-height: 1.85;
    margin-bottom: 32px;
    font-weight: 300;
}
.project-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}
.proj-img {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #e0d8cc, #c8bfaf);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.proj-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.proj-img.tall {
    grid-row: span 2;
    aspect-ratio: auto;
}
.proj-img-label {
    font-size: 8px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(100, 90, 75, .5);
    text-align: center;
    line-height: 2;
}
.project-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(24, 24, 23, .7);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 8px;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 5px 10px;
}
/* ══════════════════════════════════════════════
   testimonials  
══════════════════════════════════════════════ */
.testimonials {
    background: var(--charcoal);
    padding: 100px 72px;
}
.testimonials .section-h2 {
    color: #fff;
    margin-bottom: 16px;
}
.testimonials .section-h2 em {
    color: var(--light-gold);
    font-style: italic;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}
.testi-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .05);
    border-top: 2px solid var(--gold);
    padding: 36px 32px;
    transition: background .25s;
}
.testi-stars {
    color: var(--gold);
    letter-spacing: .08em;
    font-size: 13px;
    margin-bottom: 18px;
}
.testi-quote {
    font-family: "Cormorant Garamond", serif;
    font-size: 17px;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, .75);
    line-height: 1.75;
    margin-bottom: 28px;
}
.testi-author-name {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3px;
}
.testi-author-loc {
    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .28);
}
.testi-platform {
    margin-top: 14px;
    font-size: 9px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: .6;
}
/* ══════════════════════════════════════════════
   Team
══════════════════════════════════════════════ */
.team {
    background: var(--off-white);
    padding: 100px 72px;
}
.team-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.team-text .section-h2 {
    color: var(--text);
    margin-bottom: 24px;
}
.team-text .section-h2 em {
    font-style: italic;
    color: var(--gold);
}
.team-text p {
    font-size: 14px;
    color: var(--warm-gray);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 16px;
}
.team-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.team-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    padding: 28px 32px;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    align-items: center;
    transition: border-color .25s;
}
.team-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pale-gold), var(--light-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 300;
    color: var(--charcoal);
}
.team-card-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 3px;
}

.team-card-role {
    font-size: 9px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
}
.team-card-desc {
    font-size: 12px;
    color: var(--warm-gray);
    line-height: 1.6;
    margin-top: 6px;
}
/* ══════════════════════════════════════════════
   Trust
══════════════════════════════════════════════ */
.trust-strip {
    background: var(--pale-gold);
    padding: 36px 72px;
    display: flex;
    gap: 48px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
}
.trust-item-num {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1;
}
.trust-item-label {
    font-size: 9px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(40, 39, 36, .5);
}
.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(40, 39, 36, .15);
}
/* ══════════════════════════════════════════════
   Area
══════════════════════════════════════════════ */
.areas {
    background: var(--stone);
    padding: 80px 72px;
}
.areas-inner {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 80px;
    align-items: center;
}
.areas-left .section-h2 {
    color: #fff;
    margin-bottom: 18px;
}
.areas-left .section-h2 em {
    font-style: italic;
    color: var(--light-gold);
}
.areas-left p {
    font-size: 13px;
    color: rgba(255, 255, 255, .38);
    line-height: 1.7;
}
.areas-map {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, .03);
}
.area-tile {
    padding: 22px 18px;
    border: 1px solid rgba(255, 255, 255, .04);
    text-align: center;
    cursor: default;
    transition: background .2s, border-color .2s;
}
.area-city {
    font-size: 13px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 3px;
}
.area-county {
    font-size: 9px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .22);
}

/* ══════════════════════════════════════════════
   Consult
══════════════════════════════════════════════ */
.consult {
    background: var(--off-white);
    padding: 100px 72px;
}
.consult-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}
.consult-left .section-h2 {
    color: var(--text);
    margin-bottom: 28px;
}
.consult-left .section-h2 em {
    font-style: italic;
    color: var(--gold);
}
.consult-left>p {
    font-size: 14px;
    color: var(--warm-gray);
    line-height: 1.85;
    margin-bottom: 40px;
    font-weight: 300;
}
.consult-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.consult-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.consult-point-check {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 14px;
    margin-top: 1px;
}
.consult-point-text h4 {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 2px;
}
.consult-point-text p {
    font-size: 12px;
    color: var(--warm-gray);
    line-height: 1.5;
}
.form-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .07);
    padding: 48px;
}
.form-card-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 6px;
}
.form-card-sub {
    font-size: 12px;
    color: var(--warm-gray);
    margin-bottom: 32px;
    line-height: 1.5;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, .09);
    background: var(--off-white);
    font-family: "Jost", sans-serif;
    font-size: 13px;
    color: var(--text);
    outline: none;
    appearance: none;
    transition: border-color .2s, background .2s;
}

/* ══════════════════════════════════════════════
   blog
══════════════════════════════════════════════ */
.blog-preview {
    background: var(--cream);
    padding: 88px 72px;
}
.blog-preview .section-h2 {
    color: var(--text);
    margin-bottom: 48px;
}
.blog-preview .section-h2 em {
    font-style: italic;
    color: var(--gold);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.blog-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    overflow: hidden;
    transition: box-shadow .25s;
}
.blog-img {
    height: 180px;
    background: linear-gradient(135deg, #ddd5c5, #c5bba8);
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.blog-img span {
    font-size: 8px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(80, 70, 55, .4);
}
.blog-body {
    padding: 24px;
}
.blog-tag {
    font-size: 9px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 10px;
}
.blog-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--text);
    line-height: 1.3;
    margin-bottom: 10px;
}
.blog-card p {
    font-size: 12px;
    color: var(--warm-gray);
    line-height: 1.65;
}
.blog-read {
    display: inline-block;
    margin-top: 14px;
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid var(--border);
    padding-bottom: 2px;
}





/* ═══════════════════════════════════════
   FOOTER  (dark)
══════════════════════════════════════════════ */
footer {
    background: var(--charcoal);
}
.footer-top {
    padding: 72px 72px 56px;
    display: grid;
   grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}
.footer-col ul {
    list-style: none;
    display: flex;
    font-size: 12px;
    flex-direction: column;
    gap: 10px;
}

.footer-logo-img {
    display: block;
    margin-bottom: 20px;
}
.footer-tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, .32);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 24px;
}
.footer-contact-item {
    display: flex;
    font-size: 12px;
    gap: 10px;
    margin-bottom: 10px;
}
.footer-contact-item span:first-child {
    font-size: 9px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    padding-top: 1px;
    min-width: 52px;
}
.footer-col h4 {
    font-size: 9px;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 18px;
    font-weight: 500;
}
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-bottom {
    padding: 22px 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p {
    font-size: 11px;
    color: rgba(255, 255, 255, .2);
    letter-spacing: .04em;
}
.footer-lic {
    font-size: 10px;
    color: rgba(255, 255, 255, .18);
    letter-spacing: .1em;
}
.footer-col {
    overflow: hidden;
    color:rgba(255,255,255,.45)
    
  
}

.footer-col ul li {
  transition: all 0.3s ease;
  font-size: 12;

}

.footer-col ul li:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(142, 109, 18, 0.4);
}

.footer-accreditations {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.license-badge {
  background: rgba(142, 109, 18, 0.1);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 8px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.license-text {
  font-size: .65rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 4px;
}

.license-number {
  font-size: .85rem;
  color: var(--text-cream);
  font-weight: 500;
}

.bbb-logo {
  max-width: 120px;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.bbb-logo:hover {
  opacity: 1;
}

.contact-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}




/* Social Media Links */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 5%;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.social-icon:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-icon.facebook:hover {
  background: #1877f2;
  color: white;
  border-color: #1877f2;
}

.social-icon.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  border-color: #e6683c;
}

.social-icon.linkedin:hover {
  background: #0077b5;
  color: white;
  border-color: #0077b5;
}



/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

  /* NAV */
    .nav {
    padding: 14px 0px;
  }
.nav-logo {
  width: 20%;  
  height: auto;
}
  .nav-links {
    display: none;
  }

  .nav-phone {
    display: none;
  }

  .nav-cta {
    padding: 10px 16px;
    font-size: 10px;
    width:25%;
  }

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

  .hero-left {
    padding: 100px 20px 40px;
  }

  .hero-h1 {
    font-size: 34px;
    line-height: 1.3;
  }

  .hero-p {
    font-size: 14px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-right {
    height: 300px;
  }

  /* INTRO */
  .intro-ribbon {
    grid-template-columns: 1fr;
    padding: 50px 20px;
    gap: 30px;
  }

  /* VALUES */
  .values-v2 {
    padding: 60px 20px;
  }

  .values-v2-header {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .v2-card {
    grid-template-columns: 1fr;
  }

  /* SERVICES */
  .services {
    padding: 60px 20px;
  }

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

  /* PROCESS */
  .process {
    padding: 60px 20px;
  }

  .process-track {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* PROJECT */
  .project-strip {
    grid-template-columns: 1fr;
    padding: 60px 20px;
  }

  /* TESTIMONIALS */
  .testi-grid {
    grid-template-columns: 1fr;
  }

  /* TEAM */
  .team-inner {
    grid-template-columns: 1fr;
  }

  /* CONSULT */
  .consult-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-card {
    padding: 25px;
  }

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

  /* BLOG */
  .blog-grid {
    grid-template-columns: 1fr;
  }

}
/* iPhone Fix */
html {
  -webkit-text-size-adjust: 100%;
}

input, textarea, select {
  font-size: 16px; /* prevents zoom on iPhone */
}

img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {

  /* HERO LAYOUT → single column */
  .hero {
    display: block;
    padding-top: 100px; /* space for navbar */
  }

  /* ❌ HIDE RIGHT SIDE */
  .hero-right {
    display: none;
  }

  /* LEFT SIDE FULL WIDTH */
  .hero-left {
    padding: 60px 24px 40px;
    justify-content: flex-start;
  }

  /* H1 MOBILE STYLE */
  .hero-h1 {
    font-size: 64px;
    line-height: 1.1;
  }

  .hero-h1 em {
    display: block;
    font-size: 60px;
  }

  /* EYEBROW */
  .hero-eyebrow {
    margin-bottom: 16px;
  }

  .hero-eyebrow-text {
    font-size: 9px;
    letter-spacing: .2em;
  }

  /* PARAGRAPH */
  .hero-p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 30px;
  }

  /* BUTTONS STACK */
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .btn-gold,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  /* STATS → smaller */
  .hero-stats {
    gap: 35px;
    flex-wrap: wrap;
    padding: 50px;
  }

  .stat-num {
    font-size: 28px;
  }

  /* WATERMARK smaller */
  .hero-watermark {
    width: 70%;
    left: 50%;
    opacity: 0.05;
  }
}
@media (max-width: 768px) {
  .hero-h1 {
    letter-spacing: -0.02em;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 60px 24px;
  }
.footer-top {
    padding: 72px 72px 56px;
    display: grid;
    grid-template-columns:  1fr;
    gap: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, .05); 
 
}
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 768px) {

  .hamburger {
    display: flex !important;
    position: relative;
    z-index: 1001;
  }

}
