/* ===========================
   THE DESIGN BOUTIQUE — Global Styles
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --cream: #F5F0EB;
  --dark: #0f0f0f;
  --gold: #C9A96E;
  --amber: #E07820;
  --warm-brown: #8B6E52;
  --soft-white: #FAFAF7;
  --text-muted: #666666;
  --border: #E0D8CF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--soft-white);
  color: var(--dark);
  font-size: 15px;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===========================
   COOKIE BANNER
   =========================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 9999;
  font-size: 0.8rem;
}

.cookie-banner button {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 0.4rem 1.2rem;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ===========================
   ANNOUNCEMENT BAR
   =========================== */
.announcement-bar {
  background: var(--dark);
  color: var(--cream);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.announcement-bar a {
  color: var(--gold);
  margin-left: 0.5rem;
  text-transform: uppercase;
}

/* ===========================
   NAVIGATION
   =========================== */
nav {
  background: var(--soft-white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 80px;
  width: auto;
  display: block;
}

.nav-logo-text {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--warm-brown);
  line-height: 1.2;
  display: none;
}

.nav-logo-text em {
  display: block;
  font-size: 0.7em;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 600;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a:not(.btn) {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  color: #737a7a;
  transition: color 0.2s;
  padding: 1.2rem 0;
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).active {
  color: var(--gold);
}

/* .nav-cta — sizing/colour from .btn + .btn-amber; nothing extra needed */
.nav-cta {
  margin-left: 0.5rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
}

/* ===========================
   BUTTONS — matched to original site
   font-size 16px, weight 700, letter-spacing 2px, padding 18px 30px, no radius
   =========================== */
.btn {
  display: inline-block;
  padding: 0.95rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  border-radius: 0;
  line-height: 1;
  white-space: nowrap;
}

.btn-dark {
  background: var(--dark);
  color: #fff;
}

.btn-dark:hover {
  background: #333;
  color: #fff;
}

.btn-amber {
  background: var(--amber);
  color: #fff;
}

.btn-amber:hover {
  background: #c0660e;
  color: #fff;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.6);
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--dark);
  border-color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}

.btn-outline:hover {
  background: var(--dark);
  color: #fff;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}

.btn-gold:hover {
  background: var(--warm-brown);
}

/* ===========================
   HERO
   =========================== */
.hero {
  background: var(--cream);
  padding: 7rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--dark);
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

/* ===========================
   SECTION BASE
   =========================== */
section {
  padding: 6rem 2rem;
}

.section-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 3rem;
}

.text-center { text-align: center; }

/* ===========================
   STATS / PROOF SECTION
   =========================== */
.stats-section {
  background: var(--dark);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid rgba(201,169,110,0.2);
}

.stat-number {
  font-family: 'Raleway', sans-serif;
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}

.stat-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

/* ===========================
   PORTFOLIO GRID
   =========================== */
.portfolio-section {
  background: var(--soft-white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.portfolio-card {
  background: var(--cream);
  padding: 2.5rem;
}

.portfolio-card:hover {
  transform: translateY(-4px);
}

.portfolio-card-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.portfolio-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.portfolio-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===========================
   SERVICES CARDS
   =========================== */
.services-section {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--soft-white);
  padding: 2.5rem;
  border: 1px solid var(--border);
  position: relative;
}

.service-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 2rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  font-weight: 600;
}

.service-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.service-for {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 0.4rem;
}

.service-card h3 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.service-card ul {
  list-style: none;
  margin-bottom: 1.8rem;
}

.service-card ul li {
  font-size: 0.82rem;
  padding: 0.35rem 0;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
}

.service-card ul li::before {
  content: '✓  ';
  color: var(--gold);
  font-weight: 700;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials-section {
  background: var(--dark);
  color: #fff;
  padding: 7rem 2rem;
}

.testimonials-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 3rem;
  max-width: 1100px;
  margin: 0 auto 4rem;
}

.testimonial-col {
  padding-top: 2rem;
  transition: none;
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  object-fit: cover;
  display: block;
  margin-bottom: 1.5rem;
}

.testimonial-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.2rem;
}

.testimonial-role {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}

.testimonial-quote {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  font-style: italic;
}

.testimonials-footer {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 2rem;
  flex-direction: column;
  text-align: right;
}

.testimonials-footer p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 420px;
}

