/* ENFREE Straight LP — scoped to .efs-page only */

.efs-page {
  --efs-ivory: #faf7f2;
  --efs-ivory-deep: #f3ede4;
  --efs-beige: #ebe3d6;
  --efs-greige: #d8d0c4;
  --efs-brown: #6b5a4a;
  --efs-brown-deep: #524638;
  --efs-accent: #8b7355;
  --efs-text: #4a433c;
  --efs-muted: #8a7d70;
  --efs-white: #fffcf8;
  --efs-font-ja: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --efs-font-en: "Cormorant Garamond", "Times New Roman", serif;
  --efs-space-inner: clamp(1.25rem, 5vw, 2.25rem);
  --efs-space-section: clamp(4.5rem, 12vw, 7rem);
  --efs-max: 880px;
  --efs-radius: 4px;
  --efs-leading: 2.05;
}

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

.efs-page {
  margin: 0;
  color: var(--efs-text);
  background: var(--efs-ivory);
  font-family: var(--efs-font-ja);
  font-size: clamp(0.9rem, 2.8vw, 0.96rem);
  line-height: var(--efs-leading);
  letter-spacing: 0.06em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.efs-page img {
  display: block;
  width: 100%;
  height: auto;
}

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

html:has(.efs-page) {
  scroll-behavior: smooth;
  scroll-padding-top: 4.5rem;
}

/* Header */
.efs-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 0.75rem var(--efs-space-inner);
  background: rgba(250, 247, 242, 0.82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.efs-header.is-scrolled {
  background: rgba(250, 247, 242, 0.97);
  border-bottom-color: rgba(139, 115, 85, 0.14);
}

.efs-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--efs-max);
  margin-inline: auto;
}

.efs-header__logo {
  font-family: var(--efs-font-en);
  font-size: clamp(1rem, 4vw, 1.2rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--efs-brown);
}

.efs-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.efs-menu-toggle span {
  display: block;
  width: 1.35rem;
  height: 1px;
  margin-inline: auto;
  background: var(--efs-brown);
}

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

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

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

.efs-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 1rem var(--efs-space-inner) 1.25rem;
  background: rgba(255, 252, 248, 0.98);
  border-bottom: 1px solid rgba(139, 115, 85, 0.12);
}

.efs-nav.is-open {
  display: grid;
  gap: 0.15rem;
}

.efs-nav a {
  padding: 0.65rem 0;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--efs-brown);
  border-bottom: 1px solid rgba(139, 115, 85, 0.08);
}

.efs-nav__reserve {
  margin-top: 0.5rem;
  padding: 0.75rem 1rem !important;
  text-align: center;
  background: var(--efs-brown);
  color: var(--efs-white) !important;
  border: none !important;
  border-radius: var(--efs-radius);
}

@media (min-width: 768px) {
  .efs-menu-toggle {
    display: none;
  }

  .efs-nav {
    display: flex;
    position: static;
    align-items: center;
    gap: clamp(0.5rem, 1.5vw, 1rem);
    padding: 0;
    background: transparent;
    border: none;
  }

  .efs-nav a {
    padding: 0;
    font-size: 0.68rem;
    border: none;
  }

  .efs-nav__reserve {
    margin-top: 0;
    padding: 0.55rem 1rem !important;
  }
}

/* Sections */
.efs-section {
  padding: var(--efs-space-section) var(--efs-space-inner);
}

.efs-section--soft {
  background: var(--efs-ivory-deep);
}

.efs-section__inner {
  max-width: var(--efs-max);
  margin-inline: auto;
}

.efs-section__head {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 2.75rem);
}

.efs-section__label {
  margin: 0;
  font-family: var(--efs-font-en);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--efs-accent);
}

.efs-section__title {
  margin: 0.65rem 0 0;
  font-size: clamp(1.15rem, 4.2vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.85;
  color: var(--efs-brown);
}

/* Hero */
.efs-hero {
  padding: calc(3.25rem + var(--efs-space-inner)) clamp(0.65rem, 3vw, var(--efs-space-inner))
    var(--efs-space-section);
  background: var(--efs-ivory);
}

.efs-hero__inner {
  max-width: var(--efs-max);
  margin-inline: auto;
  display: grid;
  gap: clamp(1.35rem, 4vw, 2.25rem);
}

.efs-hero__visual {
  order: -1;
  margin-inline: clamp(-0.35rem, -1.5vw, 0);
  border-radius: var(--efs-radius);
  overflow: hidden;
  border: 1px solid rgba(139, 115, 85, 0.12);
  background: var(--efs-beige);
  box-shadow: 0 16px 48px rgba(107, 90, 74, 0.08);
}

.efs-hero__img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 52% 24%;
  transform: scale(1.13);
  transform-origin: center 32%;
}

