:root {
  --bg: #f6f1ea;
  --bg-strong: #efe4d7;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-deep: #f0e7db;
  --text: #18355f;
  --text-soft: #53657f;
  --brand: #26589a;
  --brand-strong: #1e4b85;
  --accent: #45bfd7;
  --gold: #f2c34d;
  --gold-deep: #cba149;
  --line: rgba(38, 88, 154, 0.12);
  --shadow: 0 20px 60px rgba(24, 53, 95, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1160px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Mulish", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(69, 191, 215, 0.14), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(242, 195, 77, 0.22), transparent 24%),
    linear-gradient(180deg, #faf7f2 0%, #f1e7dd 52%, #f9f6f2 100%);
  min-height: 100vh;
}

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

a,
button {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: transparent;
  color: inherit;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.marble-vein {
  position: fixed;
  inset: auto;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.26;
  filter: blur(22px);
  z-index: -1;
}

.marble-vein::before,
.marble-vein::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    repeating-linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.72) 0,
      rgba(255, 255, 255, 0.72) 14px,
      rgba(203, 161, 73, 0.08) 14px,
      rgba(203, 161, 73, 0.08) 24px
    );
}

.marble-vein-left {
  left: -12vw;
  top: 12vh;
}

.marble-vein-right {
  right: -16vw;
  bottom: 8vh;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(250, 247, 242, 0.82);
  border-bottom: 1px solid rgba(38, 88, 154, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(38, 88, 154, 0.18);
}

.brand span {
  display: grid;
  gap: 4px;
}

.brand strong {
  font-family: "Cinzel", serif;
  font-size: 1.46rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand small {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.desktop-nav button {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-soft);
  font-weight: 800;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.desktop-nav button:hover,
.desktop-nav button:focus-visible {
  background: rgba(38, 88, 154, 0.08);
  color: var(--brand);
  transform: translateY(-1px);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.header-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: #fff;
  box-shadow: 0 16px 32px rgba(30, 75, 133, 0.22);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--brand);
  border: 1px solid rgba(38, 88, 154, 0.16);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 18px;
  background: rgba(38, 88, 154, 0.08);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--brand);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  border-top: 1px solid rgba(38, 88, 154, 0.08);
  background: rgba(250, 247, 242, 0.98);
}

.mobile-menu-inner {
  display: grid;
  gap: 10px;
  padding: 12px 0 18px;
}

.mobile-menu button {
  padding: 14px 16px;
  border-radius: 16px;
  text-align: left;
  background: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

section {
  padding: 100px 0;
}

.hero-section {
  padding-top: 58px;
  padding-bottom: 48px;
}

.hero-grid,
.about-grid,
.experience-grid,
.proof-grid,
.faq-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.section-copy h2,
.experience-copy h2,
.proof-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Forum", serif;
  font-weight: 400;
  line-height: 1.06;
  text-wrap: balance;
}

.hero-copy h1 {
  max-width: 11.6ch;
  font-size: clamp(2.75rem, 4vw, 4.35rem);
  letter-spacing: -0.025em;
}

.section-heading h2,
.section-copy h2,
.experience-copy h2,
.proof-copy h2,
.contact-copy h2 {
  font-size: clamp(2rem, 2.55vw, 3rem);
  letter-spacing: -0.02em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-text,
.section-heading p,
.section-copy p,
.experience-copy p,
.proof-copy p,
.contact-copy p,
.service-card p,
.proof-card p,
.faq-item p,
.timeline-item p,
.contact-card p,
.story-card p {
  color: var(--text-soft);
  line-height: 1.78;
}

.hero-copy p,
.section-copy p,
.contact-copy p {
  max-width: 60ch;
}

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

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

.highlight-card,
.story-card,
.service-card,
.proof-card,
.contact-card,
.marble-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    repeating-linear-gradient(
      135deg,
      rgba(24, 53, 95, 0.015) 0,
      rgba(24, 53, 95, 0.015) 12px,
      rgba(242, 195, 77, 0.04) 12px,
      rgba(242, 195, 77, 0.04) 24px
    );
  box-shadow: var(--shadow);
}

.highlight-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
  font-family: "Forum", serif;
  font-size: clamp(1.22rem, 1.9vw, 1.72rem);
  line-height: 1.12;
}

.highlight-card span {
  display: block;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
}

.hero-photo-stack {
  position: relative;
  min-height: 640px;
}

