@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=DM+Serif+Display&display=swap");

:root {
  --cream: #f7efdf;
  --cream-2: #efe3cf;
  --ink: #17131d;
  --ink-soft: #5c5660;
  --purple: #8063a3;
  --purple-dark: #5f447f;
  --purple-light: #c79bf2;
  --coral: #f23b36;
  --coral-dark: #ca2e2a;
  --white: #fffdf8;
  --black: #080808;
  --green: #1ecb68;
  --line: rgba(23, 19, 29, 0.14);
  --shadow: 0 20px 60px rgba(56, 35, 77, 0.14);
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  overflow-x: hidden;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  font: inherit;
}

a {
  color: inherit;
}

button {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--black);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section {
  padding: 112px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--coral);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 36px;
  height: 2px;
  background: currentColor;
  content: "";
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 4.2vw, 4rem);
}

p {
  color: var(--ink-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 239, 223, 0.94);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: max-content;
  color: var(--black);
  text-decoration: none;
}

.brand-name {
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: -0.045em;
}

.brand-name-strong {
  font-weight: 700;
}

.brand-symbol {
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--coral);
}

.brand-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 82px 0 auto;
  z-index: 79;
  display: grid;
  gap: 0;
  padding: 18px 20px 28px;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  text-decoration: none;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 700px;
  padding: 70px 0 76px;
  overflow: hidden;
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(128, 99, 163, 0.25);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-a {
  top: -460px;
  right: -180px;
  width: 920px;
  height: 920px;
}

.hero-orbit-b {
  right: 28%;
  bottom: -500px;
  width: 820px;
  height: 820px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.92fr);
  align-items: center;
  gap: clamp(48px, 6vw, 82px);
}

.hero-copy {
  padding-block: 28px;
}

.hero h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 4vw, 3.35rem);
  line-height: 1.04;
}

.hero-subtitle {
  max-width: 590px;
  margin-bottom: 34px;
  color: #4f4953;
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.45;
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.arrow-icon {
  display: inline-block;
  flex: 0 0 auto;
  width: 1.08em;
  height: 1.08em;
  background: currentColor;
  color: currentColor;
  vertical-align: -0.12em;
  transition: transform 0.2s ease;
}

.arrow-icon-up-right {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 12.5 12.5 3.5M6.5 3.5h6v6' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 12.5 12.5 3.5M6.5 3.5h6v6' fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

a:hover .arrow-icon-up-right,
a:focus-visible .arrow-icon-up-right,
button:hover .arrow-icon-up-right,
button:focus-visible .arrow-icon-up-right {
  transform: translate(2px, -2px);
}

.button-primary {
  background: var(--coral);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--coral-dark);
}

.button-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.52);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--ink);
}

.language-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 24px 0 0;
  font-size: 0.82rem;
}

.language-note > span:first-child {
  color: var(--purple);
}

.hero-visual {
  position: relative;
  width: min(100%, 560px);
  margin-inline: auto;
}

.hero-photo-frame {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  height: 560px;
  gap: 10px;
}

.hero-photo {
  position: relative;
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 6px solid var(--white);
  background: var(--cream-2);
  box-shadow: var(--shadow);
}

.hero-photo-1 {
  grid-row: 1 / -1;
  border-radius: 220px 28px 28px 28px;
}

.hero-photo-2 {
  border-radius: 28px 140px 28px 28px;
}