/* ===========================
   FOUNDER SECTION
   =========================== */
.founder-section {
  background: var(--cream);
}

.founder-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.founder-text h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.founder-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.founder-name {
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold);
  margin-top: 1.5rem;
}

.founder-visual {
  background: var(--dark);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  font-family: 'Raleway', sans-serif;
  font-size: 1.2rem;
  font-style: italic;
  text-align: center;
  padding: 2rem;
}

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 6rem 2rem;
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
}

.cta-banner p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
}

/* ===========================
   FOOTER (unified dark)
   =========================== */
.site-footer {
  background: #000;
  color: rgba(255,255,255,0.7);
  padding: 5rem 2rem 2rem;
}

.site-footer .footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-header {
  margin-bottom: 3.5rem;
}

.footer-header .section-eyebrow {
  color: var(--gold);
}

.footer-connect-title {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  font-size: 2rem;
  color: #fff;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.9fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-col p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.footer-col strong {
  display: block;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}

.footer-col a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-logo-img {
  width: 150px;
  height: auto;
  margin-bottom: 0.5rem;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-family: 'Raleway', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin: 0;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav-list a {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

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

.footer-nav-cta {
  color: var(--gold) !important;
  font-weight: 500;
}

.footer-bottom {
  padding-top: 2rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* (page-hero styles defined further below in PAGE HERO inner pages section) */

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-page-section {
  background: var(--soft-white);
}

.contact-page-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.contact-info-item {
  margin-bottom: 1.5rem;
}

.contact-info-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.contact-info-value {
  font-size: 0.9rem;
  color: var(--dark);
}

.contact-form .form-group {
  margin-bottom: 1.2rem;
}

.contact-form label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.contact-form textarea {
  height: 130px;
  resize: vertical;
}

.contact-form .btn {
  width: 100%;
  text-align: center;
  margin-top: 0.5rem;
}

/* ===========================
   ABOUT PAGE - VALUES
   =========================== */
.values-section {
  background: var(--soft-white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.value-card {
  padding: 2rem 0;
}

.value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.value-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===========================
   HERO WITH PHOTO BACKGROUND
   =========================== */
.hero-photo {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1209 0%, #2d1f10 100%);
}

.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.55;
}

.hero-photo .hero-photo-content {
  position: relative;
  z-index: 2;
  padding: 5rem 2rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero-photo .hero-photo-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-photo h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 2rem;
  max-width: 700px;
}

.hero-photo .btn {
  background: var(--gold);
  color: #fff;
}

.hero-photo .btn:hover {
  background: #fff;
  color: var(--dark);
}

/* ===========================
   RESULT BANNER
   =========================== */
.result-banner {
  background: var(--gold);
  color: #fff;
  padding: 2.5rem 2rem;
  text-align: center;
}

.result-banner .result-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.result-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 400;
}

/* ===========================
   SERVICE DETAIL SECTIONS
   =========================== */
.process-section {
  background: var(--soft-white);
}

.process-grid {
  max-width: 900px;
  margin: 0 auto;
}

.process-phase {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.process-phase:last-child {
  border-bottom: none;
}

.phase-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  padding-top: 0.3rem;
}

.phase-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.phase-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.7rem;
}

.phase-content ul {
  list-style: none;
  margin-top: 0.8rem;
}

.phase-content ul li {
  font-size: 0.85rem;
  color: var(--dark);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}

/* ===========================
   WHAT YOU GET / DETAILS
   =========================== */
.details-section {
  background: var(--cream);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.detail-card {
  background: var(--soft-white);
  padding: 2rem;
  border-top: 3px solid var(--gold);
}

.detail-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.detail-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.detail-card ul {
  list-style: none;
  margin-top: 0.5rem;
}

.detail-card ul li {
  font-size: 0.82rem;
  color: var(--dark);
  padding: 0.3rem 0;
}

.detail-card ul li::before {
  content: '→  ';
  color: var(--gold);
}

/* ===========================
   FAQ SECTION
   =========================== */
.faq-section {
  background: var(--soft-white);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.faq-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.faq-item p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===========================
   PRICING BANNER
   =========================== */
.pricing-banner {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
}

.pricing-banner h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--gold);
  margin-bottom: 1rem;
}

.pricing-banner p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

/* ===========================
   APPLICATION FORM
   =========================== */
.apply-section {
  background: var(--cream);
}

.apply-inner {
  max-width: 750px;
  margin: 0 auto;
}

.apply-form .form-group {
  margin-bottom: 1.2rem;
}

.apply-form label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--dark);
}

