:root {
  --gold: #d4af37;
  --gold-bright: #e8b923;
  --cream: #f8f1e9;
  --ivory: #fffaf3;
  --ink: #171512;
  --charcoal: #282521;
  --muted: #746d63;
  --blue: #dceaf2;
  --line: rgba(212, 175, 55, 0.28);
  --shadow: 0 24px 70px rgba(23, 21, 18, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(220, 234, 242, 0.62), transparent 34rem),
    linear-gradient(180deg, #fffaf3 0%, var(--cream) 48%, #fffaf3 100%);
  font-family: "Be Vietnam Pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

img,
iframe {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 12px clamp(16px, 4vw, 48px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(255, 250, 243, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo,
.brand-mark {
  width: 74px;
  height: 74px;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(212, 175, 55, 0.2);
}

.brand-logo {
  display: block;
  object-fit: cover;
  object-position: center;
  background: #fbf58a;
  position: relative;
  cursor: crosshair;
}

.magnifier-lens {
  position: fixed;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(212, 175, 55, 0.6);
  border-radius: 50%;
  background-size: 264px 264px;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 150;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), inset 0 0 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.2s ease;
  backdrop-filter: blur(0.5px);
}

.magnifier-lens.active {
  opacity: 1;
}

.brand-mark {
  display: grid;
  place-items: center;
  color: var(--gold);
  background: linear-gradient(145deg, #282521, #0f0e0d);
  font-family: "Noto Serif", serif;
  font-size: 0.8rem;
  font-weight: 700;
}

.brand strong {
  display: block;
  font-family: "Noto Serif", serif;
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.2;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  flex: 1;
}

.site-nav a {
  position: relative;
  color: #3b3731;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: width 0.22s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
}

.lang-btn {
  min-width: 38px;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
}

.lang-btn.is-active {
  color: var(--ink);
  background: var(--gold);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50%;
  background: rgba(255, 250, 243, 0.8);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 76px);
  place-items: center;
  overflow: hidden;
  padding: clamp(72px, 12vw, 132px) 16px 84px;
  color: var(--ivory);
  background:
    linear-gradient(110deg, rgba(18, 17, 15, 0.92) 0%, rgba(36, 31, 24, 0.76) 45%, rgba(19, 28, 34, 0.72) 100%),
    radial-gradient(circle at 50% 20%, rgba(232, 185, 35, 0.2), transparent 34rem),
    #171512;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 5%;
  z-index: -1;
  content: "";
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 50%;
  transform: rotateX(68deg) rotateZ(-18deg);
  box-shadow: inset 0 0 80px rgba(212, 175, 55, 0.12);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.78;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(720px, 100%);
  margin-right: min(34vw, 430px);
  text-align: left;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: "Noto Serif", serif;
  font-weight: 700;
  line-height: 1;
}

.hero h1 {
  font-size: clamp(4rem, 13vw, 11rem);
  text-shadow: 0 0 32px rgba(232, 185, 35, 0.25);
}

.hero-kicker {
  margin: 8px 0 0;
  color: var(--blue);
  font-family: "Noto Serif", serif;
  font-size: clamp(1.3rem, 3vw, 2.25rem);
}

.hero-copy {
  max-width: 650px;
  margin: 22px auto 0;
  color: rgba(255, 250, 243, 0.86);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions,
.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.hero .hero-actions {
  justify-content: flex-start;
}

.hero-poster {
  position: absolute;
  right: clamp(18px, 6vw, 86px);
  bottom: clamp(28px, 7vw, 86px);
  z-index: 2;
  width: min(32vw, 360px);
  margin: 0;
  border: 1px solid rgba(232, 185, 35, 0.35);
  border-radius: var(--radius);
  overflow: hidden;
  background: #11100f;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42), 0 0 44px rgba(212, 175, 55, 0.16);
  transform: rotate(2deg);
}

.hero-poster img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4.2;
  object-fit: cover;
  object-position: center top;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.btn-primary {
  color: #171512;
  background: linear-gradient(135deg, #f5d767, var(--gold), #b88a19);
  box-shadow: 0 14px 34px rgba(212, 175, 55, 0.28);
}

.btn-ghost {
  color: var(--ivory);
  border-color: rgba(248, 241, 233, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost.dark {
  color: var(--ink);
  border-color: rgba(23, 21, 18, 0.18);
  background: rgba(255, 255, 255, 0.5);
}

.hero-orbit {
  position: absolute;
  inset: auto 8% 8% auto;
  width: min(42vw, 440px);
  aspect-ratio: 1;
  perspective: 1000px;
  pointer-events: none;
}

.tweezer {
  position: absolute;
  left: 42%;
  top: 10%;
  width: 18px;
  height: 72%;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff4c2, var(--gold), #74520b);
  box-shadow: 0 0 28px rgba(232, 185, 35, 0.38);
  transform-origin: 50% 100%;
  animation: tweezerFloat 7s ease-in-out infinite;
}

.tweezer-a {
  transform: rotateZ(-16deg) rotateY(28deg);
}

.tweezer-b {
  transform: rotateZ(16deg) rotateY(-28deg);
  animation-delay: -1.8s;
}

.pearl {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 24px rgba(220, 234, 242, 0.72);
  animation: glintDrift 5s ease-in-out infinite;
}

.pearl-one {
  right: 18%;
  top: 24%;
}

.pearl-two {
  right: 54%;
  bottom: 16%;
  animation-delay: -2s;
}

@keyframes tweezerFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -18px;
  }
}

@keyframes glintDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.55;
  }
  50% {
    transform: translate3d(14px, -18px, 36px) scale(1.4);
    opacity: 1;
  }
}

.section,
.anniversary-section,
.cta-section {
  padding: clamp(64px, 10vw, 112px) 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 34px;
}

h2,
h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: "Noto Serif", serif;
  line-height: 1.12;
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
}

p {
  color: var(--muted);
}

.anniversary-section {
  background:
    linear-gradient(90deg, rgba(23, 21, 18, 0.96), rgba(42, 36, 27, 0.92)),
    var(--ink);
  color: var(--ivory);
}

.anniversary-grid {
  display: grid;
  grid-template-columns: minmax(130px, 260px) 1fr;
  gap: clamp(28px, 7vw, 80px);
  align-items: center;
}

.anniversary-grid h2,
.anniversary-grid p {
  color: var(--ivory);
}

.poster-frame {
  margin: 0;
  border: 1px solid rgba(232, 185, 35, 0.32);
  border-radius: var(--radius);
  overflow: hidden;
  background: #11100f;
  /* Radial Glow - multi-layer effect */
  box-shadow: 
    0 0 30px rgba(212, 175, 55, 0.4),
    0 0 60px rgba(212, 175, 55, 0.25),
    0 0 100px rgba(212, 175, 55, 0.15),
    0 24px 80px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  animation: posterFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.2));
}

.poster-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  animation: posterShimmer 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

/* Rim Light Effect */
.poster-frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius);
  background: radial-gradient(
    ellipse 100% 50% at 50% 0%,
    rgba(255, 255, 255, 0.15),
    rgba(212, 175, 55, 0.1) 30%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 2;
  animation: rimLightFlicker 4s ease-in-out infinite;
}

