/* =========================================================
   Footcare youme / 2026 Redesign
   SHIFPIA family design: ivory, deep navy, aqua, dusty rose
   ========================================================= */

:root {
  --fc-navy: #0b2340;
  --fc-navy-deep: #07182c;
  --fc-navy-soft: #173956;
  --fc-aqua: #4ea9b8;
  --fc-aqua-dark: #2c7d8a;
  --fc-aqua-pale: #eaf6f6;
  --fc-aqua-light: #f4fbfa;
  --fc-rose: #d98191;
  --fc-rose-dark: #bd6578;
  --fc-rose-pale: #faedf0;
  --fc-ivory: #f6f2e8;
  --fc-ivory-light: #fbfaf6;
  --fc-white: #ffffff;
  --fc-ink: #182536;
  --fc-muted: #66717e;
  --fc-line: #dce4e5;
  --fc-line-dark: rgba(11, 35, 64, 0.14);
  --fc-shadow-sm: 0 10px 30px rgba(11, 35, 64, 0.07);
  --fc-shadow-md: 0 24px 65px rgba(11, 35, 64, 0.12);
  --fc-shadow-lg: 0 35px 90px rgba(7, 24, 44, 0.16);
  --fc-container: 1180px;
  --fc-header-height: 82px;
  --fc-radius-sm: 12px;
  --fc-radius: 22px;
  --fc-radius-lg: 36px;
  --fc-font-serif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --fc-font-sans: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --fc-font-en: "Outfit", "Noto Sans JP", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--fc-header-height) + 24px);
}

