/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(216, 207, 196, 0.18);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--dark);
  text-decoration: none;
}

.nav-logo span {
  font-style: italic;
  color: var(--mid);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  position: relative;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.28s ease, opacity 0.28s ease;
}

.nav-links a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0%;
  height: 1px;

  background: rgba(216, 207, 196, 0.82);

  transition: width 0.35s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  border: 1px solid var(--beige);
  padding: 10px 28px;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

/* HERO */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 88px;
  background: var(--white);
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 100px;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-eyebrow::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--beige);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 4.5vw, 68px);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--dark);
  margin-bottom: 12px;
}

.hero-title em {
  font-style: italic;
  background: linear-gradient(90deg, #9f9a94 0%, #e6d5b8 46%, #b79f86 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  opacity: 0.92;
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: var(--mid);
  margin-bottom: 36px;
  letter-spacing: 0.05em;
}

.hero-desc {
  font-size: 14px;
  line-height: 2;
  color: var(--mid);
  max-width: 420px;
  margin-bottom: 52px;
  letter-spacing: 0.03em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-sub-link {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--mid);
  text-decoration: none;
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 2px;
  transition:
    border-color 0.3s,
    color 0.3s;
}

.hero-sub-link:hover {
  color: var(--dark);
  border-color: var(--mid);
  letter-spacing: 0.18em;
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--off-white);
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  display: block;
  transform: scale(1.01);
  filter: brightness(0.96) saturate(0.9);
}

.hero-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(247, 247, 247, 0.08) 0%,
    rgba(247, 247, 247, 0) 35%,
    rgba(247, 247, 247, 0) 100%
  );
  pointer-events: none;
}

.hero-badge-small {
  font-size: 18px;
  color: var(--mid);
}

.hero-badge {
  position: absolute;
  bottom: 48px;
  left: -20px;
  background: var(--white);
  padding: 24px 32px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.hero-badge-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--text-brown);
  display: block;
  line-height: 1;
}

.hero-badge-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  display: block;
  margin-top: 6px;
}

/* CONCERNS */
#concerns {
  background: var(--off-white);
}

.concerns-header {
  text-align: center;
  margin-bottom: 72px;
}

.concerns-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.concern-card {
  background: var(--white);
  padding: 48px 36px;
  position: relative;
  transition: transform 0.3s;
}

.concern-card:hover {
  transform: translateY(-4px);
}

.concern-num {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;

  color: rgba(216, 207, 196, 0.72);

  line-height: 1;
  margin-bottom: 24px;
  display: block;
}

.concern-icon {
  width: 40px;
  height: 1px;
  background: rgba(216, 207, 196, 0.78);
  margin-bottom: 24px;
}

.concern-text {
  font-size: 15px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.7;
  letter-spacing: 0.03em;
}

.concern-sub {
  font-size: 12px;
  color: var(--mid);
  margin-top: 12px;
  line-height: 1.8;
}

/* SOLUTIONS */
#solutions {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
}

#solutions::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 120px;
  pointer-events: none;

  background: linear-gradient(
    180deg,
    rgba(216, 207, 196, 0.16),
    rgba(255, 255, 255, 0)
  );

  z-index: 0;
}

#solutions::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)),
    url("../images/solutions-bg.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  filter: blur(2px);
  transform: scale(1.03);

  opacity: 1;
  pointer-events: none;
}

#solutions .section-label {
  color: rgba(92, 78, 66, 0.86);
}

#solutions .section-label::before {
  background: rgba(92, 78, 66, 0.5);
}

#solutions .section-title {
  color: #4b4037;
}

#solutions .section-title em {
  color: rgba(75, 64, 55, 0.76);
}

#solutions .container {
  position: relative;
  z-index: 1;
}

.solutions-header {
  text-align: center;
  margin-bottom: 72px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.solution-card {
  position: relative;
  overflow: hidden;

  padding: 52px 40px;

  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.45);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.03),
    0 2px 10px rgba(0, 0, 0, 0.02);

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease,
    background 0.45s ease;
}

.solution-card:hover {
  transform: translateY(-8px);

  background: rgba(255, 255, 255, 0.82);

  border-color: rgba(216, 207, 196, 0.8);

  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.06),
    0 8px 20px rgba(0, 0, 0, 0.04);
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0) 45%
  );

  opacity: 0.9;

  pointer-events: none;
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-card > * {
  position: relative;
  z-index: 1;
}

.solution-icon-wrap {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.solution-icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: var(--mid);
}

.solution-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: #4b4037;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.solution-desc {
  font-size: 13px;
  color: rgba(75, 64, 55, 0.74);
  line-height: 2;
  letter-spacing: 0.03em;
}

/* WHY */
#why {
  background: var(--dark);
  position: relative;
}

