﻿:root {
  --paper: #fbf8f1;
  --porcelain: #fffdfa;
  --mist: #f1ece3;
  --navy: #172433;
  --charcoal: #242424;
  --ink: #1f252b;
  --muted: #6c6a66;
  --gold: #c6a45d;
  --gold-soft: #ead8ad;
  --bronze: #8d6a35;
  --line: rgba(23, 36, 51, 0.14);
  --shadow: 0 24px 70px rgba(23, 36, 51, 0.12);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(28px, calc((100vw - var(--max)) / 2));
  background: rgba(251, 248, 241, 0.9);
  border-bottom: 1px solid rgba(23, 36, 51, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(251, 248, 241, 0.98);
  box-shadow: 0 14px 32px rgba(23, 36, 51, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  text-decoration: none;
}

.brand strong {
  display: block;
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.2;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: clamp(0.82rem, 1.05vw, 1rem);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  color: #3d4650;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(198, 164, 93, 0.65);
  border-radius: 999px;
  color: var(--navy);
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--porcelain);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: center;
  padding: 148px 0 88px;
  overflow: hidden;
  background: var(--navy);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/marketing-strategy-hero.png");
  background-image: image-set(url("assets/marketing-strategy-hero.webp") type("image/webp"), url("assets/marketing-strategy-hero.png") type("image/png"));
  background-size: cover;
  background-position: center right;
  opacity: 0.86;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(251, 248, 241, 0.98) 0%, rgba(251, 248, 241, 0.94) 38%, rgba(251, 248, 241, 0.5) 70%, rgba(23, 36, 51, 0.2) 100%),
    linear-gradient(0deg, rgba(251, 248, 241, 0.7), rgba(251, 248, 241, 0.02) 48%);
}

.hero-content {
  position: relative;
  max-width: 760px;
  margin-left: max(22px, calc((100vw - var(--max)) / 2));
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--bronze);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(3rem, 7.4vw, 5.85rem);
}

.hero-copy {
  max-width: 660px;
  color: #3e464d;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.button.primary {
  color: white;
  background: var(--navy);
  box-shadow: 0 16px 34px rgba(23, 36, 51, 0.24);
}

.button.primary:hover {
  background: #0f1a25;
}

.button.secondary {
  color: var(--navy);
  background: rgba(255, 253, 250, 0.76);
  border-color: rgba(23, 36, 51, 0.18);
}

.audience-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.audience-row span {
  padding: 8px 12px;
  border: 1px solid rgba(198, 164, 93, 0.4);
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.66);
  color: #4a4b49;
  font-size: 0.84rem;
  font-weight: 750;
}

.statement {
  padding: 42px 0;
  background: var(--navy);
  color: white;
}

.statement-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 36px;
  align-items: center;
}

.statement p {
  margin: 0;
  color: var(--gold-soft);
  font-weight: 800;
}

.statement h2 {
  margin: 0;
  color: white;
  font-size: clamp(1.75rem, 4vw, 3rem);
}

.section {
  padding: 96px 0;
}

.portfolio,
.testimonials {
  background: var(--mist);
}

.pricing {
  background: var(--paper);
}

.about {
  background: var(--porcelain);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.72fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading h2,
.split-heading h2,
.about-grid h2,
.contact-panel h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(2rem, 4.8vw, 3.35rem);
}

.section-heading p,
.split-heading p,
.about-grid p,
.contact-panel p {
  color: var(--muted);
  font-size: 1.06rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.portfolio-card,
.package-card,
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 250, 0.78);
  box-shadow: 0 14px 36px rgba(23, 36, 51, 0.06);
}

.service-card {
  min-height: 270px;
  padding: 28px;
}

.service-card span {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--gold);
  font-weight: 900;
}

.service-card h3,
.portfolio-card h3,
.package-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.16rem;
}

.service-card p,
.portfolio-card p,
.package-card li {
  color: var(--muted);
  font-size: 0.98rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.portfolio-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  padding: 0;
}

.portfolio-image {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #eef1ea;
  aspect-ratio: 4 / 3;
}

.portfolio-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 420ms ease;
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.035);
}

.portfolio-copy {
  padding: 28px;
}

.project-type,
.package-label {
  margin-bottom: 18px;
  color: var(--bronze);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.package-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 30px;
}

.package-card.featured {
  color: white;
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--shadow);
}