.poster-frame:hover {
  transform: scale(1.02);
  box-shadow: 
    0 0 40px rgba(212, 175, 55, 0.6),
    0 0 80px rgba(212, 175, 55, 0.35),
    0 0 120px rgba(212, 175, 55, 0.2),
    0 32px 100px rgba(0, 0, 0, 0.45);
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.35));
}

.poster-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4.2;
  object-fit: cover;
  object-position: center top;
  cursor: pointer;
  position: relative;
  z-index: 0;
}

@keyframes posterFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes posterShimmer {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes rimLightFlicker {
  0%, 100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}

/* Poster lightbox modal */
.poster-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.poster-modal.active {
  display: flex;
}

.poster-modal img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  animation: slideUp 0.3s ease;
}

.poster-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  transition: all 0.3s ease;
}

.poster-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.card-grid {
  display: grid;
  gap: 22px;
}

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

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

.service-card,
.review-card,
.pricing-card,
.detail-panel,
.booking-form,
.contact-panel {
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 250, 243, 0.78);
  box-shadow: var(--shadow);
}

.service-card,
.review-card {
  min-height: 270px;
  padding: clamp(22px, 4vw, 34px);
}

.service-card {
  overflow: hidden;
  transform-style: preserve-3d;
}

.card-photo {
  display: block;
  width: calc(100% + clamp(44px, 8vw, 68px));
  max-width: none;
  height: 220px;
  margin: calc(clamp(22px, 4vw, 34px) * -1) calc(clamp(22px, 4vw, 34px) * -1) 24px;
  object-fit: cover;
  object-position: center top;
}

