:root {
  --page: #f7fbff;
  --ink: #091426;
  --muted: #66758a;
  --soft: #eef5ff;
  --line: rgba(255, 255, 255, .66);
  --blue: #2b7cff;
  --cyan: #6be7ff;
  --violet: #7968ff;
  --pink: #ff4fa3;
  --teal: #00a99d;
  --yellow: #ffd166;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(24, 57, 102, .14);
  --shadow-strong: 0 34px 100px rgba(24, 57, 102, .2);
  --section-gap: 76px;
  --section-gap-tight: 28px;
  --glass-scroll: 0px;
  --glass-scroll-reverse: 0px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #fbfdff 0%, #f1faff 38%, #ffffff 74%, #f7fcff 100%);
  color: var(--ink);
  font-family: Poppins, Arial, sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.iphone-wallpaper {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 16% 8%, rgba(191,239,255,.62), transparent 34%),
    radial-gradient(ellipse at 82% 90%, rgba(214,247,255,.66), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(239,250,255,.86) 42%, rgba(255,255,255,.98));
}
.iphone-wallpaper::before {
  position: absolute;
  top: -24vh;
  left: -18vw;
  width: min(980px, 74vw);
  height: 86vh;
  content: "";
  border-radius: 44% 56% 48% 52% / 46% 40% 60% 54%;
  background:
    radial-gradient(ellipse at 34% 24%, rgba(255,255,255,.95), rgba(255,255,255,.28) 25%, transparent 44%),
    radial-gradient(ellipse at 58% 48%, rgba(106,213,248,.70), rgba(179,237,255,.52) 42%, transparent 72%),
    radial-gradient(ellipse at 28% 72%, rgba(42,154,217,.34), transparent 58%),
    linear-gradient(135deg, rgba(255,255,255,.76), rgba(184,237,255,.44));
  box-shadow:
    inset 54px 54px 92px rgba(255,255,255,.72),
    inset -36px -42px 92px rgba(32,132,182,.17),
    0 42px 130px rgba(54,157,204,.16);
  opacity: .72;
  filter: blur(1px);
  transform: translate3d(0, var(--glass-scroll), 0) rotate(-9deg);
  animation: glassGradientFloat 26s ease-in-out infinite alternate;
}
.iphone-wallpaper::after {
  position: absolute;
  right: -22vw;
  bottom: -28vh;
  width: min(1100px, 82vw);
  height: 92vh;
  content: "";
  border-radius: 56% 44% 52% 48% / 42% 54% 46% 58%;
  background:
    radial-gradient(ellipse at 62% 28%, rgba(255,255,255,.88), rgba(255,255,255,.22) 24%, transparent 44%),
    radial-gradient(ellipse at 40% 48%, rgba(97,205,241,.62), rgba(197,244,255,.52) 42%, transparent 74%),
    radial-gradient(ellipse at 70% 76%, rgba(38,139,207,.28), transparent 58%),
    linear-gradient(145deg, rgba(255,255,255,.72), rgba(184,237,255,.38));
  box-shadow:
    inset 58px 48px 100px rgba(255,255,255,.78),
    inset -40px -38px 86px rgba(33,133,181,.14),
    0 -36px 130px rgba(54,157,204,.13);
  opacity: .62;
  filter: blur(1px);
  transform: translate3d(0, var(--glass-scroll-reverse), 0) rotate(10deg);
  animation: glassGradientFloat 30s ease-in-out infinite alternate-reverse;
}

.liquid-panel,
.site-header,
.contact-form,
.article-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,255,255,.28)),
    rgba(255,255,255,.34);
  box-shadow:
    inset 1px 1px 0 rgba(255,255,255,.76),
    inset -1px -1px 0 rgba(255,255,255,.2),
    var(--shadow);
}
.liquid-panel::before,
.site-header::before,
.contact-form::before,
.article-card::before {
  position: absolute;
  inset: -36px;
  z-index: 0;
  content: "";
  background:
    radial-gradient(circle at 24% 22%, rgba(255,255,255,.68), transparent 23%),
    radial-gradient(circle at 84% 74%, rgba(107,231,255,.22), transparent 28%),
    radial-gradient(circle at 44% 62%, rgba(121,104,255,.12), transparent 32%);
  opacity: .7;
}
.liquid-panel::after,
.site-header::after,
.contact-form::after,
.article-card::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, rgba(255,255,255,.56), transparent 24%),
    linear-gradient(315deg, rgba(255,255,255,.24), transparent 26%);
}
.liquid-panel > *,
.site-header > *,
.contact-form > *,
.article-card > * {
  position: relative;
  z-index: 1;
}