.photo-card {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(24, 53, 95, 0.22);
  border: 8px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.7);
}

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

.photo-card-main {
  inset: 0 72px 76px 0;
}

.photo-card-detail {
  width: 46%;
  height: 58%;
  right: 0;
  bottom: 0;
}

.floating-note {
  position: absolute;
  left: 28px;
  bottom: 28px;
  max-width: 280px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(24, 53, 95, 0.86);
  color: #fff;
  box-shadow: 0 20px 40px rgba(24, 53, 95, 0.2);
}

.floating-note span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-note strong {
  font-size: 1.02rem;
  line-height: 1.45;
}

.trust-band {
  margin-top: 34px;
}

.trust-band-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(38, 88, 154, 0.12);
  box-shadow: 0 10px 30px rgba(24, 53, 95, 0.08);
}

.trust-band-inner span {
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 800;
}

.about-panel {
  display: flex;
  justify-content: flex-end;
}

.marble-card {
  width: min(100%, 460px);
}

.marble-card-top {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
}

.marble-card-top strong,
.service-card h3,
.proof-card strong,
.timeline-item strong,
.story-card h3 {
  font-family: "Forum", serif;
  font-weight: 400;
  color: var(--text);
}

.marble-card-top strong {
  font-size: 1.48rem;
  line-height: 1.25;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.feature-list li {
  position: relative;
  padding-left: 32px;
  color: var(--text-soft);
  line-height: 1.6;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #fff 0 26%, transparent 28%),
    linear-gradient(135deg, var(--gold) 0%, var(--accent) 100%);
  box-shadow: 0 8px 16px rgba(38, 88, 154, 0.14);
}

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

.story-card h3,
.service-card h3,
.proof-card strong,
.timeline-item strong {
  margin: 0 0 12px;
  font-size: 1.16rem;
  line-height: 1.3;
}

.story-card p,
.service-card p,
.proof-card p {
  margin: 0;
}

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

.section-heading.compact {
  margin-bottom: 28px;
}

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

.proof-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.service-card,
.proof-card,
.story-card {
  height: 100%;
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(38, 88, 154, 0.12), rgba(69, 191, 215, 0.22));
  color: var(--brand);
  font-weight: 800;
}

.experience-frame {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  padding: 16px;
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.6)),
    repeating-linear-gradient(
      115deg,
      rgba(255, 255, 255, 0.92) 0,
      rgba(255, 255, 255, 0.92) 18px,
      rgba(69, 191, 215, 0.08) 18px,
      rgba(69, 191, 215, 0.08) 30px
    );
  box-shadow: var(--shadow);
}

.experience-frame img {
  width: 100%;
  border-radius: 28px;
  aspect-ratio: 0.9;
  object-fit: cover;
}

.timeline {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.timeline-item {
  position: relative;
  padding: 0 0 0 28px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  box-shadow: 0 0 0 7px rgba(38, 88, 154, 0.08);
}

.timeline-item::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 28px;
  bottom: -20px;
  width: 2px;
  background: linear-gradient(180deg, rgba(38, 88, 154, 0.16), transparent);
}

.timeline-item:last-child::after {
  display: none;
}

.gallery-swiper {
  overflow: visible;
}

.gallery-card {
  overflow: hidden;
  height: 100%;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 0.92;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 18px 22px 24px;
  color: var(--text-soft);
  font-weight: 700;
  line-height: 1.65;
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  margin: 24px auto 0;
}

.gallery-nav {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(38, 88, 154, 0.1);
  box-shadow: 0 12px 24px rgba(24, 53, 95, 0.12);
}

.gallery-nav::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
}

.gallery-prev::before {
  transform: rotate(135deg);
  margin-left: 4px;
}

.gallery-next::before {
  transform: rotate(-45deg);
  margin-right: 4px;
}

.gallery-pagination {
  position: static;
  inset: auto;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.gallery-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0;
  background: rgba(38, 88, 154, 0.18);
  opacity: 1;
}

.gallery-pagination .swiper-pagination-bullet-active {
  background: var(--brand);
}

.proof-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.2)),
    radial-gradient(circle at 10% 10%, rgba(69, 191, 215, 0.08), transparent 24%);
}

.coverage-section {
  padding-top: 84px;
  padding-bottom: 84px;
}

