* {
  box-sizing: border-box;
}

:root {
  --bg: #fbfaf8;
  --paper: #f8f5ef;
  --sand: #ece6dc;
  --ink: #111111;
  --gold: #b98d53;
  --blue: #34465f;
  --teal: #658d89;
  --navy: #2f3f5c;
  --line: #e6ded2;
  --ease: cubic-bezier(.19, 1, .22, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  overflow-x: hidden;
}

body.nav-stable-page,
body.nav-stable-page main {
  max-width: 100%;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  gap: 22px;
  background:
    radial-gradient(circle at 16% 18%, rgba(185, 141, 83, 0.16), transparent 22%),
    radial-gradient(circle at 84% 82%, rgba(101, 141, 137, 0.14), transparent 28%),
    linear-gradient(180deg, #fffdf9 0%, #f3eee6 100%);
  transition: opacity .75s ease, transform 1s var(--ease);
}

.loader.hide {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.loader span {
  font-size: clamp(22px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: .16em;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.loader div {
  width: min(330px, 70vw);
  height: 2px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.loader i {
  display: block;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  animation: loading 1.2s var(--ease) infinite;
}

@keyframes loading {
  from { transform: translateX(-120%); }
  to { transform: translateX(260%); }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  height: 2px;
  width: 0;
  background: var(--gold);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0 56px;
  background: rgba(251,250,248,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: height .4s var(--ease), border-color .4s ease, box-shadow .4s ease;
}

.site-header.scrolled {
  height: 58px;
  border-bottom-color: var(--line);
  box-shadow: 0 8px 22px rgba(0,0,0,.035);
}

.brand {
  margin-right: auto;
  font-size: clamp(25px, 3.2vw, 40px);
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(32px, 4.5vw, 74px);
}

.desktop-nav a {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .28em;
  transition: color .25s ease;
}

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

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width .35s var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: calc(100% - .28em);
}

.menu-btn {
  display: none;
  border: 0;
  width: 44px;
  height: 38px;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  height: 1px;
  margin: 8px 0;
  background: var(--ink);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 950;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
  background: var(--bg);
  transform: translateY(-105%);
  transition: transform .85s var(--ease);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu button {
  position: absolute;
  top: 26px;
  right: 26px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 12px 16px;
  cursor: pointer;
  letter-spacing: .16em;
}

.mobile-menu a {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(44px, 11vw, 86px);
  line-height: .96;
  opacity: 0;
  transform: translateY(30px);
}

.mobile-menu.open a {
  animation: menuIn .8s var(--ease) forwards;
}

.mobile-menu.open a:nth-of-type(2) { animation-delay: .05s; }
.mobile-menu.open a:nth-of-type(3) { animation-delay: .10s; }
.mobile-menu.open a:nth-of-type(4) { animation-delay: .15s; }
.mobile-menu.open a:nth-of-type(5) { animation-delay: .20s; }
.mobile-menu.open a:nth-of-type(6) { animation-delay: .25s; }

@keyframes menuIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
  padding-top: 70px;
}

.hero-copy {
  align-self: center;
  max-width: 570px;
  margin-left: clamp(52px, 7vw, 130px);
  padding: 70px 0;
}

.split-title {
  margin: 0 0 32px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(46px, 4.2vw, 64px);
  font-weight: 400;
  line-height: 1.08;
}

.split-title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.split-title .word span {
  display: inline-block;
  transform: translateY(108%);
  animation: titleIn .95s var(--ease) forwards;
}

@keyframes titleIn {
  to { transform: translateY(0); }
}

.gold-label {
  margin: 0 0 30px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .28em;
}

.hero-copy p:not(.gold-label),
.tailored-copy p,
.process-intro {
  font-size: 16px;
  line-height: 1.86;
  letter-spacing: .035em;
}

.hero-copy p:not(.gold-label) {
  margin: 0 0 28px;
}

.hero-image {
  margin: 0;
  min-height: 690px;
  overflow: hidden;
  background: var(--line);
}

.tailored-section {
  position: relative;
  min-height: 850px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
  padding: 120px clamp(38px, 9vw, 190px);
  overflow: hidden;
  background: var(--bg);
}

.tailored-image {
  position: relative;
  z-index: 2;
  margin: 0;
  width: min(100%, 520px);
  height: 660px;
  overflow: hidden;
  justify-self: center;
  background: var(--line);
}

.tailored-copy {
  max-width: 460px;
}

.tailored-copy h2,
.process-heading h2,
.expect-card h2 {
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: clamp(38px, 3.4vw, 54px);
  line-height: 1.18;
}

.contour {
  position: absolute;
  pointer-events: none;
  opacity: .42;
  background-image: repeating-radial-gradient(ellipse at center, transparent 0 26px, rgba(186,174,156,.55) 27px 30px, transparent 31px 47px);
  filter: blur(.2px);
}

.contour-one {
  width: 620px;
  height: 310px;
  left: -90px;
  bottom: -55px;
  border-radius: 50%;
  transform: rotate(-10deg);
}

.contour-two {
  width: 820px;
  height: 420px;
  right: -60px;
  top: -115px;
  border-radius: 50%;
  transform: rotate(15deg);
  opacity: .28;
}

.services-cards-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px;
  padding: 110px clamp(38px, 7vw, 140px) 120px;
  background: var(--sand);
  text-align: center;
}

.icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 28px;
}

.icon svg {
  width: 100%;
  height: 100%;
}

.icon-hand { color: #8fc7c2; }
.icon-palm { color: var(--navy); }
.icon-sun { color: var(--gold); }

.service-card h3 {
  min-height: 102px;
  margin: 0 0 34px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(31px, 3vw, 45px);
  font-weight: 400;
  line-height: 1.18;
}

.service-card p {
  margin: 0 auto 48px;
  max-width: 380px;
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: .035em;
}

.included-btn {
  min-width: 190px;
  height: 48px;
  border: 0;
  background: var(--blue);
  color: var(--bg);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  cursor: pointer;
  transition: transform .3s var(--ease), opacity .25s ease;
}

.included-btn:hover {
  transform: translateY(-3px);
  opacity: .92;
}

.included-panel {
  height: 0;
  overflow: hidden;
  transition: height .5s var(--ease);
}

.included-panel p {
  margin-top: 28px;
  color: #494949;
}

.service-card.open .included-panel {
  height: auto;
}

.process-section {
  padding: 110px 24px 135px;
  background: var(--bg);
}

.process-gallery-section {
  width: min(1260px, calc(100% - 52px));
  margin: 0 auto 112px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 24px;
}

.process-gallery-section figure {
  margin: 0;
  overflow: hidden;
  background: var(--line);
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08);
}

.process-gallery-main img {
  aspect-ratio: 1.25 / 1;
}

.process-gallery-stack {
  display: grid;
  gap: 24px;
}

.process-gallery-stack img {
  aspect-ratio: 1 / 0.86;
}

.process-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 76px;
}

.process-heading .gold-label {
  margin-bottom: 48px;
}

.process-intro {
  margin: 0 auto;
  max-width: 720px;
}

.process-accordion {
  max-width: 780px;
  margin: 0 auto;
}

.process-item {
  border-bottom: 2px solid var(--line);
}

.process-head {
  width: 100%;
  min-height: 92px;
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.process-num {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}

.process-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 2.8vw, 38px);
}

.process-head i {
  position: relative;
  width: 26px;
  height: 26px;
  justify-self: end;
}

.process-head i::before,
.process-head i::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 25px;
  height: 1px;
  background: var(--ink);
  transition: transform .35s var(--ease);
}

.process-head i::after {
  transform: rotate(90deg);
}

.process-item.open .process-head i::after {
  transform: rotate(0deg);
}

.process-body {
  height: 0;
  overflow: hidden;
  transition: height .55s var(--ease);
}

.process-body p {
  margin: 0;
  padding: 10px 0 50px 0;
  font-size: 21px;
  line-height: 1.75;
  letter-spacing: .055em;
}

.expect-section {
  position: relative;
  min-height: 850px;
  background: var(--blue);
  overflow: hidden;
}

.expect-bg {
  margin: 0;
  height: 570px;
  overflow: hidden;
  background: var(--line);
}

.expect-card {
  position: relative;
  z-index: 3;
  width: min(100% - 110px, 1180px);
  margin: -135px auto 110px;
  min-height: 470px;
  padding: 72px 78px 76px;
  background: var(--teal);
  color: var(--bg);
  text-align: center;
}

.round-mark {
  width: 58px;
  height: 58px;
  margin: 0 auto 28px;
}

.round-mark svg {
  width: 100%;
  height: 100%;
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px;
  margin-top: 60px;
}

.expect-grid h3 {
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
}

.expect-grid p {
  margin: 0 auto;
  max-width: 270px;
  font-size: 15px;
  line-height: 1.78;
  letter-spacing: .055em;
}

.testimonial-section {
  position: relative;
  padding: 108px 24px 118px;
  background: var(--sand);
  text-align: center;
  overflow: hidden;
}

.testimonial-photo {
  width: min(480px, calc(100% - 40px));
  margin: 0 auto 36px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08);
}

