:root {
  --color-ink: #181816;
  --color-soft-ink: #5d5b55;
  --color-paper: #f6f1e9;
  --color-white: #fffaf2;
  --color-line: #ded4c5;
  --color-mint: #c8ddd1;
  --color-sumi: #d7d1c6;
  --color-gold: #a98647;
  --shadow: 0 18px 50px rgba(35, 31, 27, 0.08);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.8;
}

body.admin-bar .site-header {
  top: 32px;
}

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 16px clamp(22px, 4vw, 60px);
  color: var(--color-white);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled,
body:not(.home) .site-header {
  background: rgba(255, 250, 242, 0.9);
  box-shadow: 0 12px 35px rgba(36, 35, 32, 0.08);
  color: var(--color-ink);
  backdrop-filter: blur(18px);
}

.site-brand {
  display: grid;
  line-height: 1.05;
}

.site-brand__main {
  font-family: var(--font-serif);
  font-size: 31px;
  font-weight: 600;
}

.site-brand__sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.global-nav__list,
.site-footer__menu {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.global-nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.global-nav__reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  padding: 144px clamp(20px, 6vw, 88px) 76px;
  overflow: hidden;
  color: var(--color-white);
  background: #171715;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 13, 11, 0.86) 0%, rgba(12, 13, 11, 0.58) 34%, rgba(12, 13, 11, 0.12) 72%),
    linear-gradient(0deg, rgba(12, 13, 11, 0.34), rgba(12, 13, 11, 0.08));
  pointer-events: none;
}

.store-hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(0deg, rgba(24, 24, 22, 0.35), transparent);
  pointer-events: none;
}

.hero__image {
  position: absolute;
  inset: 0;
  background-image: url("../images/salon-hero.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero__content {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 720px;
  padding-top: 30px;
}

.hero h1,
.page-hero h1,
.store-hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(58px, 8vw, 124px);
  font-weight: 600;
  line-height: 0.9;
}

.hero h1 span {
  display: inline-block;
  font-size: clamp(38px, 5.4vw, 82px);
}

.hero p,
.page-hero p,
.store-hero p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 253, 249, 0.9);
  font-size: clamp(15px, 1.7vw, 18px);
  font-weight: 500;
  line-height: 2;
}

.hero__scroll {
  position: absolute;
  right: clamp(22px, 4vw, 60px);
  bottom: 42px;
  z-index: 2;
  color: rgba(255, 250, 242, 0.72);
  font-family: var(--font-serif);
  font-size: 15px;
  writing-mode: vertical-rl;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
}

.hero .eyebrow,
.store-hero .eyebrow,
.page-hero .eyebrow {
  color: rgba(255, 253, 249, 0.76);
}

.hero__actions,
.section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.lc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--color-ink);
  border-radius: 999px;
  background: var(--color-ink);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.lc-button--ghost {
  background: rgba(255, 250, 242, 0.08);
  color: currentColor;
  backdrop-filter: blur(10px);
}

.lc-button--light {
  border-color: var(--color-white);
  background: var(--color-white);
  color: var(--color-ink);
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(78px, 9vw, 132px) 0;
}

.section__head {
  display: grid;
  gap: 8px;
  max-width: 760px;
  margin-bottom: 36px;
}

.section__head h2,
.cta h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.6vw, 62px);
  font-weight: 600;
  line-height: 1.08;
}

.section__head h2 span {
  display: block;
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
}

.intro__text {
  margin: 0;
  color: var(--color-soft-ink);
  font-size: 18px;
  line-height: 2.1;
}

.store-grid,
.price-columns,
.post-grid,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

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

.store-card,
.price-panel,
.post-card,
.contact-form-box {
  background: var(--color-white);
  border: 1px solid rgba(222, 215, 203, 0.8);
  border-radius: 8px;
  overflow: hidden;
}

.store-card:hover,
.post-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.store-card,
.post-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.store-card__image {
  min-height: 330px;
  background-image:
    linear-gradient(0deg, rgba(24, 24, 22, 0.08), rgba(24, 24, 22, 0)),
    url("../images/salon-hero.png");
  background-position: center;
  background-size: cover;
}

.store-card--mint .store-card__image {
  background-image:
    linear-gradient(90deg, rgba(200, 221, 209, 0.3), rgba(255, 250, 242, 0.06)),
    url("../images/lucxia-card.png");
}

