:root {
  --black: #070707;
  --ink: #121212;
  --charcoal: #1b1b1b;
  --muted: #5f5a53;
  --line: #ded8cc;
  --line-dark: rgba(255, 255, 255, 0.14);
  --gold: #c9a45c;
  --gold-deep: #7a591d;
  --gold-soft: #f0d490;
  --paper: #f5f0e6;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

p,
h1,
h2,
h3,
dl,
dd,
figure {
  margin: 0;
}

p,
h1,
h2,
h3 {
  overflow-wrap: normal;
  word-break: normal;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px 32px;
  color: var(--white);
  background: rgba(7, 7, 7, 0.64);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(7, 7, 7, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.32));
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 15px;
  line-height: 1.1;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-soft);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: transparent;
  color: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 130px 0 68px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

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

.hero-media {
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.94) 0%, rgba(7, 7, 7, 0.74) 38%, rgba(7, 7, 7, 0.24) 72%, rgba(7, 7, 7, 0.54) 100%),
    linear-gradient(180deg, rgba(7, 7, 7, 0.3) 0%, rgba(7, 7, 7, 0.36) 72%, #070707 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.48fr);
  gap: 62px;
  align-items: end;
  padding-top: 40px;
}

.hero-copy {
  min-width: 0;
}

.hero-portrait {
  width: min(300px, 100%);
  justify-self: end;
  align-self: start;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 164, 92, 0.44);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
}

.hero-portrait figcaption {
  display: grid;
  gap: 3px;
  padding: 14px 4px 2px;
}

.hero-portrait span {
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-portrait strong {
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.35;
}

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.band-light .eyebrow,
.band-white .eyebrow {
  color: var(--gold-deep);
}

.hero h1 {
  max-width: 700px;
  margin-top: 18px;
  font-size: 72px;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 640px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 21px;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: var(--black);
  background: var(--gold);
  border: 1px solid var(--gold);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 720px;
  margin-top: 54px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  overflow: hidden;
}

.proof-grid div {
  padding: 22px;
  background: rgba(7, 7, 7, 0.58);
}

.proof-grid dt {
  color: var(--gold-soft);
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
}

.proof-grid dd {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

section {
  scroll-margin-top: 96px;
}

.band-light,
.band-white,
.band-dark {
  padding: 98px 0;
}

.band-light {
  background: var(--paper);
}

.band-white {
  background: var(--white);
}

.band-dark {
  color: var(--white);
  background: var(--black);
}

.split-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 74px;
  align-items: start;
}

h2 {
  max-width: 760px;
  margin-top: 12px;
  font-size: 43px;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  font-size: 21px;
  line-height: 1.25;
}

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

.section-heading.compact {
  max-width: 860px;
}

.section-heading p:not(.eyebrow),
.split-layout > div > p,
.about-layout p,
.philosophy-layout p,
.contact-layout p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
}

.band-dark .section-heading p:not(.eyebrow),
.band-dark .split-layout > div > p,
.band-dark .contact-layout p {
  color: rgba(255, 255, 255, 0.72);
}

.intro-copy > p {
  color: var(--muted);
  font-size: 18px;
}

.service-preview,
.feature-grid,
.pricing-grid,
.gallery-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

.service-preview {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.service-preview article,
.feature-grid article,
.pricing-card,
.steps article,
.credential-list article,
.credential-docs article,
.gallery-grid article,
.testimonial-grid article,
.contact-panel,
.certificate-frame,
.credential-photo,
.method-media,
.hero-portrait {
  border-radius: 8px;
}

.service-preview article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.service-preview span,
.steps span,
.credential-list span,
.credential-docs span,
.gallery-grid span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
}

.service-preview span,
.credential-list span,
.credential-docs span {
  color: var(--gold-deep);
}

.service-preview h3,
.steps h3,
.credential-list h3,
.credential-docs h3,
.gallery-grid h3 {
  margin-top: 10px;
}

.service-preview p,
.feature-grid p,
.pricing-card p,
.steps p,
.credential-list p,
.gallery-grid p,
.testimonial-grid p {
  margin-top: 12px;
  color: var(--muted);
}

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

.feature-grid article {
  padding: 30px;
  background: #111;
  border: 1px solid var(--line-dark);
}