.testimonial-photo img {
  aspect-ratio: 1.06 / 1;
}

.client-label,
.client-name {
  position: relative;
  z-index: 2;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
}

.testimonial-section blockquote {
  position: relative;
  z-index: 2;
  max-width: 930px;
  margin: 34px auto;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(31px, 3vw, 44px);
  line-height: 1.35;
}

.client-name {
  color: var(--ink);
}

.cta-section {
  position: relative;
  min-height: 760px;
  background: var(--blue);
}

.cta-img {
  margin: 0;
  height: 500px;
  overflow: hidden;
}

.cta-blue {
  height: 250px;
  background: var(--blue);
}

.cta-card {
  position: absolute;
  left: 50%;
  top: 375px;
  transform: translateX(-50%);
  width: min(100% - 48px, 940px);
  min-height: 330px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 24px;
  padding: 54px 34px;
  background: var(--bg);
  text-align: center;
}

.small-icon {
  width: 58px;
  color: var(--teal);
}

.cta-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 400;
  line-height: 1.22;
}

.cta-card a {
  min-width: 128px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  background: var(--blue);
  color: var(--bg);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  transition: transform .3s var(--ease), opacity .25s ease;
}

.cta-card a:hover {
  transform: translateY(-3px);
  opacity: .92;
}