.efs-hero__content {
  padding-inline: clamp(0.35rem, 2vw, 0);
}

.efs-hero__brand {
  margin: 0;
  font-family: var(--efs-font-en);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  color: var(--efs-accent);
}

.efs-hero__title {
  margin: 0.85rem 0 0;
  font-size: clamp(1.3rem, 5.2vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.75;
  color: var(--efs-brown);
}

.efs-hero__sub {
  margin: 1.15rem 0 0;
  font-size: clamp(0.88rem, 3.2vw, 0.94rem);
  line-height: 2;
  color: var(--efs-muted);
}

.efs-hero__atmosphere {
  margin: 1.1rem 0 0;
  padding: 0.85rem 1rem;
  font-size: 0.82rem;
  line-height: 1.95;
  text-align: center;
  color: var(--efs-brown);
  background: rgba(255, 252, 248, 0.72);
  border: 1px solid rgba(139, 115, 85, 0.12);
  border-radius: var(--efs-radius);
}

.efs-hero__store {
  margin: 1.1rem 0 0;
  font-size: 0.76rem;
  line-height: 1.95;
  color: var(--efs-accent);
}

.efs-hero__actions {
  margin-top: 1.35rem;
}

@media (min-width: 768px) {
  .efs-hero {
    padding-inline: var(--efs-space-inner);
  }

  .efs-hero__inner {
    grid-template-columns: 1fr 1.08fr;
    align-items: center;
    gap: clamp(2rem, 4vw, 3rem);
  }

  .efs-hero__visual {
    order: 1;
    margin-inline: 0;
  }

  .efs-hero__img {
    aspect-ratio: 4 / 5;
    transform: scale(1.12);
    object-position: 50% 26%;
  }

  .efs-hero__atmosphere {
    text-align: left;
  }
}

/* Buttons & CTA row */
.efs-cta-row {
  display: grid;
  gap: 0.65rem;
}

.efs-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.1rem;
  min-height: 3.35rem;
  padding: 0.9rem 1.15rem;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-radius: var(--efs-radius);
  border: 1px solid transparent;
  transition: opacity 0.2s ease;
}

.efs-btn__main {
  line-height: 1.4;
}

.efs-btn__sub {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  opacity: 0.88;
}

.efs-btn:hover {
  opacity: 0.88;
}

.efs-btn--line {
  background: #06c755;
  color: #fff;
  border-color: #06c755;
}

.efs-btn--tel {
  background: var(--efs-white);
  color: var(--efs-brown);
  border-color: rgba(107, 90, 74, 0.42);
}

.efs-btn--hp {
  background: var(--efs-ivory-deep);
  color: var(--efs-brown);
  border-color: rgba(107, 90, 74, 0.42);
}

.efs-btn--line .efs-btn__sub {
  display: none;
}

/* Concerns */
.efs-concerns__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.efs-concerns__list li {
  padding: 1rem 1.15rem;
  background: var(--efs-white);
  border: 1px solid rgba(139, 115, 85, 0.1);
  border-radius: var(--efs-radius);
  font-size: 0.88rem;
  line-height: 1.9;
}

@media (min-width: 640px) {
  .efs-concerns__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Before / After — swap images via src on .efs-ba__img */
#before-after.efs-section {
  padding-top: clamp(3.5rem, 9vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 9vw, 5.5rem);
}

.efs-ba {
  display: grid;
  gap: 0.85rem;
  align-items: start;
}

.efs-ba__item {
  margin: 0;
  padding: 0;
}

.efs-ba__frame {
  aspect-ratio: 3 / 4;
  border-radius: var(--efs-radius);
  overflow: hidden;
  border: 1px solid rgba(139, 115, 85, 0.12);
  background: var(--efs-beige);
}

.efs-ba__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.efs-ba__img--before {
  object-position: 50% 28%;
  transform: scale(1.08);
  transform-origin: center 30%;
}

.efs-ba__img--after {
  object-position: 52% 24%;
  transform: scale(1.1);
  transform-origin: center 28%;
}

.efs-ba__tag {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-family: var(--efs-font-en);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--efs-accent);
}

.efs-ba__tag--after {
  color: var(--efs-brown);
}

.efs-ba__caption-title {
  margin: 0.65rem 0 0.25rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--efs-brown);
}

.efs-ba__caption-text {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--efs-muted);
}

.efs-ba__arrow {
  margin: 0;
  padding: 0.15rem 0;
  text-align: center;
  font-size: 1.15rem;
  color: var(--efs-accent);
  line-height: 1;
}