.service-card.liquid-panel,
.album-card.liquid-panel,
.branch-card.liquid-panel,
.article-card,
.contact-form {
  backdrop-filter: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,.82), rgba(255,255,255,.48)),
    rgba(255,255,255,.62);
}

.service-card.liquid-panel::before,
.album-card.liquid-panel::before,
.branch-card.liquid-panel::before,
.article-card::before,
.contact-form::before {
  display: none;
}

.site-header {
  position: relative;
  top: 14px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 10px 12px;
}
.brand,
.site-nav,
.hero-actions,
.contact-actions,
.contact-list,
.trust-track,
.check-list li,
.album-head,
.footer-social {
  display: flex;
  align-items: center;
}
.brand { gap: 10px; font-weight: 900; font-size: 16px; }
.brand img { width: 40px; height: 40px; border-radius: 8px; object-fit: contain; background: #fff; }
.site-nav {
  gap: 4px;
  padding: 4px;
  border-radius: 8px;
  background: rgba(255,255,255,.48);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.site-nav a { padding: 9px 12px; border-radius: 8px; }
.site-nav a:hover { background: rgba(255,255,255,.78); color: var(--blue); }

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.header-cta,
.btn-primary {
  background: linear-gradient(135deg, #2b7cff, #37b6ff);
  color: #fff;
  box-shadow: 0 16px 32px rgba(43,124,255,.22);
}
.btn-ghost {
  color: var(--ink);
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(255,255,255,.72);
}
.btn:hover,
.header-cta:hover { transform: translateY(-2px); color: inherit; }

.hero-section,
.split-section,
.section-block,
.achievement-section,
.contact-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}
.hero-section {
  display: block;
  min-height: auto;
  padding: 48px 0 24px;
}
.hero-frame {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .86fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  width: 100%;
  min-height: 560px;
  padding: clamp(34px, 5vw, 66px);
  transform: translateZ(0);
}
.hero-copy {
  padding: 0;
}
.eyebrow {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.64);
  color: #0b6f9a;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
h1,h2,h3,p { margin-top: 0; }
h1 {
  max-width: 640px;
  margin: 18px 0 18px;
  font-size: clamp(44px, 5.8vw, 74px);
  line-height: 1.02;
  letter-spacing: 0;
}
h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
}
h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.26;
}
.hero-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.hero-actions { flex-wrap: wrap; gap: 12px; margin: 28px 0; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255,255,255,.45);
}
.hero-stats div {
  padding: 13px;
  border-radius: 8px;
  background: rgba(255,255,255,.52);
}
.hero-stats strong,
.hero-stats span { display: block; }
.hero-stats strong { font-size: 20px; line-height: 1.2; }
.hero-stats span { color: var(--muted); font-size: 12px; font-weight: 700; }

.hero-media {
  display: grid;
  min-height: 430px;
  place-items: center;
}
.hero-media img {
  width: min(100%, 520px);
  max-height: 460px;
  object-fit: contain;
  animation: heroIllustrationFloat 6.8s ease-in-out infinite;
}

.trust-strip {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto var(--section-gap);
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 14px 0;
  scrollbar-width: none;
}
.trust-strip::-webkit-scrollbar {
  display: none;
}
.trust-track {
  display: flex;
  gap: 14px;
  min-width: max-content;
  padding-inline: 2px;
  transform: translateX(0);
}
.trust-track.is-moving {
  will-change: transform;
  transition: transform .55s cubic-bezier(.22, .61, .36, 1);
}
.trust-track span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 14px 18px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,255,255,.34)),
    rgba(255,255,255,.42);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 16px 36px rgba(35,75,120,.08), inset 1px 1px 0 rgba(255,255,255,.72);
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
  flex: 0 0 auto;
  min-width: 270px;
}
.trust-track i { color: var(--blue); font-size: 18px; }

