/* hair salon Lueur — 上品ミニマル（ベージュ×ブラウン） */

:root {
  --bg: #faf7f2;
  --bg-alt: #f1ebe1;
  --ink: #4a3f35;
  --brown: #8a7360;
  --accent: #b89d84;
  --line: #d9cfc1;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Shippori Mincho", serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.9;
  letter-spacing: 0.06em;
}

.en { font-family: "Cormorant Garamond", serif; }

/* header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 5vw;
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.14em;
}

.logo-sub {
  font-size: 12px;
  margin-left: 10px;
  color: var(--brown);
  letter-spacing: 0.3em;
}

.nav a {
  font-family: "Cormorant Garamond", serif;
  color: var(--ink);
  text-decoration: none;
  margin-left: 28px;
  font-size: 15px;
  letter-spacing: 0.12em;
}

.nav a:hover { color: var(--accent); }

/* hero */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 4vw;
  padding: 4vh 5vw 10vh;
}

.hero-visual {
  height: 62vh;
  background:
    radial-gradient(circle at 75% 25%, rgba(255,255,255,0.5), transparent 45%),
    linear-gradient(155deg, #e8dccb, #cbb49b 55%, #a98f76);
  border-radius: 0 120px 0 0;
}

.hero-en {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 18px;
}

.hero-text h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 22px;
}

.hero-lead { color: var(--brown); }

/* sections */
.section { padding: 90px 5vw; max-width: 860px; margin: 0 auto; }
.section-alt { background: var(--bg-alt); max-width: none; }
.section-alt > * { max-width: 860px; margin-left: auto; margin-right: auto; }

.section-title {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3em;
  margin-bottom: 48px;
}

.section-title .en {
  display: block;
  font-size: 34px;
  color: var(--accent);
  letter-spacing: 0.14em;
  margin-bottom: 6px;
}

.concept-body { text-align: center; }
.concept-body p + p { margin-top: 16px; }

/* menu */
.menu-list { list-style: none; }

.menu-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
}

.menu-dots { flex: 1; border-bottom: 1px dotted var(--accent); }
.menu-price { font-family: "Cormorant Garamond", serif; font-size: 19px; }
.menu-note { margin-top: 22px; font-size: 13px; color: var(--brown); }

/* stylist */
.stylist { display: flex; gap: 36px; align-items: flex-start; }

.stylist-photo {
  flex: 0 0 200px;
  height: 240px;
  border-radius: 100px 100px 0 0;
  background: linear-gradient(170deg, #ddcdb8, #b39c83);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.8);
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.2em;
}

.stylist-name { font-size: 21px; margin-bottom: 12px; }
.stylist-en { font-family: "Cormorant Garamond", serif; font-size: 14px; color: var(--accent); margin-left: 8px; }

/* access */
.info-table { width: 100%; border-collapse: collapse; }

.info-table th, .info-table td {
  text-align: left;
  padding: 14px 8px;
  border-bottom: 1px solid var(--line);
  font-weight: 400;
}

.info-table th { width: 110px; color: var(--brown); white-space: nowrap; }

/* cta */
.cta { text-align: center; padding: 80px 5vw; }

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 16px 60px;
  border: 1px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  letter-spacing: 0.1em;
  transition: 0.3s;
}

.cta-button:hover { background: var(--ink); color: var(--bg); }

/* footer */
.footer { text-align: center; padding: 40px 0 30px; background: var(--ink); color: var(--bg); }
.footer-logo { font-family: "Cormorant Garamond", serif; font-size: 24px; letter-spacing: 0.2em; }
.footer-copy { font-size: 12px; margin-top: 8px; opacity: 0.7; }

/* mobile */
@media (max-width: 760px) {
  .header { flex-direction: column; gap: 12px; }
  .nav a { margin: 0 10px; }
  .hero { grid-template-columns: 1fr; padding-bottom: 6vh; }
  .hero-visual { height: 36vh; order: -1; border-radius: 0 60px 0 0; }
  .section { padding: 60px 6vw; }
  .stylist { flex-direction: column; align-items: center; text-align: center; }
}