#why::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(42, 38, 36, 0),
    rgba(247, 247, 247, 0.08)
  );
}

#why .section-label {
  color: rgba(216, 207, 196, 0.68);
}

#why .section-label::before {
  background: rgba(216, 207, 196, 0.5);
}

#why .section-title {
  color: var(--white);
}

#why .section-title em {
  color: var(--beige);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  margin-top: 72px;
}

.why-list {
  display: flex;
  flex-direction: column;
}

.why-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 44px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  align-items: start;
}

.why-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.why-num {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 300;
  color: rgba(216, 207, 196, 0.25);
  line-height: 1;
  padding-top: 4px;
}

.why-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.why-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 2;
  letter-spacing: 0.03em;
}

.why-visual {
  position: relative;
  height: 640px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-visual::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 30px rgba(255, 255, 255, 0.03);
  z-index: 2;
}

.why-image {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  display: block;

  filter: brightness(0.92) saturate(0.88);

  transition:
    transform 0.8s ease,
    filter 0.8s ease;
}

.why-visual:hover .why-image {
  transform: scale(1.03);

  filter: brightness(0.96) saturate(0.92);
}

.why-visual::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0)
  );

  pointer-events: none;
}

.why-quote {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
}

.why-quote p {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  font-weight: 300;

  color: rgba(255, 255, 255, 0.72);

  letter-spacing: 0.04em;
  line-height: 1.8;
}

.why-quote span {
  display: block;

  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: rgba(216, 207, 196, 0.58);

  margin-top: 12px;
}

/* GALLERY */
#gallery {
  background: var(--off-white);
  padding: 100px 0;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  padding: 0 60px;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

.gallery-link {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 2px;
}

.gallery-grid {
  max-width: calc(var(--max-w) + 120px);
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  /* gallery は全画面幅で均一な正方形グリッドを維持 */
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  background: #eee;
  /* 固定 height 依存をなくし、常に 1:1 を維持 */
  aspect-ratio: 1 / 1;
}

.gallery-item:first-child {
  /* 先頭要素の縦スパンを解除して全アイテムを正方形に統一 */
  grid-row: auto;
}

.gallery-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.6s ease,
    filter 0.6s ease;
}

.gallery-item:hover .gallery-thumb {
  transform: scale(1.05);

  filter: brightness(1.02) saturate(0.92);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 58%,
    rgba(0, 0, 0, 0.18) 100%
  );
  pointer-events: none;
}

.gallery-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

/* MENU */
#menu {
  background: var(--white);
}

.menu-header {
  text-align: center;
  margin-bottom: 72px;
}

.menu-note {
  font-size: 13px;
  color: var(--mid);
  margin-top: 16px;
  letter-spacing: 0.05em;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 52px;
}

.menu-tab {
  padding: 12px 36px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--light-gray);
  background: none;
  cursor: pointer;
  color: var(--mid);
  transition: all 0.3s;
}

.menu-tab.active {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.menu-tab:hover:not(.active) {
  border-color: var(--beige);
  color: var(--dark);
}

.menu-table {
  width: 100%;
  border-collapse: collapse;
}

.menu-table tr {
  border-bottom: 1px solid var(--light-gray);
}

.menu-table tr:first-child {
  border-top: 1px solid var(--light-gray);
}

.menu-table td {
  padding: 28px 20px;
  font-size: 14px;
  color: var(--dark);
  letter-spacing: 0.03em;
  vertical-align: top;
}

.menu-table td:first-child {
  font-weight: 400;
  width: 240px;
}

.menu-table td:nth-child(2) {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.8;
}

.menu-table td:last-child {
  text-align: right;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.price-note {
  font-size: 11px;
  color: var(--mid);
  text-align: center;
  margin-top: 24px;
  letter-spacing: 0.05em;
}

.popular-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--beige);
  color: rgba(80, 70, 60, 0.8);
  padding: 3px 10px;
  margin-left: 12px;
  vertical-align: middle;
}

/* FLOW */
#flow {
  background: var(--off-white);
}

.flow-header {
  text-align: center;
  margin-bottom: 80px;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  gap: 0;
}

.flow-steps::before {
  content: "";
  position: absolute;
  top: 56px;
  left: calc(16.666% + 24px);
  right: calc(16.666% + 24px);
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--beige) 0%,
    var(--beige) 50%,
    var(--beige) 100%
  );
}

.flow-step {
  padding: 0 48px;
  text-align: center;
}

