:root {
  --navy: #0B1D38;
  --navy-dark: #061326;
  --navy-soft: #11284b;
  --gold: #F2C14E;
  --gold-bright: #FFCD06;
  --cream: #F6F1E7;
  --cream-deep: #EFE7D7;
  --white: #ffffff;
  --text: #1B2434;
  --muted: #5d6a7e;
  --border: #e2dccd;
  --shadow-sm: 0 6px 22px rgba(11, 29, 56, 0.08);
  --shadow: 0 26px 70px rgba(11, 29, 56, 0.14);
  --radius: 26px;
  --max: 1180px;
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Manrope", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 em, h2 em {
  font-style: italic;
  color: var(--gold);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(.16,.84,.44,1),
              transform 0.7s cubic-bezier(.16,.84,.44,1);
  transition-delay: calc(var(--d, 0) * 90ms);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 19, 38, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  color: var(--white);
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.02em;
}
.brand span { color: var(--gold); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 600;
}
.main-nav a { position: relative; transition: color 0.2s ease; }
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.main-nav a:not(.nav-cta):hover { color: var(--white); }
.main-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 9px 20px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(242, 193, 78, 0.35);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.2s ease;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  color: var(--white);
  padding: 96px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 16%, rgba(242, 193, 78, 0.18), transparent 30%),
    linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 56%, #10284f 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 30% 40%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 30% 40%, #000 0%, transparent 72%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-family: var(--body);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.dark { color: var(--navy); }

.hero h1 {
  font-size: clamp(50px, 7.5vw, 92px);
  line-height: 0.94;
  color: #f7f3ea;
  margin-bottom: 26px;
}

.hero-text {
  color: #d7deec;
  font-size: 20px;
  line-height: 1.65;
  max-width: 640px;
  margin: 0 0 32px;
}

.hero-signature {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--gold);
  margin: 0 0 26px;
  letter-spacing: 0.01em;
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 15.5px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(242, 193, 78, 0.28);
}
.btn-primary:hover { box-shadow: 0 16px 38px rgba(242, 193, 78, 0.4); }

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.08); }

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: var(--navy-soft); }

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 38px;
}
.hero-stats div {
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
}
.hero-stats span {
  display: block;
  color: var(--gold);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* Hero photo */
.hero-photo-card {
  position: relative;
  min-height: 560px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.32);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background:
    radial-gradient(circle at 50% 14%, rgba(242, 193, 78, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
}
.hero-photo-card img {
  width: auto;
  height: 600px;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
  margin-bottom: -26px;
}
.photo-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background: rgba(6, 19, 38, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
}

/* ===== Intro strip ===== */
.intro-strip {
  margin-top: -52px;
  position: relative;
  z-index: 5;
}
.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.intro-grid div {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}
.intro-grid div:hover { transform: translateY(-4px); }
.intro-grid span {
  font-family: var(--display);
  font-size: 28px;
  color: var(--gold);
  font-weight: 600;
}
.intro-grid strong {
  display: block;
  font-family: var(--display);
  font-size: 21px;
  color: var(--navy);
  margin: 10px 0 8px;
  font-weight: 600;
}
.intro-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== Sections ===== */
.section { padding: 100px 0; }
.section h2 {
  color: var(--navy);
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.04;
  margin-bottom: 26px;
}
.section-text {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 22px;
}
.light { color: #d7deec; }
.yellow { color: var(--gold); }

.split-grid,
.instagram-grid,
.contact-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

#about { background: var(--cream); }

/* ===== Services ===== */
.dark-section {
  background: var(--navy);
  color: var(--white);
  position: relative;
}
.dark-section h2 { color: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 30px 26px;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(242, 193, 78, 0.4);
}
.service-card span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11.5px;
  font-weight: 800;
}
.service-card h3 {
  font-size: 25px;
  margin: 14px 0 12px;
  color: var(--white);
}
.service-card p {
  color: #cdd6e6;
  line-height: 1.7;
  margin: 0;
}
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
}
.service-cta::after {
  content: "\2192";
  transition: transform 0.25s ease;
}
.service-card:hover .service-cta::after { transform: translateX(5px); }

/* ===== Featured ===== */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.featured-card {
  display: block;
  overflow: hidden;
  border-radius: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.featured-image {
  overflow: hidden;
  background: var(--cream-deep);
}
.featured-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.featured-card:hover .featured-image img { transform: scale(1.06); }
.featured-copy { padding: 28px 26px 30px; }
.featured-copy h3 {
  font-size: 25px;
  color: var(--navy);
  margin-bottom: 12px;
}
.featured-copy > p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 16px;
}
.featured-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 700;
  font-size: 14.5px;
}
.featured-link::after {
  content: "\2192";
  transition: transform 0.25s ease;
}
.featured-card:hover .featured-link::after { transform: translateX(5px); }