body.fc {
  min-width: 320px;
  margin: 0;
  color: var(--fc-ink);
  background: var(--fc-white);
  font-family: var(--fc-font-sans);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.fc.fcMenuOpen {
  overflow: hidden;
}

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

.fc svg {
  display: block;
}

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

.fc button,
.fc input,
.fc textarea {
  font: inherit;
}

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

.fc :focus-visible {
  outline: 3px solid rgba(78, 169, 184, 0.48);
  outline-offset: 4px;
}

.fcContainer {
  width: min(calc(100% - 48px), var(--fc-container));
  margin-inline: auto;
}

.fcSkipLink {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--fc-white) !important;
  background: var(--fc-navy);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.fcSkipLink:focus {
  transform: translateY(0);
}

.js .fc [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Header */
.fcHeader {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--fc-header-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.fcHeader.is-scrolled {
  border-color: rgba(11, 35, 64, 0.08);
  box-shadow: 0 10px 30px rgba(11, 35, 64, 0.06);
}

.fcHeader__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.fcBrand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 15px;
}

.fcBrand__logo {
  width: auto;
  height: 48px;
  object-fit: contain;
}

.fcBrand__descriptor {
  padding-left: 14px;
  color: var(--fc-muted);
  border-left: 1px solid var(--fc-line);
  font-family: var(--fc-font-serif);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.13em;
  white-space: nowrap;
}

.fcNav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(13px, 1.8vw, 26px);
  margin-left: auto;
}

.fcNav a {
  position: relative;
  padding-block: 12px;
  color: #405064;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.fcNav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--fc-aqua);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.fcNav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.fcHeader__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 16px;
}

.fcHeader__tel {
  display: flex;
  flex-direction: column;
  color: var(--fc-navy);
  font-family: var(--fc-font-en);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.fcHeader__tel span {
  margin-bottom: 5px;
  color: var(--fc-aqua-dark);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.fcMenuButton {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  cursor: pointer;
  background: var(--fc-navy);
  border: 0;
  border-radius: 50%;
}

.fcMenuButton span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--fc-white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.fcMenuButton[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.fcMenuButton[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.fcMobileNav {
  position: fixed;
  top: var(--fc-header-height);
  right: 0;
  left: 0;
  z-index: 999;
  display: grid;
  max-height: calc(100vh - var(--fc-header-height));
  padding: 18px 24px 28px;
  overflow-y: auto;
  visibility: hidden;
  background: rgba(255, 255, 255, 0.99);
  border-top: 1px solid var(--fc-line);
  box-shadow: 0 30px 50px rgba(7, 24, 44, 0.14);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.fcMobileNav.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.fcMobileNav > a:not(.fcButton) {
  padding: 13px 4px;
  color: var(--fc-navy);
  border-bottom: 1px solid var(--fc-line);
  font-family: var(--fc-font-serif);
  font-size: 16px;
  font-weight: 600;
}

.fcMobileNav .fcButton {
  margin-top: 14px;
}

.fcMobileNav .fcMobileNav__sub {
  margin-top: 16px;
  padding-top: 18px;
  color: var(--fc-aqua-dark);
  border-top: 1px solid var(--fc-line);
  border-bottom: 0;
  font-family: var(--fc-font-sans);
  font-size: 13px;
}

/* Buttons and small links */
.fcButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 13px 24px;
  color: var(--fc-navy);
  cursor: pointer;
  background: var(--fc-white);
  border: 1px solid var(--fc-line-dark);
  border-radius: 999px;
  font-family: var(--fc-font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.fcButton:hover {
  transform: translateY(-2px);
}

.fcButton--primary {
  color: var(--fc-white) !important;
  background: linear-gradient(135deg, var(--fc-aqua-dark), var(--fc-aqua));
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(44, 125, 138, 0.24);
}

.fcButton--primary:hover {
  background: linear-gradient(135deg, #246c78, #449aa9);
  box-shadow: 0 18px 34px rgba(44, 125, 138, 0.3);
}

.fcButton--outline {
  color: var(--fc-navy);
  background: transparent;
  border-color: rgba(11, 35, 64, 0.24);
}

.fcButton--outline:hover {
  color: var(--fc-white);
  background: var(--fc-navy);
  border-color: var(--fc-navy);
}

.fcButton--light {
  color: var(--fc-navy);
  background: var(--fc-white);
  border-color: var(--fc-white);
}

.fcButton--light:hover {
  background: var(--fc-ivory);
  border-color: var(--fc-ivory);
}

.fcButton--small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 12px;
}

.fcButton--large {
  min-height: 58px;
  padding: 15px 30px;
}

.fcTextLink {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 5px;
  color: var(--fc-aqua-dark) !important;
  border-bottom: 1px solid rgba(44, 125, 138, 0.4);
  font-size: 14px;
  font-weight: 700;
}

/* Hero */
.fcHero {
  position: relative;
  min-height: calc(100svh - var(--fc-header-height));
  padding: clamp(54px, 7vw, 96px) 0 80px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(246, 242, 232, 0.82), rgba(255, 255, 255, 0) 56%),
    var(--fc-ivory-light);
}

.fcHero::before {
  position: absolute;
  top: 0;
  right: 44%;
  bottom: 0;
  width: 1px;
  content: "";
  background: rgba(11, 35, 64, 0.06);
}

.fcHero__decor {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.fcHero__decor--one {
  top: -180px;
  left: -190px;
  width: 430px;
  height: 430px;
  border: 90px solid rgba(78, 169, 184, 0.09);
}

.fcHero__decor--two {
  right: -120px;
  bottom: -160px;
  width: 380px;
  height: 380px;
  background: rgba(217, 129, 145, 0.08);
}

.fcHero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(45px, 6vw, 88px);
}

.fcEyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 24px;
  color: var(--fc-aqua-dark);
  font-family: var(--fc-font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.fcEyebrow span {
  width: 34px;
  height: 2px;
  background: var(--fc-rose);
}

.fcHero h1 {
  margin: 0;
  color: var(--fc-navy);
  font-family: var(--fc-font-serif);
  font-size: clamp(50px, 5.3vw, 82px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.fcHero h1 > span {
  display: block;
  margin-bottom: 12px;
  color: var(--fc-aqua-dark);
  font-family: var(--fc-font-sans);
  font-size: clamp(20px, 2vw, 29px);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.fcHero h1 em {
  position: relative;
  z-index: 0;
  color: inherit;
  font-style: normal;
}

.fcHero h1 em::after {
  position: absolute;
  right: -5px;
  bottom: 8px;
  left: -5px;
  z-index: -1;
  height: 18px;
  content: "";
  background: rgba(217, 129, 145, 0.24);
  border-radius: 99px;
  transform: rotate(-2deg);
}

.fcHero__lead {
  margin: 28px 0 0;
  color: #526171;
  font-family: var(--fc-font-serif);
  font-size: clamp(15px, 1.25vw, 17px);
  font-weight: 500;
  line-height: 2.1;
}

.fcHero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.fcHero__contact {
  display: grid;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(11, 35, 64, 0.1);
}

.fcHero__contact a {
  display: flex;
  align-items: baseline;
  gap: 18px;
  width: fit-content;
}

.fcHero__contact small {
  width: 112px;
  color: var(--fc-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.fcHero__contact strong {
  color: var(--fc-navy);
  font-family: var(--fc-font-en);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.fcHeroPhoto {
  position: relative;
  padding: 18px 22px 42px 18px;
}

.fcHeroPhoto::before {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 48%;
  height: 54%;
  content: "";
  background: var(--fc-aqua-pale);
  border-radius: 0 70px 0 70px;
}

.fcHeroPhoto::after {
  position: absolute;
  right: 0;
  bottom: 23px;
  width: 36%;
  height: 36%;
  content: "";
  background: var(--fc-rose-pale);
  border-radius: 50%;
}

.fcHeroPhoto__frame {
  position: relative;
  z-index: 1;
  height: clamp(470px, 58vw, 650px);
  max-height: 650px;
  overflow: hidden;
  background: #dfe6e4;
  border-radius: 120px 16px 120px 16px;
  box-shadow: var(--fc-shadow-lg);
}

.fcHeroPhoto__frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(7, 24, 44, 0) 58%, rgba(7, 24, 44, 0.25));
}

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

.fcHeroPhoto__label {
  position: absolute;
  bottom: 0;
  left: -18px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 292px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  box-shadow: var(--fc-shadow-md);
  backdrop-filter: blur(10px);
}

.fcHeroPhoto__icon {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--fc-white);
  background: linear-gradient(145deg, var(--fc-aqua), var(--fc-aqua-dark));
  border-radius: 15px;
}

.fcHeroPhoto__icon svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.fcHeroPhoto__label > span:last-child {
  display: flex;
  flex-direction: column;
}

.fcHeroPhoto__label small {
  margin-bottom: 5px;
  color: var(--fc-aqua-dark);
  font-family: var(--fc-font-en);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.fcHeroPhoto__label strong {
  color: var(--fc-navy);
  font-family: var(--fc-font-serif);
  font-size: 16px;
}

.fcHeroPhoto__caption {
  position: absolute;
  right: 8px;
  bottom: 2px;
  z-index: 3;
  margin: 0;
  color: var(--fc-navy);
  font-family: var(--fc-font-en);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
}

.fcHero__scroll {
  position: absolute;
  bottom: 18px;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--fc-muted);
  font-family: var(--fc-font-en);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.22em;
  transform: translateX(-50%) rotate(90deg);
  transform-origin: center;
}

.fcHero__scroll i {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--fc-navy);
}

/* Quick facts */
.fcQuickFacts {
  position: relative;
  z-index: 4;
  color: var(--fc-white);
  background: var(--fc-navy);
}

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

.fcQuickFact {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 116px;
  padding: 22px 38px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.fcQuickFact:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.fcQuickFact > span {
  color: var(--fc-aqua);
  font-family: var(--fc-font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.fcQuickFact div {
  display: flex;
  flex-direction: column;
}

.fcQuickFact strong {
  font-family: var(--fc-font-serif);
  font-size: 16px;
  font-weight: 600;
}

.fcQuickFact small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
}

/* Shared sections and headings */
.fcSection {
  position: relative;
  padding: clamp(88px, 10vw, 144px) 0;
}

.fcSection--ivory {
  background: var(--fc-ivory);
}

.fcSection--aqua {
  background:
    radial-gradient(circle at 12% 20%, rgba(78, 169, 184, 0.12) 0, rgba(78, 169, 184, 0) 26%),
    var(--fc-aqua-light);
}

.fcSectionHeading {
  margin-bottom: 54px;
}

.fcSectionHeading--center {
  max-width: 780px;
  margin-right: auto;
  margin-bottom: 58px;
  margin-left: auto;
  text-align: center;
}

.fcSectionHeading--split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: 60px;
}

.fcSectionHeading__en {
  margin: 0 0 14px;
  color: var(--fc-aqua-dark) !important;
  font-family: var(--fc-font-en) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  letter-spacing: 0.22em !important;
}

.fcSectionHeading h2,
.fcStaff__content > h2 {
  margin: 0;
  color: var(--fc-navy);
  font-family: var(--fc-font-serif);
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.03em;
}

.fcSectionHeading h2 span,
.fcStaff__content > h2 span {
  color: var(--fc-aqua-dark);
}

.fcSectionHeading > p:last-child,
.fcSectionHeading--split > p {
  margin: 22px 0 0;
  color: var(--fc-muted);
  font-family: var(--fc-font-serif);
  font-size: 15px;
  line-height: 2;
}

.fcSectionHeading--split > p {
  margin: 0 0 8px;
}

.fcNote {
  margin: 18px 0 0;
  color: var(--fc-muted);
  font-size: 11px;
  line-height: 1.9;
}

/* Concerns */
.fcConcernGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.fcConcernCard {
  position: relative;
  min-height: 320px;
  padding: 36px 32px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(11, 35, 64, 0.06);
  border-radius: 26px;
  box-shadow: var(--fc-shadow-sm);
}

.fcConcernCard::after {
  position: absolute;
  right: -35px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  content: "";
  background: rgba(78, 169, 184, 0.08);
  border-radius: 50%;
}

.fcConcernCard:nth-child(2)::after {
  background: rgba(217, 129, 145, 0.1);
}

.fcConcernCard__number {
  color: #9aa6b1;
  font-family: var(--fc-font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.fcConcernCard__icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 30px 0 24px;
  place-items: center;
  color: var(--fc-aqua-dark);
  background: var(--fc-aqua-pale);
  border-radius: 19px;
}

.fcConcernCard:nth-child(2) .fcConcernCard__icon {
  color: var(--fc-rose-dark);
  background: var(--fc-rose-pale);
}

.fcConcernCard__icon svg {
  width: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.fcConcernCard h3 {
  margin: 0 0 14px;
  color: var(--fc-navy);
  font-family: var(--fc-font-serif);
  font-size: 21px;
  font-weight: 600;
}

.fcConcernCard p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--fc-muted);
  font-size: 13px;
  line-height: 1.9;
}

.fcAboutStatement {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 90px);
  margin-top: 95px;
}

.fcAboutStatement__visual {
  position: relative;
  padding: 0 34px 36px 0;
}

.fcAboutStatement__visual::before {
  position: absolute;
  top: 35px;
  right: 0;
  bottom: 0;
  left: 35px;
  content: "";
  background: var(--fc-aqua);
  border-radius: 12px 85px 12px 85px;
  opacity: 0.17;
}

.fcAboutStatement__visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 12px 100px 12px 100px;
  box-shadow: var(--fc-shadow-md);
}

.fcAboutStatement__visual > span {
  position: absolute;
  right: -4px;
  bottom: 54px;
  z-index: 2;
  color: var(--fc-navy);
  font-family: var(--fc-font-en);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.fcAboutStatement__content h3 {
  margin: 0 0 26px;
  color: var(--fc-navy);
  font-family: var(--fc-font-serif);
  font-size: clamp(29px, 3.2vw, 43px);
  font-weight: 600;
  line-height: 1.65;
}

.fcAboutStatement__content > p:not(.fcSectionHeading__en, .fcNote) {
  margin: 0;
  color: var(--fc-muted);
  font-family: var(--fc-font-serif);
  font-size: 15px;
  line-height: 2.15;
}

.fcApproachPoints {
  display: grid;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--fc-line-dark);
}

.fcApproachPoints > div {
  display: grid;
  grid-template-columns: 40px 150px 1fr;
  align-items: center;
  gap: 16px;
  padding: 19px 0;
  border-bottom: 1px solid var(--fc-line-dark);
}

.fcApproachPoints span {
  color: var(--fc-rose-dark);
  font-family: var(--fc-font-en);
  font-size: 10px;
  font-weight: 700;
}

.fcApproachPoints strong {
  color: var(--fc-navy);
  font-family: var(--fc-font-serif);
  font-size: 14px;
}

.fcApproachPoints small {
  color: var(--fc-muted);
  font-size: 11px;
  line-height: 1.7;
}

/* Dark CTA break */
.fcDarkBreak {
  position: relative;
  padding: 78px 0;
  overflow: hidden;
  color: var(--fc-white);
  background:
    radial-gradient(circle at 84% 16%, rgba(78, 169, 184, 0.25), transparent 28%),
    var(--fc-navy-deep);
}

.fcDarkBreak::before {
  position: absolute;
  top: -140px;
  right: -70px;
  width: 350px;
  height: 350px;
  content: "";
  border: 75px solid rgba(217, 129, 145, 0.09);
  border-radius: 50%;
}

.fcDarkBreak__word {
  position: absolute;
  top: 50%;
  left: 0;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--fc-font-en);
  font-size: clamp(90px, 15vw, 230px);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transform: translateY(-50%);
}

.fcDarkBreak__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.fcDarkBreak__inner > div:first-child > p {
  margin: 0 0 12px;
  color: var(--fc-aqua);
  font-family: var(--fc-font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.fcDarkBreak h2 {
  margin: 0;
  font-family: var(--fc-font-serif);
  font-size: clamp(29px, 3.2vw, 43px);
  font-weight: 500;
  line-height: 1.65;
}

.fcDarkBreak__actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}

/* Price */
.fcPriceGrid {
  display: grid;
  gap: 30px;
}

.fcPriceCard {
  overflow: hidden;
  background: var(--fc-white);
  border: 1px solid var(--fc-line-dark);
  border-radius: var(--fc-radius-lg);
  box-shadow: var(--fc-shadow-sm);
}

.fcPriceCard__head {
  position: relative;
  display: flex;
  min-height: 190px;
  align-items: center;
  padding: 38px 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(78, 169, 184, 0.26), transparent 35%),
    var(--fc-aqua-pale);
  border-bottom: 1px solid rgba(11, 35, 64, 0.08);
}

.fcPriceCard--rose .fcPriceCard__head {
  background:
    radial-gradient(circle at 85% 20%, rgba(217, 129, 145, 0.24), transparent 35%),
    var(--fc-rose-pale);
}

.fcPriceCard__head > div {
  position: relative;
  z-index: 1;
}

.fcPriceCard__head p {
  margin: 0 0 7px;
  color: var(--fc-aqua-dark);
  font-family: var(--fc-font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.fcPriceCard--rose .fcPriceCard__head p {
  color: var(--fc-rose-dark);
}

.fcPriceCard__head h3 {
  margin: 0;
  color: var(--fc-navy);
  font-family: var(--fc-font-serif);
  font-size: 34px;
  font-weight: 600;
}

.fcPriceCard__head span {
  display: block;
  margin-top: 8px;
  color: var(--fc-muted);
  font-size: 12px;
}

.fcPriceCard__head img {
  position: absolute;
  top: 50%;
  right: 5%;
  width: min(250px, 28%);
  max-height: 175px;
  object-fit: contain;
  opacity: 0.42;
  transform: translateY(-50%);
}

.fcPriceList {
  margin: 0;
  padding: 0 44px 26px;
}

.fcPriceRow {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 170px;
  align-items: center;
  gap: 28px;
  min-height: 126px;
  padding: 24px 0;
  border-bottom: 1px solid var(--fc-line);
}

.fcPriceRow:last-child {
  border-bottom: 0;
}

.fcPriceRow dt,
.fcPriceRow dd {
  margin: 0;
}

.fcPriceRow dt {
  display: flex;
  flex-direction: column;
}

.fcPriceRow dt > strong {
  color: var(--fc-navy);
  font-family: var(--fc-font-serif);
  font-size: 18px;
  font-weight: 600;
}

.fcPriceRow dt > span:not(.fcPriceRow__label) {
  margin-top: 7px;
  color: var(--fc-muted);
  font-size: 11px;
  line-height: 1.75;
}

.fcPriceRow dd {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-left: 24px;
  border-left: 1px solid var(--fc-line);
}

.fcPriceRow dd small {
  color: var(--fc-muted);
  font-size: 11px;
}

.fcPriceRow dd strong {
  color: var(--fc-navy);
  font-family: var(--fc-font-en);
  font-size: 25px;
  letter-spacing: 0.02em;
}

.fcPriceRow dd em {
  margin-left: 3px;
  font-family: var(--fc-font-sans);
  font-size: 12px;
  font-style: normal;
}

.fcPriceRow--recommended::before {
  position: absolute;
  inset: 8px -18px;
  z-index: 0;
  content: "";
  background: var(--fc-aqua-light);
  border-radius: 16px;
}

.fcPriceCard--rose .fcPriceRow--recommended::before {
  background: #fff8f9;
}

.fcPriceRow--recommended > * {
  position: relative;
  z-index: 1;
}

.fcPriceRow__label {
  width: fit-content;
  margin-bottom: 6px;
  padding: 3px 8px;
  color: var(--fc-white);
  background: var(--fc-aqua-dark);
  border-radius: 99px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.fcPriceCard--rose .fcPriceRow__label {
  background: var(--fc-rose-dark);
}

.fcPriceNote {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 34px;
  margin-top: 28px;
  padding: 28px 34px;
  background: var(--fc-ivory-light);
  border: 1px solid var(--fc-line-dark);
  border-radius: 18px;
}

.fcPriceNote > p {
  margin: 0;
  color: var(--fc-navy);
  font-family: var(--fc-font-serif);
  font-size: 14px;
  font-weight: 600;
}

.fcPriceNote ul {
  display: grid;
  gap: 4px;
  margin: 0;
  padding-left: 1.3em;
  color: var(--fc-muted);
  font-size: 11px;
}

/* Target / information */
.fcInfoGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fcInfoCard {
  position: relative;
  min-height: 430px;
  padding: 42px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(11, 35, 64, 0.08);
  border-radius: 28px;
  box-shadow: var(--fc-shadow-sm);
}

.fcInfoCard::after {
  position: absolute;
  right: -45px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  content: "";
  background: rgba(78, 169, 184, 0.08);
  border-radius: 50%;
}

.fcInfoCard__index {
  color: var(--fc-aqua-dark);
  font-family: var(--fc-font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.fcInfoCard h3 {
  margin: 18px 0 26px;
  color: var(--fc-navy);
  font-family: var(--fc-font-serif);
  font-size: 27px;
  font-weight: 600;
}

.fcInfoCard ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fcInfoCard li {
  position: relative;
  padding-left: 18px;
  color: #4f5d6b;
  font-size: 12px;
  line-height: 1.75;
}

.fcInfoCard li::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--fc-aqua);
  border-radius: 50%;
}

.fcArea {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--fc-line);
}

.fcArea:last-of-type {
  border-bottom: 1px solid var(--fc-line);
}

.fcArea strong {
  color: var(--fc-aqua-dark);
  font-family: var(--fc-font-serif);
  font-size: 13px;
}

.fcArea p {
  margin: 0;
  color: var(--fc-muted);
  font-size: 12px;
  line-height: 1.85;
}

.fcInfoCard--safety {
  grid-column: 1 / -1;
  min-height: 0;
  padding-right: 36%;
  background:
    radial-gradient(circle at 87% 50%, rgba(217, 129, 145, 0.13), transparent 24%),
    rgba(255, 255, 255, 0.93);
}

.fcInfoCard--safety > p:not(.fcNote) {
  margin: 0;
  color: var(--fc-muted);
  font-family: var(--fc-font-serif);
  font-size: 14px;
  line-height: 2;
}

.fcCenteredActions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 44px;
}

/* Gallery */
.fcGallerySection {
  overflow: hidden;
}

.fcGallerySection::before {
  position: absolute;
  top: 90px;
  right: -160px;
  width: 390px;
  height: 390px;
  content: "";
  border: 85px solid rgba(78, 169, 184, 0.07);
  border-radius: 50%;
}

.fcGallery {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: 300px 250px;
  gap: 18px;
}

.fcGallery__item {
  position: relative;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #e8eeec;
  border-radius: 18px;
}

.fcGallery__item--large {
  grid-row: 1 / 3;
  border-radius: 18px 80px 18px 18px;
}

.fcGallery__item--wide {
  grid-column: 2 / 4;
  border-radius: 18px 18px 80px 18px;
}

.fcGallery__item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(7, 24, 44, 0.56));
  transition: opacity 0.35s ease;
}

.fcGallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.fcGallery__item:hover img {
  transform: scale(1.035);
}

.fcGallery__item figcaption {
  position: absolute;
  right: 22px;
  bottom: 18px;
  left: 22px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--fc-white);
  font-family: var(--fc-font-serif);
  font-size: 14px;
  font-weight: 600;
}

.fcGallery__item figcaption span {
  color: var(--fc-aqua);
  font-family: var(--fc-font-en);
  font-size: 9px;
  letter-spacing: 0.12em;
}

/* Voice */
.fcVoiceGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fcVoiceCard {
  position: relative;
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(11, 35, 64, 0.07);
  border-radius: 8px 54px 8px 54px;
  box-shadow: var(--fc-shadow-sm);
}

.fcVoiceCard:nth-child(2) {
  border-radius: 54px 8px 54px 8px;
}

.fcVoiceCard__quote {
  position: absolute;
  top: 8px;
  right: 30px;
  color: rgba(78, 169, 184, 0.13);
  font-family: Georgia, serif;
  font-size: 130px;
  line-height: 1;
}

.fcVoiceCard > p {
  position: relative;
  z-index: 1;
  margin: 0 0 35px;
  color: var(--fc-navy);
  font-family: var(--fc-font-serif);
  font-size: 16px;
  line-height: 2.2;
}

.fcVoiceCard__person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fcVoiceCard__person > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--fc-white);
  background: var(--fc-aqua);
  border-radius: 50%;
  font-family: var(--fc-font-en);
  font-size: 14px;
  font-weight: 600;
}

.fcVoiceCard:nth-child(2) .fcVoiceCard__person > span {
  background: var(--fc-rose);
}

.fcVoiceCard__person div {
  display: flex;
  flex-direction: column;
}

.fcVoiceCard__person strong {
  color: var(--fc-navy);
  font-family: var(--fc-font-serif);
  font-size: 14px;
}

.fcVoiceCard__person small {
  margin-top: 2px;
  color: var(--fc-muted);
  font-size: 9px;
}

.fcVoiceDisclaimer {
  margin: 20px auto 0;
  color: var(--fc-muted);
  font-size: 10px;
  text-align: center;
}

/* Staff */
.fcStaff {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.fcStaff__photo {
  position: relative;
  padding: 0 34px 34px 0;
}

.fcStaff__photo::before {
  position: absolute;
  top: 34px;
  right: 0;
  bottom: 0;
  left: 34px;
  content: "";
  background: var(--fc-rose-pale);
  border-radius: 95px 12px 95px 12px;
}

.fcStaff__photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 610px;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 95px 12px 95px 12px;
  box-shadow: var(--fc-shadow-md);
}

.fcStaff__photo span {
  position: absolute;
  right: 0;
  bottom: 70px;
  z-index: 2;
  color: var(--fc-rose-dark);
  font-family: var(--fc-font-en);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

.fcStaff__content > h2 {
  margin-bottom: 32px;
}

.fcStaff__name {
  display: grid;
  grid-template-columns: 70px auto;
  align-items: end;
  gap: 3px 20px;
  margin-bottom: 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--fc-line-dark);
}

.fcStaff__name small {
  grid-row: 1 / 3;
  align-self: center;
  padding: 7px 8px;
  color: var(--fc-white);
  background: var(--fc-aqua-dark);
  border-radius: 99px;
  font-size: 10px;
  text-align: center;
}

.fcStaff__name strong {
  color: var(--fc-navy);
  font-family: var(--fc-font-serif);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.fcStaff__name > span {
  color: var(--fc-muted);
  font-family: var(--fc-font-en);
  font-size: 10px;
  letter-spacing: 0.15em;
}

.fcStaff__content > p:not(.fcSectionHeading__en) {
  margin: 0;
  color: var(--fc-muted);
  font-family: var(--fc-font-serif);
  font-size: 15px;
  line-height: 2.1;
}

.fcStaff__message {
  position: relative;
  margin-top: 30px;
  padding: 24px 28px 24px 54px;
  background: var(--fc-aqua-light);
  border-left: 3px solid var(--fc-aqua);
  border-radius: 0 16px 16px 0;
}

.fcStaff__message > span {
  position: absolute;
  top: 9px;
  left: 18px;
  color: var(--fc-aqua);
  font-family: Georgia, serif;
  font-size: 52px;
  line-height: 1;
}

.fcStaff__message p {
  margin: 0;
  color: var(--fc-navy);
  font-family: var(--fc-font-serif);
  font-size: 14px;
  line-height: 1.9;
}

/* FAQ */
.fcFaqLayout {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  align-items: start;
  gap: clamp(50px, 8vw, 100px);
}

.fcFaqLayout__heading {
  position: sticky;
  top: calc(var(--fc-header-height) + 50px);
  margin: 0;
}

.fcFaqLayout__heading .fcTextLink {
  margin-top: 28px;
}

.fcFaq {
  overflow: hidden;
  background: var(--fc-white);
  border: 1px solid var(--fc-line-dark);
  border-radius: 26px;
  box-shadow: var(--fc-shadow-sm);
}

.fcFaq details {
  border-bottom: 1px solid var(--fc-line);
}

.fcFaq details:last-child {
  border-bottom: 0;
}

.fcFaq summary {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 92px;
  padding: 24px 68px 24px 28px;
  color: var(--fc-navy);
  cursor: pointer;
  font-family: var(--fc-font-serif);
  font-size: 15px;
  font-weight: 600;
  list-style: none;
}

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

.fcFaq summary::before,
.fcFaq summary::after {
  position: absolute;
  top: 50%;
  right: 28px;
  width: 15px;
  height: 1px;
  content: "";
  background: var(--fc-aqua-dark);
  transition: transform 0.25s ease;
}

.fcFaq summary::after {
  transform: rotate(90deg);
}

.fcFaq details[open] summary::after {
  transform: rotate(0);
}

.fcFaq summary > span,
.fcFaq details > div > span {
  display: grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--fc-white);
  background: var(--fc-aqua);
  border-radius: 50%;
  font-family: var(--fc-font-en);
  font-size: 12px;
  font-weight: 700;
}

.fcFaq details > div {
  display: flex;
  gap: 18px;
  padding: 0 68px 28px 28px;
}

.fcFaq details > div > span {
  color: var(--fc-aqua-dark);
  background: var(--fc-aqua-pale);
}

.fcFaq details > div p {
  margin: 2px 0 0;
  color: var(--fc-muted);
  font-size: 12px;
  line-height: 1.9;
}

/* Contact */
.fcContactSection {
  overflow: hidden;
  color: var(--fc-white);
  background:
    radial-gradient(circle at 8% 15%, rgba(78, 169, 184, 0.24), transparent 27%),
    radial-gradient(circle at 93% 92%, rgba(217, 129, 145, 0.14), transparent 28%),
    var(--fc-navy-deep);
}

.fcContactSection::before {
  position: absolute;
  top: -170px;
  right: -100px;
  width: 430px;
  height: 430px;
  content: "";
  border: 90px solid rgba(255, 255, 255, 0.025);
  border-radius: 50%;
}

.fcSectionHeading--light h2 {
  color: var(--fc-white);
}

.fcSectionHeading--light > p:last-child {
  color: rgba(255, 255, 255, 0.66);
}

.fcContactGrid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  align-items: start;
  gap: 28px;
}

.fcContactInfo {
  padding: 42px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
}

.fcContactInfo__lead {
  margin: 0 0 36px;
  font-family: var(--fc-font-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.8;
}

.fcContactInfo__line {
  display: grid;
  grid-template-columns: 46px 1fr 20px;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.fcContactInfo__line > span {
  color: var(--fc-aqua);
  font-family: var(--fc-font-en);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.fcContactInfo__line strong {
  overflow-wrap: anywhere;
  font-family: var(--fc-font-en);
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.fcContactInfo__line i {
  color: var(--fc-aqua);
  font-style: normal;
  transition: transform 0.25s ease;
}

.fcContactInfo__line:hover i {
  transform: translateX(4px);
}

.fcContactInfo__address {
  display: grid;
  gap: 12px;
  margin: 34px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.fcContactInfo__address > div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
}

.fcContactInfo__address dt {
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
}

.fcContactInfo__address dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
}

.fcFormCard {
  padding: clamp(28px, 4vw, 52px);
  color: var(--fc-ink);
  background: var(--fc-white);
  border-radius: 30px;
  box-shadow: var(--fc-shadow-lg);
}

.fcFormCard__head {
  margin-bottom: 32px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--fc-line);
}

.fcFormCard__head > span {
  color: var(--fc-aqua-dark);
  font-family: var(--fc-font-en);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.fcFormCard__head h3 {
  margin: 7px 0 6px;
  color: var(--fc-navy);
  font-family: var(--fc-font-serif);
  font-size: 25px;
  font-weight: 600;
}

.fcFormCard__head p {
  margin: 0;
  color: var(--fc-muted);
  font-size: 10px;
}

.fcForm {
  display: grid;
  gap: 22px;
}

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

.fcField {
  display: block;
}

.fcField > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--fc-navy);
  font-size: 11px;
  font-weight: 600;
}

.fcField > span > b:not(.fcRequired) {
  color: #9aa3ad;
  font-size: 8px;
  font-weight: 500;
}

.fcRequired {
  display: inline-flex;
  align-items: center;
  padding: 2px 6px;
  color: var(--fc-rose-dark);
  background: var(--fc-rose-pale);
  border-radius: 4px;
  font-size: 8px;
  font-weight: 700;
}

.fcField input,
.fcField textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--fc-ink);
  background: var(--fc-ivory-light);
  border: 1px solid var(--fc-line);
  border-radius: 11px;
  outline: none;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.fcField input {
  height: 52px;
}

.fcField textarea {
  min-height: 150px;
  resize: vertical;
}

.fcField input:focus,
.fcField textarea:focus {
  background: var(--fc-white);
  border-color: var(--fc-aqua);
  box-shadow: 0 0 0 4px rgba(78, 169, 184, 0.12);
}

.fcField textarea::placeholder {
  color: #a1aab3;
  font-size: 11px;
}

.fcConsent {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  color: var(--fc-muted);
  font-size: 10px;
  line-height: 1.7;
}

.fcConsent input {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  accent-color: var(--fc-aqua-dark);
}

.fcConsent a {
  color: var(--fc-aqua-dark);
  border-bottom: 1px solid currentColor;
}

.fcButton--submit {
  width: 100%;
  min-height: 60px;
  border: 0;
}

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

/* Footer */
.fcFooter {
  padding: 76px 0 24px;
  color: var(--fc-white);
  background: var(--fc-navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.fcFooter__top {
  display: grid;
  grid-template-columns: 0.9fr 1fr 0.7fr;
  align-items: start;
  gap: 60px;
  padding-bottom: 54px;
}

.fcFooter__brand img {
  width: auto;
  height: 58px;
  padding: 8px 12px;
  background: var(--fc-white);
  border-radius: 11px;
}

.fcFooter__brand p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--fc-font-serif);
  font-size: 12px;
}

.fcFooter__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.fcFooter__nav > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.fcFooter__nav span,
.fcFooter__shifpia small {
  margin-bottom: 8px;
  color: var(--fc-aqua);
  font-family: var(--fc-font-en);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.fcFooter__nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  transition: color 0.2s ease;
}

.fcFooter__nav a:hover {
  color: var(--fc-white);
}

.fcFooter__shifpia {
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.fcFooter__shifpia:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.fcFooter__shifpia strong {
  font-family: var(--fc-font-en);
  font-size: 24px;
  letter-spacing: 0.08em;
}

.fcFooter__shifpia > span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
}

.fcFooter__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fcFooter__bottom p,
.fcFooter__bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.43);
  font-family: var(--fc-font-en);
  font-size: 8px;
  letter-spacing: 0.12em;
}