@media (min-width: 768px) {
  .efs-ba {
    grid-template-columns: 1fr auto 1fr;
    gap: 1.15rem;
    align-items: center;
  }

  .efs-ba__arrow {
    font-size: 1.5rem;
    padding-top: 1.75rem;
  }
}

/* Reasons */
.efs-reasons__grid {
  display: grid;
  gap: 1rem;
}

.efs-reasons__card {
  padding: 1.4rem 1.3rem;
  background: var(--efs-white);
  border: 1px solid rgba(139, 115, 85, 0.1);
  border-radius: var(--efs-radius);
}

.efs-reasons__num {
  margin: 0;
  font-family: var(--efs-font-en);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--efs-accent);
}

.efs-reasons__title {
  margin: 0.55rem 0 0;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.85;
  color: var(--efs-brown);
}

.efs-reasons__text {
  margin: 0.65rem 0 0;
  font-size: 0.86rem;
  line-height: 2;
  color: var(--efs-muted);
}

@media (min-width: 640px) {
  .efs-reasons__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Flow */
.efs-flow__list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: efs-flow;
  display: grid;
  gap: 0.85rem;
}

.efs-flow__list li {
  counter-increment: efs-flow;
  padding: 1.2rem 1.2rem 1.2rem 3.25rem;
  position: relative;
  background: var(--efs-white);
  border: 1px solid rgba(139, 115, 85, 0.1);
  border-radius: var(--efs-radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--efs-brown);
}

.efs-flow__list li::before {
  content: counter(efs-flow);
  position: absolute;
  left: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--efs-font-en);
  font-size: 0.9rem;
  color: var(--efs-accent);
}

.efs-flow__time {
  margin: 1.5rem 0 0;
  padding: 1.15rem 1.2rem;
  text-align: center;
  background: var(--efs-ivory-deep);
  border-radius: var(--efs-radius);
  font-size: 0.88rem;
  color: var(--efs-brown);
}

.efs-flow__time strong {
  font-weight: 500;
}

/* Price */
.efs-price__box {
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--efs-white);
  border: 1px solid rgba(139, 115, 85, 0.12);
  border-radius: var(--efs-radius);
}

.efs-price__label {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--efs-accent);
}

.efs-price__amount {
  margin: 0.75rem 0 0;
  font-size: clamp(1.35rem, 5vw, 1.65rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--efs-brown);
}

.efs-price__note {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  color: var(--efs-muted);
}

.efs-price__extra {
  margin: 1.25rem 0 0;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(139, 115, 85, 0.1);
  font-size: 0.86rem;
  line-height: 1.9;
  color: var(--efs-text);
}

/* FAQ */
.efs-faq__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.efs-faq__item {
  padding: 1.25rem 1.2rem;
  background: var(--efs-white);
  border: 1px solid rgba(139, 115, 85, 0.1);
  border-radius: var(--efs-radius);
}

.efs-faq__q {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--efs-brown);
}

.efs-faq__q::before {
  content: "Q. ";
  color: var(--efs-accent);
}

.efs-faq__a {
  margin: 0.75rem 0 0;
  font-size: 0.86rem;
  line-height: 2;
  color: var(--efs-muted);
}

/* Reserve */
.efs-reserve {
  padding: var(--efs-space-section) var(--efs-space-inner);
  background: var(--efs-ivory-deep);
}

.efs-reserve__inner {
  max-width: 26rem;
  margin-inline: auto;
  text-align: center;
}

.efs-reserve__message {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 2;
  color: var(--efs-muted);
}

.efs-reserve__atmosphere {
  margin: 0 0 1.5rem;
  padding: 0.85rem 1rem;
  font-size: 0.82rem;
  line-height: 1.95;
  color: var(--efs-brown);
  background: rgba(255, 252, 248, 0.85);
  border: 1px solid rgba(139, 115, 85, 0.12);
  border-radius: var(--efs-radius);
}

.efs-reserve__actions {
  margin-top: 0;
}

.efs-reserve__actions .efs-btn {
  min-height: 3.45rem;
  font-size: 0.86rem;
}

/* Footer */
.efs-footer {
  padding: 2.5rem var(--efs-space-inner) 2rem;
  text-align: center;
  background: var(--efs-brown-deep);
  color: rgba(255, 252, 248, 0.88);
  font-size: 0.78rem;
  line-height: 2;
}

.efs-footer__logo {
  margin: 0;
  font-family: var(--efs-font-en);
  font-size: 1rem;
  letter-spacing: 0.22em;
}

.efs-footer a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.efs-footer__copy {
  margin: 1rem 0 0;
  opacity: 0.65;
}
