/* SRQ Socials one-page website
   Edit colors, spacing, and section styles here. */

:root {
  --navy: #0b1d2d;
  --teal: #7eb9bf;
  --gold: #f2b86c;
  --white: #ffffff;
  --mist: #d6e6ea;
  --cta-blue: #0b1d2d;
  --cta-blue-hover: #071521;
  --ink-soft: #3f4b55;
  --line: rgba(11, 29, 45, 0.14);
  --shadow: 0 24px 60px rgba(11, 29, 45, 0.12);
  --soft-shadow: 0 16px 42px rgba(11, 29, 45, 0.08);
  --display: "Didot LP", "Didot", "Bodoni 72 Display", "Bodoni 72", "Libre Bodoni", Georgia, serif;
  --serif: "Cormorant Garamond", Garamond, Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--navy);
  background: var(--white);
  font-family: var(--sans);
  line-height: 1.7;
}

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

a {
  color: inherit;
}

.hero-copy,
.section-heading,
.section-copy,
.service-card,
.approach-card,
.testimonial-card,
.portfolio-card,
.contact-copy,
.contact-form {
  min-width: 0;
}

h1,
h2,
h3,
p,
li,
blockquote,
figcaption,
a,
label,
input,
textarea,
button {
  overflow-wrap: anywhere;
}

input,
textarea,
button {
  min-width: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  min-height: 88px;
  padding: 10px 72px 10px 78px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(214, 230, 234, 0.8);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-block;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-mark img {
  width: 115px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(34px, 3.1vw, 56px);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  text-decoration: none;
  color: rgba(11, 29, 45, 0.74);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-links a:not(.nav-button)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: #c98735;
  transform: translateX(-50%);
  transition: width 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--navy);
}

.nav-links a:not(.nav-button):hover::after,
.nav-links a:not(.nav-button):focus-visible::after,
.nav-links a:not(.nav-button)[aria-current="page"]::after {
  width: 100%;
}

.nav-links .nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  color: var(--white);
  background: var(--cta-blue);
  border: 1px solid var(--cta-blue);
  border-radius: 6px;
}

.nav-links .nav-button:hover,
.nav-links .nav-button:focus-visible {
  color: var(--white);
  background: var(--cta-blue-hover);
  border-color: var(--cta-blue-hover);
}

.section-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 124px) 0;
}

main > .section-shell:first-child,
main > .approach-section:first-child .section-shell {
  padding-top: clamp(38px, 5vw, 68px);
}

main > .contact-section:first-child {
  margin-top: clamp(16px, 3vw, 32px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(440px, 0.96fr) minmax(500px, 1.04fr);
  gap: clamp(46px, 5.8vw, 92px);
  align-items: center;
  width: min(1500px, calc(100% - 52px));
  min-height: min(790px, calc(100vh - 74px));
  padding-top: clamp(28px, 4vw, 52px);
  padding-bottom: clamp(72px, 8vw, 122px);
}

.hero-copy {
  max-width: 720px;
  justify-self: start;
  text-align: left;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  color: #c98735;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::after {
  content: "";
  display: block;
  width: 84px;
  height: 1px;
  margin: 16px 0 0;
  background: #c98735;
}

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

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

h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: clamp(2.55rem, 4.6vw, 4.35rem);
  font-weight: 500;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 42px;
  font-size: clamp(3.05rem, 4.9vw, 5.15rem);
  line-height: 1;
}

h2 {
  max-width: 760px;
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4.3vw, 3.95rem);
  font-weight: 500;
}

h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: clamp(1.28rem, 1.8vw, 1.52rem);
  font-weight: 600;
}