.feature-grid p,
.gallery-grid p {
  color: rgba(255, 255, 255, 0.68);
}

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

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

.about-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 76px;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 116px;
  margin-bottom: 0;
}

.timeline {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.timeline article {
  padding: 30px;
  background: var(--white);
}

.timeline span {
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.timeline h3 {
  margin-top: 10px;
}

.timeline p {
  margin-top: 12px;
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.pricing-card.highlight {
  color: var(--white);
  background: var(--black);
  border-color: rgba(201, 164, 92, 0.45);
  box-shadow: var(--shadow);
}

.pricing-card.highlight .eyebrow {
  color: var(--gold);
}

.pricing-card.highlight p,
.pricing-card.highlight .check-list li {
  color: rgba(255, 255, 255, 0.72);
}

.pricing-top h3 {
  margin-top: 10px;
  font-size: 32px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.pricing-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 30px;
  color: var(--muted);
}

.pricing-card.highlight .pricing-meta {
  color: rgba(255, 255, 255, 0.64);
}

.pricing-meta strong {
  color: inherit;
  text-align: right;
}

.price-list {
  display: grid;
  gap: 1px;
  margin-top: 18px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.pricing-card.highlight .price-list {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.14);
}

.price-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.88);
}

.pricing-card.highlight .price-list div {
  background: rgba(255, 255, 255, 0.07);
}

.price-list span {
  color: var(--muted);
}

.pricing-card.highlight .price-list span {
  color: rgba(255, 255, 255, 0.64);
}

.price-list strong {
  white-space: nowrap;
}

.note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 15px;
}

.steps {
  display: grid;
  gap: 16px;
}

.steps article {
  padding: 28px;
  background: #111;
  border: 1px solid var(--line-dark);
}

.steps p {
  color: rgba(255, 255, 255, 0.68);
}

.method-media {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(201, 164, 92, 0.34);
  background: #111;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.method-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.philosophy-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 72px;
  align-items: center;
}

.quote-block {
  padding: 42px;
  color: var(--white);
  background: var(--black);
  border: 1px solid rgba(201, 164, 92, 0.48);
  border-radius: 8px;
}

.quote-block p {
  margin: 0;
  color: var(--white);
  font-size: 34px;
  line-height: 1.15;
  font-weight: 900;
}

.values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 100%;
  margin-top: 28px;
}

.values span {
  max-width: 100%;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.credentials-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: start;
}

.certificate-frame {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
}

.certificate-image {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  object-position: center;
  background: #fbfaf7;
  border: 1px solid #d8c8a6;
}

.certificate-visual {
  display: grid;
  align-content: center;
  min-height: 430px;
  padding: 38px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(201, 164, 92, 0.12), rgba(255, 255, 255, 0) 42%),
    #fbfaf7;
  border: 1px solid #d8c8a6;
  outline: 8px solid #f5efe1;
  outline-offset: -18px;
  text-align: center;
}

.certificate-visual span {
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.certificate-visual strong {
  display: block;
  max-width: 360px;
  margin: 16px auto 0;
  font-size: 42px;
  line-height: 1.05;
}

.certificate-visual small {
  margin-top: 16px;
  color: var(--muted);
  font-size: 15px;
}

.certificate-frame figcaption {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.credential-side {
  display: grid;
  gap: 16px;
}

.credential-list {
  display: grid;
  gap: 16px;
}

.credential-list article {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
}

.credential-photo {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  background: var(--black);
  border: 1px solid var(--line);
}

.credential-photo img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  object-position: center;
}

.credential-photo figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 42px 22px 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  background: linear-gradient(180deg, transparent, rgba(7, 7, 7, 0.88));
}

.credential-docs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.credential-docs article {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
}

.credential-docs img {
  width: 96px;
  height: 112px;
  object-fit: cover;
  object-position: center;
  background: #fbfaf7;
  border: 1px solid #d8c8a6;
}

.credential-docs h3 {
  font-size: 18px;
}

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

.gallery-grid article {
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  background: #111;
  border: 1px solid var(--line-dark);
  overflow: hidden;
  isolation: isolate;
}

.gallery-card-feature {
  grid-column: span 2;
}

.gallery-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.04);
  transform: scale(1.01);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.06), rgba(7, 7, 7, 0.92));
}

