@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Noto+Serif+TC:wght@400;500;600;700;900&display=swap");

:root {
  --font-source-serif: "Noto Serif TC";
  --font-cormorant: "Cormorant Garamond";
  --porcelain: #fffdf6;
  --ivory: #f8f0df;
  --warm-paper: #f4ead7;
  --sand: #e3d3b9;
  --line: rgba(99, 74, 49, 0.13);
  --fine-line: rgba(99, 74, 49, 0.075);
  --bronze: #9b7954;
  --bronze-deep: #806044;
  --brown: #5e4a33;
  --ink: #3f3328;
  --sage: #8b9079;
  --shadow: rgba(80, 61, 41, 0.09);
  --font-zh: var(--font-source-serif), "Source Han Serif TC",
    "Source Han Serif HK", "思源宋體", "思源宋體 TC", "Noto Serif CJK TC",
    "Songti TC", "PMingLiU", serif;
  --font-en: var(--font-cormorant), var(--font-source-serif), Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--porcelain);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--porcelain);
  color: var(--ink);
  font-family: var(--font-zh);
  font-weight: 400;
  text-rendering: geometricPrecision;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

main {
  background:
    linear-gradient(90deg, rgba(99, 74, 49, 0.026) 1px, transparent 1px) 0 0 /
      25vw 100%,
    var(--porcelain);
}