.achievement-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: var(--section-gap);
  padding: 38px 28px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.76), rgba(255,255,255,.38)),
    rgba(255,255,255,.36);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: var(--shadow);
}
.achievement-item {
  display: grid;
  gap: 8px;
  place-items: center;
  text-align: center;
}
.achievement-item strong {
  color: #1775ff;
  font-size: clamp(44px, 6vw, 62px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}
.achievement-item span {
  color: #263242;
  font-size: 15px;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: .92fr 1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: var(--section-gap-tight);
}
.section-media { min-height: 360px; padding: 20px; }
.about-visual {
  display: grid;
  min-height: 430px;
  padding: 14px;
}
.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 402px;
  border-radius: 8px;
  object-fit: cover;
}
.about-visual-card {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 2;
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.74);
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 18px 44px rgba(15,23,42,.14);
}
.about-visual-card strong {
  color: var(--ink);
  font-size: 18px;
}
.about-visual-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.process-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  height: 100%;
}
.process-board div {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255,255,255,.48);
  border: 1px solid rgba(255,255,255,.58);
  animation: cardFloat 6s ease-in-out infinite;
}
.process-board div:nth-child(2) { animation-delay: .45s; }
.process-board div:nth-child(3) { animation-delay: .9s; }
.process-board div:nth-child(4) { animation-delay: 1.35s; }
.process-board strong { font-size: 42px; line-height: 1; color: var(--blue); }
.process-board span { color: var(--ink); font-weight: 800; }
.section-copy {
  padding: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,.42);
}
.section-copy p { color: var(--muted); }
.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}
.check-list li { gap: 10px; align-items: flex-start; font-weight: 700; }
.check-list i { color: var(--teal); font-size: 20px; }

.section-block { margin-bottom: var(--section-gap); }
.split-section,
.section-block {
  content-visibility: auto;
  contain-intrinsic-size: 620px;
}
.section-heading {
  display: block;
  margin-bottom: 24px;
  text-align: left;
}
.section-heading .eyebrow {
  margin-bottom: 12px;
}
.section-heading h2 {
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}
.section-heading.compact { display: block; text-align: left; }
.section-heading.compact h2 { margin-top: 12px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.service-card,
.article-card,
.album-card,
.branch-card {
  transition: transform .22s ease, box-shadow .22s ease;
  animation: sectionFloat 8s ease-in-out infinite;
}
.service-card:nth-child(2),
.album-card:nth-child(2),
.branch-card:nth-child(2),
.article-card:nth-child(2) { animation-delay: .55s; }
.service-card:nth-child(3),
.article-card:nth-child(3) { animation-delay: 1.1s; }
.service-card:hover,
.article-card:hover,
.album-card:hover,
.branch-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}
.service-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.service-image img,
.article-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dummy-visual {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 190px;
  place-items: center;
  background:
    radial-gradient(circle at 28% 28%, rgba(255,255,255,.86), transparent 22%),
    radial-gradient(circle at 76% 72%, rgba(107,231,255,.36), transparent 28%),
    linear-gradient(135deg, rgba(43,124,255,.12), rgba(121,104,255,.16));
  animation: liquidShift 9s ease-in-out infinite alternate;
}
.dummy-visual span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 24px;
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(255,255,255,.72);
  color: var(--blue);
  font-size: 24px;
  font-weight: 900;
}
.service-image > span,
.gallery-card > span,
.article-body span {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: #241900;
  font-size: 11px;
  font-weight: 800;
}
.service-image > span { position: absolute; left: 14px; bottom: 14px; }
.service-content,
.article-body { padding: 20px; }
.service-content p,
.service-content small,
.article-body p,
.article-body small {
  color: var(--muted);
  font-size: 14px;
}
.article-body small {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.article-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 16px;
  padding: 10px 13px;
  border: 1px solid rgba(47,122,255,.18);
  border-radius: 8px;
  color: var(--blue);
  background: rgba(255,255,255,.72);
  box-shadow: 0 12px 28px rgba(37,99,235,.10);
  font-family: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}