.hero-subtitle,
.section-copy,
.contact-section p {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

.hero-subtitle {
  max-width: 650px;
  margin-bottom: 36px;
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  flex-wrap: wrap;
}

.hero-location {
  max-width: 620px;
  margin: 34px 0 0;
  color: rgba(11, 29, 45, 0.64);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.55;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  max-width: 100%;
  padding: 0 22px;
  color: var(--white);
  background: var(--cta-blue);
  border: 1px solid var(--cta-blue);
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--cta-blue-hover);
  border-color: var(--cta-blue-hover);
  transform: translateY(-2px);
}

.hero .button {
  min-height: 54px;
  padding: 0 32px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.hero-visual {
  margin: 0;
  position: relative;
  isolation: isolate;
  aspect-ratio: 1.04 / 1;
  min-height: 0;
  overflow: visible;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -34px -28px 30px 38px;
  z-index: -1;
  background: rgba(214, 230, 234, 0.58);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  border: 8px solid var(--white);
  box-shadow: 0 22px 54px rgba(11, 29, 45, 0.11);
  object-fit: cover;
  object-position: 50% 52%;
  filter: saturate(0.92) contrast(0.98) brightness(1.04);
}

.split-section {
  position: relative;
  border: 0;
  overflow: hidden;
  box-shadow: none;
}

#about {
  width: min(1520px, calc(100% - 40px));
  max-width: none;
  min-height: auto;
  margin: 0 auto;
  padding: 0;
  background: var(--white);
}

#about::before,
#about::after {
  display: none;
}

.split-section > * {
  position: relative;
  z-index: 1;
}

.about-panel {
  position: relative;
  width: 100%;
  min-height: clamp(340px, 28vw, 430px);
  margin: 0;
  padding: clamp(16px, 2.2vw, 28px) clamp(28px, 4.5vw, 64px) clamp(32px, 4.6vw, 62px);
  display: block;
  overflow: hidden;
  background: var(--white);
  border-radius: 0 0 58px 0;
  box-shadow: none;
}

.about-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  padding-left: 0;
}

.about-heading {
  position: relative;
  display: grid;
  width: 100%;
  min-height: auto;
  align-content: start;
  justify-items: start;
  overflow: visible;
  text-align: left;
  padding-top: 0;
}

.about-heading .eyebrow,
.about-heading h1 {
  position: relative;
  z-index: 1;
}

.about-heading h1 {
  width: auto;
  max-width: 980px;
  margin-bottom: 16px;
  color: #0b3b3f;
  font-size: clamp(3.1rem, 4.05vw, 4.35rem);
  word-break: normal;
  overflow-wrap: normal;
  line-height: 0.9;
  text-align: left;
  white-space: normal;
}

.about-heading h1 span {
  display: block;
  font: inherit;
  font-size: 1em;
  line-height: inherit;
  white-space: nowrap;
}

.about-heading .eyebrow {
  margin-bottom: 12px;
  color: #c98735;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
}

#about .section-copy {
  max-width: 560px;
  margin-top: 0;
  padding-top: 0;
  color: var(--navy);
  font-size: clamp(0.84rem, 0.95vw, 0.98rem);
  line-height: 1.62;
  text-align: left;
  justify-self: start;
}

.about-visual {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: min(66%, 900px);
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: var(--white);
  isolation: isolate;
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.96) 12%, rgba(255, 255, 255, 0.62) 34%, rgba(255, 255, 255, 0) 72%),
    linear-gradient(180deg, var(--white) 0%, rgba(255, 255, 255, 0) 14%, rgba(255, 255, 255, 0) 82%, var(--white) 100%),
    radial-gradient(circle at 0% 50%, var(--white) 0 22%, rgba(255, 255, 255, 0.72) 44%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 48% 50%;
  opacity: 0.7;
  filter: saturate(0.62) contrast(0.88) brightness(1.18);
  transform: scaleX(-1);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 21%, #000 96%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 5%, #000 90%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 21%, #000 96%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 5%, #000 90%, transparent 100%);
  mask-composite: intersect;
}

#about .section-copy p {
  margin-bottom: 14px;
}

