/* ===== Variables ===== */
:root {
  --champagne: #d5c3a1;
  --ivory: #f8f6f2;
  --stone: #d8d0c2;
  --espresso: #2b2118;
  --umber: #5c4a3a;
  --muted: #747067;
  --warm-white: #fcfbf9;
  --taupe: #d4c7b4;
  --antique-gold: #a98c58;
  --line: rgba(213, 195, 161, 0.35);
  --card: #ffffff;

  --font-display: 'Playfair Display', serif;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', 'Noto Sans Thai', sans-serif;

  /* aliases kept for mood-screen CSS compatibility */
  --font-serif: var(--font-display);
  --font-script: 'Playfair Display', serif;
  --font-sans: var(--font-body);
  --charcoal: var(--espresso);
  --brown: var(--umber);
  --champagne-strong: var(--antique-gold);
  --cream: var(--stone);
}

/* ===== Reset ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--espresso);
  background: var(--warm-white);
  line-height: 1.6;
  overflow-x: clip;
  position: relative;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ===== Background decorations ===== */
.page-deco {
  position: fixed;
  top: 0;
  height: 100vh;
  width: 140px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}
.page-deco svg { width: 100%; height: 100%; }
.page-deco path {
  fill: none;
  stroke: var(--champagne);
  stroke-width: 1;
  opacity: 0.25;
}
.page-deco-left { left: 0; }
.page-deco-right { right: 0; }
@media (max-width: 1100px) {
  .page-deco { display: none; }
}

/* ===== Shared layout ===== */
main, header, footer { position: relative; z-index: 1; }
.eyebrow {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 600;
}
.eyebrow.center {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.eyebrow.center::before,
.eyebrow.center::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--line);
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
  padding: 0 24px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin: 14px 0 12px;
  color: var(--espresso);
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.85rem 1.8rem;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 0.3s, color 0.3s, transform 0.2s, box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-olive {
  background: var(--espresso);
  color: var(--warm-white);
  border-color: var(--espresso);
}
.btn-olive:hover {
  background: var(--umber);
  border-color: var(--umber);
  transform: translateY(-2px);
}
.btn-outline-gold {
  background: transparent;
  border-color: var(--espresso);
  color: var(--espresso);
}
.btn-outline-gold:hover {
  background: var(--espresso);
  color: var(--warm-white);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--champagne);
  color: var(--espresso);
  border-color: var(--champagne);
}
.btn-gold:hover {
  background: var(--taupe);
  border-color: var(--taupe);
  transform: translateY(-2px);
}
.btn-small { padding: 0.6rem 1.3rem; font-size: 0.72rem; }
.btn-disabled {
  background: rgba(43, 33, 24, 0.05);
  color: var(--muted);
  border-color: rgba(116, 112, 103, 0.25);
  cursor: not-allowed;
}
.btn-disabled:hover { transform: none; box-shadow: none; }
.btn-full { width: 100%; }
.icon { width: 16px; height: 16px; flex-shrink: 0; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(252, 251, 249, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(213, 195, 161, 0.2);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand { text-decoration: none; display: flex; flex-direction: column; line-height: 1.2; margin-right: auto; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0em;
  color: var(--champagne);
}
.brand-name.small { font-size: 1.1rem; }
.brand-sub {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
}
.main-nav { display: flex; gap: 32px; }
.main-nav a {
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}
.main-nav a:hover { color: var(--champagne); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--espresso); display: block; }
.lang-toggle {
  background: transparent;
  border: 1px solid rgba(213, 195, 161, 0.5);
  color: var(--muted);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 5px 11px;
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
  flex-shrink: 0;
}
.lang-toggle:hover { color: var(--champagne); border-color: var(--champagne); }

@media (max-width: 880px) {
  .main-nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--warm-white); flex-direction: column; gap: 0; border-bottom: 1px solid rgba(213, 195, 161, 0.2); max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
  .main-nav.open { max-height: 320px; }
  .main-nav a { padding: 14px 40px; border-top: 1px solid rgba(213, 195, 161, 0.2); }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,17,13,0.38) 0%, rgba(20,17,13,0.52) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 32px;
  width: 100%;
}
.hero-copy .eyebrow { margin-bottom: 18px; color: rgba(255,255,255,0.75); }
.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 4.6vw, 3.7rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
}
.hero-sub {
  margin-top: 18px;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 460px;
}
.hero-actions { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }

