:root {
  --paper: #f5f2eb;
  --paper-2: #ede9df;
  --paper-3: #e6e8e5;
  --ink: #151718;
  --muted: #666b69;
  --line: rgba(21, 23, 24, .14);
  --gold: #b8944f;
  --gold-soft: #d4bc86;
  --teal: #25464e;
  --white: #fffdf8;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --container: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.75;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: var(--container); margin-inline: auto; }

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  background: rgba(245, 242, 235, .72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(21,23,24,.08);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand { width: 142px; display: block; }
.brand img { width: 100%; height: auto; opacity: .88; mix-blend-mode: multiply; }
.nav { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 32px); }
.nav a {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #383d3c;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -7px;
  width: 100%; height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s ease;
  background: var(--gold);
}
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { display: block; width: 25px; height: 1px; background: var(--ink); margin: 6px 0; }

.section { position: relative; padding: 140px 0; }
.eyebrow {
  margin: 0 0 22px;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #727672;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .98;
}
h1 { font-size: clamp(64px, 8.4vw, 122px); margin-bottom: 30px; }
h2 { font-size: clamp(52px, 6.4vw, 92px); }
h3 { font-size: clamp(38px, 4.4vw, 64px); }
em { font-family: var(--serif); font-style: italic; font-weight: 500; letter-spacing: -.03em; }
p { color: var(--muted); }
.lead { color: #282c2b; font-size: 19px; line-height: 1.65; }

.hero {
  min-height: 100svh;
  padding-top: 160px;
  padding-bottom: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 35%, rgba(178, 148, 86, .14), transparent 25%),
    radial-gradient(circle at 65% 70%, rgba(47, 83, 89, .10), transparent 28%),
    linear-gradient(120deg, #f8f6f0 0%, #f2eee6 60%, #e9ebe7 100%);
}
.hero-grid {
  min-height: calc(100svh - 230px);
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 60px;
}
.hero-copy { position: relative; z-index: 2; max-width: 690px; }
.hero-description { max-width: 560px; font-size: 16px; }
.text-link {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 20px; padding-bottom: 7px;
  border-bottom: 1px solid var(--gold);
  font-size: 11px; text-transform: uppercase; letter-spacing: .14em;
}
.text-link span { color: var(--gold); font-size: 17px; }
.hero-visual { position: relative; min-height: 650px; display: grid; place-items: center; }
.portrait-wrap {
  width: min(530px, 100%);
  position: relative;
  transform: translateY(15px);
  filter: saturate(.92) contrast(.98);
  mask-image: radial-gradient(ellipse 75% 82% at 50% 50%, #000 54%, rgba(0,0,0,.9) 69%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 75% 82% at 50% 50%, #000 54%, rgba(0,0,0,.9) 69%, transparent 100%);
}
.portrait-wrap::before {
  content: "";
  position: absolute;
  inset: 8% -10% 5% -10%;
  background: radial-gradient(circle, rgba(194,163,98,.16), transparent 66%);
  filter: blur(35px);
}
.portrait-wrap img { position: relative; width: 100%; }
.hero-caption {
  position: absolute;
  right: 0;
  bottom: 9%;
  display: flex;
  flex-direction: column;
  text-align: right;
}
.hero-caption span { font-size: 9px; letter-spacing: .2em; color: #767b78; }
.hero-caption strong { font-family: var(--serif); font-size: 22px; font-weight: 500; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-orb-one { width: 380px; height: 380px; right: 10%; top: 18%; background: radial-gradient(circle, rgba(208,184,132,.18), transparent 68%); }
.hero-orb-two { width: 500px; height: 500px; left: -15%; bottom: -30%; background: radial-gradient(circle, rgba(65,105,111,.10), transparent 68%); }
.hero-bottom {
  display: flex; justify-content: space-between;
  padding-top: 22px; border-top: 1px solid var(--line);
  font-size: 9px; letter-spacing: .18em; color: #7c817e;
}

.section-warm { background: var(--paper-2); }
.two-col { display: grid; grid-template-columns: .95fr 1.05fr; gap: 100px; align-items: start; }
.section-heading h2 { margin-bottom: 0; }
.section-copy { padding-top: 8px; max-width: 650px; }
.section-copy p { margin-bottom: 24px; }
.principles { margin-top: 46px; border-top: 1px solid var(--line); }
.principles div { display: flex; gap: 26px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.principles span { color: var(--gold); font-size: 10px; letter-spacing: .12em; }
.principles strong { font-weight: 500; }

.founder {
  overflow: hidden;
  background: #e8ebe7;
  padding: 0;
}
.founder-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 26% 46%, rgba(37,70,78,.20), transparent 28%),
    radial-gradient(circle at 74% 30%, rgba(205,174,105,.12), transparent 22%),
    linear-gradient(100deg, #dce4e1, #edf0eb 58%, #e9e5dc);
}
.founder-grid {
  min-height: 860px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
}
.founder-image {
  align-self: stretch;
  display: flex;
  align-items: end;
  position: relative;
}
.founder-image img {
  width: 115%;
  max-width: 690px;
  margin-left: -11%;
  align-self: end;
  mask-image: linear-gradient(to right, transparent 0%, #000 14%, #000 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 14%, #000 82%, transparent 100%);
}
.founder-copy { padding: 100px 0 100px 40px; max-width: 610px; }
.founder-copy h2 { margin-bottom: 4px; }
.founder-role { color: var(--gold); font-size: 11px; text-transform: uppercase; letter-spacing: .16em; margin-bottom: 28px; }
.signature-line { margin-top: 42px; display: grid; gap: 6px; }
.signature-line span { font-size: 9px; letter-spacing: .18em; color: #606764; }

.services { padding-top: 130px; background: var(--paper); }
.services-intro { max-width: 700px; margin-bottom: 100px; }
.services-intro h2 { margin-bottom: 24px; }
.services-intro > p:last-child { max-width: 560px; font-size: 17px; }

.service-card { padding: 100px 0; border-top: 1px solid var(--line); overflow: hidden; }
.service-card:last-child { border-bottom: 1px solid var(--line); }
.service-apparel { background: #f4efe7; }
.service-branding { background: #eef1ef; }
.service-lifestyle { background: #eee8dc; }
.service-grid {
  display: grid;
  grid-template-columns: 80px 1.05fr .95fr;
  gap: 45px;
  align-items: start;
}
.service-number { color: var(--gold); font-family: var(--serif); font-size: 28px; }
.service-main h3 { margin: 0; max-width: 620px; }
.service-detail { max-width: 510px; padding-top: 42px; }
.service-detail p { margin-bottom: 20px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.service-tags span {
  border: 1px solid rgba(21,23,24,.15);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #5d625f;
}

.contact {
  padding: 170px 0 190px;
  background:
    radial-gradient(circle at 50% 35%, rgba(186,155,90,.16), transparent 25%),
    linear-gradient(120deg, #f6f3ed, #e8edeb);
  text-align: center;
  overflow: hidden;
}
.contact-inner { max-width: 820px; position: relative; z-index: 1; }
.contact h2 { margin-bottom: 24px; }
.contact-copy { max-width: 600px; margin: 0 auto 40px; font-size: 16px; }
.email-link {
  display: inline-flex; gap: 14px; align-items: center;
  font-family: var(--serif); font-size: clamp(28px, 4vw, 48px);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 5px;
}
.email-link span { font-family: var(--sans); color: var(--gold); font-size: 18px; }
.contact-glow {
  position: absolute; width: 650px; height: 650px; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210,183,124,.10), transparent 66%);
  pointer-events: none;
}

.footer { background: #e1e3df; border-top: 1px solid var(--line); }
.footer-inner {
  min-height: 150px; display: grid; grid-template-columns: 1fr 1.4fr 1fr;
  gap: 30px; align-items: center;
}
.footer-brand { width: 120px; }
.footer-brand img { opacity: .72; mix-blend-mode: multiply; }
.footer p { margin: 0; font-size: 10px; color: #666b68; }
.footer p:last-child { text-align: right; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .14s; }

@media (max-width: 900px) {
  :root { --container: min(100% - 36px, 700px); }
  .header-inner { min-height: 72px; }
  .menu-toggle { display: block; z-index: 2; }
  .nav {
    position: fixed; inset: 72px 0 auto;
    display: grid; gap: 0; padding: 14px 18px 24px;
    background: rgba(245,242,235,.97); backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-140%); transition: transform .35s ease;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: 12px 0; font-size: 11px; }
  .hero { padding-top: 120px; }
  .hero-grid, .two-col, .founder-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; }
  .hero-copy { padding-top: 30px; }
  .hero-visual { min-height: auto; margin-top: 10px; }
  .portrait-wrap { width: min(520px, 94%); }
  .hero-caption { right: 4%; bottom: 5%; }
  .hero-bottom { margin-top: 30px; gap: 12px; }
  .two-col { gap: 50px; }
  .founder-grid { min-height: auto; }
  .founder-image { order: 2; }
  .founder-image img { width: 108%; margin-left: -4%; }
  .founder-copy { order: 1; padding: 110px 0 40px; }
  .service-grid { grid-template-columns: 55px 1fr; gap: 20px; }
  .service-detail { grid-column: 2; padding-top: 0; }
  .footer-inner { grid-template-columns: 1fr; padding: 35px 0; gap: 18px; }
  .footer p:last-child { text-align: left; }
}

@media (max-width: 560px) {
  :root { --container: calc(100% - 30px); }
  .section { padding: 100px 0; }
  h1 { font-size: clamp(54px, 16vw, 80px); }
  h2 { font-size: clamp(48px, 14vw, 66px); }
  .hero { padding-bottom: 24px; }
  .hero-description { font-size: 14px; }
  .hero-bottom { display: grid; grid-template-columns: 1fr 1fr; font-size: 8px; }
  .hero-bottom span:last-child { grid-column: 1 / -1; }
  .service-card { padding: 72px 0; }
  .service-grid { grid-template-columns: 40px 1fr; }
  .service-number { font-size: 22px; }
  .service-detail { grid-column: 2; }
  .email-link { font-size: 28px; }
  .founder-copy { padding-top: 85px; }
}


/* ===== V2 RESPONSIVE REFINEMENTS ===== */

/* Hero is intentionally text-led: no founder image in the opening section. */
.hero-grid {
  display: block;
  min-height: calc(100svh - 230px);
  padding-top: 10vh;
}
.hero-copy {
  max-width: 940px;
}
.hero-copy h1 {
  max-width: 980px;
  text-wrap: balance;
}
.hero-description {
  max-width: 700px;
}
.hero-bottom {
  margin-top: 8vh;
}

/* Subtle founder portrait — present, but never dominant. */
.founder-image img {
  width: 82%;
  max-width: 520px;
  margin-left: 0;
}

/* Keep the service introduction compact and editorial. */
.services-intro h2 {
  max-width: 900px;
  text-wrap: balance;
}

/* Smaller, quieter footer. */
.footer-inner {
  min-height: 88px;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
}
.footer-logo {
  width: 82px;
  opacity: .68;
  mix-blend-mode: multiply;
}

/* ---------- TABLET ---------- */
@media (max-width: 1024px) {
  :root {
    --container: min(100% - 48px, 900px);
  }

  .header-inner {
    min-height: 76px;
  }

  .nav {
    gap: 17px;
  }

  .nav a {
    font-size: 9px;
  }

  .hero {
    padding-top: 125px;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 8vh;
  }

  h1 {
    font-size: clamp(58px, 9vw, 92px);
  }

  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 55px;
  }

  .founder-grid {
    grid-template-columns: .85fr 1.15fr;
    min-height: 720px;
  }

  .founder-image img {
    width: 86%;
    max-width: 450px;
  }

  .founder-copy {
    padding-left: 20px;
  }

  .service-grid {
    grid-template-columns: 55px 1fr 1fr;
    gap: 28px;
  }

  .service-main h3 {
    font-size: clamp(34px, 4.2vw, 52px);
  }
}

/* ---------- MOBILE + SMALL TABLET ---------- */
@media (max-width: 900px) {
  :root {
    --container: min(100% - 36px, 720px);
  }

  .header-inner {
    min-height: 70px;
  }

  .brand {
    width: 118px;
  }

  .menu-toggle {
    display: block;
    z-index: 32;
  }

  .nav {
    position: fixed;
    inset: 70px 0 auto;
    display: grid;
    gap: 0;
    padding: 12px 20px 22px;
    background: rgba(245, 242, 235, .98);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-140%);
    transition: transform .35s ease;
  }

  .nav.is-open {
    transform: translateY(0);
  }

  .nav a {
    padding: 12px 0;
    font-size: 10px;
  }

  .hero {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 30px;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 9vh;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(52px, 12vw, 76px);
    line-height: .97;
  }

  .hero-description {
    max-width: 610px;
    font-size: 14px;
  }

  .hero-bottom {
    margin-top: 70px;
    gap: 12px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .founder {
    padding: 0;
  }

  .founder-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .founder-copy {
    order: 1;
    padding: 95px 0 25px;
  }

  .founder-image {
    order: 2;
    min-height: 410px;
    justify-content: center;
    align-items: end;
  }

  .founder-image img {
    width: min(68%, 400px);
    max-width: 400px;
    margin: 0 auto;
  }

  .service-grid {
    grid-template-columns: 48px 1fr;
    gap: 18px;
  }

  .service-main {
    min-width: 0;
  }

  .service-main h3 {
    font-size: clamp(36px, 8vw, 56px);
  }

  .service-detail {
    grid-column: 2;
    max-width: 620px;
    padding-top: 4px;
  }

  .footer-inner {
    min-height: 100px;
    grid-template-columns: auto 1fr;
    gap: 10px 20px;
    padding: 22px 0;
  }

  .footer-logo {
    width: 78px;
    grid-row: 1 / span 2;
    align-self: center;
  }

  .footer p {
    font-size: 9px;
  }

  .footer p:last-child {
    text-align: left;
  }
}

/* ---------- PHONE ---------- */
@media (max-width: 560px) {
  :root {
    --container: calc(100% - 30px);
  }

  body {
    font-size: 14px;
  }

  .section {
    padding: 84px 0;
  }

  .hero {
    padding-top: 102px;
    padding-bottom: 22px;
  }

  .hero-grid {
    padding-top: 7vh;
  }

  h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  h2 {
    font-size: clamp(44px, 13vw, 60px);
  }

  h3 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .lead {
    font-size: 17px;
  }

  .hero-description {
    font-size: 13px;
    line-height: 1.7;
  }

  .hero-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 58px;
    padding-top: 16px;
  }

  .hero-bottom span {
    font-size: 7px;
  }

  .hero-bottom span:last-child {
    grid-column: 1 / -1;
  }

  .principles {
    margin-top: 34px;
  }

  .founder-copy {
    padding-top: 80px;
  }

  .founder-image {
    min-height: 330px;
  }

  .founder-image img {
    width: min(72%, 330px);
  }

  .service-card {
    padding: 70px 0;
  }

  .service-grid {
    grid-template-columns: 34px 1fr;
    gap: 13px;
  }

  .service-number {
    font-size: 20px;
  }

  .service-main h3 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .service-detail {
    grid-column: 2;
  }

  .service-tags {
    gap: 6px;
  }

  .service-tags span {
    font-size: 7px;
    padding: 5px 9px;
  }

  .contact {
    padding: 115px 0 125px;
  }

  .email-link {
    font-size: clamp(24px, 7.5vw, 34px);
  }

  .footer-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 9px;
    padding: 25px 0;
  }

  .footer-logo {
    width: 72px;
    grid-row: auto;
    margin-bottom: 3px;
  }

  .footer p:last-child {
    text-align: center;
  }
}


/* ===== V3 REFINEMENTS ===== */

/* Services intro: keep the requested lines visually continuous on desktop/laptop. */
.services-intro-title {
  white-space: nowrap;
  font-size: clamp(44px, 5.8vw, 82px);
}
.services-intro-copy {
  white-space: nowrap;
  max-width: none !important;
  font-size: 15px !important;
}

/* Contact: reduce the static vertical gap and keep the section visually tighter. */
.contact {
  padding-top: 125px;
  padding-bottom: 135px;
}
.contact h2 {
  margin-bottom: 18px;
}
.contact-copy {
  margin-bottom: 28px;
}

/* Footer: slightly larger logo and centered middle statement. */
.footer-logo {
  width: 100px;
}
.footer-inner {
  grid-template-columns: 1fr 1.8fr 1fr;
}
.footer-inner > p:nth-of-type(1) {
  text-align: center;
}
.footer-inner > p:nth-of-type(2) {
  text-align: right;
}

/* ---------- TABLET ---------- */
@media (max-width: 1024px) {
  .services-intro-title {
    white-space: normal;
    font-size: clamp(46px, 7vw, 68px);
  }

  .services-intro-copy {
    white-space: normal;
    max-width: 700px !important;
  }

  .footer-inner {
    grid-template-columns: auto 1.5fr auto;
  }
}

/* ---------- MOBILE ---------- */
@media (max-width: 900px) {
  .services-intro-title {
    white-space: normal;
  }

  .services-intro-copy {
    white-space: normal;
  }

  .contact {
    padding-top: 95px;
    padding-bottom: 105px;
  }

  .footer-inner {
    grid-template-columns: auto 1fr;
  }

  .footer-logo {
    width: 92px;
  }

  .footer-inner > p:nth-of-type(1) {
    text-align: left;
  }

  .footer-inner > p:nth-of-type(2) {
    text-align: left;
  }
}

/* ---------- PHONE ---------- */
@media (max-width: 560px) {
  .contact {
    padding-top: 82px;
    padding-bottom: 90px;
  }

  .contact-copy {
    margin-bottom: 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-logo {
    width: 86px;
  }

  .footer-inner > p:nth-of-type(1),
  .footer-inner > p:nth-of-type(2) {
    text-align: center;
  }
}


/* =========================================================
   V4 — FINAL ALIGNMENT & SPACING REFINEMENTS
   ========================================================= */

/* ---------- HERO: completely centered ---------- */
.hero {
  text-align: center;
}
.hero-grid {
  display: block;
}
.hero-copy {
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
}
.hero-copy .eyebrow {
  text-align: center;
}
.hero-copy h1 {
  margin-inline: auto;
  max-width: 1050px;
  text-align: center;
}
.hero-description {
  margin-inline: auto;
  max-width: 760px;
  text-align: center;
}
.hero-copy .text-link {
  justify-content: center;
}
.hero-bottom {
  justify-content: center;
  gap: clamp(30px, 7vw, 100px);
  text-align: center;
}

/* ---------- SERVICES INTRO: one line on desktop/laptop ---------- */
.services-intro {
  width: 100%;
  max-width: none;
}
.services-intro-title {
  width: 100%;
  max-width: none;
  margin: 0 0 24px;
  white-space: nowrap;
  text-align: left;
}
.services-intro-copy {
  width: 100%;
  max-width: none !important;
  white-space: nowrap;
  text-align: left;
}

/* ---------- REMOVE THE EXCESS GAP BEFORE CONTACT ---------- */
/* The last service should finish close to the contact section. */
.service-card:last-child {
  padding-bottom: 45px;
}
.contact {
  padding-top: 70px;
  padding-bottom: 135px;
}

/* ---------- FOOTER: preserve requested alignment ---------- */
.footer-logo {
  width: 100px;
}
.footer-inner > p:nth-of-type(1) {
  text-align: center;
}
.footer-inner > p:nth-of-type(2) {
  text-align: right;
}

/* =========================================================
   DESKTOP / LAPTOP
   ========================================================= */
@media (min-width: 1025px) {
  .services-intro-title {
    font-size: clamp(44px, 5.8vw, 82px);
  }

  .services-intro-copy {
    font-size: 17px !important;
  }
}

/* =========================================================
   TABLET
   ========================================================= */
@media (min-width: 561px) and (max-width: 1024px) {
  .hero {
    text-align: center;
  }

  .hero-grid {
    padding-top: 6vh;
  }

  .hero-copy h1 {
    max-width: 900px;
  }

  .hero-bottom {
    gap: 30px;
  }

  /* The lines remain continuous, but scale down so they fit the tablet viewport. */
  .services-intro-title {
    white-space: nowrap;
    font-size: clamp(38px, 6.3vw, 64px);
    letter-spacing: -.045em;
  }

  .services-intro-copy {
    white-space: nowrap;
    font-size: clamp(11px, 1.65vw, 15px) !important;
    letter-spacing: -.01em;
  }

  .service-card:last-child {
    padding-bottom: 38px;
  }

  .contact {
    padding-top: 58px;
    padding-bottom: 105px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width: 560px) {
  .hero {
    text-align: center;
  }

  .hero-grid {
    padding-top: 6vh;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-bottom {
    justify-content: center;
    text-align: center;
    gap: 10px 20px;
  }

  /*
    One-line treatment is retained, with a responsive size so the
    complete statements remain inside the phone viewport.
  */
  .services-intro-title {
    white-space: nowrap;
    font-size: clamp(24px, 8.2vw, 38px);
    letter-spacing: -.055em;
  }

  .services-intro-copy {
    white-space: nowrap;
    font-size: clamp(6.6px, 2.05vw, 10px) !important;
    letter-spacing: -.015em;
    line-height: 1.5;
  }

  .service-card:last-child {
    padding-bottom: 30px;
  }

  .contact {
    padding-top: 48px;
    padding-bottom: 90px;
  }

  .footer-logo {
    width: 86px;
  }
}

/* =========================================================
   EXTRA-SMALL PHONES
   ========================================================= */
@media (max-width: 360px) {
  .services-intro-title {
    font-size: 22px;
  }

  .services-intro-copy {
    font-size: 6px !important;
  }

  .contact {
    padding-top: 42px;
  }
}


/* =========================================================
   V5 — HERO HEADLINE + SERVICES INTRO FINAL TUNING
   ========================================================= */

/* Hero headline: smaller, single line, centered. */
.hero-copy h1 {
  width: 100%;
  max-width: none;
  white-space: nowrap;
  margin-inline: auto;
  text-align: center;
  font-size: clamp(42px, 5.2vw, 74px);
}

/* Services intro: center the complete segment and keep both lines continuous. */
.services-intro {
  text-align: center;
}
.services-intro .eyebrow {
  text-align: center;
}
.services-intro-title {
  width: 100%;
  max-width: none;
  white-space: nowrap;
  text-align: center;
  margin-inline: auto;
}
.services-intro-copy {
  width: 100%;
  max-width: none !important;
  white-space: nowrap;
  text-align: center;
  margin-inline: auto;
}

/* Laptop/tablet: scale the hero headline down without changing the design. */
@media (max-width: 1024px) {
  .hero-copy h1 {
    font-size: clamp(38px, 6vw, 60px);
  }

  .services-intro-title {
    font-size: clamp(34px, 5.8vw, 58px);
  }

  .services-intro-copy {
    font-size: clamp(10px, 1.55vw, 14px) !important;
  }
}

/* Phone: still one line, but use a size that fits the viewport. */
@media (max-width: 560px) {
  .hero-copy h1 {
    font-size: clamp(28px, 8.2vw, 42px);
  }

  .services-intro-title {
    font-size: clamp(22px, 7.5vw, 34px);
  }

  .services-intro-copy {
    font-size: clamp(6px, 1.95vw, 9px) !important;
  }
}

@media (max-width: 360px) {
  .hero-copy h1 {
    font-size: 26px;
  }

  .services-intro-title {
    font-size: 20px;
  }

  .services-intro-copy {
    font-size: 5.7px !important;
  }
}