.coverage-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.coverage-list span {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(38, 88, 154, 0.08);
  color: var(--brand);
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(24, 53, 95, 0.07);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 24px 26px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(38, 88, 154, 0.08);
  box-shadow: 0 14px 30px rgba(24, 53, 95, 0.08);
}

.faq-item summary {
  position: relative;
  padding-right: 30px;
  list-style: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -4px;
  color: var(--accent);
  font-size: 1.5rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

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

.contact-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-card {
  min-height: 100%;
}

.contact-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card a {
  display: block;
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
  word-break: break-word;
}

.contact-card a + a {
  margin-top: 8px;
}

.map-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.6);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    repeating-linear-gradient(
      135deg,
      rgba(24, 53, 95, 0.015) 0,
      rgba(24, 53, 95, 0.015) 12px,
      rgba(242, 195, 77, 0.04) 12px,
      rgba(242, 195, 77, 0.04) 24px
    );
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.map-card:hover,
.map-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(24, 53, 95, 0.16);
}

.map-card-copy {
  display: grid;
  gap: 6px;
}

.map-card-copy span {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.map-card-copy strong {
  font-family: "Forum", serif;
  font-size: 1.24rem;
  font-weight: 400;
  line-height: 1.3;
}

.map-embed {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(38, 88, 154, 0.12);
  background: rgba(255, 255, 255, 0.74);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

.site-footer {
  padding: 34px 0 100px;
  background:
    linear-gradient(180deg, rgba(18, 46, 85, 0.96), rgba(12, 33, 62, 0.98)),
    radial-gradient(circle at top left, rgba(69, 191, 215, 0.14), transparent 30%);
  color: rgba(255, 255, 255, 0.92);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.6fr) minmax(280px, 0.95fr);
  gap: 26px;
  align-items: start;
  padding: 30px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.footer-brand img {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.footer-brand strong {
  display: block;
  font-family: "Forum", serif;
  font-size: 1.26rem;
  color: #fff;
}

.footer-brand span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  min-width: 0;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
}

.footer-label {
  display: block;
  margin-bottom: 2px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p,
.footer-bottom span,
.footer-cta p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.footer-column a {
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #fff;
  transform: translateX(2px);
}

.footer-column p,
.footer-cta p {
  margin: 0;
}

.footer-cta {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  min-width: 0;
}

.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 16px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold) 0%, #efb83e 100%);
  color: var(--brand-strong);
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 14px 28px rgba(242, 195, 77, 0.2);
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 18px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom span {
  font-size: 0.92rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1fb55c, #0f8a44);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(15, 138, 68, 0.28);
}

.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
}

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

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

  .menu-toggle {
    display: inline-block;
  }

  .hero-grid,
  .about-grid,
  .experience-grid,
  .proof-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.6rem, 5.4vw, 4rem);
  }

  .hero-visual {
    order: -1;
  }

  .about-panel {
    justify-content: flex-start;
  }

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

  .footer-inner {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

@media (max-width: 820px) {
  section {
    padding: 82px 0;
  }

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

  .brand strong {
    font-size: 1.28rem;
  }

  .brand small {
    letter-spacing: 0.1em;
    font-size: 0.75rem;
  }

  .header-cta {
    display: none;
  }

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

  .hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.3rem, 8.5vw, 3.35rem);
  }

  .section-heading h2,
  .section-copy h2,
  .experience-copy h2,
  .proof-copy h2,
  .contact-copy h2 {
    font-size: clamp(1.95rem, 7vw, 2.65rem);
  }

  .hero-photo-stack {
    min-height: 520px;
  }

  .photo-card-main {
    inset: 0 42px 70px 0;
  }

  .photo-card-detail {
    width: 52%;
    height: 52%;
  }

  .hero-highlights,
  .contact-panel,
  .story-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .trust-band-inner {
    border-radius: 28px;
  }

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

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

  .footer-brand,
  .footer-grid,
  .footer-cta {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100vw - 28px, 100%);
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand strong {
    font-size: 1.08rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.05rem, 10vw, 2.85rem);
  }

  .photo-card {
    border-width: 6px;
  }

  .photo-card-main {
    inset: 0 28px 62px 0;
  }

  .photo-card-detail {
    width: 54%;
    height: 48%;
  }

  .floating-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
    max-width: none;
  }

  .btn,
  .btn-secondary,
  .btn-primary {
    width: 100%;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    min-height: 56px;
    padding: 0 16px;
  }
}
