@layer theme {
  :root,
  :host {
    --font-sans:
      ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono:
      ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --spacing: 0.25rem;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *,
  :after,
  :before,
  ::backdrop {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }
  ::file-selector-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }
  html,
  :host {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    line-height: 1.5;
    font-family: var(
      --default-font-family,
      ui-sans-serif,
      system-ui,
      sans-serif,
      "Apple Color Emoji",
      "Segoe UI Emoji",
      "Segoe UI Symbol",
      "Noto Color Emoji"
    );
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    -webkit-text-decoration: inherit;
    -webkit-text-decoration: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b,
  strong {
    font-weight: bolder;
  }
  code,
  kbd,
  samp,
  pre {
    font-family: var(
      --default-mono-font-family,
      ui-monospace,
      SFMono-Regular,
      Menlo,
      Monaco,
      Consolas,
      "Liberation Mono",
      "Courier New",
      monospace
    );
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(
      --default-mono-font-variation-settings,
      normal
    );
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub,
  sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol,
  ul,
  menu {
    list-style: none;
  }
  img,
  svg,
  video,
  canvas,
  audio,
  iframe,
  embed,
  object {
    vertical-align: middle;
    display: block;
  }
  img,
  video {
    max-width: 100%;
    height: auto;
  }
  button,
  input,
  select,
  optgroup,
  textarea {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }
  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not ((-webkit-appearance: -apple-pay-button))) or
    (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentColor;
    }
    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-year-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-month-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-day-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-hour-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-minute-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-second-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-millisecond-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button,
  input:where([type="button"], [type="reset"], [type="submit"]) {
    appearance: button;
  }
  ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button {
    height: auto;
  }
  ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}
@layer components;
@layer utilities {
  .visible {
    visibility: visible;
  }
  .relative {
    position: relative;
  }
  .start {
    inset-inline-start: var(--spacing);
  }
  .table {
    display: table;
  }
}
:root {
  --ink: #172a30;
  --teal: #168f94;
  --deep: #0d5c63;
  --pale: #edf7f7;
  --line: #d9e8e8;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  --max: 1240px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  color: var(--ink);
  font-family: var(--serif);
  background: #fff;
  margin: 0;
  line-height: 1.8;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
}
.site-header {
  z-index: 100;
  background: 0 0;
  border-bottom: 1px solid #0000;
  transition: all 0.3s;
  position: fixed;
  inset: 0 0 auto;
}
.site-header.is-scrolled {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: #fffffff2;
  border-bottom-color: #172a3014;
  box-shadow: 0 7px 30px #0e3d410f;
}
.header-inner {
  align-items: center;
  gap: 24px;
  max-width: 1460px;
  height: 92px;
  margin: auto;
  padding: 0 30px;
  display: flex;
}
.brand {
  flex: none;
  align-items: center;
  gap: 22px;
  display: flex;
}
.brand img {
  width: 142px;
}
.brand span {
  font: 500 11px/1.55 var(--sans);
  letter-spacing: 0.03em;
  border-left: 1px solid #172a302e;
  padding-left: 22px;
}
.brand b {
  font-size: 12px;
  display: block;
}
.global-nav {
  font: 700 12px/1 var(--sans);
  align-items: center;
  gap: 23px;
  margin-left: auto;
  display: flex;
}
.global-nav a {
  white-space: nowrap;
  padding: 10px 0;
  position: relative;
}
.global-nav a:after {
  content: "";
  background: var(--teal);
  height: 1px;
  transition: all 0.2s;
  position: absolute;
  bottom: 1px;
  left: 0;
  right: 100%;
}
.global-nav a:hover:after {
  right: 0;
}
.header-cta {
  background: var(--teal);
  color: #fff;
  font: 700 12px/1.2 var(--sans);
  border-radius: 100px;
  align-items: center;
  gap: 9px;
  padding: 13px 19px;
  display: flex;
}
.menu-button {
  display: none;
}
.hero {
  background: #fff;
  height: max(720px, 100vh);
  min-height: 760px;
  position: relative;
  overflow: hidden;
}
.hero-water {
  position: absolute;
  inset: 0 0 0 43%;
  overflow: hidden;
}
.hero-water img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.hero-water:after {
  content: "";
  background:
    linear-gradient(
      90deg,
      #fff 0% 17%,
      #fffffff7 25%,
      #ffffff94 37%,
      #fff0 58%
    ),
    linear-gradient(#0000 65%, #0b606914);
  position: absolute;
  inset: 0;
}
.hero-inner {
  z-index: 2;
  align-items: center;
  max-width: 1400px;
  height: 100%;
  margin: auto;
  padding: 130px 30px 70px;
  display: flex;
  position: relative;
}
.hero-copy {
  width: 46%;
  max-width: 610px;
}
.eyebrow {
  font: 700 13px/1.5 var(--sans);
  letter-spacing: 0.15em;
  color: var(--teal);
  margin: 0 0 18px;
}
.hero h1 {
  letter-spacing: 0.03em;
  margin: 0 0 24px;
  font-size: clamp(56px, 5.2vw, 82px);
  font-weight: 500;
  line-height: 1.14;
}
.hero h1 strong {
  color: var(--teal);
  font-weight: 500;
}
.hero-lead {
  margin: 0 0 14px;
  font-size: clamp(24px, 2.15vw, 34px);
  line-height: 1.65;
}
.hero-note {
  font: 500 14px/2 var(--sans);
  color: #40575d;
  max-width: 565px;
  margin: 0 0 22px;
}
.mother-mark {
  color: #fff;
  background: #111;
  align-items: center;
  width: max-content;
  max-width: 100%;
  margin: 0 0 24px;
  padding: 13px 20px 13px 12px;
  display: flex;
  box-shadow: 0 14px 32px #0b2c301f;
}
.mother-mark img {
  filter: none;
  width: 140px;
}
.mother-mark span {
  font: 700 11px/1.6 var(--sans);
  border-left: 1px solid #ffffff40;
  margin-left: 13px;
  padding-left: 14px;
}
.hero-actions {
  gap: 14px;
  display: flex;
}
.button {
  min-height: 58px;
  font: 700 13px/1.3 var(--sans);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  gap: 11px;
  padding: 0 27px;
  transition: all 0.2s;
  display: inline-flex;
}
.button:hover {
  transform: translateY(-2px);
}
.primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 12px 28px #168f9438;
}
.ghost {
  color: var(--deep);
  border: 1px solid var(--teal);
  background: #ffffffe6;
}
.hero-side {
  z-index: 3;
  writing-mode: vertical-rl;
  font: 700 9px/1 var(--sans);
  letter-spacing: 0.22em;
  color: #fffc;
  position: absolute;
  bottom: 28px;
  right: 16px;
}
.section {
  max-width: var(--max);
  margin: auto;
  padding: 110px 30px;
}
.section-tight {
  padding-top: 100px;
  padding-bottom: 100px;
}
.section-title {
  margin-bottom: 48px;
}
.section-title > p,
.mini-label {
  font: 700 11px/1.4 var(--sans);
  letter-spacing: 0.22em;
  color: var(--teal);
  margin: 0 0 12px;
}
.section-title h2,
.salon-copy h2,
.contact-inner h2 {
  letter-spacing: 0.03em;
  margin: 0;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.35;
}
.section-title.centered {
  text-align: center;
}
.section-title.centered > span {
  font: 500 14px/1.8 var(--sans);
  color: #597077;
  margin-top: 12px;
  display: block;
}
.intro-grid {
  grid-template-columns: 39% 61%;
  align-items: center;
  gap: 70px;
  display: grid;
}
.device-stage {
  background: linear-gradient(145deg, #f8f9f9, #e9eded);
  border-radius: 4px;
  place-items: center;
  min-height: 390px;
  display: grid;
  position: relative;
  overflow: hidden;
}
.device-stage:before {
  content: "";
  border: 1px solid #172a3014;
  position: absolute;
  inset: 22px;
}
.device-stage > span {
  opacity: 0.35;
  font-size: 20px;
  font-style: italic;
  position: absolute;
  top: 20px;
  left: 25px;
}
.device-stage img {
  width: 88%;
  position: relative;
}
.intro-copy > .large-copy {
  margin: 0 0 17px;
  font-size: 27px;
  line-height: 1.7;
}
.intro-copy > p:not(.large-copy) {
  font: 500 14px/2.1 var(--sans);
  color: #52676d;
}
.process-row {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
  display: grid;
}
.process-row > div {
  text-align: center;
  border-right: 1px solid var(--line);
  padding: 19px 10px;
}
.process-row > div:last-child {
  border: 0;
}
.process-row span {
  font: 700 9px/1 var(--sans);
  color: #91a6a9;
  display: block;
}
.process-row i {
  color: var(--teal);
  margin: 10px;
  font-size: 23px;
  display: block;
}
.process-row b {
  white-space: nowrap;
  font-size: 12px;
}
.features-section {
  padding-top: 80px;
}
.feature-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  display: grid;
}
.feature-grid article {
  border: 1px solid var(--line);
  background: #fff;
  padding: 30px 24px 31px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.feature-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px #114b5014;
}
.feature-no {
  font: 500 55px/1 var(--serif);
  color: #edf3f3;
  position: absolute;
  top: 8px;
  right: 15px;
}
.icon-circle {
  background: var(--pale);
  width: 60px;
  height: 60px;
  color: var(--teal);
  border-radius: 50%;
  place-items: center;
  font-size: 24px;
  display: grid;
  position: relative;
}
.feature-grid h3 {
  margin: 22px 0 9px;
  font-size: 22px;
}
.feature-grid p {
  font: 500 13px/1.95 var(--sans);
  color: #5a6f75;
  margin: 0;
}
.audiences {
  background: #f6fafa;
}
.audience-grid {
  background: var(--line);
  border: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  display: grid;
}
.audience-grid article {
  background: #fff;
  padding: 39px 32px;
  position: relative;
}
.audience-grid article > span {
  font: 500 42px/1 var(--serif);
  color: #d7e5e5;
  position: absolute;
  top: 20px;
  right: 22px;
}
.audience-grid article > i {
  color: var(--teal);
  margin-bottom: 23px;
  font-size: 27px;
}
.audience-grid h3 {
  margin: 0 0 4px;
  font-size: 24px;
}
.audience-grid b {
  font: 700 12px/1.5 var(--sans);
  color: var(--teal);
}
.audience-grid p {
  font: 500 13px/1.95 var(--sans);
  color: #596e74;
  margin: 17px 0 0;
}
.salon-section {
  grid-template-columns: 58% 42%;
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
  padding: 120px 30px;
  display: grid;
}
.salon-video {
  position: relative;
}
.salon-video video {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
  display: block;
}
.salon-video > span {
  color: #fff;
  font: 700 9px/1 var(--sans);
  letter-spacing: 0.2em;
  position: absolute;
  bottom: 15px;
  left: 20px;
}
.salon-copy {
  background: #fff;
  margin-left: -55px;
  padding: 52px 50px;
  position: relative;
  box-shadow: 0 22px 60px #0c434821;
}
.salon-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 3.3vw, 50px);
}
.salon-copy > p:not(.mini-label) {
  font: 500 14px/2.05 var(--sans);
  color: #556a70;
}
.salon-copy ul {
  border-top: 1px solid var(--line);
  margin: 0;
  padding: 18px 0;
  list-style: none;
}
.salon-copy li {
  font: 700 12px/1.7 var(--sans);
  align-items: center;
  gap: 12px;
  padding: 7px 0;
  display: flex;
}
.salon-copy li i {
  width: 23px;
  color: var(--teal);
  font-size: 16px;
}
.text-button {
  color: var(--teal);
  font: 700 13px/1 var(--sans);
  border-bottom: 1px solid var(--teal);
  align-items: center;
  gap: 18px;
  padding: 13px 0;
  display: inline-flex;
}
.support-section {
  padding-top: 95px;
}
.flow-grid {
  border: 1px solid var(--line);
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}
.flow-grid li {
  border-right: 1px solid var(--line);
  background: #fff;
  min-height: 170px;
  padding: 25px 20px;
  position: relative;
}
.flow-grid li:last-child {
  border: 0;
}
.flow-grid span {
  font: 700 10px/1 var(--sans);
  color: var(--teal);
  margin-bottom: 41px;
  display: block;
}
.flow-grid i {
  z-index: 2;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  place-items: center;
  width: 20px;
  height: 20px;
  font-size: 8px;
  display: grid;
  position: absolute;
  top: 74px;
  right: -10px;
}
.flow-grid li:last-child i {
  background: var(--pale);
  color: var(--teal);
  width: 40px;
  height: 40px;
  font-size: 16px;
  top: 20px;
  right: 18px;
}
.flow-grid b {
  font-size: 17px;
  line-height: 1.6;
}
.support-note {
  font: 500 12px/1.8 var(--sans);
  background: var(--pale);
  color: #50676c;
  margin: 18px 0 0;
  padding: 16px 20px;
}
.support-note i {
  color: var(--teal);
  margin-right: 9px;
}
.faq-section {
  background: #f5f9f9;
}
.faq-inner {
  grid-template-columns: 32% 68%;
  gap: 60px;
  display: grid;
}
.faq-list details {
  border-top: 1px solid #cddddd;
}
.faq-list details:last-child {
  border-bottom: 1px solid #cddddd;
}
.faq-list summary {
  cursor: pointer;
  align-items: center;
  padding: 23px 4px;
  font-size: 17px;
  font-weight: 700;
  list-style: none;
  display: flex;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span,
.faq-list p span {
  font: 500 24px/1 var(--serif);
  color: var(--teal);
  margin-right: 20px;
}
.faq-list summary i {
  color: var(--teal);
  margin-left: auto;
  font-size: 12px;
  transition: all 0.2s;
}
.faq-list details[open] summary i {
  transform: rotate(45deg);
}
.faq-list details p {
  font: 500 13px/2 var(--sans);
  color: #536a70;
  margin: 0;
  padding: 0 4px 23px;
  display: flex;
}
.faq-list p span {
  color: #b19a77;
}
.contact-section {
  color: #fff;
  background: #0f7077;
  height: 540px;
  position: relative;
  overflow: hidden;
}
.contact-water {
  background:
    linear-gradient(90deg, #064a50f2, #0d646bbd, #0d646b40),
    url(../images/hero-mother-v2.png) 50% 55% / cover;
  position: absolute;
  inset: 0;
}
.contact-inner {
  z-index: 1;
  max-width: var(--max);
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin: auto;
  padding: 75px 30px;
  display: flex;
  position: relative;
}
.contact-inner > p {
  font: 700 10px/1 var(--sans);
  letter-spacing: 0.2em;
  margin: 0 0 15px;
}
.contact-inner h2 {
  margin-bottom: 14px;
}
.contact-inner > span {
  font: 500 13px/1.8 var(--sans);
}
.contact-inner > div {
  gap: 14px;
  margin-top: 28px;
  display: flex;
}
.button.light.primary {
  color: var(--deep);
  background: #fff;
}
.button.light.ghost {
  color: #fff;
  background: 0 0;
  border-color: #ffffffb3;
}
.site-footer {
  color: #fff;
  font-family: var(--sans);
  background: #102e33;
  padding: 57px 30px 24px;
}
.footer-top,
.footer-company,
.footer-bottom {
  max-width: var(--max);
  margin: auto;
}
.footer-top {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}
.footer-top > div {
  align-items: center;
  gap: 25px;
  display: flex;
}
.footer-top img {
  filter: brightness(0) invert();
  width: 145px;
}
.footer-top p {
  border-left: 1px solid #fff3;
  margin: 0;
  padding-left: 24px;
  font-size: 11px;
  line-height: 1.7;
}
.footer-top nav {
  grid-template-columns: repeat(2, auto);
  gap: 10px 35px;
  font-size: 11px;
  display: grid;
}
.footer-company {
  border-top: 1px solid #ffffff24;
  gap: 28px;
  margin-top: 37px;
  padding-top: 19px;
  display: flex;
}
.footer-company p {
  color: #ffffffb3;
  margin: 0;
  font-size: 10px;
}
.footer-company b {
  color: #fff;
  margin-right: 7px;
}
.footer-bottom {
  color: #ffffff78;
  justify-content: space-between;
  margin-top: 38px;
  font-size: 9px;
  display: flex;
}
@media (width<=1180px) {
  .header-inner {
    height: 78px;
  }
  .global-nav,
  .header-cta {
    display: none;
  }
  .menu-button {
    background: 0 0;
    border: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    margin-left: auto;
    display: flex;
    position: relative;
  }
  .menu-button span {
    background: var(--ink);
    width: 25px;
    height: 1px;
    display: block;
  }
  .menu-button em {
    font: 700 7px/1 var(--sans);
    font-style: normal;
  }
  .global-nav.is-open {
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    padding: 25px;
    display: flex;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    box-shadow: 0 15px 30px #0a373c14;
  }
  .hero-copy {
    width: 53%;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width<=760px) {
  html {
    scroll-padding-top: 70px;
  }
  .header-inner {
    height: 70px;
    padding: 0 16px;
  }
  .brand {
    gap: 11px;
  }
  .brand img {
    width: 104px;
  }
  .brand span {
    padding-left: 11px;
    font-size: 8px;
  }
  .brand b {
    font-size: 9px;
  }
  .global-nav.is-open {
    top: 70px;
  }
  .hero {
    height: auto;
    min-height: 0;
    padding-bottom: 0;
  }
  .hero-water {
    height: 67vh;
    min-height: 480px;
    margin-top: 70px;
    position: relative;
    inset: auto;
  }
  .hero-water:after {
    background: linear-gradient(#fff0 62%, #fff 100%);
  }
  .hero-inner {
    height: auto;
    padding: 35px 20px 55px;
  }
  .hero-copy {
    width: 100%;
    max-width: none;
  }
  .eyebrow {
    font-size: 11px;
  }
  .hero h1 {
    font-size: 49px;
  }
  .hero-lead {
    font-size: 22px;
  }
  .hero-note {
    font-size: 12px;
  }
  .mother-mark {
    width: 100%;
    padding: 12px;
  }
  .mother-mark img {
    width: 116px;
  }
  .mother-mark span {
    font-size: 9px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero .button {
    width: 100%;
  }
  .hero-side {
    display: none;
  }
  .section {
    padding: 76px 20px;
  }
  .section-title {
    margin-bottom: 32px;
  }
  .intro-grid,
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .device-stage {
    min-height: 285px;
  }
  .intro-copy > .large-copy {
    font-size: 21px;
  }
  .process-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-row > div:nth-child(2) {
    border-right: 0;
  }
  .feature-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }
  .audience-grid {
    gap: 1px;
  }
  .salon-section {
    grid-template-columns: 1fr;
    padding: 76px 20px;
  }
  .salon-copy {
    margin: -20px 10px 0;
    padding: 32px 25px;
  }
  .flow-grid {
    grid-template-columns: 1fr;
  }
  .flow-grid li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    min-height: 0;
    padding: 22px;
  }
  .flow-grid span {
    margin-bottom: 8px;
  }
  .flow-grid i {
    display: none;
  }
  .contact-section {
    height: auto;
  }
  .contact-inner {
    padding: 75px 20px;
  }
  .contact-inner > div {
    flex-direction: column;
  }
  .footer-top {
    display: block;
  }
  .footer-top > div {
    align-items: flex-start;
  }
  .footer-top nav {
    margin-top: 30px;
  }
  .footer-company {
    display: block;
  }
  .footer-company p {
    margin: 7px 0;
  }
  .footer-bottom {
    line-height: 1.7;
    display: block;
  }
  .footer-bottom small {
    margin-top: 15px;
    display: block;
  }
}
.hero-lead {
  margin-bottom: 8px;
  font-size: clamp(22px, 1.9vw, 30px);
  line-height: 1.6;
}
.hero-statement {
  margin: 0 0 10px;
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: 600;
  line-height: 1.75;
}
.hero-note {
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.8;
}
.about-link {
  margin-top: 24px;
}
.audience-grid article {
  flex-direction: column;
  display: flex;
}
.audience-grid h3 {
  line-height: 1.5;
}
.audience-grid h4 {
  margin: 20px 0 0;
  font-size: 17px;
  line-height: 1.75;
}
.audience-grid p {
  margin: 14px 0 22px;
}
.audience-grid article > a {
  border-top: 1px solid var(--line);
  color: var(--teal);
  font: 700 11px/1.5 var(--sans);
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  display: flex;
}
.home-salon {
  grid-template-columns: minmax(0, 58%) minmax(0, 42%);
  align-items: center;
  max-width: 1500px;
  margin: 0 auto;
  padding: 120px 30px;
  display: grid;
}
.home-salon-image img {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}
.home-salon-copy {
  background: #fff;
  margin-left: -55px;
  padding: 52px 55px;
  position: relative;
  box-shadow: 0 22px 60px #1e110a24;
}
.home-salon-copy .mini-label {
  color: #a6865e;
  letter-spacing: 0.22em;
  margin: 0 0 18px;
}
.home-salon-copy h2 {
  font: 500 clamp(31px, 3vw, 47px) / 1.5 var(--serif);
  margin: 0 0 20px;
}
.home-salon-copy > p:not(.mini-label) {
  color: #665f58;
  font: 500 14px/2 var(--sans);
  margin: 0 0 22px;
}
.market-section {
  padding-top: 100px;
}
.market-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 860px;
  margin: auto;
  display: grid;
}
.market-grid article {
  background: var(--pale);
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 24px;
  padding: 35px;
  display: grid;
}
.market-grid article > i {
  width: 72px;
  height: 72px;
  color: var(--teal);
  background: #fff;
  border-radius: 50%;
  grid-row: 1/3;
  place-items: center;
  font-size: 28px;
  display: grid;
}
.market-grid strong {
  font: 500 clamp(52px, 5vw, 74px) / 1 var(--serif);
  color: var(--deep);
}
.market-grid small {
  margin-left: 5px;
  font-size: 20px;
}
.market-grid p {
  font: 700 13px/1.7 var(--sans);
  margin: 8px 0 0;
}
.market-note {
  text-align: center;
  font: 500 10px/1 var(--sans);
  color: #789095;
  margin: 14px 0 42px;
}
.download-cta {
  color: #fff;
  background: #102e33;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  padding: 38px 45px;
  display: flex;
}
.download-cta p {
  font: 700 9px/1 var(--sans);
  letter-spacing: 0.2em;
  color: #6dc6ca;
  margin: 0 0 12px;
}
.download-cta h3 {
  margin: 0 0 6px;
  font-size: 25px;
  line-height: 1.55;
}
.download-cta span {
  font: 500 12px/1.7 var(--sans);
  color: #ffffffb3;
}
.download-cta .button {
  flex: none;
}
@media (width<=760px) {
  .hero-lead {
    font-size: 21px;
  }
  .hero-statement {
    font-size: 16px;
  }
  .home-salon {
    grid-template-columns: 1fr;
    padding: 76px 20px;
  }
  .home-salon-copy {
    margin: -20px 10px 0;
    padding: 32px 25px;
  }
  .home-salon-copy h2 {
    font-size: 29px;
  }
  .home-salon-copy h2 br,
  .home-salon-copy > p br {
    display: none;
  }
  .market-grid {
    grid-template-columns: 1fr;
  }
  .market-grid article {
    padding: 26px 22px;
  }
  .market-grid article > i {
    width: 58px;
    height: 58px;
    font-size: 22px;
  }
  .download-cta {
    padding: 30px 24px;
    display: block;
  }
  .download-cta h3 {
    font-size: 21px;
  }
  .download-cta .button {
    width: 100%;
    margin-top: 22px;
  }
  .audience-grid h4 {
    font-size: 16px;
  }
}
.hero-water {
  inset: 0;
}
@media (width<=760px) {
  .hero-water {
    inset: auto;
  }
  .hero-water img {
    object-position: 67% center;
  }
  .hero-water:after {
    background: linear-gradient(#fff0 62%, #fff 100%);
  }
}
.center-link {
  text-align: center;
  margin-top: 35px;
}
.footer-visual {
  max-width: var(--max);
  color: var(--deep);
  background: #f8fbfa;
  height: 360px;
  margin: 0 auto 64px;
  position: relative;
  overflow: hidden;
}
.footer-visual > img {
  object-fit: cover;
  object-position: 58% 52%;
  opacity: 0.82;
  width: 100%;
  height: 100%;
}
.footer-visual:after {
  content: "";
  background: linear-gradient(
    90deg,
    #fff 0%,
    #fffffff7 29%,
    #ffffffc9 46%,
    #ffffff38 70%,
    #ffffff0f 100%
  );
  position: absolute;
  inset: 0;
}
.footer-visual > div {
  z-index: 2;
  max-width: 520px;
  position: absolute;
  top: 50%;
  left: 55px;
  transform: translateY(-50%);
}
.footer-visual small {
  letter-spacing: 0.2em;
  color: var(--teal);
}
.footer-visual h2 {
  font: 500 36px/1.4 var(--serif);
  margin: 10px 0;
}
.footer-visual p {
  font: 500 15px/1.8 var(--serif);
  margin: 0 0 18px;
}
.footer-visual a {
  color: var(--teal);
  border-bottom: 1px solid var(--teal);
  align-items: center;
  gap: 14px;
  padding: 7px 0;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
}
.site-footer {
  padding-top: 64px;
}
.footer-top nav {
  grid-template-columns: repeat(3, auto);
}
.subpage {
  padding-top: 92px;
}
.page-hero {
  color: #fff;
  background:
    linear-gradient(90deg, #07464ce6, #07464c40),
    url(../images/hero-mother-v2.png) 70% 55% / cover;
  align-items: end;
  height: 490px;
  display: flex;
  position: relative;
}
.page-hero-salon {
  background-image:
    linear-gradient(90deg, #2b1c12d9, #2b1c122e),
    url(../images/premium-salon.jpg);
}
.page-hero-product {
  background-color: #dce8e8;
  background-image:
    linear-gradient(90deg, #07464cf2 0%, #07464ccf 42%, #07464c59 70%, #07464c24 100%),
    url(../images/mother-device-current.png);
  background-position: center, 78% 52%;
  background-repeat: no-repeat;
  background-size: cover, auto 88%;
  height: 490px;
}
.page-hero > div {
  width: var(--max);
  max-width: 100%;
  margin: 0 auto;
  padding: 70px 30px;
}
.page-hero p {
  font: 700 11px/1 var(--sans);
  letter-spacing: 0.22em;
  color: #9be0e2;
  margin: 0 0 15px;
}
.page-hero h1 {
  font: 500 clamp(42px, 5vw, 66px) / 1.25 var(--serif);
  margin: 0 0 14px;
}
.page-hero span {
  font: 500 14px/1.9 var(--sans);
  max-width: 670px;
  display: block;
}
.breadcrumb {
  max-width: var(--max);
  font: 600 10px/1 var(--sans);
  color: #71878b;
  align-items: center;
  gap: 12px;
  margin: auto;
  padding: 18px 30px;
  display: flex;
}
.breadcrumb i {
  font-size: 7px;
}
.content-section {
  max-width: var(--max);
  margin: auto;
  padding: 100px 30px;
}
.content-section.tint,
.content-section.dark {
  max-width: none;
  padding-left: max(30px, calc((100% - var(--max)) / 2 + 30px));
  padding-right: max(30px, calc((100% - var(--max)) / 2 + 30px));
  background: #f2f8f8;
}
.content-section.dark {
  color: #fff;
  background: #102e33;
}
.content-heading {
  margin-bottom: 42px;
  position: relative;
}
.content-heading > b {
  font: 500 68px/1 var(--serif);
  color: #dce9e9;
  position: absolute;
  top: -15px;
  left: -5px;
}
.content-heading > p {
  font: 700 10px/1 var(--sans);
  letter-spacing: 0.2em;
  color: var(--teal);
  margin: 0 0 13px;
  position: relative;
}
.content-heading h2 {
  font: 500 clamp(33px, 3.7vw, 52px) / 1.4 var(--serif);
  margin: 0;
  position: relative;
}
.prose {
  max-width: 880px;
}
.prose p {
  font: 500 15px/2.2 var(--sans);
  color: #50666c;
}
.prose .large-copy,
.large-copy {
  font: 500 27px/1.8 var(--serif);
  color: var(--ink);
}
.lead-prose {
  max-width: 920px;
}
.split {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 75px;
  display: grid;
}
.process-stack {
  border-top: 1px solid var(--line);
}
.process-stack > div {
  border-bottom: 1px solid var(--line);
  align-items: center;
  gap: 30px;
  padding: 25px 12px;
  display: flex;
}
.process-stack span {
  color: var(--teal);
  font: 500 24px/1 var(--serif);
}
.process-stack b {
  font-size: 18px;
}
.compare > div {
  border-bottom: 1px solid var(--line);
  grid-template-columns: 22% 39% 39%;
  display: grid;
}
.compare > div:first-child {
  color: #fff;
  background: #183b40;
}
.compare span,
.compare b {
  border-right: 1px solid var(--line);
  font: 600 13px/1.8 var(--sans);
  padding: 20px;
}
.compare .accent {
  color: var(--deep);
  background: #e8f7f7;
  font-weight: 700;
}
.legal-note {
  font: 500 11px/1.8 var(--sans);
  color: #708589;
  margin-top: 18px;
}
.device-large {
  object-fit: contain;
  width: 95%;
  max-height: 460px;
}
.spec-table {
  border-top: 1px solid var(--line);
}
.spec-table > div {
  border-bottom: 1px solid var(--line);
  grid-template-columns: 28% 72%;
  display: grid;
}
.spec-table b,
.spec-table span {
  font: 600 14px/1.7 var(--sans);
  padding: 20px 24px;
}
.spec-table b {
  color: var(--deep);
  background: #f2f8f8;
}
.benefit-grid {
  background: #ffffff26;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  display: grid;
}
.benefit-grid article {
  background: #102e33;
  padding: 38px 28px;
}
.benefit-grid i {
  color: #72c9cd;
  font-size: 28px;
}
.benefit-grid h3 {
  margin: 20px 0 10px;
  font-size: 20px;
}
.benefit-grid p {
  font: 500 13px/1.9 var(--sans);
  color: #ffffffad;
}
.salon-main {
  grid-template-columns: 58% 42%;
  align-items: center;
  max-width: 1500px;
  margin: auto;
  padding: 70px 30px 30px;
  display: grid;
}
.salon-main video {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}
.salon-main > div {
  background: #fff;
  margin-left: -55px;
  padding: 55px;
  position: relative;
  box-shadow: 0 22px 60px #1e110a29;
}
.salon-main p {
  font: 700 10px/1 var(--sans);
  letter-spacing: 0.2em;
  color: #a6865e;
}
.salon-main h2 {
  font: 500 clamp(30px, 3.2vw, 48px) / 1.5 var(--serif);
  margin: 15px 0;
}
.salon-main span {
  font: 500 14px/2 var(--sans);
  color: #665f58;
}
.salon-detail img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.check-list {
  margin: 25px 0;
  padding: 0;
  list-style: none;
}
.check-list li {
  border-bottom: 1px solid var(--line);
  font: 600 13px/1.7 var(--sans);
  gap: 14px;
  padding: 12px 0;
  display: flex;
}
.check-list i {
  color: var(--teal);
  margin-top: 5px;
}
.two-cards {
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  display: grid;
}
.two-cards article {
  background: #fff;
  padding: 45px;
}
.two-cards i {
  color: #a6865e;
  font-size: 28px;
}
.two-cards h3 {
  font-size: 24px;
}
.two-cards p {
  font: 500 14px/2 var(--sans);
  color: #5c6869;
}
.merit-sections > article {
  border-bottom: 1px solid var(--line);
  grid-template-columns: 70px 95px 1fr;
  gap: 30px;
  padding: 60px 0;
  scroll-margin-top: 110px;
  display: grid;
}
.merit-sections > article > span {
  font: 500 56px/1 var(--serif);
  color: #d8e7e7;
}
.merit-icon {
  background: var(--pale);
  width: 75px;
  height: 75px;
  color: var(--teal);
  border-radius: 50%;
  place-items: center;
  font-size: 27px;
  display: grid;
}
.merit-sections article > div:last-child > p {
  font: 700 12px/1.5 var(--sans);
  color: var(--teal);
  margin: 0;
}
.merit-sections h2 {
  margin: 7px 0;
  font-size: 34px;
}
.merit-sections h3 {
  margin: 12px 0;
  font-size: 21px;
}
.flow-detail {
  border-top: 1px solid var(--line);
  margin: 0;
  padding: 0;
  list-style: none;
}
.flow-detail li {
  border-bottom: 1px solid var(--line);
  grid-template-columns: 110px 1fr;
  align-items: center;
  padding: 30px;
  display: grid;
}
.flow-detail li > span {
  font: 500 44px/1 var(--serif);
  color: #b7d7d8;
}
.flow-detail h3 {
  margin: 0 0 6px;
  font-size: 22px;
}
.flow-detail p {
  font: 500 13px/1.8 var(--sans);
  color: #60757a;
  margin: 0;
}
.support-box {
  background: #fff;
  padding: 50px;
  box-shadow: 0 15px 45px #14464b14;
}
.support-box i {
  color: var(--teal);
  font-size: 35px;
}
.support-box h3 {
  font-size: 25px;
}
.support-box p {
  font: 500 13px/2 var(--sans);
  color: #607277;
}
.faq-list.full {
  max-width: 930px;
  margin: auto;
}
.faq-list.full summary {
  padding: 29px 5px;
  font-size: 19px;
}
.faq-list.full details p {
  padding-bottom: 29px;
  font-size: 14px;
}
.company-message {
  max-width: 900px;
}
.signature {
  text-align: right;
  margin-top: 35px;
}
.company-table {
  max-width: 900px;
}
.contact-page > .split {
  align-items: start;
}
.direct-contact {
  background: var(--pale);
  margin-top: 35px;
  padding: 25px;
}
.direct-contact p {
  margin: 0 0 10px;
  font-size: 11px;
}
.direct-contact a {
  font: 700 17px/1.8 var(--sans);
  color: var(--deep);
  display: block;
}
.direct-contact i {
  width: 24px;
}
.contact-form {
  background: #f4f8f8;
  padding: 38px;
}
.contact-form label {
  font: 700 12px/1.7 var(--sans);
  margin-bottom: 20px;
  display: block;
}
.contact-form label > b {
  color: #fff;
  background: #b17966;
  margin-left: 5px;
  padding: 3px 6px;
  font-size: 9px;
}
.contact-form input:not([type="checkbox"]):not([type="submit"]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  font: 500 14px/1.5 var(--sans);
  background: #fff;
  border: 1px solid #cadcdd;
  border-radius: 0;
  margin-top: 7px;
  padding: 14px;
  display: block;
}
.contact-form .consent {
  font-weight: 500;
}
.contact-form button,
.contact-form input[type="submit"] {
  cursor: pointer;
  border: 0;
  width: 100%;
}
.contact-form input[type="submit"].button.primary {
  background: var(--teal);
  color: #fff;
  border-radius: 100px;
  box-shadow: 0 12px 28px #168f9438;
}
.contact-form input[type="submit"].button.primary:hover {
  background: var(--deep);
  transform: translateY(-2px);
}
.contact-form input[type="submit"].button.primary:disabled {
  cursor: wait;
  opacity: 0.65;
}
.contact-form .wpcf7-form-control-wrap {
  display: block;
}
.contact-form .wpcf7-not-valid-tip {
  font: 600 12px/1.6 var(--sans);
  margin-top: 6px;
}
.contact-form .wpcf7-response-output {
  font: 600 13px/1.8 var(--sans);
  margin: 20px 0 0;
  padding: 12px 16px;
}
.form-note {
  font: 500 10px/1.7 var(--sans);
  color: #718386;
}
@media (width<=1180px) {
  .global-nav {
    gap: 14px;
  }
  .global-nav a {
    font-size: 10px;
  }
  .header-cta {
    padding: 12px 14px;
  }
  .subpage {
    padding-top: 78px;
  }
}
@media (width<=760px) {
  .footer-visual {
    height: 470px;
    margin-bottom: 45px;
  }
  .footer-visual > img {
    object-position: 57% 50%;
    opacity: 0.86;
  }
  .footer-visual:after {
    background: linear-gradient(
      180deg,
      #fffffffa 0%,
      #ffffffe8 30%,
      #ffffff78 57%,
      #ffffff0d 82%
    );
  }
  .footer-visual > div {
    max-width: 310px;
    top: 38px;
    left: 24px;
    right: 24px;
    transform: none;
  }
  .footer-visual h2 {
    font-size: 29px;
  }
  .footer-top nav {
    grid-template-columns: 1fr 1fr;
  }
  .subpage {
    padding-top: 70px;
  }
  .page-hero {
    height: 410px;
  }
  .page-hero-product {
    background-position: center, 72% 50%;
    background-size: cover, auto 70%;
    height: 410px;
  }
  .page-hero > div {
    padding: 45px 20px;
  }
  .page-hero h1 {
    font-size: 39px;
  }
  .breadcrumb {
    padding: 15px 20px;
  }
  .content-section,
  .content-section.tint,
  .content-section.dark {
    padding: 70px 20px;
  }
  .split,
  .salon-main,
  .two-cards {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .compare {
    overflow-x: auto;
  }
  .compare > div {
    min-width: 650px;
  }
  .spec-table > div {
    grid-template-columns: 36% 64%;
  }
  .spec-table b,
  .spec-table span {
    padding: 14px 12px;
    font-size: 12px;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .salon-main {
    padding: 60px 20px;
  }
  .salon-main > div {
    margin: -20px 10px 0;
    padding: 30px 25px;
  }
  .merit-sections > article {
    grid-template-columns: 50px 1fr;
    gap: 18px;
  }
  .merit-sections > article > span {
    font-size: 39px;
  }
  .merit-icon {
    width: 58px;
    height: 58px;
  }
  .merit-sections > article > div:last-child {
    grid-column: 1/3;
  }
  .merit-sections h2 {
    font-size: 27px;
  }
  .flow-detail li {
    grid-template-columns: 65px 1fr;
    padding: 24px 5px;
  }
  .flow-detail li > span {
    font-size: 34px;
  }
  .contact-form {
    padding: 26px 20px;
  }
}
.eyebrow {
  font-size: 15px;
}
.hero h1 {
  font-size: clamp(58px, 5.35vw, 84px);
}
.hero-lead {
  font-size: clamp(25px, 2.2vw, 35px);
}
.hero-statement {
  margin-bottom: 12px;
  font-size: clamp(19px, 1.45vw, 23px);
}
.hero-note {
  margin-bottom: 26px;
  font-size: 15px;
}
.section-title > p,
.mini-label {
  font-size: 12px;
}
.audience-grid b {
  font-size: 16px;
  line-height: 1.6;
}
.salon-main p {
  font-size: 12px;
  line-height: 1.3;
}
.salon-main h2 {
  font-size: clamp(32px, 3.1vw, 46px);
  line-height: 1.48;
}
.salon-main span {
  font-size: 15px;
}
.about-feature-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  display: grid;
}
.about-feature-grid article {
  border: 1px solid var(--line);
  background: #fff;
  padding: 34px 26px;
}
.about-feature-grid i {
  color: var(--teal);
  font-size: 27px;
}
.about-feature-grid h3 {
  margin: 20px 0 9px;
  font-size: 21px;
}
.about-feature-grid p {
  font: 500 13px/1.95 var(--sans);
  color: #5a6f75;
  margin: 0;
}
.flow-detail {
  border: 0;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  display: grid;
}
.flow-detail li {
  border: 1px solid var(--line);
  background: #fff;
  min-height: 250px;
  padding: 30px 24px;
  display: block;
  position: relative;
  box-shadow: 0 12px 30px #14464b0f;
}
.flow-detail li:not(:last-child):after {
  content: "";
  z-index: 2;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  place-items: center;
  width: 34px;
  height: 34px;
  font-family: "Font Awesome 6 Free";
  font-size: 10px;
  font-weight: 900;
  display: grid;
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
}
.flow-detail li > span {
  font-size: 38px;
  display: block;
}
.flow-icon {
  background: var(--pale);
  width: 54px;
  height: 54px;
  color: var(--teal);
  border-radius: 50%;
  place-items: center;
  margin: 26px 0 20px;
  font-size: 21px;
  display: grid;
}
.flow-detail h3 {
  font-size: 20px;
  line-height: 1.5;
}
.legal-support-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 70px;
  display: grid;
}
.legal-support-grid .content-heading h2 {
  word-break: keep-all;
  font-size: clamp(32px, 3.2vw, 46px);
}
.direct-contact {
  padding: 28px;
}
.direct-contact p {
  font: 700 16px/1.6 var(--sans);
  color: var(--deep);
  margin-bottom: 12px;
}
.privacy-note {
  background: #fff;
  border: 1px solid #cadcdd;
  margin: 8px 0 20px;
  padding: 19px 20px;
}
.privacy-note h3 {
  font: 700 13px/1.6 var(--sans);
  margin: 0 0 6px;
}
.privacy-note p {
  font: 500 11px/1.8 var(--sans);
  color: #61777c;
  margin: 0;
}
.contact-form button,
.contact-form input[type="submit"] {
  margin-bottom: 34px;
}
.signature span {
  font-size: 13px;
}
@media (width<=1180px) {
  .flow-detail {
    grid-template-columns: repeat(2, 1fr);
  }
  .flow-detail li:not(:last-child):after {
    display: none;
  }
  .about-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width<=760px) {
  .eyebrow {
    font-size: 13px;
  }
  .hero h1 {
    font-size: 51px;
  }
  .hero-statement {
    font-size: 17px;
  }
  .hero-note {
    font-size: 13px;
  }
  .about-feature-grid,
  .flow-detail,
  .legal-support-grid {
    grid-template-columns: 1fr;
  }
  .flow-detail li {
    min-height: 0;
    padding: 25px;
  }
  .flow-icon {
    margin: 18px 0 14px;
  }
  .legal-support-grid {
    gap: 35px;
  }
  .legal-support-grid .content-heading h2 {
    font-size: clamp(28px, 7.7vw, 32px);
    line-height: 1.45;
    overflow-wrap: anywhere;
    word-break: normal;
    text-wrap: pretty;
  }
  .support-box {
    padding: 36px 28px;
  }
  .support-box h3 {
    font-size: clamp(21px, 5.5vw, 23px);
    line-height: 1.6;
    text-wrap: balance;
  }
  .salon-main h2 br {
    display: none;
  }
}
.hero .eyebrow {
  font-size: 18px;
  line-height: 1.65;
}
.hero h1 {
  line-height: 1.24;
}
.home-salon-image video {
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #eee7de;
  width: 100%;
  display: block;
}
.salon-main video {
  aspect-ratio: 16/9;
  background: #eee7de;
}
.page-hero-salon {
  background-position: 50% 48%;
}
.salon-detail img {
  object-position: center center;
}
@media (width<=760px) {
  .hero .eyebrow {
    font-size: 15px;
    line-height: 1.65;
  }
  .hero h1 {
    line-height: 1.22;
  }
}
.hero-water:after {
  background:
    linear-gradient(
      90deg,
      #fff 0% 31%,
      #fffffff5 38%,
      #ffffff8c 49%,
      #fff0 63%
    ),
    linear-gradient(#0000 65%, #0b606914);
}
@media (width<=760px) {
  .hero-water:after {
    background: linear-gradient(#fff0 62%, #fff 100%);
  }
}

/* Hero focal-point refinement (v1.0.10) */
.hero-water img {
  object-position: 59% center;
}
@media (width<=760px) {
  .hero-water {
    height: min(54vh, 430px);
    min-height: 390px;
  }
  .hero-water img {
    object-position: 74% center;
  }
  .hero-inner {
    padding-top: 26px;
  }
}

/* Mobile typography and footer visual refinement (v1.0.12) */
@media (width<=760px) {
  .hero-lead,
  .hero-statement,
  .download-cta h3,
  .contact-inner h2 {
    text-wrap: balance;
  }

  .hero-lead br,
  .hero-statement br,
  .download-cta h3 br,
  .contact-inner h2 br {
    display: none;
  }

  .hero-lead {
    max-width: 350px;
    font-size: clamp(19px, 5.2vw, 21px);
    line-height: 1.75;
  }

  .hero-statement {
    max-width: 350px;
    line-height: 1.85;
  }

  .market-section .section-title h2 {
    white-space: nowrap;
    font-size: clamp(29px, 8vw, 32px);
    letter-spacing: 0;
  }

  .download-cta h3 {
    font-size: clamp(20px, 5.4vw, 22px);
    line-height: 1.65;
  }

  .contact-inner h2 {
    max-width: 355px;
    font-size: clamp(27px, 7.4vw, 30px);
    line-height: 1.55;
    letter-spacing: 0.01em;
  }

  .footer-visual {
    height: 510px;
    background: #f8fbfa;
  }

  .footer-visual > img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 235px;
    object-fit: cover;
    object-position: 68% 50%;
    opacity: 1;
  }

  .footer-visual:after {
    background: linear-gradient(
      180deg,
      #f8fbfa 0%,
      #f8fbfa 48%,
      #f8fbfad9 54%,
      #f8fbfa00 67%
    );
  }

  .footer-visual > div {
    max-width: none;
    top: 34px;
    left: 24px;
    right: 24px;
  }

  .footer-visual h2 {
    font-size: 28px;
  }
}
/* Official Instagram */
.instagram-section {
  position: relative;
  overflow: hidden;
  padding: 72px 24px;
  background:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,.9) 0 8%, transparent 32%),
    linear-gradient(135deg, #edf9fb 0%, #f8fbfa 52%, #e8f4f7 100%);
}
.instagram-section::before,
.instagram-section::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(35, 139, 153, .12);
  border-radius: 50%;
}
.instagram-section::before {
  width: 360px;
  height: 360px;
  left: -160px;
  bottom: -230px;
}
.instagram-section::after {
  width: 220px;
  height: 220px;
  right: -80px;
  top: -120px;
}
.instagram-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 44px 52px;
  border: 1px solid rgba(35, 139, 153, .18);
  border-radius: 28px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 22px 60px rgba(38, 104, 116, .10);
  backdrop-filter: blur(10px);
}
.instagram-icon {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 44px;
  background: linear-gradient(145deg, #2d8e9d, #71b7bf);
  box-shadow: 0 12px 28px rgba(45, 142, 157, .24);
}
.instagram-kicker {
  margin: 0 0 8px;
  color: var(--teal);
  font: 600 12px/1.4 var(--sans);
  letter-spacing: .18em;
}
.instagram-copy h2 {
  margin: 0;
  color: var(--deep);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.45;
}
.instagram-copy > p:last-child {
  margin: 14px 0 0;
  color: #5f7478;
  line-height: 1.9;
}
.instagram-link {
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 19px 24px;
  color: #fff;
  border-radius: 14px;
  background: var(--deep);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.instagram-link:hover {
  color: #fff;
  background: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(24, 59, 64, .18);
}
.instagram-link span {
  font-size: 13px;
  letter-spacing: .04em;
  opacity: .76;
}
.instagram-link strong {
  font-size: 15px;
}
.instagram-link i {
  margin-left: 7px;
  font-size: 12px;
}
@media (max-width: 860px) {
  .instagram-inner {
    grid-template-columns: 78px 1fr;
    padding: 38px 34px;
  }
  .instagram-icon {
    width: 72px;
    height: 72px;
    font-size: 34px;
  }
  .instagram-link {
    grid-column: 1 / -1;
    min-width: 0;
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .instagram-section {
    padding: 48px 18px;
  }
  .instagram-inner {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 34px 22px;
    text-align: center;
    border-radius: 22px;
  }
  .instagram-copy h2 {
    font-size: 24px;
  }
  .instagram-copy > p:last-child {
    font-size: 14px;
  }
  .instagram-link {
    width: 100%;
  }
}