.service-card p,
.review-card p {
  margin-bottom: 22px;
}

.service-card strong {
  color: var(--gold);
  font-size: 1.05rem;
}

.card-icon {
  display: inline-grid;
  min-width: 46px;
  min-height: 46px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Noto Serif", serif;
  font-weight: 800;
}

.soft-band {
  background:
    linear-gradient(120deg, rgba(220, 234, 242, 0.58), rgba(248, 241, 233, 0.78)),
    #edf5f8;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.review-carousel {
  position: relative;
  min-height: 270px;
  padding: clamp(28px, 5vw, 48px);
  border-left: 2px solid var(--gold);
  background: rgba(255, 250, 243, 0.72);
}

.review-slide {
  position: absolute;
  inset: clamp(28px, 5vw, 48px);
  margin: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.review-slide.is-active {
  opacity: 1;
  transform: translateY(0);
}

.review-slide p {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: "Noto Serif", serif;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.25;
}

cite {
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
}

.carousel-dots {
  position: absolute;
  left: clamp(28px, 5vw, 48px);
  bottom: 24px;
  display: flex;
  gap: 8px;
}

.carousel-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(23, 21, 18, 0.28);
}

.carousel-dots span.is-active {
  background: var(--gold);
}

.cta-section {
  color: var(--ivory);
  background:
    linear-gradient(125deg, rgba(23, 21, 18, 0.95), rgba(42, 37, 28, 0.82)),
    #171512;
  text-align: center;
}

.cta-inner {
  flex-direction: column;
  margin-top: 0;
}

.cta-inner h2 {
  max-width: 760px;
  color: var(--ivory);
}

.page-hero {
  padding: clamp(86px, 13vw, 150px) 0 clamp(58px, 8vw, 96px);
  color: var(--ivory);
  background:
    linear-gradient(105deg, rgba(23, 21, 18, 0.93), rgba(31, 40, 43, 0.76)),
    radial-gradient(circle at 82% 30%, rgba(212, 175, 55, 0.22), transparent 26rem),
    #171512;
}

.page-hero h1 {
  max-width: 850px;
  color: var(--ivory);
  font-size: clamp(2.6rem, 7vw, 6.4rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 250, 243, 0.78);
  font-size: 1.08rem;
}

.service-detail-list {
  display: grid;
  gap: 24px;
}

.detail-panel {
  padding: clamp(26px, 5vw, 48px);
}

.detail-image {
  float: right;
  width: min(34%, 260px);
  margin: 0 0 20px 28px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(23, 21, 18, 0.14);
}

.detail-image img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4.2;
  object-fit: cover;
  object-position: center top;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #4d473f;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.15em;
  color: var(--gold);
  content: "✦";
}

.pricing-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  padding: clamp(28px, 5vw, 46px);
}

.pricing-card.featured {
  color: var(--ivory);
  background:
    linear-gradient(145deg, rgba(23, 21, 18, 0.98), rgba(45, 39, 29, 0.94)),
    var(--ink);
}

.pricing-card.featured h2,
.pricing-card.featured p {
  color: var(--ivory);
}

.price {
  margin: 20px 0;
  color: var(--gold);
  font-family: "Noto Serif", serif;
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  font-weight: 700;
  line-height: 1;
}

.price span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 250, 243, 0.8);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 0.96rem;
}

.price-table {
  display: grid;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 250, 243, 0.76);
  box-shadow: var(--shadow);
}

.table-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px clamp(18px, 4vw, 34px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}

.table-row:last-child {
  border-bottom: 0;
}

.table-row.head {
  color: var(--ivory);
  background: var(--ink);
  font-weight: 800;
}

.story-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.salon-visual {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(220, 234, 242, 0.44), transparent 45%),
    linear-gradient(145deg, #2b2824, #11100f);
  box-shadow: var(--shadow);
}

.salon-visual img,
.contact-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.shine-line {
  position: absolute;
  left: -18%;
  top: 0;
  width: 18%;
  height: 120%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: rotate(18deg);
  animation: shineSweep 6s ease-in-out infinite;
}

@keyframes shineSweep {
  0%,
  22% {
    left: -18%;
  }
  58%,
  100% {
    left: 118%;
  }
}

.commitments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.commitments span {
  padding: 9px 14px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.7);
  color: #4b453d;
  font-weight: 800;
}