.store-card--sumi .store-card__image {
  background-image:
    linear-gradient(90deg, rgba(31, 31, 29, 0.28), rgba(255, 250, 242, 0.04)),
    url("../images/coaless-card.png");
  background-position: 62% center;
}

.store-card__body,
.post-card__body,
.price-panel,
.contact-form-box {
  padding: clamp(24px, 4vw, 40px);
}

.store-card__area,
.post-card__date {
  margin: 0 0 8px;
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 18px;
}

.store-card h3,
.price-panel h3,
.post-card h3,
.price-panel h2 {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.store-card h3 span {
  display: block;
  margin-top: 6px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
}

.store-card p,
.post-card p,
.note,
.contact-copy p {
  color: var(--color-soft-ink);
}

.store-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--color-ink);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.price-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-line);
}

.price-list li:first-child {
  border-top: 1px solid var(--color-line);
}

.price-list strong {
  font-family: var(--font-serif);
  font-size: 24px;
}

.page-hero,
.store-hero {
  position: relative;
  display: grid;
  min-height: 68vh;
  padding: 160px clamp(20px, 6vw, 84px) 72px;
  overflow: hidden;
  color: var(--color-white);
  background: linear-gradient(135deg, #272520, #6b6557);
}

.page-hero {
  align-content: end;
}

.page-hero h1 {
  font-size: clamp(58px, 10vw, 126px);
}

.page-hero--menu {
  background: linear-gradient(135deg, #4f5d52, #b49b68);
}

.page-hero--contact {
  background: linear-gradient(135deg, #4a4844, #9f937e);
}

.page-hero--blog {
  background: linear-gradient(135deg, #3e4540, #a99a78);
}

.store-hero {
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.store-hero--mint {
  background: linear-gradient(135deg, #37433b, #a7b8aa);
}

.store-hero--sumi {
  background: linear-gradient(135deg, #2d2e2c, #988d7c);
}

.store-hero h1 span {
  display: block;
  margin-top: 10px;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.store-hero__content {
  position: relative;
  z-index: 2;
}

.store-hero__visual {
  position: relative;
  z-index: 1;
  min-height: 500px;
  border-radius: 8px;
  opacity: 0.9;
  background-image:
    linear-gradient(0deg, rgba(24, 24, 22, 0.08), rgba(24, 24, 22, 0)),
    url("../images/salon-hero.png");
  background-position: center;
  background-size: cover;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-soft-ink);
  font-weight: 700;
}

.price-panel--large {
  max-width: 850px;
  margin: 0 auto;
}

.info-list {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--color-line);
}

.info-list div {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-line);
}

.info-list dt {
  color: var(--color-gold);
  font-weight: 700;
}

.info-list dd {
  margin: 0;
}

.menu-tabs__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}

.menu-tabs__buttons button {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: transparent;
  color: var(--color-ink);
  cursor: pointer;
  font: 700 14px var(--font-sans);
}

.menu-tabs__buttons button[aria-selected="true"] {
  border-color: var(--color-ink);
  background: var(--color-ink);
  color: var(--color-white);
}

.menu-tabs__panel {
  display: none;
}

.menu-tabs__panel.is-active {
  display: block;
}

.post-card__thumb {
  min-height: 220px;
  background-image:
    linear-gradient(135deg, rgba(169, 134, 71, 0.18), rgba(24, 24, 22, 0.05)),
    url("../images/salon-hero.png");
  background-position: center;
  background-size: cover;
}

.post-card__thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.post-card h3 {
  font-size: 28px;
  line-height: 1.2;
}

.post-card p {
  margin-bottom: 0;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto clamp(72px, 9vw, 128px);
  padding: clamp(34px, 6vw, 58px);
  border-radius: 8px;
  background: #2d302b;
  color: var(--color-white);
}

.cta h2 {
  max-width: 720px;
  font-size: clamp(32px, 4vw, 54px);
}

.contact-layout {
  align-items: start;
}

.contact-store-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-store-list a {
  display: grid;
  padding: 18px 20px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-white);
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.1;
}

.contact-store-list span {
  margin-bottom: 6px;
  color: var(--color-gold);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
}

.mock-form {
  display: grid;
  gap: 18px;
}

.mock-form label {
  display: grid;
  gap: 6px;
  color: var(--color-soft-ink);
  font-weight: 700;
}

.mock-form input,
.mock-form textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-paper);
  padding: 13px 14px;
  color: var(--color-ink);
  font: inherit;
}

.mock-form button {
  min-height: 50px;
  border: 0;
  border-radius: 999px;
  background: var(--color-ink);
  color: var(--color-white);
  font-weight: 700;
}

.single-post {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 100px;
}

.single-post__header h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(42px, 7vw, 78px);
  line-height: 1;
}