/* Responsive */
@media (max-width: 1140px) {
  .fcBrand__descriptor,
  .fcHeader__tel {
    display: none;
  }

  .fcNav {
    gap: 15px;
  }

  .fcNav a {
    font-size: 12px;
  }
}

@media (max-width: 1040px) {
  :root {
    --fc-header-height: 74px;
  }

  .fcNav,
  .fcHeader__actions {
    display: none;
  }

  .fcMenuButton {
    display: block;
  }

  .fcBrand__logo {
    height: 44px;
  }

  .fcHero {
    min-height: auto;
  }

  .fcHero__grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .fcHero__content {
    max-width: 720px;
  }

  .fcHero::before {
    display: none;
  }

  .fcHeroPhoto {
    width: min(760px, 94%);
    margin-left: auto;
  }

  .fcHeroPhoto__frame {
    height: min(72vw, 620px);
  }

  .fcHero__scroll {
    display: none;
  }

  .fcQuickFact {
    padding: 20px 24px;
  }

  .fcAboutStatement,
  .fcStaff {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .fcAboutStatement__visual img {
    height: 510px;
  }

  .fcApproachPoints > div {
    grid-template-columns: 35px 1fr;
  }

  .fcApproachPoints small {
    grid-column: 2;
  }

  .fcDarkBreak__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .fcInfoCard ul {
    grid-template-columns: 1fr;
  }

  .fcStaff__photo img {
    height: 560px;
  }

  .fcFaqLayout {
    grid-template-columns: 0.36fr 0.64fr;
    gap: 45px;
  }

  .fcContactGrid {
    grid-template-columns: 0.38fr 0.62fr;
  }

  .fcContactInfo {
    padding: 32px;
  }

  .fcFooter__top {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .fcFooter__shifpia {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .fcContainer {
    width: min(calc(100% - 36px), var(--fc-container));
  }

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

  .fcQuickFact {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .fcQuickFact:first-child {
    border-left: 0;
  }

  .fcQuickFact:last-child {
    border-bottom: 0;
  }

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

  .fcConcernCard {
    min-height: 0;
  }

  .fcAboutStatement,
  .fcStaff,
  .fcFaqLayout,
  .fcContactGrid {
    grid-template-columns: 1fr;
  }

  .fcAboutStatement__visual {
    width: min(600px, 94%);
  }

  .fcAboutStatement__visual img {
    height: min(90vw, 570px);
  }

  .fcSectionHeading--split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .fcSectionHeading--split > p {
    max-width: 600px;
  }

  .fcPriceRow {
    grid-template-columns: 1fr 145px;
  }

  .fcInfoGrid,
  .fcVoiceGrid {
    grid-template-columns: 1fr;
  }

  .fcInfoCard {
    min-height: 0;
  }

  .fcInfoCard--safety {
    grid-column: auto;
    padding-right: 42px;
  }

  .fcGallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 420px 250px 250px;
  }

  .fcGallery__item--large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .fcGallery__item--wide {
    grid-column: 1 / -1;
  }

  .fcStaff__photo {
    width: min(600px, 94%);
  }

  .fcStaff__photo img {
    height: min(110vw, 650px);
  }

  .fcFaqLayout__heading {
    position: static;
  }

  .fcFaqLayout__heading h2 br {
    display: none;
  }

  .fcContactInfo {
    order: 2;
  }

  .fcFormCard {
    order: 1;
  }
}

@media (max-width: 640px) {
  .fcContainer {
    width: min(calc(100% - 28px), var(--fc-container));
  }

  .fcOnlyDesktop {
    display: none;
  }

  .fcHeader__inner {
    gap: 12px;
  }

  .fcBrand__logo {
    max-width: 170px;
    height: 40px;
  }

  .fcHero {
    padding: 48px 0 62px;
  }

  .fcHero__decor--one {
    top: -140px;
    left: -170px;
    width: 330px;
    height: 330px;
    border-width: 70px;
  }

  .fcEyebrow {
    margin-bottom: 18px;
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  .fcHero h1 {
    font-size: clamp(42px, 13vw, 60px);
    line-height: 1.3;
  }

  .fcHero h1 > span {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .fcHero h1 em::after {
    bottom: 5px;
    height: 13px;
  }

  .fcHero__lead {
    margin-top: 22px;
    font-size: 14px;
    line-height: 2;
  }

  .fcHero__actions,
  .fcDarkBreak__actions,
  .fcCenteredActions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .fcHero__actions .fcButton,
  .fcDarkBreak__actions .fcButton,
  .fcCenteredActions .fcButton {
    width: 100%;
  }

  .fcHero__contact a {
    display: grid;
    gap: 2px;
  }

  .fcHero__contact small {
    width: auto;
  }

  .fcHeroPhoto {
    width: calc(100% - 6px);
    padding: 10px 8px 48px 0;
  }

  .fcHeroPhoto::before {
    top: -10px;
    right: -4px;
  }

  .fcHeroPhoto__frame {
    height: 110vw;
    max-height: 540px;
    border-radius: 75px 10px 75px 10px;
  }

  .fcHeroPhoto__label {
    bottom: 0;
    left: -4px;
    min-width: 0;
    padding: 14px 16px;
  }

  .fcHeroPhoto__icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
  }

  .fcHeroPhoto__label strong {
    font-size: 14px;
  }

  .fcHeroPhoto__caption {
    display: none;
  }

  .fcQuickFact {
    gap: 16px;
    padding: 18px 10px;
  }

  .fcSection {
    padding: 82px 0;
  }

  .fcSectionHeading,
  .fcSectionHeading--center {
    margin-bottom: 40px;
  }

  .fcSectionHeading h2,
  .fcStaff__content > h2 {
    font-size: clamp(34px, 10.5vw, 46px);
  }

  .fcSectionHeading > p:last-child,
  .fcSectionHeading--split > p {
    font-size: 13px;
  }

  .fcConcernCard {
    padding: 28px 24px;
  }

  .fcConcernCard__icon {
    margin: 22px 0 18px;
  }

  .fcAboutStatement {
    gap: 46px;
    margin-top: 64px;
  }

  .fcAboutStatement__visual,
  .fcStaff__photo {
    width: calc(100% - 8px);
    padding: 0 24px 24px 0;
  }

  .fcAboutStatement__visual::before,
  .fcStaff__photo::before {
    top: 24px;
    left: 24px;
  }

  .fcAboutStatement__visual img {
    height: 115vw;
    max-height: 540px;
    border-radius: 10px 70px 10px 70px;
  }

  .fcAboutStatement__content h3 {
    font-size: 27px;
    line-height: 1.7;
  }

  .fcAboutStatement__content > p:not(.fcSectionHeading__en, .fcNote),
  .fcStaff__content > p:not(.fcSectionHeading__en) {
    font-size: 13px;
  }

  .fcApproachPoints > div {
    grid-template-columns: 30px 1fr;
    gap: 10px;
  }

  .fcDarkBreak {
    padding: 65px 0;
  }

  .fcDarkBreak h2 {
    font-size: 26px;
  }

  .fcPriceCard {
    border-radius: 24px;
  }

  .fcPriceCard__head {
    min-height: 170px;
    padding: 30px 24px;
  }

  .fcPriceCard__head h3 {
    font-size: 29px;
  }

  .fcPriceCard__head span {
    max-width: 68%;
  }

  .fcPriceCard__head img {
    right: 0;
    width: 42%;
    opacity: 0.3;
  }

  .fcPriceList {
    padding: 0 24px 18px;
  }

  .fcPriceRow {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 0;
  }

  .fcPriceRow dd {
    align-items: flex-start;
    padding: 12px 0 0;
    border-top: 1px dashed var(--fc-line);
    border-left: 0;
  }

  .fcPriceRow--recommended::before {
    inset: 8px -12px;
  }

  .fcPriceNote {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px;
  }

  .fcInfoCard {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .fcInfoCard h3 {
    margin-bottom: 20px;
    font-size: 24px;
  }

  .fcInfoCard--safety {
    padding-right: 24px;
  }

  .fcInfoCard--safety > p:not(.fcNote) {
    font-size: 13px;
  }

  .fcGallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .fcGallery__item,
  .fcGallery__item--large,
  .fcGallery__item--wide {
    grid-column: auto;
    height: 72vw;
    min-height: 250px;
    max-height: 390px;
    border-radius: 14px 48px 14px 14px;
  }

  .fcGallery__item:nth-child(even) {
    border-radius: 48px 14px 14px 14px;
  }

  .fcVoiceCard {
    min-height: 0;
    padding: 32px 24px;
    border-radius: 8px 42px 8px 42px;
  }

  .fcVoiceCard:nth-child(2) {
    border-radius: 42px 8px 42px 8px;
  }

  .fcVoiceCard > p {
    font-size: 14px;
  }

  .fcStaff__photo img {
    height: 125vw;
    max-height: 600px;
    border-radius: 70px 10px 70px 10px;
  }

  .fcStaff__name {
    grid-template-columns: 58px auto;
    gap: 3px 14px;
  }

  .fcStaff__name strong {
    font-size: 23px;
  }

  .fcStaff__message {
    padding: 22px 20px 22px 46px;
  }

  .fcFaq summary {
    gap: 12px;
    min-height: 82px;
    padding: 20px 50px 20px 18px;
    font-size: 13px;
  }

  .fcFaq summary::before,
  .fcFaq summary::after {
    right: 20px;
  }

  .fcFaq summary > span,
  .fcFaq details > div > span {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
  }

  .fcFaq details > div {
    gap: 12px;
    padding: 0 20px 24px 18px;
  }

  .fcContactInfo {
    padding: 28px 22px;
  }

  .fcContactInfo__line {
    grid-template-columns: 40px 1fr 16px;
    gap: 8px;
  }

  .fcContactInfo__line strong {
    font-size: 13px;
  }

  .fcFormCard {
    padding: 28px 20px;
    border-radius: 24px;
  }

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

  .fcConsent {
    justify-content: flex-start;
  }

  .fcFooter {
    padding-top: 56px;
  }

  .fcFooter__top {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .fcFooter__nav {
    gap: 24px;
  }
}

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

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

  .js .fc [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