.footer {
  background: var(--blue);
  color: var(--bg);
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(160px, .9fr) minmax(320px, 1.15fr) minmax(180px, .8fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 3.6vw, 64px);
  align-items: start;
  padding: 92px clamp(32px, 5vw, 96px) 72px;
}

.footer h3 {
  margin: 0 0 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: 30px;
}

.footer p,
.footer a {
  display: block;
  margin: 0 0 14px;
  color: var(--bg);
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: .04em;
}

.footer-col {
  min-width: 0;
}

.footer-col.connect p,
.footer-col.connect a {
  max-width: 320px;
}

.socials {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 40px;
  font-weight: 800;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  width: 100%;
  padding-top: 8px;
  text-align: center;
}

.logo-circle {
  width: 116px;
  height: 116px;
  margin: 0 auto 34px;
}

.logo-circle svg {
  width: 100%;
  height: 100%;
}

.houzz {
  min-width: 226px;
  height: 30px;
  display: grid;
  place-items: center;
  background: var(--bg);
  color: #555;
  font-size: 14px;
  font-weight: 800;
}

.newsletter {
  width: 100%;
  max-width: 380px;
  justify-self: end;
}

.newsletter h3,
.newsletter p,
.newsletter small {
  max-width: 360px;
}

.newsletter form {
  width: 100%;
  margin-top: 38px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 10px;
  align-items: end;
}

.newsletter input {
  height: 48px;
  border: 0;
  border-bottom: 2px solid rgba(255,255,255,.75);
  background: transparent;
  color: var(--bg);
  outline: none;
  padding: 0 14px;
}

.newsletter input::placeholder {
  color: rgba(255,255,255,.55);
}

.newsletter button {
  height: 48px;
  border: 0;
  background: var(--gold);
  color: var(--bg);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  cursor: pointer;
}

.newsletter small {
  display: none;
  margin-top: 12px;
}

.newsletter small.show {
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.75);
  min-height: 48px;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .22em;
  text-align: center;
  padding: 13px 22px;
}

.reveal-up,
.reveal-img {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s ease, transform .9s var(--ease), clip-path 1.05s var(--ease);
}

.reveal-img {
  clip-path: inset(12% 0 12% 0);
}

.reveal-img img {
  transform: scale(1.08);
  transition: transform 1.45s var(--ease), filter .45s ease;
}

.reveal-up.visible,
.reveal-img.visible {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0);
}

.reveal-img.visible img {
  transform: scale(1);
}

.reveal-img:hover img {
  transform: scale(1.04);
  filter: saturate(1.04) contrast(1.02);
}

@media (max-width: 1180px) {
  .process-gallery-section {
    width: min(720px, calc(100% - 40px));
    grid-template-columns: 1fr;
    margin-bottom: 84px;
  }

  .process-gallery-stack {
    grid-template-columns: 1fr 1fr;
  }

  .site-header {
    padding: 0 28px;
  }

  .brand {
    font-size: 27px;
  }

  .desktop-nav {
    gap: 28px;
  }

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

  .hero-copy {
    margin: 0 auto;
    padding: 90px 24px;
  }

  .hero-image {
    min-height: 520px;
  }

  .tailored-section {
    gap: 50px;
  }

  .services-cards-section,
  .expect-grid {
    gap: 40px;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 54px;
  }

  .footer-logo {
    justify-self: start;
    align-items: flex-start;
    text-align: left;
  }

  .logo-circle {
    margin: 0 0 28px;
  }

  .newsletter {
    max-width: none;
    justify-self: stretch;
  }
}