.single-post__meta {
  margin-top: 18px;
  color: var(--color-soft-ink);
}

.single-post__thumb {
  margin: 42px 0;
}

.single-post__thumb img {
  width: 100%;
  border-radius: 8px;
}

.single-post__content {
  color: var(--color-soft-ink);
}

.pagination {
  margin-top: 42px;
  text-align: center;
}

.empty-text {
  color: var(--color-soft-ink);
}

.site-footer {
  padding: 54px clamp(20px, 4vw, 56px) 28px;
  background: var(--color-ink);
  color: var(--color-white);
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.site-footer__brand {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 34px;
}

.site-footer__copy,
.site-footer__copyright {
  color: rgba(255, 253, 249, 0.66);
}

.site-footer__copyright {
  width: min(1120px, 100%);
  margin: 36px auto 0;
  font-size: 12px;
}

@media (max-width: 900px) {
  .nav-toggle {
    position: relative;
    z-index: 60;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
    color: inherit;
  }

  .nav-toggle span {
    position: absolute;
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: transform 0.2s ease;
  }

  .nav-toggle span:first-child {
    transform: translateY(-4px);
  }

  .nav-toggle span:last-child {
    transform: translateY(4px);
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: rotate(40deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: rotate(-40deg);
  }

  .global-nav {
    position: fixed;
    inset: 0;
    display: none;
    align-content: center;
    justify-items: center;
    padding: 110px 28px 48px;
    background: var(--color-white);
    color: var(--color-ink);
  }

  .global-nav.is-open {
    display: grid;
  }

  .global-nav__list {
    display: grid;
    justify-items: center;
    gap: 18px;
  }

  .global-nav a {
    font-size: 20px;
  }

  .intro,
  .store-grid,
  .price-columns,
  .post-grid,
  .contact-layout,
  .store-hero {
    grid-template-columns: 1fr;
  }

  .store-hero__visual {
    min-height: 340px;
  }

  .cta,
  .site-footer__inner {
    display: grid;
  }

  .section__head h2 span {
    display: inline;
  }
}

@media (max-width: 620px) {
  body.admin-bar .site-header {
    top: 46px;
  }

  .site-header {
    min-height: 66px;
    padding: 12px 18px;
  }

  .site-brand__main {
    font-size: 24px;
  }

  .hero,
  .page-hero,
  .store-hero {
    min-height: 82vh;
    padding: 116px 20px 54px;
  }

  .hero h1,
  .page-hero h1,
  .store-hero h1 {
    font-size: clamp(54px, 17vw, 72px);
  }

  .hero h1 span {
    font-size: clamp(36px, 11vw, 48px);
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(12, 13, 11, 0.72), rgba(12, 13, 11, 0.22)),
      linear-gradient(90deg, rgba(12, 13, 11, 0.82), rgba(12, 13, 11, 0.18));
  }

  .section {
    width: min(100% - 32px, 1120px);
    padding: 72px 0;
  }

  .section__head h2,
  .cta h2,
  .contact-copy h2 {
    font-size: 36px;
  }

  .store-card__image {
    min-height: 260px;
  }

  .store-card h3,
  .price-panel h3,
  .price-panel h2 {
    font-size: 32px;
  }

  .price-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .post-card__thumb,
  .post-card__thumb img {
    min-height: 190px;
    height: 190px;
  }
}

/* Editorial redesign inspired by light, fashion-forward salon sites. */
body {
  background: #fbfaf7;
  color: #151515;
  font-size: 15px;
}

.site-header {
  color: #151515;
  background: rgba(251, 250, 247, 0.86);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled,
body:not(.home) .site-header {
  background: rgba(251, 250, 247, 0.94);
  box-shadow: none;
}

.site-brand__main {
  font-size: 30px;
}

.site-brand__sub,
.global-nav a {
  letter-spacing: 0.12em;
}

.global-nav__list {
  gap: clamp(18px, 3vw, 36px);
}

.global-nav__reserve {
  min-height: 48px;
  padding: 0 25px;
  border-color: #151515;
  border-radius: 50%;
}

.hero {
  grid-template-columns: minmax(230px, 0.36fr) minmax(520px, 0.64fr);
  gap: clamp(28px, 5vw, 86px);
  align-items: center;
  min-height: 100vh;
  padding: 132px clamp(28px, 5vw, 64px) 68px;
  color: #151515;
  background: #fbfaf7;
}

.hero::before {
  display: none;
}

.hero__content {
  z-index: 2;
  align-self: center;
  max-width: 480px;
  padding: 0 0 0 clamp(0px, 3vw, 52px);
}

.hero__image {
  position: relative;
  inset: auto;
  width: 100%;
  height: min(72vh, 760px);
  min-height: 520px;
  background-image: url("../images/editorial-hero.png");
  background-position: 52% center;
  background-size: cover;
  transform: none;
}

.hero h1,
.page-hero h1,
.store-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(62px, 8vw, 126px);
  line-height: 0.94;
}

.hero h1 {
  margin-top: 54px;
}

.hero h1 span {
  margin-top: 12px;
  font-size: clamp(34px, 4.7vw, 68px);
}

.hero p,
.page-hero p,
.store-hero p {
  color: #3d3d3a;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.35;
}

.hero .eyebrow,
.store-hero .eyebrow,
.page-hero .eyebrow,
.eyebrow {
  color: #151515;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero__locations {
  display: grid;
  gap: 22px;
  margin-top: 70px;
  color: #151515;
  font-size: 13px;
  letter-spacing: 0.36em;
}

.hero__locations::before {
  content: "";
  display: block;
  width: 76px;
  height: 1px;
  background: #151515;
  transform: rotate(-46deg);
  transform-origin: left center;
}

.hero__actions {
  margin-top: 44px;
}

.lc-button {
  min-height: 44px;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: #151515;
  font-size: 12px;
  letter-spacing: 0.16em;
}

.lc-button:hover {
  transform: none;
  opacity: 0.62;
}

.lc-button--ghost {
  background: transparent;
  backdrop-filter: none;
}

.hero__scroll {
  right: 28px;
  bottom: 50px;
  color: #9a9891;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section {
  width: min(1180px, calc(100% - 44px));
  padding: clamp(72px, 9vw, 124px) 0;
}

.intro {
  grid-template-columns: minmax(300px, 0.72fr) minmax(360px, 0.86fr);
  align-items: center;
}

.section__head h2,
.cta h2,
.contact-copy h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.25;
}