.package-card.featured h3,
.package-card.featured .price,
.package-card.featured a {
  color: white;
}

.package-card.featured .package-label,
.package-card.featured li {
  color: #e8dcc3;
}

.price {
  color: var(--navy);
  font-size: 1.38rem;
  font-weight: 900;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 10px 0 26px;
  padding-left: 20px;
}

.package-card a {
  margin-top: auto;
  color: var(--navy);
  font-weight: 900;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.testimonial-card {
  margin: 0;
  padding: 34px;
}

.testimonial-card blockquote {
  margin: 0 0 22px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.25;
}

.testimonial-card figcaption {
  color: var(--bronze);
  font-weight: 900;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 64px;
  align-items: center;
}

.about-card {
  display: block;
  min-height: 440px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(198, 164, 93, 0.38);
  border-radius: var(--radius);
  color: white;
  background: var(--navy);
  box-shadow: var(--shadow);
}

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

.about-card p {
  margin: 0;
  padding: 18px 22px;
  color: var(--gold-soft);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.founder-title {
  margin-bottom: 20px;
  color: var(--bronze) !important;
  font-weight: 900;
}

.expertise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.expertise-list li {
  padding: 10px 13px;
  border: 1px solid rgba(23, 36, 51, 0.12);
  border-radius: 999px;
  background: var(--paper);
  color: #47505a;
  font-size: 0.9rem;
  font-weight: 800;
}

.contact {
  padding: 96px 0;
  background:
    linear-gradient(135deg, rgba(23, 36, 51, 0.94), rgba(23, 36, 51, 0.84)),
    url("assets/marketing-strategy-hero.png") center / cover;
  background:
    linear-gradient(135deg, rgba(23, 36, 51, 0.94), rgba(23, 36, 51, 0.84)),
    image-set(url("assets/marketing-strategy-hero.webp") type("image/webp"), url("assets/marketing-strategy-hero.png") type("image/png")) center / cover;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: start;
  padding: 50px;
  border: 1px solid rgba(234, 216, 173, 0.28);
  border-radius: var(--radius);
  background: rgba(251, 248, 241, 0.96);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(23, 36, 51, 0.12);
}

.contact-details p {
  margin: 0;
}

.contact-details a,
.form-note a {
  color: var(--navy);
  font-weight: 900;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.coming-soon,
.form-note {
  color: var(--muted);
  font-size: 0.94rem;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #39414a;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 36, 51, 0.18);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 253, 250, 0.9);
  font: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(198, 164, 93, 0.28);
  border-color: var(--gold);
}

.contact-form button {
  width: fit-content;
}

.site-footer {
  padding: 24px 0;
  background: #111b26;
  color: #e8dcc3;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: white;
  font-weight: 850;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1240px) {
  .site-nav {
    position: absolute;
    inset: 75px 20px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(251, 248, 241, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .site-nav a::after {
    display: none;
  }

  .nav-cta {
    border-radius: var(--radius);
  }

  .nav-toggle {
    display: block;
  }

  .service-grid,
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-heading,
  .about-grid,
  .contact-panel,
  .statement-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
    padding-bottom: 92px;
  }

  .about-card {
    min-height: 320px;
  }

  .about-card img {
    height: 330px;
  }
}

@media (max-width: 680px) {
  .section-inner {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand strong {
    max-width: 220px;
    font-size: 0.81rem;
  }

  .brand small {
    display: none;
  }

  .hero {
    padding-top: 112px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(251, 248, 241, 0.98) 0%, rgba(251, 248, 241, 0.92) 58%, rgba(251, 248, 241, 0.55) 100%),
      linear-gradient(90deg, rgba(251, 248, 241, 0.98), rgba(251, 248, 241, 0.66));
  }

  .hero-content {
    width: min(100% - 28px, var(--max));
    margin: 0 auto;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4.05rem);
  }

  .button,
  .contact-form button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .service-grid,
  .package-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-card span {
    margin-bottom: 24px;
  }

  .contact-panel {
    padding: 24px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

.linkedin-link,
.footer-linkedin span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
}

.founder-line {
  display: grid;
  gap: 3px;
  margin-top: 28px;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
  color: #3e464d;
}

.founder-line strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.founder-line span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 750;
}

.service-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 250, 0.78);
  box-shadow: 0 14px 36px rgba(23, 36, 51, 0.06);
}

.service-panel span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--gold);
  font-weight: 900;
}