@media (max-width: 820px) {
  .desktop-nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .site-header {
    height: 64px;
  }

  .brand {
    font-size: 20px;
    letter-spacing: .1em;
  }

  .hero-section {
    padding-top: 64px;
  }

  .hero-image {
    min-height: 420px;
  }

  .tailored-section {
    padding: 80px 22px;
  }

  .tailored-image {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .services-cards-section,
  .expect-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-logo,
  .newsletter {
    justify-self: stretch;
    align-items: flex-start;
    text-align: left;
  }

  .expect-card {
    width: calc(100% - 32px);
    padding: 52px 24px;
    margin-top: -90px;
  }

  .process-body p {
    font-size: 18px;
  }

  .cta-card {
    top: 310px;
  }

  .cta-img {
    height: 420px;
  }

  .newsletter form {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    font-size: 10px;
    line-height: 1.8;
  }
}

@media (max-width: 768px) {
  .hero-section,
  .tailored-section,
  .services-cards-section,
  .process-section,
  .expect-section,
  .footer-inner,
  .footer-bottom {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .hero-copy,
  .tailored-copy,
  .process-heading,
  .process-accordion,
  .newsletter,
  .footer-logo {
    max-width: 100%;
    min-width: 0;
  }
}

@media (max-width: 520px) {
  .process-gallery-section {
    width: calc(100% - 32px);
    gap: 12px;
    margin-bottom: 70px;
  }

  .process-gallery-section figure {
    border-radius: 16px;
  }

  .process-gallery-stack {
    gap: 12px;
  }

  .testimonial-photo {
    width: calc(100% - 32px);
    margin-bottom: 26px;
    border-radius: 16px;
  }

  .split-title {
    font-size: 42px;
  }

  .hero-copy p:not(.gold-label),
  .tailored-copy p,
  .process-intro {
    font-size: 14px;
  }

  .gold-label {
    font-size: 10px;
  }

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

  .process-head {
    grid-template-columns: 34px 1fr 30px;
  }

  .process-title {
    font-size: 27px;
  }

  .cta-card h2 {
    font-size: 30px;
  }
}


/* CTA card center fix:
   reveal-up transform was overriding translateX(-50%),
   so the card was shifting to the right.
*/
.cta-card.reveal-up {
  transform: translateX(-50%) translateY(36px);
}

.cta-card.reveal-up.visible,
.cta-card.visible {
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 820px) {
  .cta-card.reveal-up {
    transform: translateX(-50%) translateY(32px);
  }

  .cta-card.reveal-up.visible,
  .cta-card.visible {
    transform: translateX(-50%) translateY(0);
  }
}


/* === Section image + equal service cards fix === */

/* Make this section use one proper full background image, not a half-height image */
.expect-section {
  position: relative;
  min-height: 860px;
  background: var(--blue);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 110px 24px;
}

.expect-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.expect-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.expect-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(52, 70, 95, 0.18);
  pointer-events: none;
}

.expect-card {
  position: relative;
  z-index: 3;
  width: min(100% - 110px, 1180px);
  min-height: 470px;
  margin: 0 auto;
  padding: 72px 78px 76px;
}

/* Keep the reveal animation from overriding the expect-card layout */
.expect-card.reveal-up {
  transform: translateY(36px);
}

.expect-card.reveal-up.visible,
.expect-card.visible {
  transform: translateY(0);
}

/* Equalize the service cards so headings/text/buttons line up */
.services-cards-section {
  align-items: stretch;
}

.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card .icon {
  flex: 0 0 54px;
}

.service-card h3 {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card > p {
  min-height: 245px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 44px;
}

.service-card .included-btn {
  margin-top: auto;
}

.service-card .included-panel {
  width: 100%;
}

@media (max-width: 1180px) {
  .service-card h3,
  .service-card > p {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  .expect-section {
    min-height: 720px;
    padding: 82px 16px;
  }

  .expect-card {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 52px 24px;
  }
}


/* Services hero aligned with Case Study hero */
body.services-unified .sg-unified-hero .hero-image img {
  object-position: center 42%;
}

body.services-unified .sg-unified-hero {
  border-bottom: 1px solid rgba(42, 53, 73, 0.08);
}