@media (max-width: 980px) {
  .hero-inner { text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-actions { justify-content: center; }
}
@media (max-width: 540px) {
  .hero-inner { padding: 80px 20px; }
}

/* ===== Phone frame (shared, portrait 9:16) ===== */
.phone-frame {
  aspect-ratio: 9 / 16;
  background: #15130f;
  border-radius: 30px;
  padding: 9px;
  position: relative;
  box-shadow: 0 18px 36px rgba(31, 29, 26, 0.28);
  transition: transform 0.45s ease;
}
.phone-frame::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: 14px;
  background: #15130f;
  border-radius: 10px;
  z-index: 3;
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ===== Mood screens ===== */
.ms { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 14px 12px; position: relative; }
.ms-flourish { color: var(--champagne-strong); font-size: 0.8rem; }
.ms-monogram { font-family: var(--font-script); font-style: italic; font-size: 1.7rem; font-weight: 600; }
.ms-amp { color: var(--champagne-strong); margin: 0 4px; }
.ms-rule { width: 30px; height: 1px; background: var(--line); }
.ms-caption { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; }
.ms-caption-lg { font-family: var(--font-script); font-style: italic; font-size: 1.15rem; }
.ms-gold-text { color: var(--champagne); }

.ms-white { background: linear-gradient(180deg, #ffffff, #f3ece0); color: var(--charcoal); }
.ms-white .ms-caption { color: var(--brown); }

.ms-black { background: linear-gradient(160deg, #15130f, #2a2722); color: #f3ece0; }
.ms-black .ms-monogram { color: var(--champagne); }
.ms-frame-border { position: absolute; inset: 14px; border: 1px solid rgba(200,169,106,0.4); }

.ms-green { background: linear-gradient(170deg, #3f4a22, #59643a); color: #f3ece0; }
.ms-leaf { width: 34px; height: 34px; stroke: var(--champagne); fill: none; stroke-width: 1.2; }

.ms-curtain { background: linear-gradient(170deg, #2a3318, #3f4a22); color: var(--champagne); position: relative; }
.ms-curtain-stripes { position: absolute; inset: 0; background: repeating-linear-gradient(90deg, rgba(0,0,0,0.18) 0px, rgba(0,0,0,0.18) 8px, transparent 8px, transparent 18px); }
.ms-curtain .ms-monogram { position: relative; z-index: 1; }

.ms-scratch { background: radial-gradient(circle at 40% 30%, #c8a96a, #7a644d); color: #2a2520; }
.ms-scratch-texture { position: absolute; inset: 0; background: repeating-linear-gradient(45deg, rgba(255,255,255,0.08) 0px, transparent 3px, transparent 7px); }
.ms-coin { width: 30px; height: 30px; stroke: #2a2520; fill: none; stroke-width: 1.4; position: relative; z-index: 1; }
.ms-scratch .ms-caption-lg { position: relative; z-index: 1; }

.ms-minimal { background: linear-gradient(180deg, #f7f2ea, #efe3d2); color: var(--charcoal); }
.ms-sprig { width: 26px; height: 40px; stroke: var(--brown); fill: none; stroke-width: 1; }

.ms-music { background: linear-gradient(170deg, #1f1d1a, #322c22); color: #f3ece0; }
.ms-album { width: 64px; height: 64px; border-radius: 8px; background: linear-gradient(140deg, var(--champagne), #7a644d); }
.ms-track { display: flex; flex-direction: column; gap: 5px; width: 78%; }
.ms-track span { display: block; height: 4px; border-radius: 4px; background: rgba(247,242,234,0.18); }
.ms-track span:first-child { width: 100%; }
.ms-track span:last-child { width: 55%; }
.ms-track-bar { width: 78%; height: 2px; background: rgba(247,242,234,0.2); border-radius: 4px; position: relative; }
.ms-track-bar::after { content: ""; position: absolute; left: 0; top: -2px; width: 38%; height: 6px; border-radius: 4px; background: var(--champagne); }
.ms-controls { display: flex; align-items: center; gap: 16px; }
.ms-controls svg { width: 16px; height: 16px; fill: #f3ece0; }
.ms-controls .ms-playbtn { width: 30px; height: 30px; border-radius: 50%; background: var(--champagne); display: flex; align-items: center; justify-content: center; }
.ms-controls .ms-playbtn svg { fill: #1f1d1a; width: 12px; height: 12px; }
.ms-eq { display: flex; gap: 4px; align-items: flex-end; height: 16px; }
.ms-eq span { width: 3px; background: var(--champagne); border-radius: 2px; animation: eq 1.2s ease-in-out infinite; }
.ms-eq span:nth-child(1) { height: 40%; animation-delay: 0s; }
.ms-eq span:nth-child(2) { height: 100%; animation-delay: 0.2s; }
.ms-eq span:nth-child(3) { height: 65%; animation-delay: 0.4s; }
.ms-eq span:nth-child(4) { height: 85%; animation-delay: 0.6s; }
@keyframes eq { 0%, 100% { transform: scaleY(0.4); } 50% { transform: scaleY(1); } }

.ms-video { background: radial-gradient(circle at 30% 20%, #4a443a, #1f1d1a 70%); color: #f3ece0; }
.ms-video-bg { position: absolute; inset: 0; background: linear-gradient(200deg, rgba(200,169,106,0.18), transparent 60%); }
.ms-play { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid rgba(247,242,234,0.7); background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; cursor: default; position: relative; z-index: 1; }
.ms-play svg { width: 14px; height: 14px; fill: #f3ece0; margin-left: 2px; }
.ms-video .ms-caption { position: relative; z-index: 1; }

.ms-seat { background: linear-gradient(180deg, #f7f2ea, #efe3d2); color: var(--charcoal); justify-content: flex-start; padding-top: 22px; gap: 12px; }
.ms-search { width: 100%; display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.9); border: 1px solid var(--line); border-radius: 999px; padding: 7px 10px; font-size: 0.58rem; color: var(--brown); }
.ms-search svg { width: 11px; height: 11px; stroke: var(--brown); fill: none; flex-shrink: 0; }
.ms-tables { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; width: 100%; }
.ms-tables span { display: block; aspect-ratio: 1; border-radius: 50%; background: rgba(122,100,77,0.18); border: 1px solid var(--line); }
.ms-tables span.active { background: var(--champagne); border-color: var(--champagne-strong); }
.ms-guestlist { width: 100%; display: flex; flex-direction: column; gap: 6px; }
.ms-guestlist li { display: flex; justify-content: space-between; font-size: 0.56rem; background: rgba(255,255,255,0.7); border: 1px solid var(--line); border-radius: 6px; padding: 6px 8px; }
.ms-guestlist li b { color: var(--champagne-strong); font-weight: 700; }
.ms-guestlist-scroll li.active { background: rgba(var(--champagne-rgb, 195,162,100),0.18); border-color: var(--champagne-strong); }

/* ===== Packages ===== */
.packages { padding: 80px 40px; max-width: 1240px; margin: 0 auto; }
.package-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.package-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--card);
  border: 1px solid rgba(213, 195, 161, 0.2);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(61, 40, 23, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.package-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(61, 40, 23, 0.15); }
.package-icon {
  width: 48px; height: 48px; min-width: 48px;
  border-radius: 50%;
  background: rgba(213, 195, 161, 0.15);
  display: flex; align-items: center; justify-content: center;
}
.package-icon svg { width: 22px; height: 22px; stroke: var(--antique-gold); fill: none; stroke-width: 1.4; }
.package-copy h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; margin-bottom: 4px; color: var(--espresso); }
.package-copy p { font-size: 0.88rem; color: var(--muted); line-height: 1.6; }

@media (max-width: 880px) {
  .package-row { grid-template-columns: 1fr; }
}

/* ===== Showcase sections & grid ===== */
.showcase-section { padding: 90px 40px; max-width: 1280px; margin: 0 auto; }
.showcase-section.alt-bg { background: var(--ivory); border-radius: 0; max-width: 100%; padding: 90px 40px; }
.showcase-section.alt-bg .card-grid { max-width: 1280px; margin-left: auto; margin-right: auto; }

.card-grid { display: grid; gap: 26px; justify-content: center; }

.basic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 700px) { .basic-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1020px) { .basic-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
@media (max-width: 540px) { .basic-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; } }

.showcase-section.alt-bg .special-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 850px; }
@media (max-width: 980px) { .showcase-section.alt-bg .special-grid { max-width: 700px; } }
@media (max-width: 560px) { .showcase-section.alt-bg .special-grid { grid-template-columns: 1fr; max-width: 380px; } }

.premium-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 1040px; margin: 0 auto; }
@media (max-width: 980px) { .premium-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 700px; } }
@media (max-width: 560px) { .premium-grid { grid-template-columns: 1fr; max-width: 380px; } }

.seat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 720px; margin: 0 auto; }
@media (max-width: 560px) { .seat-grid { grid-template-columns: 1fr; max-width: 380px; } }

.gallery-grid { grid-template-columns: minmax(0, 1fr); max-width: 380px; margin: 0 auto; }
.showcase-section.alt-bg .gallery-grid { max-width: 380px; }

/* ===== Showcase card ===== */
.showcase-card {
  background: var(--card);
  border: 1px solid rgba(213, 195, 161, 0.2);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(61, 40, 23, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(61, 40, 23, 0.15);
}
.card-preview {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--ivory), var(--stone));
}
.card-preview .phone-frame {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(140px, 70%);
}
.card-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.showcase-card:hover .card-preview-img { transform: scale(1.045); }

.card-body { padding: 20px 24px 28px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-tag {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 600;
}
.card-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--espresso); }
.card-title .amp { font-family: var(--font-heading); font-style: normal; font-size: 0.9em; }
.card-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; flex: 1; }
.card-body .btn { margin-top: 8px; }

/* ===== Invitation detail page ===== */
.invitation-detail-page { background: var(--warm-white); }
.invitation-detail-page-main { padding: clamp(40px, 7vw, 84px) 32px; }
.invitation-detail {
  width: min(1060px, 100%);
  margin: 0 auto;
  padding: 0;
}
.detail-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: #5c2631;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}
.detail-back:hover, .detail-back:focus-visible { color: var(--antique-gold); }
.detail-layout { display: grid; grid-template-columns: 360px minmax(0, 1fr); align-items: center; justify-content: center; gap: clamp(32px, 7vw, 88px); }
.detail-preview { display: flex; justify-content: center; min-width: 0; }
.ecard-phone-frame {
  width: min(100%, 360px);
  aspect-ratio: 9 / 19.5;
  padding: 10px;
  overflow: visible;
  border: 2px solid #6b2938;
  border-radius: 42px;
  background: #f1e9e1;
  box-shadow: 0 22px 44px rgba(70, 29, 38, 0.22), inset 0 0 0 3px rgba(255, 255, 255, 0.52);
}
.ecard-phone-frame::before { top: 11px; width: 34%; height: 15px; background: #6b2938; z-index: 5; }
.ecard-phone-screen {
  display: block;
  border-radius: 32px;
  background: #f8f4ef;
  isolation: isolate;
}
.ecard-iframe-scale { position: absolute; inset: 0; z-index: 3; }
.ecard-iframe { position: relative; width: 100%; height: 100%; border: 0; display: block; overflow: auto; opacity: 0; pointer-events: auto; touch-action: pan-y; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; transition: opacity 340ms ease; background: #f8f4ef; }
.ecard-iframe.is-loaded { opacity: 1; }
.phone-loading, .phone-fallback { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 24px; color: #6b2938; background: #f8f4ef; pointer-events: none; text-align: center; font-size: 0.82rem; transition: opacity 260ms ease, visibility 260ms ease; }
.phone-loading.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.phone-spinner { width: 28px; height: 28px; border: 2px solid rgba(107, 41, 56, 0.2); border-top-color: #6b2938; border-radius: 50%; animation: phone-spin 0.8s linear infinite; }
@keyframes phone-spin { to { transform: rotate(360deg); } }
.detail-copy { min-width: 0; }
.detail-copy h1, .recommendations h3 { font-family: var(--font-display); font-weight: 500; color: var(--espresso); overflow-wrap: anywhere; }
.detail-copy h1 { margin: 10px 0 14px; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.1; }
.detail-copy p { max-width: 420px; margin-bottom: 26px; color: var(--muted); }
.recommendations { margin-top: 56px; padding-top: 36px; border-top: 1px solid var(--line); }
.recommendations-head { margin-bottom: 20px; }
.recommendations h3 { margin-top: 6px; font-size: 1.65rem; }
.recommendations-row { display: flex; gap: 18px; overflow-x: auto; padding: 2px 2px 12px; scroll-snap-type: x mandatory; overscroll-behavior-inline: contain; scrollbar-width: thin; scrollbar-color: var(--champagne) transparent; }
.recommendation-card { flex: 0 0 min(220px, 78vw); scroll-snap-align: start; padding: 0; overflow: hidden; border: 1px solid rgba(213, 195, 161, 0.35); border-radius: 12px; background: var(--card); color: inherit; text-align: left; text-decoration: none; cursor: pointer; }
.recommendation-card img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.recommendation-copy { display: flex; flex-direction: column; gap: 4px; padding: 13px; }
.recommendation-tag { color: var(--champagne); font-family: var(--font-heading); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.recommendation-title { font-family: var(--font-display); font-size: 1.05rem; }
.recommendation-card:hover, .recommendation-card:focus-visible { outline: 2px solid #6b2938; outline-offset: 2px; transform: translateY(-2px); }
@media (max-width: 700px) {
  .invitation-detail-page-main { padding: 28px 14px; }
  .detail-layout { grid-template-columns: 1fr; gap: 32px; }
  .ecard-phone-frame { width: min(86vw, 360px); }
  .ecard-iframe-scale {
    width: 119.05%;
    height: 119.05%;
    transform: scale(0.84);
    transform-origin: top left;
  }
  .detail-copy { text-align: center; }
  .detail-copy p { margin-left: auto; margin-right: auto; }
  .recommendations { margin-top: 40px; }
  .recommendations-row { margin-right: -20px; padding-right: 20px; }
}

/* ===== Final CTA ===== */
.final-cta {
  position: relative;
  text-align: center;
  padding: 110px 32px 90px;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}
.final-cta .eyebrow { margin-bottom: 16px; }
.final-cta h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  max-width: 700px;
  margin: 0 auto 36px;
  line-height: 1.3;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-deco { position: absolute; left: 0; right: 0; bottom: -10px; height: 140px; z-index: 0; pointer-events: none; }
.cta-deco svg { width: 100%; height: 100%; }
.cta-deco path { fill: none; stroke: var(--champagne); stroke-width: 1; opacity: 0.3; }
.cta-deco .cta-tree { opacity: 0.4; }

/* ===== Footer ===== */
.site-footer {
  text-align: center;
  padding: 60px 40px;
  background: var(--espresso);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.site-footer .brand-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--champagne);
  letter-spacing: 0;
}
.site-footer p { font-size: 0.82rem; color: rgba(252, 251, 249, 0.6); }

@media (max-width: 540px) {
  .showcase-section { padding: 64px 20px; }
  .packages { padding: 56px 20px; }
  .final-cta { padding: 80px 20px 64px; }
}