.apply-form input,
.apply-form select,
.apply-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  border-color: var(--gold);
}

.apply-form textarea {
  height: 110px;
  resize: vertical;
}

.apply-form .checkbox-group {
  display: flex;
  gap: 2rem;
  margin-top: 0.5rem;
}

.apply-form .checkbox-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  cursor: pointer;
}

.apply-form .checkbox-group input[type="checkbox"] {
  width: auto;
  padding: 0;
  accent-color: var(--gold);
}

/* ===========================
   HERO MAIN (full-viewport, bg image)
   =========================== */
.hero-main {
  min-height: 75vh;
  position: relative;
  background-color: #0f0f0f;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  padding: 0;
}

.hero-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.72) 40%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.hero-main-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-main h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 2.5rem;
  max-width: 700px;
}

/* ===========================
   MISSION SECTION
   =========================== */
.mission-section {
  position: relative;
  background-color: var(--dark);
  background-image: url('images/logo-v3-files-62.png');
  background-size: cover;
  background-position: center center;
  padding: 7rem 2rem;
  text-align: center;
}

.mission-section::before {
  content: '';
  display: none; /* overlay removed — show bg image clearly */
}

.mission-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.mission-section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.mission-section p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* ===========================
   STATS / PROOF SECTION (homepage)
   =========================== */
.stats-section {
  background: #EDF0F7;
  padding: 7rem 2rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1100px;
  margin: 0 auto;
}

.proof-col {
  padding: 3rem 2rem 3rem 0;
}

.proof-col:not(:first-child) {
  padding-left: 2rem;
}

.proof-section-label {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1rem;
}

.proof-section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.proof-section-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 1rem;
}

.proof-stat-num {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.proof-stat-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.proof-body-col {
  padding: 3rem 2rem 3rem 0;
}

.proof-body-col p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ===========================
   WORK SECTION (portfolio on homepage, dark)
   =========================== */
.work-section {
  background: var(--soft-white);
  padding: 7rem 2rem;
}

.work-section .portfolio-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.work-section .portfolio-card {
  background: var(--soft-white);
  padding: 0;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s;
}

/* no hover lift on portfolio cards */

.portfolio-card-img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  display: block;
}

.portfolio-card-body {
  padding: 1.5rem;
}

.work-section .portfolio-card-tag {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.work-section .portfolio-card h3 {
  color: var(--dark);
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
}

.work-section .portfolio-card p {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

/* ===========================
   CTA STRIP (simple, cream)
   =========================== */
.cta-strip {
  background: var(--cream);
  padding: 5rem 2rem;
  text-align: center;
}

.cta-strip h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--dark);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
}

/* ===========================
   FOUNDER QUOTE SECTION (homepage)
   =========================== */
.founder-section {
  position: relative;
  background-color: var(--dark);
  background-image: url('images/quote-bg.jpg');
  background-size: cover;
  background-position: center center;
  padding: 8rem 2rem;
  text-align: center;
}

.founder-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  z-index: 0;
}

.founder-quote-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.founder-quote-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 2.5rem;
}

.founder-quote-text,
.founder-quote-sub {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.4;
  font-style: normal;
  margin-bottom: 0.5rem;
}

.founder-quote-sub {
  margin-bottom: 2.5rem;
}

.founder-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  display: block;
}

/* ===========================
   SERVICES SECTION (homepage)
   =========================== */
.services-home {
  background: var(--dark);
  padding: 7rem 2rem;
}

.services-home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.service-home-card {
  background: rgba(255,255,255,0.05);
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
}

.service-home-card.service-home-featured {
  border-color: var(--amber);
  background: rgba(224,120,32,0.1);
}

.service-home-badge {
  position: absolute;
  top: -1px;
  right: 2rem;
  background: var(--amber);
  color: #fff;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.service-home-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.service-home-label strong {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.service-home-card h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.service-home-for {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.service-home-for span {
  color: #fff;
  font-weight: 600;
}

.service-home-outcome {
  margin-top: 1.2rem;
}

.outcome-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700;
  display: block;
  margin-bottom: 0.4rem;
}

.service-home-outcome p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