.intro__text {
  max-width: 540px;
  font-size: 15px;
  line-height: 2.55;
}

.store-grid {
  gap: clamp(26px, 4vw, 54px);
}

.store-grid-section .section__head,
.menu-preview .section__head,
.posts-section .section__head {
  margin-bottom: clamp(28px, 4vw, 48px);
}

.store-card,
.post-card,
.price-panel,
.contact-form-box {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.store-card:hover,
.post-card:hover {
  box-shadow: none;
  transform: none;
}

.store-card__image {
  min-height: 430px;
}

.store-card__body,
.post-card__body,
.price-panel,
.contact-form-box {
  padding: 30px 0 0;
}

.store-card__area,
.post-card__date {
  color: #77736b;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.store-card h3,
.price-panel h3,
.post-card h3,
.price-panel h2 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
}

.store-card h3 span {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.16em;
}

.store-card p,
.post-card p,
.note,
.contact-copy p {
  color: #4d4a45;
  line-height: 2.15;
}

.store-card a {
  margin-top: 18px;
  padding-bottom: 5px;
  font-size: 12px;
  letter-spacing: 0.18em;
}

.menu-preview {
  width: 100%;
  padding-inline: max(22px, calc((100% - 1180px) / 2));
  background: #efebe3;
}

.price-columns {
  gap: 54px;
}

.price-panel {
  padding-top: 0;
}

.price-list li {
  padding: 22px 0;
}

.price-list strong {
  font-size: 21px;
}

.external-link {
  display: inline-flex;
  margin-top: 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.staff-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 70px);
}

.staff-card__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  margin-bottom: 26px;
  background-image: url("../images/staff-card01.jpg");
  background-position: center;
  background-size: cover;
}