.flow-step-num {
  width: 56px;
  height: 56px;
  border: 1px solid var(--beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 36px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 300;
  color: var(--mid);
  background: var(--off-white);
  position: relative;
  z-index: 1;
}

.flow-step-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.flow-step-desc {
  font-size: 13px;
  color: var(--mid);
  line-height: 2;
  letter-spacing: 0.03em;
}

.flow-step-tag {
  display: inline-block;

  margin-top: 20px;

  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: rgba(120, 102, 88, 0.82);

  border-top: 1px solid rgba(216, 207, 196, 0.72);

  padding-top: 10px;
}

/* REVIEWS */
#reviews {
  background: var(--white);
}

.reviews-header {
  text-align: center;
  margin-bottom: 72px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.review-card {
  padding: 48px 40px;
  background: var(--off-white);
  position: relative;
  border-top: 1px solid rgba(216, 207, 196, 0.4);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
}

.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
}

.star {
  width: 12px;
  height: 12px;
  background: var(--beige);
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.review-text {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: rgba(79, 67, 56, 0.82);
  line-height: 2.05;
  margin-bottom: 32px;
  letter-spacing: 0.03em;
}

.review-divider {
  width: 32px;
  height: 1px;
  background: var(--beige);
  margin-bottom: 24px;
}

.review-author {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(79, 67, 56, 0.68);
}

.review-author span {
  display: block;
  font-size: 11px;
  color: rgba(120, 102, 88, 0.72);
  letter-spacing: 0.1em;
  text-transform: none;
  margin-top: 6px;
}

#faq {
  background: var(--off-white);
}

.faq-header {
  text-align: center;
  margin-bottom: 64px;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--light-gray);
}

.faq-item:first-child {
  border-top: 1px solid var(--light-gray);
}

.faq-item h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--dark);
}

.faq-item p {
  font-size: 13px;
  color: var(--mid);
  line-height: 2;
}

/* INFO */
#info {
  background: var(--off-white);
}

.info-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.info-map {
  height: 380px;
  background: linear-gradient(145deg, #e0dad4 0%, #cec8c2 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 48px,
      rgba(180, 170, 160, 0.25) 48px,
      rgba(180, 170, 160, 0.25) 49px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 48px,
      rgba(180, 170, 160, 0.25) 48px,
      rgba(180, 170, 160, 0.25) 49px
    );
}

.map-pin {
  width: 40px;
  height: 40px;
  background: var(--dark);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.map-pin::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: var(--white);
  border-radius: 50%;
}

.info-map-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(80, 70, 60, 0.68);
}

.info-details h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.salon-tagline {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 44px;
}

.info-rows {
  display: flex;
  flex-direction: column;
}

.info-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 14px;
}

.info-row:first-child {
  border-top: 1px solid var(--light-gray);
}

.info-row-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  padding-top: 2px;
}

.info-row-value {
  color: var(--dark);
  line-height: 1.8;
}

.info-subtext {
  font-size: 12px;
  color: var(--mid);
}

.info-instagram {
  color: var(--mid);
}

/* FINAL CTA */
#cta-final {
  background: #2a2624;
  padding: 160px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(216, 207, 196, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(216, 207, 196, 0.04) 0%,
      transparent 50%
    );
}

.cta-final-inner {
  position: relative;
  z-index: 1;
}

.cta-final-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(216, 207, 196, 0.4);
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.cta-final-label::before,
.cta-final-label::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(216, 207, 196, 0.2);
}

.cta-final-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.cta-final-title em {
  font-style: italic;
  color: var(--beige);
}

.cta-final-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.cta-final-note {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 36px;
}

.cta-final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.instagram-preview {
  background: var(--white);
  padding: 100px 0;
}

.instagram-header {
  text-align: center;
  margin-bottom: 48px;
}

.instagram-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.instagram-marquee::before,
.instagram-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: 120px;
  height: 100%;
  pointer-events: none;
}

.instagram-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), rgba(255, 255, 255, 0));
}

.instagram-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), rgba(255, 255, 255, 0));
}

.instagram-track {
  display: flex;
  gap: 8px;
  width: max-content;
  animation: instagramMarquee 36s linear infinite;
}

.instagram-track img {
  width: 280px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  flex-shrink: 0;
  filter: brightness(0.98) saturate(0.9);
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

.instagram-track img:hover {
  transform: scale(1.03);
  filter: brightness(1.02) saturate(0.95);
}

.instagram-marquee:hover .instagram-track {
  animation-play-state: paused;
}

@keyframes instagramMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* FOOTER */
footer {
  /* --- Footer refinement: subtle border + softer palette continuity --- */
  background: #221e1c;
  border-top: 1px solid rgba(216, 207, 196, 0.18);
  padding: 64px 60px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.12em;
}

.footer-copy {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.2);
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color 0.28s ease, opacity 0.28s ease;
}

.footer-links a:hover {
  color: rgba(216, 207, 196, 0.72);
  opacity: 0.92;
}