.about-me-section {
  display: grid;
  grid-template-columns: minmax(250px, 330px) minmax(0, 640px);
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
  justify-content: center;
  width: min(1120px, calc(100% - 40px));
  padding-top: 0;
  padding-bottom: clamp(72px, 8vw, 112px);
}

.about-me-copy {
  max-width: 640px;
}

.about-me-copy .eyebrow {
  color: #c98735;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  margin-bottom: clamp(28px, 3vw, 40px);
  text-transform: uppercase;
}

.about-me-copy .eyebrow::after {
  width: 92px;
  height: 1px;
  margin-top: 16px;
  background: #c98735;
}

.about-me-copy p {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(0.84rem, 0.95vw, 0.98rem);
  line-height: 1.62;
}

.about-me-actions {
  margin-top: clamp(24px, 3vw, 36px);
}

.about-me-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 29, 45, 0.2);
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(11, 29, 45, 0.1);
}

.about-me-image {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1;
}

.about-me-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  transform: none;
}

.about-me-card-copy {
  padding: clamp(18px, 2.4vw, 28px);
  text-align: center;
}

.about-me-card-copy h3 {
  margin-bottom: 4px;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.5vw, 2.35rem);
  font-weight: 400;
  line-height: 1.05;
}

.about-me-card-copy p {
  margin-bottom: 0;
  color: #b88925;
  font-size: clamp(0.95rem, 1.3vw, 1.14rem);
  line-height: 1.35;
}

.about-me-card-copy a {
  color: rgba(11, 29, 45, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  text-decoration: none;
}

.about-me-card-copy a:hover,
.about-me-card-copy a:focus-visible {
  color: #b88925;
}


.section-copy p:last-child,
.contact-section p:last-child {
  margin-bottom: 0;
}

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

#services {
  position: relative;
}

main > #services:first-child {
  padding-top: 2rem;
}

#services .section-heading {
  max-width: 780px;
}

#services .section-heading h2 {
  max-width: 760px;
}

#services .section-heading .eyebrow {
  color: #c98735;
}

#services .section-heading .eyebrow::after {
  content: "";
  display: block;
  width: 84px;
  height: 1px;
  margin: 16px 0 0;
  background: #c98735;
}

.section-heading p {
  max-width: 680px;
  color: var(--ink-soft);
}

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

.service-card,
.approach-card {
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 185px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
  border: 1px solid rgba(214, 230, 234, 0.8);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(11, 29, 45, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(11, 29, 45, 0.1);
}

.service-card-heading {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 16px;
}

.service-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  color: #c98735;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon svg circle:nth-child(n + 2),
.service-icon svg path:nth-child(n + 3) {
  color: var(--teal);
}

.service-card h3 {
  margin-bottom: 8px;
}

.service-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.service-card p,
.approach-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.58;
}

.approach-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(214, 230, 234, 0.5), rgba(255, 255, 255, 0.9)),
    var(--mist);
  border-top: 1px solid rgba(214, 230, 234, 0.72);
  border-bottom: 1px solid rgba(214, 230, 234, 0.72);
}

.approach-section .section-shell {
  width: min(1180px, calc(100% - 40px));
}

.approach-section .section-heading {
  display: grid;
  justify-items: center;
  max-width: 820px;
  margin: 0 auto clamp(42px, 5vw, 64px);
  text-align: center;
}

.approach-section .section-heading p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(11, 29, 45, 0.62);
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.68;
}

.approach-section .section-heading h2 {
  max-width: 780px;
  color: #0b1d2d;
  font-size: clamp(2.95rem, 5.2vw, 5rem);
  font-weight: 500;
  line-height: 0.98;
}

.approach-section .section-heading .eyebrow::after {
  content: "";
  display: block;
  width: 84px;
  height: 1px;
  margin: 16px 0 0;
  background: #c98735;
}

.approach-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(20px, 2.6vw, 32px);
}