.service-panel h3 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 1.16rem;
}

.service-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.service-panel li {
  color: var(--muted);
  font-size: 0.98rem;
}

.portfolio-grid {
  grid-template-columns: repeat(3, 1fr);
}

.portfolio-placeholder {
  display: grid;
  min-height: 285px;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(23, 36, 51, 0.92), rgba(17, 27, 38, 0.82)),
    url("assets/marketing-strategy-hero.png") center / cover;
  background:
    linear-gradient(145deg, rgba(23, 36, 51, 0.92), rgba(17, 27, 38, 0.82)),
    image-set(url("assets/marketing-strategy-hero.webp") type("image/webp"), url("assets/marketing-strategy-hero.png") type("image/png")) center / cover;
}

.portfolio-placeholder span {
  display: grid;
  width: 130px;
  height: 130px;
  place-items: center;
  border: 1px solid rgba(234, 216, 173, 0.5);
  border-radius: 50%;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.results {
  background: var(--navy);
  color: white;
}

.results-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: start;
}

.results-grid h2 {
  margin-bottom: 16px;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.8vw, 3.35rem);
}

.results-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.results-list li {
  padding: 18px 20px;
  border: 1px solid rgba(234, 216, 173, 0.24);
  border-radius: var(--radius);
  color: #efe7d7;
  background: rgba(255, 255, 255, 0.06);
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.background-box {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(198, 164, 93, 0.32);
  border-radius: var(--radius);
  background: var(--paper);
}

.background-box h3 {
  margin-bottom: 16px;
  color: var(--navy);
}

.background-box .expertise-list {
  margin-top: 0;
}

.education-note {
  margin-top: 24px;
  max-width: 760px;
}

.about-button {
  margin-top: 10px;
}

.contact-details p {
  display: grid;
  gap: 2px;
}

.contact-details span {
  color: var(--navy);
  font-weight: 900;
}

.site-footer {
  padding: 44px 0;
}

.footer-grid {
  display: grid;
  gap: 24px;
  justify-items: center;
  text-align: center;
}

.footer-grid p {
  margin: 0;
}

.footer-name {
  margin-bottom: 10px !important;
  color: white;
  font-weight: 900;
}

.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-grid a {
  color: white;
  font-weight: 850;
}

.footer-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-linkedin span {
  background: var(--gold);
  color: var(--navy);
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(234, 216, 173, 0.18);
}

@media (max-width: 1240px) {
  .service-columns,
  .portfolio-grid,
  .results-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .footer-grid,
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }
}

.testimonial-grid {
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 30px;
  border-color: rgba(23, 36, 51, 0.12);
  background: rgba(255, 253, 250, 0.86);
}