.site-header {
  align-items: center;
  backdrop-filter: blur(22px);
  background: rgba(255, 253, 248, 0.82);
  border-bottom: 1px solid var(--fine-line);
  display: grid;
  gap: 28px;
  grid-template-columns: auto 1fr auto;
  left: 0;
  min-height: 84px;
  padding: 18px clamp(28px, 4.6vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  display: inline-flex;
  width: clamp(148px, 14vw, 196px);
}

.brand img {
  height: auto;
  width: 100%;
}

.site-header nav {
  display: flex;
  gap: clamp(28px, 3.6vw, 52px);
  justify-content: center;
}

.site-header nav a,
.header-cta,
.primary-btn,
.secondary-btn {
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.site-header nav a {
  color: rgba(87, 55, 35, 0.72);
  padding: 8px 0;
}

.header-cta {
  border: 1px solid rgba(87, 55, 35, 0.28);
  color: var(--brown);
  min-height: 42px;
  padding: 11px 20px;
}

.hero {
  background: linear-gradient(90deg, var(--ivory), var(--porcelain));
  align-items: center;
  display: grid;
  gap: clamp(54px, 5vw, 104px);
  grid-template-columns: minmax(520px, 0.96fr) minmax(430px, 0.64fr);
  margin: 0 auto;
  max-width: 1760px;
  min-height: 100svh;
  padding: clamp(118px, 10svh, 150px) clamp(28px, 4.8vw, 78px)
    clamp(48px, 5vw, 74px);
}

.hero-media {
  align-self: center;
  height: min(720px, calc(100svh - 188px));
  min-height: 540px;
  overflow: hidden;
  position: relative;
}

.hero-media::after {
  border: 1px solid rgba(255, 253, 248, 0.7);
  content: "";
  inset: clamp(14px, 2vw, 28px);
  pointer-events: none;
  position: absolute;
}

.hero-media img {
  filter: saturate(0.9) contrast(0.96);
  height: 100%;
  object-fit: cover;
  object-position: 48% 50%;
  width: 100%;
}

.hero-copy {
  align-content: center;
  display: grid;
  justify-items: start;
  min-height: auto;
  padding: 0;
  text-align: left;
}

.eyebrow,
.section-kicker {
  color: var(--bronze);
  font-family: var(--font-en);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

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

h1 {
  color: var(--brown);
  font-family: var(--font-en);
  font-size: clamp(4.1rem, 5.4vw, 6.9rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: clamp(28px, 3.4vw, 42px);
  max-width: 10.6ch;
}

.hero-line {
  color: var(--ink);
  font-family: var(--font-en);
  font-size: clamp(1.28rem, 1.45vw, 1.62rem);
  line-height: 1.5;
  margin-bottom: 22px;
  max-width: 540px;
}

.hero-sub {
  color: rgba(52, 36, 28, 0.78);
  font-size: 1.02rem;
  line-height: 2.1;
  margin-bottom: 38px;
  max-width: 540px;
}

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

.primary-btn,
.secondary-btn {
  align-items: center;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease,
    border-color 160ms ease;
}

.primary-btn {
  background: var(--bronze-deep);
  color: var(--porcelain);
}

.primary-btn:hover {
  background: var(--brown);
  transform: translateY(-1px);
}

.secondary-btn {
  background: transparent;
  border: 1px solid rgba(87, 55, 35, 0.26);
  color: var(--brown);
}

.secondary-btn:hover {
  background: rgba(87, 55, 35, 0.06);
}

.intro {
  align-items: start;
  display: grid;
  gap: clamp(44px, 7vw, 116px);
  grid-template-columns: minmax(0, 0.96fr) minmax(330px, 0.62fr);
  padding: clamp(92px, 12vw, 160px) clamp(28px, 6vw, 104px);
}

.intro h2,
.section-heading h2,
.feature-copy h2,
.lead-copy h2,
.offer-panel h2 {
  color: var(--brown);
  font-family: var(--font-zh);
  font-size: clamp(2.25rem, 4.4vw, 4.8rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.18;
  margin-bottom: 0;
}

.intro > p {
  border-left: 1px solid var(--line);
  color: rgba(52, 36, 28, 0.72);
  font-size: 1.02rem;
  line-height: 2.15;
  margin: 42px 0 0;
  padding-left: clamp(22px, 3vw, 38px);
}

.signals {
  background: var(--warm-paper);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  color: var(--brown);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.signals span {
  align-items: center;
  border-right: 1px solid var(--line);
  display: flex;
  justify-content: center;
  min-height: 112px;
  padding: 28px 20px;
  text-align: center;
}

.signals span:last-child {
  border-right: 0;
}

.services,
.space,
.lead {
  padding: clamp(92px, 12vw, 158px) clamp(28px, 6vw, 104px);
}

.section-heading {
  align-items: end;
  display: grid;
  gap: clamp(30px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.48fr);
  margin-bottom: clamp(46px, 7vw, 82px);
}

.section-heading p:last-child {
  color: rgba(52, 36, 28, 0.64);
  line-height: 1.9;
  margin-bottom: 0;
}

.service-heading {
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  gap: 0;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
}

.service-heading-meta {
  align-content: space-between;
  border-right: 1px solid var(--line);
  display: grid;
  min-height: clamp(420px, 46vw, 560px);
  overflow: hidden;
  padding: clamp(34px, 4.4vw, 60px) clamp(24px, 3.8vw, 52px);
  position: relative;
}

.service-linework {
  align-self: center;
  display: grid;
  gap: 18px;
  width: min(100%, 320px);
}

.service-linework span {
  background: rgba(99, 74, 49, 0.2);
  display: block;
  height: 1px;
}

.service-linework span:nth-child(1) {
  width: 42%;
}

.service-linework span:nth-child(2) {
  width: 72%;
}

.service-linework span:nth-child(3) {
  width: 28%;
}

.one-line-art {
  --art-stroke: rgba(99, 74, 49, 0.24);
  pointer-events: none;
  position: absolute;
}

.one-line-art span {
  display: block;
  position: absolute;
}

.service-illustration {
  height: 180px;
  opacity: 0.72;
  right: clamp(20px, 3vw, 42px);
  top: 42%;
  transform: translateY(-50%);
  width: 220px;
}

.art-stem {
  border-right: 1.4px solid var(--art-stroke);
  border-top: 1.4px solid var(--art-stroke);
  border-radius: 0 92px 0 0;
  height: 116px;
  left: 54px;
  top: 42px;
  transform: rotate(-18deg);
  width: 104px;
}

.art-loop {
  border: 1.4px solid var(--art-stroke);
  border-left-color: transparent;
  border-radius: 50%;
  height: 74px;
  left: 22px;
  top: 28px;
  transform: rotate(26deg);
  width: 118px;
}

.art-leaf {
  border: 1.4px solid var(--art-stroke);
  border-radius: 100% 0 100% 0;
}

.art-leaf-one {
  height: 48px;
  left: 132px;
  top: 26px;
  transform: rotate(24deg);
  width: 76px;
}

.art-leaf-two {
  height: 38px;
  left: 124px;
  top: 94px;
  transform: rotate(-18deg);
  width: 62px;
}

.service-heading-copy {
  align-content: center;
  display: grid;
  gap: clamp(26px, 3.2vw, 42px);
  padding: clamp(44px, 6vw, 82px);
}

.service-heading-copy > p {
  color: var(--bronze);
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: 0.18em;
  margin: 0;
}

.service-heading h2 {
  display: grid;
  font-size: clamp(3.1rem, 6.2vw, 7rem);
  gap: clamp(12px, 1.5vw, 20px);
  line-height: 0.98;
}

.service-heading h2 span:first-child {
  font-family: var(--font-en);
}

.service-heading h2 span:last-child {
  font-size: clamp(2.2rem, 4.1vw, 4.9rem);
  line-height: 1.16;
}

.service-bilingual {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
  max-width: 760px;
}

.service-bilingual span {
  border-bottom: 1px solid var(--line);
  color: rgba(52, 36, 28, 0.68);
  line-height: 1.5;
  padding: 14px 0;
}

.service-bilingual span:nth-child(odd) {
  color: var(--brown);
  font-family: var(--font-en);
  padding-right: 24px;
}

.service-bilingual span:nth-child(even) {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}

.menu-link {
  align-items: center;
  align-self: end;
  border: 1px solid rgba(99, 74, 49, 0.2);
  color: var(--brown);
  display: inline-flex;
  font-size: 0.94rem;
  justify-content: center;
  justify-self: start;
  letter-spacing: 0.08em;
  min-height: 52px;
  padding: 14px 24px;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.menu-link:hover {
  background: rgba(99, 74, 49, 0.055);
  border-color: rgba(99, 74, 49, 0.32);
  transform: translateY(-1px);
}

.service-grid {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  background: rgba(255, 253, 248, 0.62);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 210px;
  padding: clamp(30px, 4vw, 48px);
}

.service-card:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.service-card p {
  color: var(--bronze);
  font-family: var(--font-en);
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.service-card h3 {
  color: var(--brown);
  font-size: clamp(1.28rem, 1.8vw, 1.72rem);
  font-weight: 500;
  line-height: 1.32;
  margin-bottom: 16px;
}

.service-card span {
  color: rgba(52, 36, 28, 0.68);
  display: block;
  line-height: 1.9;
  max-width: 460px;
}

.service-card footer {
  align-self: start;
  display: grid;
  gap: 12px;
  margin-left: 28px;
  min-width: 96px;
  text-align: right;
}

.service-card strong {
  color: var(--brown);
  font-family: var(--font-en);
  font-size: 1.05rem;
  font-weight: 500;
}

.feature-band {
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  gap: clamp(42px, 7vw, 90px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.52fr);
  overflow: hidden;
  padding: clamp(86px, 11vw, 144px) clamp(28px, 6vw, 104px);
  position: relative;
}

.feature-band .section-kicker,
.feature-band h2 {
  color: var(--brown);
}

.feature-copy p:last-child {
  color: rgba(63, 51, 40, 0.68);
  font-size: 1.04rem;
  line-height: 2;
  margin: 30px 0 0;
  max-width: 680px;
}

.feature-list {
  align-self: center;
  border-top: 1px solid var(--line);
  display: grid;
}

.feature-list p {
  border-bottom: 1px solid var(--line);
  color: rgba(63, 51, 40, 0.78);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.5;
  margin: 0;
  padding: 20px 0;
}

.feature-illustration {
  bottom: clamp(28px, 4vw, 58px);
  height: 150px;
  opacity: 0.5;
  right: clamp(28px, 6vw, 104px);
  width: 260px;
}

.art-wave {
  border-bottom: 1.4px solid var(--art-stroke);
  border-radius: 0 0 50% 50%;
  height: 86px;
  left: 0;
  top: 30px;
  transform: rotate(-5deg);
  width: 210px;
}

.art-circle {
  border: 1.4px solid var(--art-stroke);
  border-bottom-color: transparent;
  border-radius: 50%;
  height: 94px;
  left: 102px;
  top: 8px;
  transform: rotate(22deg);
  width: 94px;
}

.art-leaf-three {
  height: 34px;
  left: 196px;
  top: 74px;
  transform: rotate(32deg);
  width: 54px;
}

.space {
  background:
    linear-gradient(90deg, rgba(177, 139, 91, 0.075) 1px, transparent 1px) 0 0 /
      22px 100%,
    linear-gradient(180deg, #fffaf0 0%, #f7eddb 100%);
}

.space-grid {
  background: rgba(255, 252, 244, 0.52);
  display: grid;
  gap: clamp(14px, 1.8vw, 22px);
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.56fr);
  padding: clamp(12px, 1.7vw, 20px);
}

.space-grid img {
  background: #f8f0e2;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.space-grid img:first-child {
  grid-row: span 2;
  min-height: 690px;
}

.space-grid img:nth-child(2),
.space-grid img:nth-child(3) {
  min-height: 333px;
}

.space-note {
  background: rgba(255, 252, 244, 0.84);
  border: 1px solid var(--line);
  grid-column: 1 / -1;
  padding: clamp(32px, 4vw, 48px);
}

.space-note h3 {
  color: var(--brown);
  font-size: 1.58rem;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 20px;
}

.space-note p {
  color: rgba(52, 36, 28, 0.72);
  line-height: 2;
  margin-bottom: 0;
}

.lead {
  background: var(--porcelain);
  display: grid;
  gap: clamp(42px, 7vw, 90px);
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 0.64fr);
}

.lead-copy > p {
  color: rgba(52, 36, 28, 0.72);
  line-height: 2.05;
  margin: 30px 0;
  max-width: 640px;
}

.crm-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.crm-flow span {
  background: var(--ivory);
  border: 1px solid var(--line);
  color: var(--brown);
  padding: 12px 15px;
}

.lead-form {
  background: #efe2ca;
  box-shadow: 0 22px 80px var(--shadow);
  color: var(--ink);
  display: grid;
  gap: 18px;
  padding: clamp(30px, 4.5vw, 48px);
}

.lead-form label {
  display: grid;
  gap: 9px;
  font-size: 0.92rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  background: rgba(255, 253, 248, 0.64);
  border: 1px solid rgba(99, 74, 49, 0.18);
  color: var(--ink);
  min-height: 50px;
  outline: none;
  padding: 14px 15px;
  width: 100%;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(99, 74, 49, 0.36);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(63, 51, 40, 0.44);
}

.lead-form select option {
  color: var(--ink);
}

.lead-form textarea {
  min-height: 116px;
  resize: vertical;
}

.consent {
  color: rgba(63, 51, 40, 0.62);
  font-size: 0.82rem;
  line-height: 1.75;
  margin: 0;
}

.form-btn {
  background: var(--bronze-deep);
  color: var(--porcelain);
  width: 100%;
}

.form-btn:hover {
  background: var(--brown);
  color: var(--porcelain);
}

.footer {
  align-items: center;
  background: var(--warm-paper);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: auto 1fr auto;
  padding: 34px clamp(28px, 6vw, 104px);
}

.footer img {
  width: 156px;
}

.footer p {
  color: var(--brown);
  margin: 0;
}

.footer p + p {
  color: rgba(52, 36, 28, 0.58);
  font-family: var(--font-en);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  margin-top: 5px;
  text-transform: uppercase;
}

.footer div:last-child {
  display: flex;
  gap: 22px;
}

.footer a {
  color: var(--brown);
}

.float-whatsapp {
  background: #8a806a;
  bottom: 18px;
  color: var(--porcelain);
  min-height: 50px;
  padding: 15px 18px;
  position: fixed;
  right: 18px;
  z-index: 22;
}

.offer-backdrop {
  align-items: center;
  background: rgba(52, 36, 28, 0.52);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 22px;
  position: fixed;
  z-index: 40;
}

.offer-backdrop.is-hidden {
  display: none;
}

.offer-panel {
  background:
    linear-gradient(180deg, rgba(255, 253, 246, 0.98), rgba(248, 240, 223, 0.96)),
    var(--porcelain);
  border: 1px solid rgba(255, 253, 248, 0.68);
  box-shadow: 0 22px 90px rgba(52, 36, 28, 0.24);
  color: var(--ink);
  max-width: 580px;
  padding: clamp(32px, 5vw, 54px);
  position: relative;
  width: min(100%, 580px);
}

.offer-panel h2 {
  font-size: clamp(2rem, 3.6vw, 3.15rem);
  line-height: 1.24;
  margin-bottom: 22px;
}

.offer-panel h2 span {
  display: block;
  overflow-wrap: anywhere;
}

.offer-panel p:not(.section-kicker) {
  color: rgba(52, 36, 28, 0.72);
  line-height: 1.95;
}

.offer-panel .section-kicker {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  letter-spacing: 0.2em;
}

.offer-panel .section-kicker::before {
  background: var(--bronze);
  content: "";
  height: 1px;
  width: 42px;
}

.offer-points {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin: 26px 0 26px;
}

.offer-points span {
  align-items: center;
  color: rgba(63, 51, 40, 0.74);
  display: flex;
  font-size: 0.88rem;
  justify-content: center;
  line-height: 1.55;
  min-height: 74px;
  padding: 14px 12px;
  text-align: center;
}

.offer-points span + span {
  border-left: 1px solid var(--line);
}

.offer-close {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--brown);
  cursor: pointer;
  height: 36px;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 36px;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 84px 0 0;
  }

  .hero-media {
    height: 56svh;
    min-height: 460px;
    order: 1;
  }

  .hero-media img {
    object-position: 52% 50%;
  }

  .hero-copy {
    min-height: auto;
    order: 2;
    padding: clamp(42px, 8vw, 76px) clamp(28px, 6vw, 76px)
      clamp(60px, 9vw, 94px);
  }

  .intro,
  .section-heading,
  .feature-band,
  .lead {
    grid-template-columns: 1fr;
  }

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

  .signals span:nth-child(3n) {
    border-right: 0;
  }

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

  .service-card:nth-child(odd) {
    border-right: 0;
  }

  .service-heading-meta {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: auto;
  }

  .service-linework {
    margin: 40px 0;
  }

  .service-illustration {
    opacity: 0.42;
    right: 34px;
    top: 48%;
  }
}

@media (max-width: 720px) {
  main {
    background: var(--porcelain);
  }

  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand {
    width: 134px;
  }

  .header-cta {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    min-height: 38px;
    padding: 9px 12px;
  }

  .hero {
    padding-top: 68px;
  }

  .hero-media {
    height: 52svh;
    min-height: 360px;
  }

  .hero-media img {
    object-position: 55% 50%;
  }

  .hero-media::after {
    inset: 12px;
  }

  .hero-copy,
  .intro,
  .services,
  .feature-band,
  .space,
  .lead {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-copy {
    padding-top: 38px;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
  }

  h1 {
    font-size: clamp(3.45rem, 16vw, 4.85rem);
    line-height: 0.94;
    margin-bottom: 24px;
    max-width: 8ch;
  }

  .hero-line {
    font-size: 1.22rem;
    line-height: 1.48;
  }

  .hero-sub {
    font-size: 0.96rem;
    line-height: 1.9;
    margin-bottom: 28px;
  }

  .hero-actions,
  .offer-actions {
    display: grid;
  }

  .primary-btn,
  .secondary-btn {
    min-height: 48px;
    width: 100%;
  }

  .intro,
  .services,
  .feature-band,
  .space,
  .lead {
    padding-bottom: 76px;
    padding-top: 76px;
  }

  .intro h2,
  .section-heading h2,
  .feature-copy h2,
  .lead-copy h2 {
    font-size: clamp(2rem, 9.6vw, 3.05rem);
    line-height: 1.2;
  }

  .intro > p {
    border-left: 0;
    border-top: 1px solid var(--line);
    font-size: 0.96rem;
    line-height: 1.95;
    margin-top: 30px;
    padding-left: 0;
    padding-top: 24px;
  }

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

  .signals span {
    min-height: 92px;
    padding: 22px 16px;
  }

  .signals span:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .signals span:nth-child(2n) {
    border-right: 0;
  }

  .section-heading {
    gap: 22px;
    margin-bottom: 34px;
  }

  .service-heading {
    gap: 0;
  }

  .service-heading-meta,
  .service-heading-copy {
    padding: 28px 0;
  }

  .service-linework {
    margin: 28px 0;
  }

  .service-illustration {
    opacity: 0.34;
    right: -18px;
    top: 50%;
    transform: translateY(-50%) scale(0.72);
    transform-origin: center right;
  }

  .feature-illustration {
    display: none;
  }

  .service-heading h2 {
    font-size: clamp(2.85rem, 13vw, 4.25rem);
    line-height: 1;
  }

  .service-heading h2 span:last-child {
    font-size: clamp(1.82rem, 8.4vw, 2.6rem);
  }

  .service-bilingual {
    grid-template-columns: 1fr;
  }

  .service-bilingual span:nth-child(odd) {
    border-bottom: 0;
    padding-bottom: 4px;
    padding-right: 0;
  }

  .service-bilingual span:nth-child(even) {
    border-left: 0;
    padding-left: 0;
    padding-top: 0;
  }

  .service-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 28px 0;
  }

  .service-card footer {
    display: flex;
    justify-content: space-between;
    margin: 24px 0 0;
    min-width: 0;
    text-align: left;
  }

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

  .space-grid img:first-child {
    grid-row: auto;
    min-height: 360px;
  }

  .space-grid img {
    min-height: 320px;
  }

  .space-grid img:nth-child(2),
  .space-grid img:nth-child(3) {
    min-height: 320px;
  }

  .space-note {
    padding: 26px;
  }

  .crm-flow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .crm-flow span {
    text-align: center;
  }

  .lead-form {
    padding: 26px 20px;
  }

  .footer {
    grid-template-columns: 1fr;
    padding: 30px 20px 86px;
  }

  .footer div:last-child {
    flex-direction: column;
    gap: 8px;
  }

  .float-whatsapp {
    bottom: 12px;
    min-height: 46px;
    padding: 13px 15px;
    right: 12px;
  }

  .offer-panel {
    max-height: calc(100svh - 40px);
    overflow: auto;
    padding: 30px 22px;
  }

  .offer-points {
    grid-template-columns: 1fr;
  }

  .offer-points span {
    justify-content: flex-start;
    min-height: 54px;
    text-align: left;
  }

  .offer-points span + span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}