.article-read-btn:hover {
  transform: translateY(-1px);
  background: #fff;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.album-card { padding: 14px; }
.album-head {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.album-head small { color: var(--muted); font-size: 13px; font-weight: 700; }
.album-mosaic {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  grid-auto-rows: 180px;
  gap: 12px;
}
.gallery-card {
  position: relative;
  display: flex;
  min-height: 180px;
  overflow: hidden;
  align-items: end;
  border-radius: 8px;
  background: rgba(255,255,255,.38);
  color: var(--ink);
}
.gallery-card.featured { grid-row: span 2; }
.gallery-card img,
.gallery-card .gallery-dummy {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .32s ease;
}
.gallery-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.82));
}
.gallery-card:hover img,
.gallery-card:hover .gallery-dummy { transform: scale(1.05); }
.gallery-card > span,
.gallery-card div:not(.dummy-visual) {
  position: relative;
  z-index: 1;
}
.gallery-card > span { position: absolute; top: 12px; left: 12px; }
.gallery-card div:not(.dummy-visual) { padding: 18px; }
.gallery-card h3,
.gallery-card p { margin-bottom: 0; }
.gallery-card p { color: var(--muted); font-size: 13px; }

.branch-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.branch-card {
  display: grid;
  grid-template-columns: .86fr 1fr;
  gap: 14px;
  padding: 14px;
}
.branch-info {
  padding: 18px;
  border-radius: 8px;
  background: rgba(255,255,255,.46);
}
.branch-info p { color: var(--muted); }
.branch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.map-frame {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255,255,255,.6);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  display: block;
}
.article-section {
  padding: 48px 0;
  border-top: 1px solid rgba(218,232,250,.8);
  border-bottom: 1px solid rgba(218,232,250,.8);
}
.article-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 210px;
}
.article-card > img,
.article-card > .article-dummy {
  width: 100%;
  height: 100%;
  min-height: 210px;
}
.article-body h3 { margin: 12px 0 8px; }
.article-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.article-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.article-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,.42);
}
.article-modal-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, .82fr) 1fr;
  width: min(920px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 34px 90px rgba(15,23,42,.28);
  transform: translateY(12px) scale(.98);
  transition: transform .2s ease;
}
.article-modal.is-open .article-modal-dialog {
  transform: translateY(0) scale(1);
}
.article-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(218,232,250,.9);
  border-radius: 8px;
  background: rgba(255,255,255,.88);
  color: var(--ink);
  cursor: pointer;
}
.article-modal-media {
  min-height: 420px;
  background: linear-gradient(135deg, rgba(224,242,254,.9), rgba(237,233,254,.86));
}
.article-modal-media img,
.article-modal-media .article-dummy {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-modal-media .article-dummy {
  min-height: 420px;
}
.article-modal-content {
  max-height: min(760px, calc(100vh - 48px));
  overflow-y: auto;
  scrollbar-gutter: stable;
  padding: 42px 34px 34px;
}
.article-modal-content h2 {
  margin: 14px 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}
.article-modal-content > p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 17px;
}
.article-modal-content #article-modal-body {
  display: grid;
  gap: 14px;
  color: #53647b;
  font-size: 15px;
  line-height: 1.8;
}
.article-modal-content #article-modal-body p {
  margin: 0;
}
body.modal-open {
  overflow: hidden;
}