/* ===========================
   STORY SECTION (for women by women)
   =========================== */
.story-section {
  background: var(--cream);
  padding: 7rem 2rem;
}

.story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--dark);
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.story-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 2rem;
}

/* ===========================
   FINAL CTA SECTION
   =========================== */
.final-cta-section {
  background-color: var(--dark);
  background-image: url('images/background-image-orange.jpeg');
  background-size: cover;
  background-position: center;
  padding: 8rem 2rem;
}

.final-cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  font-weight: 300;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.3;
}

/* ===========================
   PAGE HERO (inner pages)
   — mirrors .hero-main sizing & rhythm
   =========================== */
.page-hero {
  background-color: var(--dark);
  background-image: url('images/story.png');
  background-size: cover;
  background-position: center center;
  color: #fff;
  min-height: 75vh;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 6rem clamp(2rem, 8vw, 8rem);
  text-align: left;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 0;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

/* Eyebrow matches .hero-eyebrow exactly */
.page-hero .section-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* h1 matches .hero-main h1 exactly */
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #fff;
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 2.5rem;
  max-width: 800px;
}

.page-hero p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 0 2rem;
  line-height: 1.7;
}

/* ===========================
   SERVICES PAGE — SECTIONS
   =========================== */

/* We Specialize In (black) */
.svc-specialize {
  background: #000;
  padding: 6rem 2rem;
}

.svc-specialize-heading {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: #fff;
  font-weight: 300;
  max-width: 700px;
  margin: 0.8rem auto 0;
  line-height: 1.25;
}

/* Our Services intro (white) */
.svc-intro-section {
  background: #fff;
  padding: 5rem 2rem 3rem;
}

.svc-intro-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 1rem auto 0;
  line-height: 1.9;
}

/* ── Service rows ── */
.svc-row {
  background: #fff;
  padding: 3rem 0;
}

.svc-row:last-of-type {
  border-bottom: none;
}

.svc-row-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Text column */
.svc-col-text {
  padding: 4rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Image column — padded so image sits with whitespace */
.svc-col-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  background: #fff;
}

/* The image wrapper fills the padded column */
.svc-img-wrap {
  width: 100%;
  height: 100%;
  min-height: 380px;
  overflow: hidden;
  background: #fff;
}