.approach-card {
  position: relative;
  grid-column: span 2;
  min-height: 270px;
  padding: clamp(28px, 3.2vw, 38px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(214, 230, 234, 0.92);
  border-radius: 22px;
  box-shadow: 0 20px 48px rgba(11, 29, 45, 0.08);
}

.approach-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(201, 135, 53, 0.28), rgba(201, 135, 53, 0.78), rgba(126, 185, 191, 0.4));
}

.approach-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.approach-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.approach-section .eyebrow {
  color: #c98735;
}

.approach-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 26px;
  color: #0b1d2d !important;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(201, 135, 53, 0.46);
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 1.25rem !important;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}

.approach-card h3 {
  margin-bottom: 14px;
  color: #102f48;
  font-size: clamp(1.72rem, 2.35vw, 2.18rem);
  font-weight: 500;
  line-height: 1;
}

.approach-card p:not(.approach-label) {
  color: rgba(11, 29, 45, 0.62);
  font-size: 0.92rem;
  line-height: 1.66;
}

.portfolio-section {
  width: min(1440px, calc(100% - 32px));
  padding-top: clamp(78px, 9vw, 116px);
  padding-bottom: clamp(90px, 10vw, 132px);
  text-align: left;
}

.portfolio-intro {
  display: grid;
  justify-items: start;
  gap: 12px;
  max-width: 920px;
  margin: 0 0 clamp(38px, 5vw, 58px);
}

.portfolio-intro .eyebrow {
  margin-bottom: 0;
  color: #c98735;
}

.portfolio-intro .eyebrow::after {
  content: "";
  display: block;
  width: 84px;
  height: 1px;
  margin: 16px 0 0;
  background: #c98735;
}

.portfolio-intro h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(2.8rem, 4.4vw, 4.6rem);
  line-height: 0.96;
}

.portfolio-intro p:not(.eyebrow) {
  max-width: 790px;
  margin-bottom: 0;
  color: rgba(11, 29, 45, 0.62);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.6;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  align-items: start;
}

.portfolio-card {
  display: grid;
  gap: clamp(22px, 2.4vw, 32px);
  min-width: 0;
}

.portfolio-card-image {
  position: relative;
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(201, 135, 53, 0.42);
  border-radius: 22px;
  box-sizing: border-box;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(201, 135, 53, 0.1);
}

.portfolio-card-image img {
  width: 100%;
  height: auto;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  box-sizing: border-box;
  object-position: center top;
  filter: saturate(0.98) contrast(0.98) brightness(1.02);
}

.portfolio-card-image::after {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 2;
  border: 2px solid rgba(201, 135, 53, 0.58);
  border-radius: 14px;
  pointer-events: none;
}

.portfolio-ai-label {
  position: absolute;
  left: 50%;
  bottom: calc(16px + 2.7%);
  z-index: 1;
  display: grid;
  width: 23%;
  min-height: 4.8%;
  align-content: center;
  justify-items: center;
  padding: 0;
  color: #071c33;
  background: transparent;
  font-family: var(--sans);
  font-size: clamp(0.36rem, 0.54vw, 0.5rem);
  font-weight: 500;
  letter-spacing: 0.035em;
  line-height: 1.28;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
  pointer-events: none;
}

.portfolio-card-caption {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 0 clamp(8px, 1.4vw, 18px);
}

.portfolio-card-caption h3 {
  margin-bottom: 0;
  color: #102f48;
  font-size: clamp(1.45rem, 2.1vw, 2.15rem);
  line-height: 1.05;
}

.portfolio-card-caption p {
  max-width: 340px;
  margin-bottom: 0;
  color: rgba(11, 29, 45, 0.58);
  font-size: 0.95rem;
  line-height: 1.55;
  text-align: center;
}

.portfolio-card-caption::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin-top: 6px;
  background: #c98735;
}

.testimonials-section {
  width: min(1520px, calc(100% - 40px));
  max-width: none;
  padding-top: clamp(16px, 2.2vw, 28px);
  padding-bottom: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
    var(--white);
}