.testimonial-stars {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.testimonial-card blockquote {
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.42;
}

.testimonial-card figcaption {
  margin-top: auto;
  color: var(--bronze);
  font-size: 0.94rem;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.professional-highlights-card {
  border-color: rgba(198, 164, 93, 0.45);
  background:
    linear-gradient(145deg, rgba(255, 253, 250, 0.96), rgba(241, 236, 227, 0.94));
  box-shadow: var(--shadow);
}

.professional-highlights-card h3 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 1.2rem;
}

.highlight-label {
  margin-bottom: 10px;
  color: var(--bronze);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.professional-highlights-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding-left: 20px;
}

.professional-highlights-card li {
  color: #3e464d;
  font-size: 0.96rem;
  line-height: 1.5;
}

@media (max-width: 1040px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .professional-highlights-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .professional-highlights-card {
    grid-column: auto;
  }

  .testimonial-card {
    width: 100%;
    padding: 26px;
  }
}

.testimonial-grid {
  align-items: stretch;
}

figure.testimonial-card {
  justify-content: center;
}

figure.testimonial-card blockquote {
  margin-bottom: 0;
  font-size: clamp(1rem, 1.1vw, 1.14rem);
  line-height: 1.48;
}

figure.testimonial-card figcaption {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(198, 164, 93, 0.34);
}

.testimonial-stars {
  margin-bottom: 16px;
}

.professional-highlights-card {
  justify-content: flex-start;
}

@media (max-width: 1240px) and (min-width: 681px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .professional-highlights-card {
    grid-column: auto;
  }

  figure.testimonial-card blockquote {
    font-size: clamp(1rem, 1.4vw, 1.12rem);
  }
}

@media (max-width: 680px) {
  figure.testimonial-card {
    justify-content: flex-start;
  }

  figure.testimonial-card figcaption {
    margin-top: 26px;
  }
}

.testimonial-grid {
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.testimonial-card {
  height: 100%;
  justify-content: flex-start;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.testimonial-card:hover {
  border-color: rgba(198, 164, 93, 0.52);
  box-shadow: 0 22px 54px rgba(23, 36, 51, 0.13);
  transform: translateY(-4px);
}

figure.testimonial-card {
  justify-content: space-between;
}

figure.testimonial-card .testimonial-stars {
  flex: 0 0 auto;
}

figure.testimonial-card blockquote {
  flex: 1 1 auto;
  margin: 0;
  font-size: clamp(0.98rem, 1vw, 1.1rem);
  line-height: 1.52;
}

figure.testimonial-card figcaption {
  flex: 0 0 auto;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(198, 164, 93, 0.36);
}

.professional-highlights-card {
  justify-content: flex-start;
}

.professional-highlights-card h3 {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 24px;
  padding-bottom: 12px;
  font-size: clamp(1.28rem, 1.6vw, 1.5rem);
  line-height: 1.15;
}

.professional-highlights-card h3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 58px;
  height: 2px;
  content: "";
  background: var(--gold);
}

.professional-highlights-card ul {
  gap: 10px;
}

.professional-highlights-card li {
  font-size: 0.94rem;
  line-height: 1.45;
}

@media (max-width: 1240px) and (min-width: 681px) {
  figure.testimonial-card blockquote {
    font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  }
}

@media (max-width: 680px) {
  .testimonial-grid {
    grid-auto-rows: auto;
  }

  .testimonial-card {
    height: auto;
  }

  figure.testimonial-card {
    justify-content: flex-start;
  }

  figure.testimonial-card blockquote {
    flex: 0 1 auto;
  }
}

.contact-panel {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 44px;
}

.trust-statement {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 253, 250, 0.62);
  color: var(--navy) !important;
  font-weight: 850;
}

.contact-form {
  gap: 13px;
  align-self: center;
}

.contact-form label {
  gap: 5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 14px;
}

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

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--navy) 50%),
    linear-gradient(135deg, var(--navy) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 52%,
    calc(100% - 13px) 52%;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.form-confirmation {
  margin: 2px 0 0;
  padding: 13px 15px;
  border: 1px solid rgba(198, 164, 93, 0.42);
  border-radius: var(--radius);
  color: var(--navy);
  background: rgba(234, 216, 173, 0.2);
  font-weight: 850;
}

.form-confirmation[hidden] {
  display: none;
}

@media (max-width: 980px) {
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-form {
    align-self: stretch;
  }
}

.brand-logo {
  flex: 0 0 auto;
  width: clamp(112px, 12vw, 170px);
  height: auto;
  object-fit: contain;
}

.hero-logo {
  width: clamp(280px, 43vw, 560px);
  height: auto;
  margin-bottom: 34px;
  filter: drop-shadow(0 14px 26px rgba(23, 36, 51, 0.12));
}

.hero-brand-line {
  margin: 0 0 22px;
  color: var(--bronze);
  font-size: clamp(0.92rem, 1.35vw, 1.25rem);
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-brand-mark {
  width: 116px;
  height: auto;
  margin-bottom: 18px;
  opacity: 0.9;
}

.contact-logo {
  width: 132px;
  height: auto;
  margin-bottom: 18px;
}

.footer-brand {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.footer-logo {
  width: 150px;
  height: auto;
  margin-bottom: 4px;
}

.contact-details p:first-child strong {
  color: var(--navy);
  font-size: 1rem;
}

@media (max-width: 680px) {
  .brand-logo {
    width: 92px;
    height: auto;
  }

  .hero-logo {
    width: min(82vw, 330px);
    margin-bottom: 18px;
  }

  .section-brand-mark,
  .contact-logo,
  .footer-logo {
    width: 118px;
  }
}

.hero {
  min-height: 760px;
  padding: 150px 0 96px;
  background: var(--paper);
}

.hero-media {
  left: 45%;
  background-position: center right;
  opacity: 0.46;
  filter: blur(3px);
  transform: scale(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(251, 248, 241, 1) 0%, rgba(251, 248, 241, 0.98) 42%, rgba(251, 248, 241, 0.72) 70%, rgba(251, 248, 241, 0.38) 100%),
    linear-gradient(0deg, rgba(251, 248, 241, 0.96), rgba(251, 248, 241, 0.68));
}

.hero-content {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.hero-logo {
  width: clamp(150px, 18vw, 230px);
  margin: 0 auto 28px;
}

.hero h1 {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(2.25rem, 4.5vw, 4.05rem);
}

.hero-copy {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(1.05rem, 1.45vw, 1.2rem);
}

.hero .eyebrow {
  color: var(--bronze);
}

.hero-actions {
  justify-content: center;
}

.founder-line {
  width: fit-content;
  max-width: 100%;
  margin: 28px auto 0;
  padding: 0;
  border-left: 0;
  color: var(--muted);
}

.founder-line::before {
  display: block;
  width: 170px;
  height: 1px;
  margin: 0 auto 18px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

@media (max-width: 680px) {
  .hero {
    min-height: auto;
    padding: 118px 0 72px;
  }

  .hero-media {
    left: 0;
    opacity: 0.22;
  }

  .hero-logo {
    width: 146px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }
}

/* Final brand-polish layer: spacing, hierarchy, and responsive consistency. */
.section {
  padding: clamp(72px, 8vw, 108px) 0;
}

.site-header {
  background: rgba(251, 248, 241, 0.94);
}

.brand {
  flex-shrink: 1;
}

.brand span {
  min-width: 0;
}

.brand-logo {
  width: clamp(108px, 11vw, 158px);
}

.brand strong {
  color: var(--navy);
  font-weight: 900;
}

.site-nav a {
  color: var(--navy);
  font-weight: 650;
}

.hero {
  border-bottom: 1px solid rgba(23, 36, 51, 0.08);
}

.hero-logo {
  width: clamp(148px, 16vw, 218px);
}

.hero h1 {
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-copy {
  color: #4d5358;
  line-height: 1.75;
}

.service-panel,
.portfolio-card,
.package-card,
.testimonial-card,
.contact-panel,
.background-box {
  border-color: rgba(23, 36, 51, 0.12);
}

.service-panel,
.portfolio-card,
.package-card,
.testimonial-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-panel:hover,
.portfolio-card:hover,
.package-card:hover {
  border-color: rgba(198, 164, 93, 0.42);
  box-shadow: 0 20px 48px rgba(23, 36, 51, 0.11);
  transform: translateY(-3px);
}

.section-heading,
.split-heading {
  margin-bottom: clamp(32px, 4vw, 48px);
}

.section-heading h2,
.split-heading h2,
.about-grid h2,
.contact-panel h2,
.results-grid h2 {
  letter-spacing: 0;
}

@media (max-width: 1240px) {
  .site-header {
    gap: 16px;
  }

  .brand-logo {
    width: 104px;
  }
}

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

  .brand-logo {
    width: 88px;
  }

  .hero-logo {
    width: 142px;
  }

  .brand strong {
    max-width: 230px;
  }

  .hero-copy {
    line-height: 1.65;
  }
}

.service-columns {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1180px) {
  .service-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .service-columns {
    grid-template-columns: 1fr;
  }
}

/* Production testimonial polish */
.testimonial-grid {
  gap: clamp(24px, 2.4vw, 34px);
}

figure.testimonial-card {
  position: relative;
  overflow: hidden;
  padding-top: 60px;
}

figure.testimonial-card::before {
  position: absolute;
  top: 22px;
  left: 28px;
  content: "\201C";
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.35rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.72;
}

figure.testimonial-card .testimonial-stars {
  display: none;
}

.testimonial-card:hover {
  border-color: rgba(198, 164, 93, 0.58);
  box-shadow: 0 24px 56px rgba(23, 36, 51, 0.14);
  transform: translateY(-4px);
}

.professional-highlights-card {
  border-color: rgba(198, 164, 93, 0.5);
}

@media (max-width: 680px) {
  .testimonial-grid {
    gap: 22px;
  }

  figure.testimonial-card {
    padding-top: 56px;
  }

  figure.testimonial-card::before {
    top: 20px;
    left: 24px;
    font-size: 3rem;
  }
}