.gallery-card > div {
  position: relative;
  z-index: 2;
  max-width: 420px;
}

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

.testimonial-grid article {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.testimonial-grid span {
  display: block;
  margin-top: 20px;
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 74px;
  align-items: center;
}

.contact-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
  font-style: normal;
}

.contact-action {
  display: grid;
  gap: 4px;
  padding: 24px;
  background: #111;
  transition: background 160ms ease;
}

.contact-action:hover,
.contact-action:focus-visible {
  background: #171717;
}

.contact-action span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-action strong {
  font-size: 20px;
  line-height: 1.25;
}

.site-footer {
  color: rgba(255, 255, 255, 0.68);
  background: #030303;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  object-fit: contain;
  opacity: 0.78;
}

.footer-inner a {
  color: var(--gold-soft);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 20px;
}

.footer-links a {
  white-space: nowrap;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  min-height: 56px;
  padding: 0;
  color: var(--white);
  background: #25d366;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  background: #1fb85a;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
}

.whatsapp-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--white);
  background: transparent;
  border-radius: 50%;
}

.whatsapp-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.whatsapp-label {
  display: none;
}

@media (max-width: 980px) {
  .site-header {
    padding: 12px 24px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    color: var(--white);
    background: rgba(7, 7, 7, 0.99);
    border: 1px solid rgba(201, 164, 92, 0.24);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
  }

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

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-portrait {
    width: min(300px, 62vw);
    justify-self: start;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .split-layout,
  .about-layout,
  .philosophy-layout,
  .credentials-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .sticky-heading {
    position: static;
  }

  .feature-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card-feature {
    grid-column: auto;
  }

  .pricing-grid,
  .testimonial-grid,
  .credential-docs {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 32px;
  }
}

@media (max-width: 720px) {
  .section-inner {
    width: min(100% - 32px, 1160px);
  }

  .site-header {
    min-height: 70px;
    padding: 10px 16px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy small {
    font-size: 11px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .site-nav {
    inset: 70px 16px auto 16px;
  }

  section {
    scroll-margin-top: 86px;
  }

  .hero {
    min-height: 84vh;
    padding: 112px 0 46px;
  }

  .hero-portrait {
    display: none;
  }

  .hero-media img {
    object-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 7, 7, 0.96), rgba(7, 7, 7, 0.76)),
      linear-gradient(180deg, rgba(7, 7, 7, 0.22), #070707 100%);
  }

  .hero h1 {
    max-width: 330px;
    font-size: 34px;
    line-height: 1.04;
  }

  .hero-lead {
    max-width: 330px;
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .proof-grid dt {
    font-size: 27px;
  }

  .band-light,
  .band-white,
  .band-dark {
    padding: 70px 0;
  }

  h2 {
    max-width: 340px;
    font-size: 26px;
    line-height: 1.12;
  }

  .section-heading p:not(.eyebrow),
  .split-layout > div > p,
  .about-layout p,
  .philosophy-layout p,
  .contact-layout p,
  .intro-copy > p {
    font-size: 16px;
  }

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

  .pricing-card,
  .quote-block {
    padding: 24px;
  }

  .method-media {
    margin-top: 22px;
  }

  .pricing-top h3 {
    font-size: 25px;
  }

  .price-list div,
  .pricing-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .pricing-meta strong {
    text-align: left;
  }

  .quote-block p {
    font-size: 24px;
  }

  .contact-action strong {
    font-size: 18px;
  }

  .certificate-visual {
    min-height: 330px;
    padding: 24px;
  }

  .certificate-frame {
    padding: 12px;
  }

  .certificate-visual strong {
    font-size: 31px;
  }

  .credential-docs article {
    grid-template-columns: 82px 1fr;
  }

  .credential-docs img {
    width: 82px;
    height: 96px;
  }

  .gallery-grid article {
    min-height: 250px;
  }

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

  .footer-logo {
    width: 34px;
    height: 34px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .site-footer {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px));
  }

  .whatsapp-float {
    right: 12px;
    left: auto;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    width: 48px;
    height: 48px;
    min-height: 48px;
    padding: 0;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  }

  .whatsapp-icon {
    width: 48px;
    height: 48px;
  }

  .whatsapp-icon svg {
    width: 26px;
    height: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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