.testimonials-section .eyebrow {
  color: #c98735;
}

.testimonials-intro {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: min(1280px, calc(100% - 40px));
  margin: 0 auto clamp(18px, 2.6vw, 34px);
  text-align: center;
}

.testimonials-intro .eyebrow {
  margin-bottom: 0;
  color: #c98735;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
}

.testimonials-intro .eyebrow::after {
  display: block;
}

.testimonials-intro h1 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: clamp(3rem, 5vw, 5.25rem);
  font-weight: 500;
  line-height: 0.9;
  white-space: nowrap;
}

.testimonials-intro p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(11, 29, 45, 0.62);
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  line-height: 1.55;
}

.testimonial-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(360px, 1.15fr) minmax(250px, 1fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: stretch;
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(18px, 2.8vw, 34px) clamp(24px, 4vw, 56px) clamp(58px, 6vw, 86px);
}

.testimonial-showcase::before {
  content: "";
  position: absolute;
  right: -8%;
  bottom: 0;
  z-index: 0;
  width: 78%;
  height: 72%;
  background: linear-gradient(155deg, rgba(214, 230, 234, 0.54), rgba(214, 230, 234, 0.18));
  clip-path: polygon(15% 24%, 100% 0, 100% 100%, 0 100%);
  opacity: 0.5;
}

.kind-card {
  position: relative;
  z-index: 1;
  margin: 0;
  display: grid;
  align-content: start;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(188, 148, 111, 0.46);
  box-shadow: 0 18px 48px rgba(11, 29, 45, 0.08);
}

.kind-card-featured {
  min-height: clamp(360px, 30vw, 440px);
  padding: clamp(44px, 5vw, 66px);
  border-color: rgba(11, 29, 45, 0.2);
}

.kind-card-side {
  min-height: clamp(360px, 30vw, 440px);
  padding: clamp(32px, 3.4vw, 48px);
}

.kind-card-right {
  border-color: rgba(53, 103, 135, 0.46);
}

.kind-card blockquote {
  margin: 0 0 clamp(28px, 3vw, 42px);
  color: rgba(11, 29, 45, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.24rem);
  line-height: 1.72;
}

.kind-card-featured blockquote {
  font-size: clamp(1.12rem, 1.5vw, 1.36rem);
  line-height: 1.62;
}

.kind-card blockquote::before {
  content: "“";
  display: block;
  margin-bottom: 16px;
  color: rgba(53, 103, 135, 0.58);
  font-family: var(--serif);
  font-size: clamp(4rem, 6vw, 6rem);
  line-height: 0.5;
}

.kind-card-left blockquote::before {
  color: rgba(157, 120, 87, 0.68);
}

.kind-card figcaption {
  align-self: end;
  display: grid;
  gap: 8px;
  color: var(--navy);
}