.hero-photo-3 {
  border-radius: 28px 28px 140px 28px;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-photo-1 img {
  object-position: 50% 45%;
}

.hero-photo-2 img {
  object-position: 52% 42%;
}

.hero-photo-3 img {
  object-position: 50% 34%;
}

.hero-photo-frame:hover img {
  transform: scale(1.025);
}

.hero-caption {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-align: center;
}

.trust-band {
  border-block: 1px solid rgba(255, 255, 255, 0.15);
  background: var(--purple);
  color: var(--white);
}

.trust-inner {
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  text-align: center;
}

.trust-inner > span {
  color: inherit;
  font-size: clamp(0.9rem, 1.8vw, 1.12rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-inner strong {
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 9.4rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.85;
}

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

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(58px, 9vw, 120px);
}

.about-photo {
  position: relative;
  min-height: 610px;
  margin: 0;
  overflow: hidden;
  border-radius: 260px 260px 28px 28px;
  background: var(--cream-2);
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  object-position: 50% center;
}

.about-photo figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(247, 239, 223, 0.9);
  color: var(--ink);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.about-copy h2 {
  max-width: 680px;
}

.about-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.75;
}

.language-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 11px 16px;
  border: 1px solid rgba(128, 99, 163, 0.25);
  border-radius: 999px;
  background: rgba(199, 155, 242, 0.12);
  color: var(--purple-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.services {
  background: var(--cream);
}

.section-heading {
  margin-bottom: 52px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.42fr);
  align-items: end;
  gap: 52px;
}

.split-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.split-heading > p {
  max-width: 380px;
  margin-bottom: 8px;
  line-height: 1.7;
}

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

.service-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(56, 35, 77, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-card > img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.service-card:nth-child(9) > img {
  object-position: center 62%;
}

.service-card:nth-child(12) > img {
  object-position: center 55%;
}

.service-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.service-number {
  margin-bottom: 16px;
  color: var(--coral);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.service-card h3 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.15;
}

.service-card p {
  margin-bottom: 22px;
  font-size: 0.92rem;
  line-height: 1.65;
}

.service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--purple-dark);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.service-link:hover,
.service-link:focus-visible {
  color: var(--coral);
}

.why {
  background: var(--purple);
  color: var(--white);
}

.why .eyebrow,
.why h2,
.why h3 {
  color: var(--white);
}

.why .eyebrow {
  color: #f4d9b5;
}

.why-layout {
  display: block;
}

.why-copy h2 {
  max-width: 820px;
  font-size: clamp(2.35rem, 4vw, 3.5rem);
}

.why-intro {
  max-width: 580px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}

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

.why-points article {
  min-height: 190px;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
}

.why-points span {
  display: block;
  margin-bottom: 34px;
  color: #f4d9b5;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.why-points h3 {
  margin-bottom: 9px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 400;
}

.why-points p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.55;
}

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

.method-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(56px, 8vw, 110px);
}

.method-photo {
  height: 660px;
  margin: 0;
  overflow: hidden;
  border-radius: 26px 260px 26px 26px;
  background: var(--cream-2);
  box-shadow: var(--shadow);
}

.method-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
}

.method-content h2 {
  margin-bottom: 42px;
}

.method-steps {
  border-top: 1px solid var(--line);
}

.method-steps article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.method-steps > article > span {
  color: var(--coral);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.method-steps h3 {
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.method-steps p {
  max-width: 560px;
  margin-bottom: 0;
}

.gallery {
  background: var(--cream);
}

.gallery-grid {
  columns: 3 300px;
  column-gap: 14px;
}

.gallery-item {
  position: relative;
  width: 100%;
  margin: 0 0 14px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--cream-2);
  break-inside: avoid;
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.55s ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(247, 239, 223, 0.93);
  font-size: 0.68rem;
  font-weight: 700;
}

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

.credentials-heading {
  max-width: 820px;
  margin-bottom: 52px;
}

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

.certificate-card {
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--cream);
  cursor: zoom-in;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.certificate-card:hover,
.certificate-card:focus-visible {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.certificate-image {
  display: grid;
  place-items: center;
  height: 350px;
  padding: 18px;
  background: #fff;
}

.certificate-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.certificate-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
}

.certificate-info strong {
  font-size: 0.92rem;
}

.certificate-info small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  color: var(--purple-dark);
  font-weight: 700;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 56px 0 108px;
  background: var(--coral);
  color: var(--white);
  text-align: center;
}

.final-cta-inner {
  max-width: 900px;
}

.final-cta-person {
  width: min(620px, 78vw);
  margin: -58px auto -44px;
}

.final-cta-person img {
  display: block;
  width: 100%;
  height: auto;
}

.final-cta .eyebrow {
  justify-content: center;
  color: var(--white);
}

.final-cta h2 {
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 6vw, 5.3rem);
}

.final-cta p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.86);
}

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