/* ===== Reviews ===== */
.reviews-section { background: var(--cream); }
.reviews-card,
.instagram-card {
  background:
    radial-gradient(circle at 86% 16%, rgba(242, 193, 78, 0.22), transparent 30%),
    linear-gradient(135deg, var(--navy), #10284f);
  color: #fff;
  border-radius: 30px;
  padding: 46px;
  box-shadow: var(--shadow);
}
.rating-row {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-bottom: 22px;
}
.rating {
  font-family: var(--display);
  font-size: 68px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stars {
  color: var(--gold);
  font-size: 26px;
  letter-spacing: 3px;
  margin-bottom: 6px;
}
.reviews-card p { margin: 0 0 8px; font-size: 17px; }
.review-name { font-weight: 800; }
.reviews-card span { color: #cdd6e6; font-size: 15px; }

/* ===== Instagram ===== */
.instagram-section { background: var(--cream); }
.instagram-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.instagram-mark {
  font-family: var(--display);
  font-size: 40px;
  margin-bottom: 16px;
}
.instagram-card p {
  color: #cdd6e6;
  line-height: 1.8;
  font-size: 18px;
  margin: 0 0 24px;
}
.instagram-card a { color: var(--gold); font-weight: 700; }
.insta-btn { display: inline-flex; align-items: center; gap: 10px; }
.insta-icon {
  width: 18px;
  height: 18px;
  background: linear-gradient(45deg, #feda75, #d62976, #4f5bd5);
  border-radius: 5px;
}

/* ===== Contact ===== */
.contact-section { background: var(--navy); color: var(--white); }
.contact-section h2 { color: var(--white); }
.contact-card {
  background: var(--white);
  color: var(--text);
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-card h3 {
  color: var(--navy);
  font-size: 32px;
  margin-bottom: 22px;
}
.contact-list { margin-bottom: 26px; }
.contact-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
.contact-list a {
  color: var(--navy);
  font-weight: 700;
  transition: color 0.2s ease;
}
.contact-list a:hover { color: var(--gold); }

/* ===== Footer ===== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 44px 0;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand { font-size: 26px; }
.footer-tagline {
  margin: 6px 0 0;
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
}
.footer-nav {
  display: flex;
  gap: 24px;
  font-size: 15px;
  font-weight: 600;
}
.footer-nav a { color: rgba(255, 255, 255, 0.75); transition: color 0.2s ease; }
.footer-nav a:hover { color: var(--gold); }
.footer-meta { margin: 0; font-size: 14px; }

/* ===== Contact sub-line ===== */
.contact-sub {
  margin: -10px 0 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===== Journal (homepage) ===== */
.journal-section { background: var(--cream); }
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.journal-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px 30px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.journal-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.journal-tag {
  align-self: flex-start;
  color: var(--gold);
  background: rgba(242, 193, 78, 0.14);
  border: 1px solid rgba(242, 193, 78, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.journal-card h3 {
  font-size: 23px;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 14px;
}
.journal-card > p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 22px;
  flex-grow: 1;
}
.journal-foot { margin-top: 40px; }

/* ===== Blog / article pages ===== */
.blog-hero {
  background:
    radial-gradient(circle at 86% 16%, rgba(242, 193, 78, 0.18), transparent 32%),
    linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 56%, #10284f 100%);
  color: var(--white);
  padding: 84px 0 76px;
}
.blog-hero .eyebrow { color: var(--gold); }
.blog-hero h1 {
  color: #f7f3ea;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  max-width: 900px;
  margin-bottom: 22px;
}
.blog-meta {
  color: #c6d0e0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.blog-meta strong { color: var(--gold); font-weight: 700; }

.article {
  width: min(calc(100% - 40px), 760px);
  margin: 0 auto;
  padding: 72px 0 90px;
}
.article > p,
.article > ul,
.article > ol {
  color: var(--text);
  font-size: 18.5px;
  line-height: 1.85;
  margin: 0 0 26px;
}
.article .lead {
  font-size: 22px;
  line-height: 1.7;
  color: var(--navy);
  font-weight: 500;
}
.article h2 {
  font-family: var(--display);
  color: var(--navy);
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.12;
  margin: 48px 0 18px;
}
.article h3 {
  font-family: var(--display);
  color: var(--navy);
  font-size: 23px;
  margin: 34px 0 12px;
}
.article ul, .article ol { padding-left: 22px; }
.article li { margin-bottom: 10px; }
.article a:not(.btn) {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}
.article blockquote {
  margin: 32px 0;
  padding: 4px 0 4px 26px;
  border-left: 3px solid var(--gold);
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.5;
  color: var(--navy);
}
.article-cta {
  margin-top: 48px;
  padding: 36px;
  border-radius: var(--radius);
  background: var(--cream-deep);
  border: 1px solid var(--border);
  text-align: center;
}
.article-cta h3 {
  font-family: var(--display);
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 10px;
}
.article-cta p { color: var(--muted); margin: 0 0 22px; font-size: 17px; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 700;
  font-size: 14.5px;
  margin-bottom: 28px;
}

/* Blog index list */
.blog-index { padding: 72px 0 90px; background: var(--cream); }
.blog-index-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 8px;
}

/* ===== Accessibility ===== */
.skip-link {
  position: absolute;
  left: 14px;
  top: -60px;
  z-index: 100;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 0 0 12px 12px;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ===== Lead form ===== */
.lead-form { margin: 4px 0 8px; }
.lead-form .field { margin-bottom: 16px; }
.lead-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.lead-form label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 7px;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 16px;
  color: var(--text);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(242, 193, 78, 0.22);
  background: var(--white);
}
.lead-form textarea { resize: vertical; min-height: 84px; }
.lead-form .hp-field { position: absolute; left: -9999px; }
.lead-submit { width: 100%; margin-top: 4px; }
.form-fineprint {
  margin: 14px 0 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--muted);
  text-align: center;
}
.form-success {
  background: var(--cream-deep);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 16px;
  padding: 24px 26px;
  margin-bottom: 8px;
}
.form-success strong {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-success p { margin: 0; color: var(--muted); line-height: 1.6; }
.contact-or {
  margin: 26px 0 14px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  position: relative;
}

/* ===== Recent Client Wins ===== */
.wins-section { background: var(--white); }
.wins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.win-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 22px;
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.win-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.win-tag {
  display: inline-block;
  color: var(--navy);
  background: rgba(242, 193, 78, 0.16);
  border: 1px solid rgba(242, 193, 78, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.win-line {
  font-family: var(--display);
  font-size: 21px;
  line-height: 1.32;
  color: var(--navy);
  margin: 0;
}
.about-cta { margin-top: 26px; }
.wins-cta { margin-top: 40px; }

/* ===== My Process ===== */
.process-section { background: var(--cream); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.process-step {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(242, 193, 78, 0.5);
}
.process-num {
  display: block;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}
.process-step h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px;
}
.process-step p { margin: 0; color: var(--muted); line-height: 1.7; }

/* ===== Seller CTA band ===== */
.seller-band {
  background: var(--navy-dark);
  color: var(--white);
  padding: 56px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.seller-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.seller-band h2 {
  color: var(--white);
  font-size: clamp(26px, 3.4vw, 40px);
  margin-bottom: 10px;
}
.seller-band p {
  color: #d7deec;
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
  max-width: 520px;
}
.seller-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Plugged In podcast ===== */
.podcast-section { background: var(--navy); color: var(--white); }
.podcast-section h2 { color: var(--white); }
.podcast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.podcast-section .section-text em { font-style: italic; color: var(--gold); }
.podcast-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.podcast-card {
  background:
    radial-gradient(circle at 86% 16%, rgba(242, 193, 78, 0.22), transparent 30%),
    linear-gradient(135deg, var(--navy-soft), #10284f);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  padding: 46px;
  box-shadow: var(--shadow);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.podcast-mark {
  font-family: var(--display);
  font-size: 36px;
  color: #fff;
  margin-bottom: 16px;
}
.podcast-card p { color: #cdd6e6; line-height: 1.8; font-size: 17px; margin: 0 0 14px; }
.podcast-card p:last-child { margin-bottom: 0; }

/* ===== Plugged In: latest episode video ===== */
.podcast-video { margin-top: 56px; }
.video-eyebrow { text-align: center; margin-bottom: 22px; }
.video-embed {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.38);
}
.video-thumb {
  display: block;
  position: absolute;
  inset: 0;
  cursor: pointer;
}
.video-thumb-img {
  position: absolute;
  inset: 0;
  /* Placeholder backdrop until a real video ID is set — then JS swaps in the
     YouTube thumbnail (https://img.youtube.com/vi/VIDEO_ID/maxresdefault.jpg). */
  background-color: var(--navy-soft);
  background-image:
    radial-gradient(circle at 78% 18%, rgba(242, 193, 78, 0.28), transparent 42%),
    linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 58%, #10284f 100%);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.video-thumb:hover .video-thumb-img { transform: scale(1.04); }
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(6, 19, 38, 0.05), rgba(6, 19, 38, 0.45));
  transition: background 0.3s ease;
}
.video-thumb:hover .video-overlay { background: linear-gradient(180deg, rgba(6, 19, 38, 0.05), rgba(6, 19, 38, 0.55)); }
.video-play {
  position: relative;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 16px 40px rgba(242, 193, 78, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.video-thumb:hover .video-play { transform: scale(1.08); box-shadow: 0 20px 52px rgba(242, 193, 78, 0.55); }
.video-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 15px 0 15px 26px;
  border-color: transparent transparent transparent var(--navy);
}
.video-label {
  position: absolute;
  left: 22px;
  bottom: 20px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== Areas Served ===== */
.areas-section { background: var(--cream); }
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.areas-list li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.areas-list li:hover { border-color: rgba(242, 193, 78, 0.6); transform: translateY(-2px); }

/* ===== Footer SEO line ===== */
.footer-seo {
  margin: 28px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 880px;
}

/* ===== Responsive ===== */
@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .instagram-grid,
  .contact-grid,
  .reviews-grid,
  .podcast-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid { gap: 40px; }
  .services-grid,
  .intro-grid { grid-template-columns: 1fr 1fr; }
  .hero-photo-card { min-height: 500px; }
}

@media (max-width: 980px) {
  .journal-grid { grid-template-columns: 1fr; }
  .wins-grid,
  .process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .featured-grid { grid-template-columns: 1fr; }
  .blog-index-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 20px 22px;
    background: rgba(6, 19, 38, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .main-nav a { padding: 10px 0; width: 100%; }
  .nav-cta { margin-top: 8px; }
  .site-header.nav-open .main-nav {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 640px) {
  .hero { padding: 64px 0 84px; }
  .section { padding: 72px 0; }
  .hero-text,
  .section-text,
  .featured-copy > p,
  .service-card p,
  .instagram-card p { font-size: 16px; }
  .intro-grid,
  .services-grid,
  .wins-grid,
  .process-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .featured-copy,
  .contact-card,
  .instagram-card,
  .podcast-card,
  .reviews-card { padding: 28px; }
  .hero-photo-card { min-height: 420px; }
  .hero-photo-card img { height: 460px; }
  .rating-row { align-items: flex-start; flex-direction: column; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .lead-form .field-row { grid-template-columns: 1fr; gap: 0; }
  .lead-form .field-row .field { margin-bottom: 16px; }
  .podcast-video { margin-top: 40px; }
  .video-embed { border-radius: 20px; }
  .video-play { width: 64px; height: 64px; }
  .video-play::after { border-width: 11px 0 11px 19px; }
  .video-label { left: 16px; bottom: 14px; font-size: 11.5px; }
}