.svc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Service text elements */
.svc-tag {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.svc-name {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--dark);
  font-weight: 300;
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.svc-for {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.svc-transformation-label {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.svc-transformation {
  font-size: 0.9rem;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.svc-what-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.8rem;
}

.svc-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.svc-list li {
  font-size: 0.87rem;
  color: var(--dark);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
}

.svc-list li:last-child {
  border-bottom: none;
}

.svc-popular {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* Learn Our Why CTA (dark with bg image) */
.svc-why-cta {
  position: relative;
  background-color: var(--dark);
  background-size: cover;
  background-position: center;
  padding: 8rem 2rem;
  text-align: center;
}

.svc-why-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.svc-why-content {
  position: relative;
  z-index: 2;
}

.svc-why-cta h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  color: #fff;
  font-weight: 300;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.45;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .svc-row-inner {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .svc-col-text {
    padding: 2.5rem 1.5rem;
    order: 2;
  }

  .svc-col-image {
    order: 1;
    padding: 1.5rem;
    min-height: 280px;
  }

  .svc-img-wrap {
    min-height: 260px;
  }
}

/* ===========================
   CASE STUDY / PORTFOLIO DETAIL
   =========================== */
.case-section {
  background: var(--soft-white);
}

.case-section.alt {
  background: var(--cream);
}

.case-inner {
  max-width: 900px;
  margin: 0 auto;
}

.case-phase-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.case-inner h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 1.2rem;
  color: var(--dark);
  line-height: 1.3;
}

.case-inner p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: 680px;
}

.case-inner ul {
  list-style: none;
  margin: 1.2rem 0;
}

.case-inner ul li {
  font-size: 0.87rem;
  color: var(--dark);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.case-inner ul li::before {
  content: '✓  ';
  color: var(--gold);
  font-weight: 700;
}

.result-highlight {
  background: var(--dark);
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.result-highlight h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--gold);
  margin-bottom: 1rem;
}

.result-highlight blockquote {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  max-width: 700px;
  margin: 1.5rem auto 0.5rem;
  line-height: 1.7;
}

.result-highlight cite {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Image placeholder boxes */
.img-placeholder {
  background: linear-gradient(135deg, #2d2420, #1a1a1a);
  border: 1px dashed rgba(201,169,110,0.3);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(201,169,110,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 2rem 0;
  font-family: 'Montserrat', sans-serif;
}

.img-placeholder.portrait {
  aspect-ratio: 3/4;
}

/* When real images are placed inside placeholder divs */
.img-placeholder img,
.portfolio-card-img img,
.founder-img img,
.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===========================
   PROCESS PHASES (B.I.Z. / numbered)
   =========================== */
.process-phases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.process-phase {
  display: block;
  padding: 2.5rem 2rem;
  background: var(--soft-white);
  border-top: 3px solid var(--gold);
}

.process-phase:last-child {
  border-bottom: none;
}

.phase-letter {
  font-family: 'Raleway', sans-serif;
  font-size: 4rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1rem;
}

.process-phase h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.process-phase p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===========================
   TIMELINE (weeks / deliverables)
   =========================== */
.timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-block {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.timeline-block:last-child {
  border-bottom: none;
}

.timeline-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-block h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.8rem;
}

.timeline-block p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

/* ===========================
   DETAIL GRID (what you get)
   =========================== */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.detail-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--dark);
}

/* ===========================
   CASE STUDY META + BODY LAYOUT
   =========================== */
.case-section {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.case-meta {
  border-right: 1px solid var(--border);
  padding-right: 2rem;
}

.case-meta-item {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}

.case-meta-item:first-child {
  padding-top: 0;
}

.case-meta-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.case-meta-value {
  font-size: 0.88rem;
  color: var(--dark);
  font-weight: 500;
}

.case-body h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--dark);
  line-height: 1.3;
}

.case-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ===========================
   PRICING BANNER (two-column)
   =========================== */
.pricing-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.pricing-info {
  color: #fff;
}

.pricing-info h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #fff;
  margin: 0.8rem 0 1rem;
}

.pricing-price {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  margin: 1rem 0;
}

.pricing-apply {
  background: var(--soft-white);
  padding: 2.5rem;
  color: var(--dark);
}

.pricing-apply h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

/* ===========================
   PORTFOLIO CARD LINK STYLE
   =========================== */
.portfolio-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.portfolio-card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ===========================
   FAQ LIST CONTAINER
   =========================== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item h4 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  color: var(--dark);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--soft-white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    padding: 0.7rem 2rem;
  }

  .nav-toggle {
    display: block;
  }

  nav {
    position: relative;
  }

  .founder-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .founder-visual {
    display: none;
  }

  .contact-page-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .case-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .case-meta {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .pricing-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pricing-apply {
    padding: 2rem;
  }

  .process-phase {
    padding: 2rem 1.5rem;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .hero {
    padding: 5rem 1.5rem;
  }

  /* Homepage hero */
  .hero-main-content {
    padding: 5rem 1.5rem;
  }

  .hero-main h1 {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
    max-width: 100%;
  }

  /* Mission */
  .mission-section {
    padding: 5rem 1.5rem;
  }

  /* Stats */
  .stats-section {
    padding: 5rem 1.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  /* Work */
  .work-section {
    padding: 5rem 1.5rem;
  }

  /* Founder (homepage) */
  .founder-section {
    padding: 5rem 1.5rem;
  }

  .founder-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .founder-visual {
    display: none;
  }

  /* Services home */
  .services-home {
    padding: 5rem 1.5rem;
  }

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

  /* Story */
  .story-section {
    padding: 5rem 1.5rem;
  }

  .story-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story-visual {
    display: none;
  }

  /* CTA strip */
  .cta-strip {
    padding: 4rem 1.5rem;
  }

  /* Final CTA */
  .final-cta-section {
    padding: 5rem 1.5rem;
  }

  /* Page hero (inner) — matches homepage hero on mobile */
  .page-hero {
    min-height: 65vh;
    padding: 5rem 1.5rem;
  }

  .page-hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.6rem);
    margin-bottom: 2rem;
  }

  /* Footer */
  .site-footer {
    padding: 4rem 1.5rem 2rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-connect-title {
    font-size: 1.5rem;
  }
}

/* ===========================
   ABOUT PAGE
   =========================== */

/* Core belief — bright amber/gold bg (matches original rgb(245,167,23)) */
.about-core-belief {
  background: #F5A717;
  padding: 5rem 2rem;
  text-align: center;
}

.about-eyebrow-dark {
  color: var(--dark) !important;
  opacity: 0.7;
}

.about-core-heading {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--dark);
  max-width: 720px;
  margin: 0.8rem auto 0;
  line-height: 1.4;
}