.staff-card--2 .staff-card__image {
  background-image: url("../images/staff-card02.jpg");
  background-position: 58% center;
}

.staff-card p,
.review-card span {
  margin: 0 0 10px;
  color: #77736b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.staff-card h3 {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1;
}

.staff-card span,
.review-card p {
  color: #4d4a45;
  line-height: 2.15;
}

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

.style-tile {
  min-height: 290px;
  background-image: url("../images/style-card01.jpg");
  background-position: center;
  background-size: cover;
}

.style-tile--2 {
  background-image: url("../images/style-card02.jpg");
}

.style-tile--3 {
  background-image: url("../images/style-card03.jpg");
}

.style-tile--4 {
  background-image: url("../images/style-card04.jpg");
}

.style-tile--5 {
  background-image: url("../images/style-card05.jpg");
}

.style-tile--6 {
  background-image: url("../images/style-card06.jpg");
}

.style-tile--7 {
  background-image: url("../images/style-card07.jpg");
}

.style-tile--8 {
  background-image: url("../images/style-card08.jpg");
}


.style-tile--1,
.style-tile--5 {
  min-height: 380px;
}

.style-tile--2,
.style-tile--7 {
  margin-top: 42px;
}

.review-section {
  width: 100%;
  padding-inline: max(22px, calc((100% - 1180px) / 2));
  background: #f1eee8;
}

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

.review-card {
  padding-top: 26px;
  border-top: 1px solid #151515;
}

.review-card p {
  margin: 0 0 28px;
}

.post-grid {
  gap: 32px;
}

.post-card__thumb {
  min-height: 300px;
}

.post-card__thumb img {
  height: 300px;
}

.cta {
  border-radius: 0;
  background: #151515;
}

.page-hero--salon {
  color: #151515;
  background: #fbfaf7;
}

.page-hero--salon p {
  color: #4d4a45;
}

.salon-detail {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(340px, 0.72fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.salon-detail:nth-of-type(odd) .salon-detail__image {
  order: 2;
}

.salon-detail__image {
  min-height: 560px;
  background-image: url("../images/lucxia-card.png");
  background-position: center;
  background-size: cover;
}

.salon-detail--sumi .salon-detail__image {
  background-image: url("../images/coaless-card.png");
}

.salon-detail__body h2 {
  margin: 0 0 24px;
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 70px);
  line-height: 0.96;
}

.salon-detail__body h2 span {
  display: block;
  margin-top: 12px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.2em;
}

.salon-detail__body p {
  color: #4d4a45;
  line-height: 2.15;
}

.blog-category-section {
  padding-bottom: 0;
}

.blog-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-category-list a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid #151515;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.page-title {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding: 160px 0 34px;
  border-bottom: 1px solid #151515;
}

.page-title h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.1;
}

.page-title .eyebrow {
  margin-bottom: 14px;
}

/* Comment refinements */
.staff-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3.2vw, 42px);
}

.staff-card__image {
  aspect-ratio: 4 / 4.35;
  margin-bottom: 20px;
}

.staff-card p {
  font-size: 10px;
  letter-spacing: 0.24em;
}

.staff-card h3 {
  font-size: clamp(30px, 3vw, 44px);
  margin-bottom: 10px;
}

.staff-card span {
  display: block;
  max-width: 360px;
  font-size: 13px;
  line-height: 2;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  row-gap: 54px;
}

.review-card p {
  font-size: 14px;
}

.cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1fr);
  align-items: end;
  width: min(1180px, calc(100% - 44px));
  margin-top: 24px;
  padding: clamp(44px, 6vw, 74px) 0;
  border-top: 1px solid #151515;
  border-bottom: 1px solid #151515;
  border-radius: 0;
  background: transparent;
  color: #151515;
}

.cta h2 {
  max-width: 520px;
  font-size: clamp(25px, 3vw, 38px);
}

.cta .eyebrow {
  color: #151515;
}

.cta__links {
  display: grid;
  gap: 0;
  border-top: 1px solid #151515;
}

.cta__links a {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #151515;
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
}