.booking-form,
.contact-panel {
  padding: clamp(22px, 4vw, 36px);
}

.booking-form {
  display: grid;
  gap: 16px;
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: #39342e;
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 21, 18, 0.14);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.13);
}

.contact-panel {
  display: grid;
  gap: 12px;
}

.contact-photo {
  height: 220px;
  border-radius: var(--radius);
  border: 1px solid rgba(212, 175, 55, 0.24);
}

.contact-panel a {
  color: var(--ink);
  font-weight: 800;
}

.qr-code {
  width: 190px;
  height: 190px;
  padding: 10px;
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: var(--radius);
  background: #fff;
}

.qr-codes-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.qr-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.qr-item p {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  text-align: center;
}

.map-section iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
  filter: saturate(0.8) contrast(1.05);
}

.map-section {
  margin-top: 5px;
  padding-top: 40px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.review-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
}

.site-footer {
  padding: 36px 0;
  color: rgba(255, 250, 243, 0.8);
  background: #12110f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.site-footer strong {
  color: var(--gold);
  font-family: "Noto Serif", serif;
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 250, 243, 0.68);
}

.site-footer a {
  display: block;
  color: rgba(255, 250, 243, 0.86);
  font-weight: 700;
}

.footer-location {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;

  color: inherit;
  text-decoration: none;

  transition:
    transform .3s ease,
    color .3s ease,
    opacity .3s ease;
}

.footer-location:hover {
  transform: translateY(-2px);
  color: #d4af37;
}


/* Underline the address text inside footer-location */
.footer-location > span:last-child {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: var(--gold);
  text-underline-offset: 3px;
}


.location-icon {
  color: #d43a37;
  font-size: 1.2rem;

  animation: pulseLocation 2s infinite;
}

.footer-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.qr-title {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

.footer-qr img {
  width: 240px;
  height: 240px;
  margin-top: 30px;
  object-fit: cover;
  border-radius: 20px;
  background: white;
  padding: 10px;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.footer-qr img:hover {
  transform: scale(1.06);
  box-shadow: 0 16px 40px rgba(255,255,255,0.18);
}

.social-floating-dock {
  position: fixed;
  right: 20px;
  bottom: max(20px, env(safe-area-inset-bottom));
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 1px 1px 0 rgba(255, 255, 255, 0.2);
}

.dock-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  color: #fff;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  text-decoration: none;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.dock-item:hover {
  background: rgba(212, 175, 55, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1) translateX(-8px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
}

.dock-label {
  position: absolute;
  right: 100%;
  margin-right: 12px;
  padding: 6px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dock-label {
  position: absolute;
  right: 100%;
  margin-right: 12px;
  padding: 6px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dock-item:hover .dock-label {
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 18px 24px 28px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.22);
    background: rgba(255, 250, 243, 0.98);
    box-shadow: 0 30px 70px rgba(23, 21, 18, 0.18);
    transform: translateY(-115%);
    transition: transform 0.24s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(23, 21, 18, 0.08);
  }

  .nav-toggle {
    display: block;
  }

  .nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  .card-grid.three,
  .pricing-wrap,
  .story-grid,
  .contact-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-orbit {
    right: -8%;
    bottom: 0;
    opacity: 0.48;
  }

  .hero-content {
    width: min(680px, 100%);
    margin-right: 0;
    text-align: center;
  }

  .hero .hero-actions {
    justify-content: center;
  }

  .hero-poster {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(360px, 78vw);
    margin: 34px auto 0;
    transform: none;
  }

  .detail-image {
    float: none;
    width: min(320px, 100%);
    margin: 0 0 24px;
  }

  .social-floating-dock {
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom));
    padding: 12px;
    gap: 10px;
  }

  .dock-item {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    font-size: 1.15rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 70px;
    padding-inline: 14px;
  }

  .brand small {
    display: none;
  }

  .language-switch {
    transform: scale(0.94);
    transform-origin: right center;
  }

  .hero {
    min-height: calc(100svh - 70px);
    padding-top: 62px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 22vw, 6.4rem);
  }

  .card-grid.two,
  .anniversary-grid {
    grid-template-columns: 1fr;
  }

  .poster-frame {
    max-width: 360px;
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-floating-dock {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    padding: 10px;
    gap: 8px;
  }

  .dock-item {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    font-size: 1.1rem;
  }

  .dock-label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