.button-dark:hover,
.button-dark:focus-visible {
  background: #2d2236;
}

.footer {
  padding: 76px 0 30px;
  background: var(--black);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 0.7fr);
  gap: 52px;
}

.footer-wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.footer-symbol {
  width: 38px;
  height: 38px;
  overflow: hidden;
  border-radius: 11px;
  background: var(--coral);
}

.footer-symbol video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-brand p {
  max-width: 320px;
  color: rgba(255, 255, 255, 0.55);
}

.footer h3 {
  margin: 0 0 20px;
  color: var(--purple-light);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer a,
.footer-grid > div > span {
  display: block;
  width: fit-content;
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.87rem;
  text-decoration: none;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--white);
}

.footer .footer-contact-item {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-flag {
  flex: 0 0 auto;
  font-size: 1.05rem;
  line-height: 1;
}

.footer-mail-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.footer .footer-social-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
}

.footer-social-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.footer-social-icon svg path:first-child {
  fill: currentColor;
  stroke: none;
}

.footer-social-icon svg rect,
.footer-social-icon svg circle:not(.social-icon-fill) {
  fill: none;
}

.footer-social-icon svg .social-icon-fill {
  fill: currentColor;
  stroke: none;
}

.footer-social-icon svg .social-icon-fill-dark {
  fill: var(--black);
  stroke: none;
}

.footer .footer-social-youtube {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 4px 0 0;
  font-weight: 700;
}

.footer-social-youtube > .footer-social-icon {
  margin: 0;
}

.company-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 58px;
  padding: 28px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.company-row strong,
.company-row span {
  display: block;
}

.company-row .company-name {
  color: var(--white);
  font-size: 1.05rem;
}

.company-row div > span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

.company-row a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 0;
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.74rem;
}

.language-switcher {
  position: fixed;
  top: 50%;
  right: 14px;
  z-index: 70;
  display: grid;
  gap: 4px;
  padding: 7px;
  border: 1px solid rgba(23, 19, 29, 0.11);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.95);
  box-shadow: 0 12px 30px rgba(28, 19, 35, 0.16);
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
}

.language-switcher button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 50px;
  padding: 4px;
  border: 0;
  border-radius: 15px;
  background: transparent;
  cursor: pointer;
}

.language-switcher button.active {
  background: var(--purple-light);
}

.language-switcher button > span {
  font-size: 1.05rem;
  line-height: 1;
}

.language-switcher small {
  margin-top: 2px;
  font-size: 0.57rem;
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 72;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 4px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(19, 123, 66, 0.25);
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.04);
}

.cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 75;
  display: flex;
  width: min(430px, calc(100% - 40px));
  align-items: center;
  gap: 16px;
  padding: 16px 16px 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 17px;
  background: rgba(8, 8, 8, 0.96);
  color: var(--white);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.28);
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice p {
  flex: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  line-height: 1.45;
}

.cookie-notice button {
  flex: 0 0 auto;
  padding: 9px 14px;
  border: 0;
  border-radius: 999px;
  background: var(--purple-light);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
}