.cta__links span {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.page-hero--salon h1 {
  font-size: clamp(34px, 4.5vw, 58px);
}

.page-hero--salon {
  min-height: 48vh;
}

.salon-detail__body h2 {
  font-size: clamp(34px, 4.2vw, 58px);
}

@media (max-width: 900px) {
  .intro,
  .store-grid,
  .price-columns,
  .post-grid,
  .contact-layout,
  .store-hero,
  .staff-grid,
  .review-grid,
  .cta {
    grid-template-columns: 1fr;
  }

  .cta__links a {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .menu-preview {
    width: 100%;
    padding-inline: 22px;
  }

  .price-columns {
    gap: 32px;
  }

  .store-hero__visual {
    min-height: 340px;
  }
}

@media (max-width: 620px) {
  .page-title {
    width: min(100% - 32px, 1180px);
    padding: 112px 0 26px;
  }

  .page-title h1 {
    font-size: 30px;
  }

  .staff-card__image {
    aspect-ratio: 4 / 3.7;
  }

  .review-grid {
    row-gap: 36px;
  }

  .page-hero--salon h1 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .store-card__image {
    min-height: 260px;
  }

  .post-card__thumb,
  .post-card__thumb img {
    min-height: 190px;
    height: 190px;
  }

}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 112px 22px 60px;
  }

  .hero__content {
    order: 2;
    padding-left: 0;
  }

  .hero__image {
    order: 1;
    height: 58vh;
    min-height: 420px;
  }

  .hero h1 {
    margin-top: 24px;
  }

  .hero__locations {
    margin-top: 34px;
  }

  .global-nav__reserve {
    border-radius: 999px;
  }

  .store-card__image {
    min-height: 360px;
  }

  .staff-grid,
  .review-grid,
  .style-grid,
  .salon-detail {
    grid-template-columns: 1fr;
  }

  .style-tile,
  .style-tile--1,
  .style-tile--5 {
    min-height: 320px;
  }

  .style-tile--2,
  .style-tile--7 {
    margin-top: 0;
  }

  .salon-detail:nth-of-type(odd) .salon-detail__image {
    order: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    background: rgba(251, 250, 247, 0.94);
  }

  .hero {
    min-height: auto;
    padding-top: 94px;
  }

  .hero__image {
    min-height: 390px;
    height: 54vh;
  }

  .hero h1,
  .page-hero h1,
  .store-hero h1 {
    font-size: clamp(52px, 16vw, 78px);
  }

  .hero h1 span {
    font-size: clamp(30px, 9vw, 42px);
  }

  .section__head h2,
  .cta h2,
  .contact-copy h2 {
    font-size: clamp(27px, 8vw, 36px);
  }

  .hero__scroll {
    display: none;
  }

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

  .style-tile,
  .style-tile--1,
  .style-tile--5 {
    min-height: 180px;
  }

  .store-card__image {
    min-height: 260px;
  }

  .hero__locations {
    margin-top: 28px;
    gap: 14px;
  }
}

/* ── Contact Form 7 ───────────────────────────────── */

.wpcf7 {
  width: 100%;
}

.wpcf7-form p {
  display: grid;
  gap: 7px;
  margin: 0 0 22px;
}

.wpcf7-form p:last-of-type {
  margin-bottom: 0;
}

.wpcf7-form label {
  color: #77736b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-line);
  border-radius: 0;
  background: transparent;
  color: var(--color-ink);
  font: 500 14px/1.6 var(--font-sans);
  outline: none;
  transition: border-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.wpcf7-form-control:focus {
  border-color: #151515;
}

.wpcf7-form-control.wpcf7-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23151515' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.wpcf7-form-control.wpcf7-textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.9;
}

.wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 0 32px;
  border: 1px solid #151515;
  border-radius: 0;
  background: #151515;
  color: #fffaf2;
  font: 700 12px var(--font-sans);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.wpcf7-submit:hover {
  opacity: 0.72;
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7-not-valid-tip {
  display: block;
  margin-top: 5px;
  color: #c0392b;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.wpcf7-form-control.wpcf7-not-valid {
  border-color: #c0392b;
}

.wpcf7-response-output {
  margin-top: 24px;
  padding: 16px 20px;
  border: 1px solid var(--color-line);
  font-size: 13px;
  line-height: 1.7;
}

.wpcf7-form.sent .wpcf7-response-output {
  border-color: #151515;
  color: #151515;
}

.wpcf7-form.failed .wpcf7-response-output,
.wpcf7-form.spam .wpcf7-response-output {
  border-color: #c0392b;
  color: #c0392b;
}

/* screen reader text */
.wpcf7 .hidden-fields-container {
  display: none;
}