/* "This is my story.." intro */
.about-story-intro {
  padding: 4rem 2rem 1rem;
  background: var(--soft-white);
}

.about-story-label {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  text-align: center;
}

/* Founder body */
.about-founder-body {
  background: var(--soft-white);
  padding: 3rem 2rem 6rem;
}

.about-founder-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.about-founder-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-founder-heading {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.about-founder-text p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-founder-text strong {
  color: var(--dark);
}

/* Founder quote — bg image with overlay */
.about-quote-section {
  background-color: #000;
  background-image: url('images/office.jpg');
  background-size: cover;
  background-position: center;
  padding: 10rem 2rem;
  position: relative;
}

.about-quote-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 0;
}

.about-quote-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 2rem;
}

.about-quote {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: normal;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.about-quote-attr {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Foundation / values */
.about-foundation {
  background: var(--soft-white);
  padding: 6rem 2rem;
}

.value-sub {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 0.5rem !important;
}

.about-cta-heading {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}

.about-cta-sub {
  font-size: 0.95rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ===========================
   CONTACT PAGE (new sections)
   =========================== */

/* WHO WE HELP — black bg */
.contact-who-section {
  background: #000;
  padding: 5rem 2rem;
}

.contact-who-heading {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 300;
  color: #fff;
  margin-top: 0.8rem;
  line-height: 1.35;
}

/* ALWAYS ONLINE / Say hello */
.contact-hello-section {
  background: var(--soft-white);
  padding: 5rem 2rem;
}

.contact-hello-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--dark);
  margin: 0.5rem 0 1.5rem;
}

.contact-hello-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 640px;
  margin: 0 auto;
}

/* Excited / Ready CTA — black bg */
.contact-excited-section {
  background-color: #000;
  background-image: url('images/quote-bg.jpg');
  background-size: 100%;
  background-position: center center;
  padding: 6rem 2rem;
  position: relative;
}

.contact-excited-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  z-index: 0;
}

.contact-excited-section .container {
  position: relative;
  z-index: 1;
}

.contact-excited-heading {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 2rem;
  line-height: 1.4;
}

/* ===========================
   PORTFOLIO PAGE (updated cards)
   =========================== */
.portfolio-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* no hover lift or shadow on portfolio cards — clean look */

.portfolio-card-img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  display: block;
}

.portfolio-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-card-body {
  padding: 2rem 2rem 2.5rem;
}

/* About page hero override */
.about-hero {
  background-image: url('images/IMG_8206.JPG') !important;
  background-size: cover;
  background-position: center center;
}

/* Core belief — white text */
.about-core-heading {
  color: #fff;
}

/* Founder quote attr */
.about-quote-attr {
  color: #fff;
  font-style: normal;
}

/* Values 2-col layout */
.values-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.values-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.values-col--right {
  padding-top: 4rem;
}

.values-col-img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.values-col-img img,
.values-col-img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right column inner layout: beliefs text + image side by side */
.values-right-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.values-right-text {
  display: flex;
  flex-direction: column;
}

.values-right-img {
  width: 100%;
}

.values-right-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Testimonials gallery — playful */
.tgallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.tgallery-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.tgallery-card--a { transform: rotate(-1.5deg); }
.tgallery-card--b { transform: rotate(1deg); margin-top: 2rem; }
.tgallery-card--c { transform: rotate(-0.8deg); }
.tgallery-card--d { transform: rotate(1.5deg); margin-top: 3rem; }