.certificate-modal {
  width: min(1040px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 20px;
  border: 0;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.certificate-modal::backdrop {
  background: rgba(11, 8, 13, 0.82);
  backdrop-filter: blur(4px);
}

.certificate-modal img {
  width: 100%;
  max-height: calc(100vh - 72px);
  object-fit: contain;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1060px) {
  .desktop-nav {
    gap: 17px;
  }

  .desktop-nav a {
    font-size: 0.79rem;
  }

  .header-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    gap: 45px;
  }

  .hero-photo-frame {
    height: 520px;
  }

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

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

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

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding: 58px 0 75px;
  }

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

  .hero-copy {
    padding-block: 0;
  }

  .hero h1 {
    max-width: 680px;
    font-size: clamp(2.4rem, 7.5vw, 3.2rem);
  }

  .hero-subtitle {
    max-width: 590px;
  }

  .hero-visual {
    width: min(100% - 20px, 580px);
  }

  .hero-photo-frame {
    height: min(640px, 105vw);
  }

  .about-grid,
  .method-layout {
    grid-template-columns: 1fr;
  }

  .about-photo {
    width: min(100%, 560px);
    min-height: 620px;
    margin-inline: auto;
  }

  .about-photo img {
    min-height: 620px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .split-heading > p {
    max-width: 580px;
  }

  .method-photo {
    width: min(100%, 620px);
    height: 620px;
    margin-inline: auto;
  }

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

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

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

  .brand {
    gap: 6px;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .brand-symbol {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .mobile-nav {
    inset-block-start: 70px;
  }

  .hero {
    min-height: 0;
  }

  .hero::before {
    position: absolute;
    inset: 0 0 auto;
    z-index: -2;
    height: 780px;
    background:
      linear-gradient(
        180deg,
        rgba(247, 239, 223, 0.78) 0%,
        rgba(247, 239, 223, 0.86) 58%,
        rgba(247, 239, 223, 0.97) 88%,
        var(--cream) 100%
      ),
      url("./gallery-05.webp") center 38% / cover no-repeat;
    content: "";
  }

  .hero-copy {
    text-shadow: 0 1px 0 rgba(255, 253, 248, 0.46);
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: clamp(2.05rem, 9.6vw, 2.55rem);
    line-height: 1.04;
  }

  .hero-subtitle {
    margin-bottom: 28px;
    font-size: 1rem;
  }

  .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .language-note {
    align-items: flex-start;
    font-size: 0.75rem;
  }

  .hero-photo-frame {
    height: 118vw;
    min-height: 460px;
    max-height: 590px;
    gap: 7px;
  }

  .hero-photo {
    border-width: 4px;
  }

  .hero-photo-1 {
    border-radius: 150px 20px 20px 20px;
  }

  .hero-photo-2 {
    border-radius: 20px 90px 20px 20px;
  }

  .hero-photo-3 {
    border-radius: 20px 20px 90px 20px;
  }

  .hero-caption {
    font-size: 0.5rem;
    line-height: 1.6;
  }

  .trust-inner {
    min-height: 132px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 7px 12px;
    padding-block: 20px;
  }

  .trust-inner strong {
    font-size: clamp(2.9rem, 15vw, 3.8rem);
    letter-spacing: -0.045em;
  }

  .trust-inner > span {
    font-size: 0.68rem;
    letter-spacing: 0.07em;
  }

  .about-photo,
  .about-photo img {
    min-height: 120vw;
    max-height: 640px;
  }

  .about-copy > p:not(.eyebrow) {
    font-size: 0.94rem;
  }

  h2,
  .why-copy h2 {
    font-size: clamp(2.15rem, 9.2vw, 2.85rem);
  }

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

  .service-card {
    min-height: 0;
  }

  .service-card > img {
    height: 220px;
  }

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

  .why-points article {
    display: grid;
    grid-template-columns: 36px 1fr;
    min-height: 0;
    column-gap: 12px;
  }

  .why-points span {
    grid-row: span 2;
    margin: 4px 0 0;
  }

  .method-photo {
    height: 120vw;
    max-height: 620px;
  }

  .method-steps article {
    grid-template-columns: 38px 1fr;
    gap: 10px;
  }

  .gallery-grid {
    columns: 2;
    column-gap: 8px;
  }

  .gallery-item {
    margin-bottom: 8px;
    border-radius: 14px;
  }

  .gallery-item span {
    right: 9px;
    bottom: 9px;
    width: 34px;
    height: 34px;
    font-size: 0.6rem;
  }

  .certificate-image {
    height: 260px;
    padding: 10px;
  }

  .certificate-info {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

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

  .company-row,
  .copyright {
    align-items: flex-start;
    flex-direction: column;
  }

  .company-row {
    margin-top: 40px;
  }

  .final-cta {
    padding: 42px 0 82px;
  }

  .final-cta-person {
    width: min(720px, 128vw);
    margin: -30px -14vw -28px;
  }

  .language-switcher {
    right: 6px;
    padding: 4px;
    border-radius: 18px;
  }

  .language-switcher button {
    width: 38px;
    height: 44px;
    border-radius: 13px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }

  .cookie-notice {
    bottom: 12px;
    left: 12px;
    width: calc(100% - 78px);
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
  }
}

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

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

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