.wa-choice-modal {
  position: fixed;
  inset: 0;
  z-index: 1001;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.wa-choice-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.wa-choice-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,.42);
}
.wa-choice-dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: 28px;
  border: 1px solid rgba(255,255,255,.74);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(237,250,255,.86)),
    #fff;
  box-shadow: 0 34px 90px rgba(15,23,42,.25);
  transform: translateY(12px) scale(.98);
  transition: transform .2s ease;
}
.wa-choice-modal.is-open .wa-choice-dialog {
  transform: translateY(0) scale(1);
}
.wa-choice-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(218,232,250,.9);
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  color: var(--ink);
  cursor: pointer;
}
.wa-choice-dialog h2 {
  margin: 14px 44px 10px 0;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.08;
}
.wa-choice-dialog p {
  color: var(--muted);
}
.wa-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.wa-choice-option {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(218,232,250,.95);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 14px 34px rgba(37,99,235,.08);
}
.wa-choice-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(37,99,235,.14);
}
.wa-choice-option i {
  color: #12b76a;
  font-size: 25px;
}
.wa-choice-option strong {
  color: var(--ink);
  font-size: 17px;
}
.wa-choice-option span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 24px;
  align-items: start;
  margin-bottom: 56px;
  padding: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,.44);
  border: 1px solid rgba(255,255,255,.68);
  box-shadow: var(--shadow);
  content-visibility: auto;
  contain-intrinsic-size: 480px;
}
.contact-copy p,
.contact-list { color: var(--muted); }
.contact-actions { flex-wrap: wrap; gap: 12px; margin: 22px 0; }
.contact-list { flex-direction: column; align-items: flex-start; gap: 16px; }
.contact-branch {
  display: grid;
  gap: 6px;
  max-width: 620px;
}
.contact-branch strong {
  color: var(--ink);
  font-size: 15px;
}
.contact-branch span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.55;
}
.contact-branch i {
  margin-top: 3px;
  color: #64748b;
}
.contact-form {
  display: grid;
  gap: 14px;
  padding: 20px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(195,213,235,.9);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255,255,255,.76);
  color: var(--ink);
  font: inherit;
}
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--muted);
  font-size: 14px;
}
.site-footer a { color: var(--blue); font-weight: 800; }
.footer-social {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.footer-social a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 999px;
  background: rgba(255,255,255,.54);
}
.float-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  background: #12b76a;
  color: #fff;
  box-shadow: 0 16px 36px rgba(18,183,106,.32);
  font-size: 26px;
  animation: pulseWa 2.6s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes wallpaperDrift {
  0% { transform: translate3d(-1.5%, 0, 0) rotate(-8deg) scale(1); }
  100% { transform: translate3d(1.5%, 2%, 0) rotate(-8deg) scale(1.04); }
}
@keyframes glassGradientFloat {
  0% { background-position: 0 0, 0 0, 0 0, 0 0; }
  100% { background-position: 0 0, 24px 18px, -18px 26px, 0 0; }
}
@keyframes sectionFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes heroIllustrationFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.01); }
}
@keyframes cardFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@keyframes liquidShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
@keyframes pulseWa {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.04); }
}

@media (max-width: 1100px) {
  :root {
    --section-gap: 62px;
    --section-gap-tight: 24px;
  }
  .site-nav { display: none; }
  .hero-frame,
  .split-section,
  .contact-section,
  .branch-card {
    grid-template-columns: 1fr;
  }
  .hero-section { padding-top: 42px; }
  .hero-frame { min-height: auto; }
  .hero-media { min-height: 360px; }
  .service-grid,
  .album-grid,
  .branch-grid,
  .achievement-section,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  :root {
    --section-gap: 50px;
    --section-gap-tight: 20px;
  }
  .site-header { top: 10px; width: calc(100% - 20px); margin-top: 10px; }
  .brand span {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .header-cta { padding-inline: 12px; }
  h1 { font-size: 40px; }
  .hero-section { padding: 34px 0 18px; }
  .hero-frame { padding: 24px; }
  .hero-media { min-height: 260px; }
  .hero-media img { max-height: 300px; }
  .hero-stats,
  .service-grid,
  .album-grid,
  .branch-grid,
  .achievement-section,
  .article-grid,
  .process-board {
    grid-template-columns: 1fr;
  }
  .achievement-section {
    padding: 26px 18px;
    gap: 22px;
  }
  .album-mosaic { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-card.featured { grid-row: span 1; }
  .article-card { grid-template-columns: 1fr; }
  .article-modal {
    padding: 14px;
  }
  .article-modal-dialog {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 28px);
  }
  .article-modal-media,
  .article-modal-media .article-dummy {
    min-height: 220px;
  }
  .article-modal-content {
    max-height: calc(100vh - 248px);
    padding: 28px 20px 24px;
  }
  .wa-choice-grid {
    grid-template-columns: 1fr;
  }
  .wa-choice-dialog {
    padding: 24px 18px 18px;
  }
  .contact-section { padding: 20px; }
  .site-footer { flex-direction: column; align-items: flex-start; }
  .footer-social { justify-content: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