.testimonial-toggle {
  width: max-content;
  margin: -18px 0 clamp(10px, 1.4vw, 16px);
  padding: 0;
  color: #c98735;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.testimonial-toggle:hover,
.testimonial-toggle:focus-visible {
  color: var(--navy);
}

.kind-card figcaption::before {
  display: none;
}

.kind-card-left figcaption::before {
  display: none;
}

.kind-card figcaption strong {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.kind-card figcaption span {
  color: rgba(11, 29, 45, 0.66);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.45;
}

.testimonial-cta {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto clamp(64px, 7vw, 96px);
  padding: clamp(28px, 3vw, 42px) clamp(32px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(53, 103, 135, 0.46);
  box-shadow: 0 14px 34px rgba(11, 29, 45, 0.06);
}

.testimonial-cta p {
  margin-bottom: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.42rem, 2.35vw, 2.45rem);
  line-height: 1.14;
  text-align: center;
}

.testimonial-cta .button {
  min-width: 220px;
  justify-content: center;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(310px, 0.92fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
  width: min(1040px, calc(100% - 40px));
  margin-top: clamp(32px, 5vw, 64px);
  margin-bottom: clamp(32px, 5vw, 64px);
  padding: clamp(32px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(126, 185, 191, 0.8), rgba(214, 230, 234, 0.9)),
    var(--mist);
}

.contact-copy {
  color: var(--navy);
  padding-top: 6px;
}

.contact-copy .eyebrow {
  color: #c98735;
}

.contact-copy h2,
.contact-title {
  position: relative;
  margin-bottom: 32px;
  padding-bottom: 18px;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(3.1rem, 5.6vw, 4.75rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  text-shadow: 0 10px 26px rgba(255, 255, 255, 0.18);
}

.contact-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 96px;
  height: 1px;
  background: linear-gradient(90deg, #c98735, rgba(201, 135, 53, 0));
}

.contact-copy p {
  color: var(--navy);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding-left: 20px;
  color: var(--navy);
  font-weight: 600;
}

.contact-note {
  display: grid;
  gap: 6px;
  margin: 28px 0 0;
  color: var(--navy) !important;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.32;
}

.contact-note p {
  margin: 0;
  color: inherit;
}

.contact-note p:first-child {
  margin-bottom: 4px;
  font-weight: 700;
}

.contact-note a {
  font-weight: 700;
  text-decoration-color: rgba(11, 29, 45, 0.34);
  text-underline-offset: 4px;
}

.contact-brand {
  display: grid;
  justify-items: start;
  gap: 18px;
  margin-top: 28px;
}

.contact-brand img {
  width: clamp(150px, 20vw, 220px);
  height: auto;
  mix-blend-mode: multiply;
}

.contact-form {
  display: grid;
  gap: 11px;
  padding: clamp(24px, 3.4vw, 36px);
  background: var(--white);
  border-top: 4px solid var(--navy);
  box-shadow: 0 18px 50px rgba(11, 29, 45, 0.11);
}

.contact-form h3 {
  margin-bottom: 6px;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
}

.contact-form label {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--navy);
  background: #fbfcfc;
  border: 1px solid rgba(11, 29, 45, 0.16);
  border-radius: 0;
  font: inherit;
  font-size: 1rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(126, 185, 191, 0.55);
  outline-offset: 2px;
  border-color: var(--teal);
}

.form-button {
  width: 100%;
  margin-top: 8px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: rgba(11, 29, 45, 0.72);
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
}

.site-footer p {
  margin: 0;
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(201, 135, 53, 0.34);
  border-radius: 999px;
  text-decoration: none;
  opacity: 0.92;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  opacity: 1;
  transform: translateY(-2px);
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.contact-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(201, 135, 53, 0.38);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(11, 29, 45, 0.07);
  text-decoration: none;
  opacity: 0.94;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.contact-socials svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-socials a:nth-child(2) svg {
  fill: currentColor;
  stroke: none;
}

.contact-socials a:hover,
.contact-socials a:focus-visible {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(11, 29, 45, 0.15);
}

.site-footer .back-to-top {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 1180px) {
  .site-header {
    gap: 24px;
    min-height: 74px;
    padding: 10px 34px;
  }

  .brand-mark img {
    width: 88px;
  }

  .nav-links {
    gap: 18px 26px;
    font-size: 0.74rem;
  }

  .nav-links .nav-button {
    min-height: 52px;
    padding: 0 22px;
  }
}

@media (max-width: 880px) {
  .site-header {
    align-items: center;
    flex-direction: column;
    gap: 8px;
    min-height: auto;
    padding: 10px clamp(16px, 5vw, 32px);
  }

  .brand-mark img {
    width: clamp(59px, 15vw, 75px);
  }

  .nav-links {
    width: 100%;
    justify-content: center;
    gap: 8px 16px;
    overflow-x: visible;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
  }

  .nav-links .nav-button {
    min-height: 40px;
    padding: 0 16px;
  }

  .section-shell {
    width: min(100% - 36px, 1120px);
    padding: clamp(54px, 8vw, 82px) 0;
  }

  .hero,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .split-section {
    gap: 34px;
  }

  #about {
    min-height: auto;
    padding: 28px 0 42px;
  }

  .about-panel {
    width: 100%;
    min-height: auto;
    display: block;
    padding: 32px clamp(20px, 6vw, 44px) 260px;
    border-radius: 0 0 42px 0;
  }

  .about-content {
    max-width: 720px;
    padding: 0;
  }

  #about .section-copy {
    padding-top: 0;
  }

  #about .section-copy,
  .about-heading h1 {
    max-width: 100%;
  }

  .about-heading {
    padding-top: 0;
  }

  .hero {
    min-height: auto;
    gap: 44px;
    width: min(100% - 36px, 1120px);
    padding-top: 32px;
    padding-bottom: 66px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-visual {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .hero-visual::before {
    inset: -22px -14px 24px 28px;
  }

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

  .approach-card,
  .approach-card:nth-child(4),
  .approach-card:nth-child(5) {
    grid-column: auto;
  }

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

@media (max-width: 620px) {
  .section-shell {
    width: min(100% - 30px, 1120px);
    padding: 46px 0;
  }

  .nav-links {
    gap: 8px 14px;
    font-size: 0.66rem;
  }

  h1 {
    font-size: clamp(2.2rem, 9.8vw, 3.05rem);
    line-height: 1.02;
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 11vw, 3.45rem);
    line-height: 1;
    margin-bottom: 24px;
  }

  h2 {
    font-size: clamp(1.85rem, 8vw, 2.65rem);
    line-height: 1.08;
  }

  h3 {
    font-size: clamp(1.2rem, 5.4vw, 1.4rem);
  }

  .hero-subtitle,
  .section-copy,
  .contact-section p {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .button {
    width: 100%;
    min-height: 46px;
    padding: 0 18px;
  }

  .hero .button {
    min-height: 50px;
    padding: 0 22px;
  }

  .hero-location {
    margin-top: 26px;
    font-size: 0.74rem;
    line-height: 1.5;
  }

  .hero-visual {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .hero-visual::before {
    inset: -14px -8px 18px 18px;
  }

  .hero-visual img {
    object-position: 50% 54%;
  }

  #about {
    width: 100%;
    min-height: auto;
    margin: 0;
    padding: 22px 0 0;
  }

  .about-panel {
    gap: 28px;
  }

  .about-heading {
    min-height: auto;
    padding-bottom: 0;
    text-align: left;
    justify-items: start;
  }

  .about-heading h1 {
    max-width: 100%;
    font-size: clamp(2.62rem, 11.5vw, 3.8rem);
    line-height: 0.92;
    white-space: normal;
  }

  .about-heading h1 span {
    white-space: normal;
  }

  #about .section-copy {
    font-size: 0.9rem;
    text-align: left;
  }

  .about-visual {
    inset: auto 0 0 auto;
    width: 100%;
    height: 330px;
    min-height: 330px;
    border-radius: 0;
  }

  .about-visual img {
    min-height: 330px;
    object-position: 46% center;
  }

  #about .section-copy {
    font-size: 0.92rem;
    line-height: 1.56;
  }

  .about-me-section {
    grid-template-columns: 1fr;
    width: min(100% - 30px, 720px);
    gap: 34px;
    padding-top: 20px;
    padding-bottom: 58px;
  }

  .about-me-card {
    max-width: 330px;
    justify-self: center;
  }

  .about-me-copy p {
    font-size: 1rem;
  }

  .about-me-card-copy h3 {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .testimonials-section {
    width: 100%;
    padding: 28px 0 0;
  }

  .testimonials-intro {
    width: min(100% - 32px, 680px);
    margin-bottom: 12px;
  }

  .testimonials-intro h1 {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }

  .testimonials-intro p {
    font-size: 1rem;
  }

  .testimonial-showcase {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px 18px 46px;
  }

  .testimonial-showcase::before {
    right: -28%;
    width: 130%;
    height: 56%;
    opacity: 0.36;
  }

  .kind-card,
  .kind-card-featured,
  .kind-card-side {
    min-height: auto;
    padding: 28px;
    clip-path: none;
  }

  .kind-card-featured {
    order: -1;
  }

  .testimonial-cta {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
    width: min(100% - 32px, 1280px);
    margin-bottom: 52px;
    padding: 30px 24px;
  }

  .testimonial-cta p {
    text-align: center;
  }

  .testimonial-cta .button {
    min-width: 0;
  }

  .service-grid,
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card,
  .approach-card,
  .testimonial-card {
    min-height: auto;
    padding: 24px;
  }

  .portfolio-section {
    width: min(100% - 30px, 1120px);
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .portfolio-intro {
    gap: 12px;
    margin-bottom: 30px;
  }

  .portfolio-intro h2 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

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

  .portfolio-card-image {
    border-radius: 20px;
    padding: 12px;
  }

  .portfolio-card-image img {
    border-radius: 12px;
  }

  .portfolio-card-image::after {
    inset: 12px;
    border-radius: 12px;
  }

  .portfolio-ai-label {
    bottom: calc(12px + 2.7%);
  }

  .portfolio-card-caption {
    padding-bottom: 10px;
  }

  .service-card-heading {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
  }

  .service-icon {
    width: 46px;
    height: 46px;
  }

  .approach-label {
    margin-bottom: 20px;
    width: 44px;
    height: 44px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .testimonial-card blockquote {
    margin-bottom: 22px;
    font-size: clamp(1.12rem, 5vw, 1.26rem);
    text-align: left;
  }

  .testimonial-card blockquote::before,
  .testimonial-card figcaption {
    text-align: left;
  }

  .contact-section {
    width: min(100% - 24px, 1040px);
    margin-top: 26px;
    margin-bottom: 26px;
    padding: 26px 18px;
  }

  .contact-list {
    margin: 20px 0;
  }

  .contact-brand {
    justify-items: center;
    margin-top: 24px;
    text-align: center;
  }

  .contact-brand img {
    width: 168px;
  }

  .contact-socials {
    gap: 18px;
  }

  .contact-socials a {
    width: 44px;
    height: 44px;
  }

  .contact-form {
    padding: 22px 16px;
  }

  .contact-form h3 {
    font-size: clamp(1.34rem, 6.8vw, 1.66rem);
  }

  .form-button {
    margin-top: 8px;
  }

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

  .footer-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 430px) {
  .site-header {
    position: static;
  }

  .nav-links {
    justify-content: center;
    gap: 8px 12px;
  }

  .nav-links a {
    padding: 4px 0;
  }

  .nav-links .nav-button {
    min-height: 42px;
    padding: 0 18px;
  }

  .hero {
    padding-top: 28px;
    gap: 24px;
  }

  .hero-visual {
    aspect-ratio: 1 / 0.82;
  }
}

@media (max-width: 390px) {
  .section-shell {
    width: min(100% - 24px, 1120px);
  }

  h1 {
    font-size: clamp(2rem, 9.6vw, 2.36rem);
  }

  h2 {
    font-size: clamp(1.68rem, 7.6vw, 2.12rem);
  }

  .about-panel {
    padding: 28px 18px 250px;
  }

  .about-heading h1 {
    font-size: clamp(2.15rem, 10.6vw, 2.7rem);
    line-height: 0.96;
  }

  .about-heading .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .about-visual,
  .about-visual img {
    height: 285px;
    min-height: 285px;
  }

  .service-card,
  .approach-card,
  .testimonial-card {
    padding: 22px 20px;
  }

  .site-footer {
    padding: 24px 18px;
  }
}