.tgallery-img {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.tgallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tgallery-quote {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  font-style: italic;
  padding: 1.2rem 1.2rem 0.5rem;
}

.tgallery-name {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  padding: 0 1.2rem 1.2rem;
}

/* About CTA — orange bg image, white text */
.about-cta-gold {
  background-color: #E07820;
  background-image: url('images/background-image-orange.jpeg');
  background-size: cover;
  background-position: center;
  padding: 6rem 2rem;
  position: relative;
}


.about-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.about-cta-heading {
  color: #fff;
}

.about-cta-sub {
  color: rgba(255,255,255,0.85);
  opacity: 1;
}

/* About page testimonials — 2-col, 4 items matching original */
.about-testimonials-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.about-tcol {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-tcol-item {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-tcol-item--offset {
  margin-top: 4rem;
}

.about-tcol-media {
  width: 100%;
}

.about-tcol-media img,
.about-tcol-media video {
  width: 100%;
  height: auto;
  display: block;
}

.about-tcol-quote {
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  font-style: normal;
}

/* Responsive — about page */
@media (max-width: 768px) {
  .about-founder-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-founder-image img {
    height: 300px;
    object-position: center top;
  }

  .about-core-belief,
  .about-cta-gold {
    padding: 4rem 1.5rem;
  }
}

/* ===========================
   CASE STUDY PAGES — Shared Styles
   =========================== */

/* Hero override for case study pages */
.cs-hero {
  background-color: var(--dark);
}

/* Section base */
.cs-section {
  padding: 6rem 2rem;
}
.cs-section--no-top-pad {
  padding-top: 0;
}
.cs-section--no-pad {
  padding: 0;
}
.cs-section--tight {
  padding: 2.5rem 2rem;
}

/* Backgrounds */
.cs-amber {
  background: #F5A717;
}
.cs-cream {
  background: #E9E4DB;
}
.cs-black {
  background: #000;
  color: #fff;
}
.cs-white {
  background: #fff;
}

/* Containers */
.cs-container {
  max-width: 1170px;
  margin: 0 auto;
}
.cs-narrow {
  max-width: 820px;
  margin: 0 auto;
}
.cs-mid {
  max-width: 960px;
  margin: 0 auto;
  padding: 4rem 0;
}
.cs-center {
  text-align: center;
}

/* 2-column grid */
.cs-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.cs-2col--align-start {
  align-items: start;
}

/* Column modifiers */
.cs-col--stacked-imgs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Images */
.cs-img-full {
  width: 100%;
  height: auto;
  display: block;
}

/* Full-width image block below a 2-col section */
.cs-fullwidth-img {
  width: 100%;
  margin-top: 3rem;
}
.cs-fullwidth-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Image labels */
.cs-labeled-img {
  display: flex;
  flex-direction: column;
}
.cs-img-label {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-top: 0.8rem;
  text-transform: uppercase;
}

/* Body text */
.cs-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

/* Phase / section headings */
.cs-phase-title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

/* Goal quote (amber section) */
.cs-goal-quote {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  max-width: 800px;
  margin: 1rem auto;
  line-height: 1.5;
}

/* Eyebrow on dark/amber backgrounds */
.cs-eyebrow-dark {
  color: var(--dark);
  opacity: 0.7;
}

/* Bullet list */
.cs-list {
  list-style: none;
  margin-bottom: 2rem;
}
.cs-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--dark);
  line-height: 1.7;
}
.cs-list li:first-child {
  border-top: 1px solid var(--border);
}
.cs-list li strong {
  color: var(--gold);
}

/* Results text */
.cs-results-text {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--dark);
  max-width: 720px;
  margin: 1rem auto;
  line-height: 1.5;
}

/* Quote section (black bg) */
.cs-quote-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  display: block;
  margin: 0 auto 2rem;
  border-radius: 4px;
}
.cs-quote-text {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}
.cs-quote-attr {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Testimonial cards (white section) */
.cs-testimonial-card {
  display: flex;
  flex-direction: column;
}
.cs-testimonial-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.cs-testimonial-quote {
  font-size: 0.92rem;
  color: var(--dark);
  line-height: 1.8;
  font-style: italic;
  margin-top: 0.5rem;
}

/* CTA section (amber) */
.cs-cta-heading {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.cs-cta-sub {
  font-size: 0.95rem;
  color: var(--dark);
  opacity: 0.8;
  margin-bottom: 2rem;
}
.cs-cta-btn {
  background: var(--dark);
  color: #fff;
  padding: 1rem 2.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.cs-cta-btn:hover {
  opacity: 0.85;
}

/* Responsive — case study pages */
@media (max-width: 768px) {
  .cs-section {
    padding: 4rem 1.5rem;
  }
  .cs-2col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .cs-mid {
    padding: 2rem 0;
  }
}
