/* =====================================================================
   Velvet Touch by Lara — main stylesheet
   An elegant, red-dominant luxury aesthetic.
   Display: Fraunces  •  Body: Jost
   ===================================================================== */

:root {
  /* Reds */
  --wine:      #6b0a16;
  --wine-2:    #8a0f20;
  --ruby:      #c2153a;
  --crimson:   #e11d48;
  --rose:      #ff5a76;
  --blush:     #f9e4e7;
  /* Metallics & neutrals */
  --gold:      #c9a36a;
  --gold-soft: #e7d2ab;
  --ivory:     #fdf7f4;
  --cream:     #fbf1ec;
  --ink:       #2a1416;
  --ink-soft:  #7a565a;
  --line:      #ecd9d6;
  --white:     #ffffff;

  --maxw: 1180px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 6px 20px rgba(107,10,22,.07);
  --shadow:    0 18px 50px rgba(107,10,22,.12);
  --shadow-lg: 0 40px 90px rgba(107,10,22,.20);
  --ease: cubic-bezier(.22,1,.36,1);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Jost", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
  background-image:
    radial-gradient(60rem 40rem at 90% -10%, rgba(225,29,72,.07), transparent 60%),
    radial-gradient(50rem 40rem at -10% 20%, rgba(201,163,106,.10), transparent 55%);
  background-attachment: fixed;
}
img { max-width: 100%; display: block; }
a { color: var(--ruby); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--crimson); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.08; letter-spacing: -.01em; color: var(--wine); }
.container { width: min(100% - 2.6rem, var(--maxw)); margin-inline: auto; }
.muted { color: var(--ink-soft); }

/* Decorative film grain */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .045; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Floating emoticons ---------- */
.floating-emojis { position: fixed; inset: 0; z-index: 2; pointer-events: none; overflow: hidden; }
.floating-emojis span {
  position: absolute; bottom: -6vh; font-size: 1.7rem;
  opacity: 0; filter: drop-shadow(0 6px 10px rgba(107,10,22,.18));
  animation: floatUp linear infinite;
  will-change: transform, opacity;
}
@keyframes floatUp {
  0%   { transform: translateY(0) rotate(0deg) scale(.9); opacity: 0; }
  10%  { opacity: .85; }
  90%  { opacity: .85; }
  100% { transform: translateY(-118vh) rotate(40deg) scale(1.1); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .floating-emojis { display: none; }
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding: .9rem 0;
}
.site-header.scrolled {
  background: rgba(253,247,244,.82);
  backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--wine); }
.brand-mark {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--wine), var(--crimson));
  color: #fff; font-family: var(--font-display); font-size: 1.05rem; letter-spacing: .04em;
  box-shadow: 0 8px 22px rgba(194,21,58,.35); flex: none;
}
.brand-name { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: .01em; color: var(--wine); }
.brand-name.big { font-size: 1.7rem; }

.site-nav { display: flex; align-items: center; gap: 1.7rem; }
.site-nav a { color: var(--ink); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; position: relative; }
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.site-nav a:hover::after, .site-nav a.active::after { width: 100%; }
.site-nav a.active { color: var(--wine); }
.nav-cta {
  padding: .55rem 1.15rem !important; border-radius: 999px;
  background: linear-gradient(135deg, var(--ruby), var(--crimson)); color: #fff !important;
  box-shadow: 0 8px 20px rgba(194,21,58,.3); letter-spacing: .1em !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { transform: translateY(-1px); }

.nav-toggle, .nav-burger { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem; cursor: pointer;
  font-family: var(--font-body); font-weight: 500; letter-spacing: .06em;
  padding: .95rem 1.9rem; border-radius: 999px; border: 0; font-size: .92rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.btn-primary {
  background: linear-gradient(135deg, var(--wine-2), var(--crimson));
  color: #fff; box-shadow: 0 14px 34px rgba(194,21,58,.34);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 44px rgba(194,21,58,.42); color: #fff; }
.btn-ghost {
  background: transparent; color: var(--wine); border: 1.5px solid var(--wine);
}
.btn-ghost:hover { background: var(--wine); color: #fff; }
.btn-gold { background: linear-gradient(135deg, var(--gold), #b58a4e); color: #3a2410; box-shadow: 0 12px 30px rgba(201,163,106,.4); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh; display: grid; place-items: center;
  text-align: center; color: #fff; overflow: hidden; isolation: isolate;
  background:
    radial-gradient(70rem 50rem at 78% 12%, rgba(255,90,118,.55), transparent 60%),
    radial-gradient(60rem 45rem at 12% 88%, rgba(201,163,106,.35), transparent 58%),
    linear-gradient(150deg, var(--wine) 0%, var(--wine-2) 42%, var(--ruby) 100%);
}
.hero::before {
  content: ""; position: absolute; inset: -20%; z-index: -1;
  background: radial-gradient(closest-side, rgba(255,255,255,.18), transparent);
  filter: blur(20px); animation: drift 16s ease-in-out infinite alternate;
}
@keyframes drift { from { transform: translate(-6%, -4%) scale(1); } to { transform: translate(8%, 6%) scale(1.12); } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,.35) 1px, transparent 1.4px);
  background-size: 26px 26px; mask-image: radial-gradient(70% 70% at 50% 40%, #000, transparent);
}
.hero-inner { padding: 7rem 1.2rem 6rem; max-width: 880px; }
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: .8rem; margin-bottom: 1.6rem;
  font-size: .72rem; letter-spacing: .42em; text-transform: uppercase; color: var(--gold-soft);
}
.hero .eyebrow::before, .hero .eyebrow::after { content: ""; width: 34px; height: 1px; background: var(--gold-soft); opacity: .7; }
.hero h1 {
  color: #fff; font-size: clamp(3.6rem, 12vw, 8.5rem); font-weight: 300; line-height: .92;
  text-shadow: 0 30px 70px rgba(0,0,0,.3);
}
.hero h1 em { font-style: italic; font-weight: 500; color: var(--gold-soft); }
.hero p.lede {
  margin: 1.7rem auto 2.6rem; max-width: 540px; font-size: clamp(1rem, 2.4vw, 1.22rem);
  color: rgba(255,255,255,.9); font-weight: 300; line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-actions .btn-ghost { color: #fff; border-color: rgba(255,255,255,.6); }
.hero-actions .btn-ghost:hover { background: #fff; color: var(--wine); }
.scroll-cue {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.7); font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
  display: grid; justify-items: center; gap: .5rem;
}
.scroll-cue span { width: 1px; height: 38px; background: linear-gradient(rgba(255,255,255,.8), transparent); animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 0%,100% { opacity: .3; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* Hero staggered entrance */
.hero [data-stagger] { opacity: 0; transform: translateY(28px); animation: rise .9s var(--ease) forwards; }
.hero [data-stagger="1"] { animation-delay: .15s; }
.hero [data-stagger="2"] { animation-delay: .32s; }
.hero [data-stagger="3"] { animation-delay: .5s; }
.hero [data-stagger="4"] { animation-delay: .68s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- Section scaffolding ---------- */
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.section-head .kicker {
  display: inline-block; font-size: .72rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--ruby); margin-bottom: 1rem;
}
.section-head h2 { font-size: clamp(2.3rem, 5.5vw, 3.6rem); }
.section-head h2 em { font-style: italic; color: var(--gold); }
.section-head p { margin-top: 1rem; color: var(--ink-soft); font-size: 1.05rem; }

/* Reveal on scroll */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-figure { position: relative; }
.about-figure .frame {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5; background: linear-gradient(135deg, var(--blush), var(--cream));
}
.about-figure .frame img { width: 100%; height: 100%; object-fit: cover; }
.about-figure .frame.empty { display: grid; place-items: center; color: var(--ruby); }
.about-figure .frame.empty span { font-size: 4rem; }
.about-figure::before {
  content: ""; position: absolute; inset: -18px -18px auto auto; width: 56%; height: 56%;
  border: 1.5px solid var(--gold); border-radius: var(--radius-lg); z-index: -1;
}
.about-badge {
  position: absolute; bottom: -22px; left: -22px; background: #fff; border-radius: 50%;
  width: 118px; height: 118px; display: grid; place-content: center; text-align: center;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.about-badge b { font-family: var(--font-display); font-size: 1.9rem; color: var(--ruby); line-height: 1; }
.about-badge small { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); }
.about-copy h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.about-copy .kicker { display: inline-block; font-size: .72rem; letter-spacing: .34em; text-transform: uppercase; color: var(--ruby); margin-bottom: 1rem; }
.about-copy p { margin-top: 1.3rem; color: var(--ink-soft); }
.signature { margin-top: 1.8rem; font-family: var(--font-display); font-style: italic; font-size: 1.8rem; color: var(--wine); }

/* ---------- Feature strip ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem 1.8rem;
  text-align: center; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature .ic { font-size: 2rem; margin-bottom: 1rem; }
.feature h3 { font-size: 1.35rem; color: var(--wine); }
.feature p { margin-top: .6rem; color: var(--ink-soft); font-size: .96rem; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.g-card {
  position: relative; border-radius: var(--radius); overflow: hidden; background: var(--cream);
  box-shadow: var(--shadow-sm); cursor: pointer; aspect-ratio: 1; transition: box-shadow .4s var(--ease);
}
.g-card.tall { aspect-ratio: 3/4; }
.g-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.g-card:hover img { transform: scale(1.08); }
.g-card:hover { box-shadow: var(--shadow-lg); }
.g-card .g-meta {
  position: absolute; inset: auto 0 0 0; padding: 1.4rem 1.2rem .9rem; color: #fff;
  background: linear-gradient(transparent, rgba(43,8,12,.82)); transform: translateY(8px); opacity: 0;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.g-card:hover .g-meta { opacity: 1; transform: none; }
.g-meta h4 { color: #fff; font-size: 1.1rem; }
.g-meta p { font-size: .85rem; color: rgba(255,255,255,.82); }
.g-card .g-count {
  position: absolute; top: .8rem; right: .8rem; background: rgba(255,255,255,.92); color: var(--wine);
  font-size: .72rem; font-weight: 600; padding: .2rem .6rem; border-radius: 999px; letter-spacing: .03em;
}
.empty-note { text-align: center; color: var(--ink-soft); padding: 3rem 0; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(30,4,8,.92); display: none; place-items: center; padding: 4vw; }
.lightbox.open { display: grid; }
.lightbox img { max-width: 90vw; max-height: 82vh; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close { position: absolute; top: 1.4rem; right: 1.6rem; color: #fff; font-size: 2rem; background: none; border: 0; cursor: pointer; }
.lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.14); color: #fff; border: 0; width: 52px; height: 52px; border-radius: 50%; font-size: 1.4rem; cursor: pointer; transition: background .25s; }
.lightbox .lb-nav:hover { background: rgba(255,255,255,.3); }
.lightbox .lb-prev { left: 2vw; } .lightbox .lb-next { right: 2vw; }
.lightbox .lb-cap { position: absolute; bottom: 1.4rem; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.85); font-size: .9rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; text-align: center; color: #fff; border-radius: var(--radius-lg);
  padding: clamp(3rem, 7vw, 5.5rem) 1.5rem; margin: 0 auto;
  background: radial-gradient(40rem 30rem at 80% -20%, rgba(255,90,118,.5), transparent 60%),
              linear-gradient(135deg, var(--wine), var(--ruby));
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; font-size: clamp(2.2rem, 6vw, 3.6rem); }
.cta-band p { color: rgba(255,255,255,.88); max-width: 480px; margin: 1rem auto 2rem; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: clamp(1.6rem, 4vw, 2.6rem); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .5rem; font-weight: 500; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: 12px; background: var(--ivory);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--ruby); box-shadow: 0 0 0 4px rgba(225,29,72,.12);
}
.field .hint { font-size: .8rem; color: var(--ink-soft); margin-top: .4rem; }
.field.error input { border-color: var(--crimson); }
.field .err-msg { color: var(--crimson); font-size: .82rem; margin-top: .35rem; }

/* ---------- Flash ---------- */
.flash-stack { margin-top: 1.2rem; display: grid; gap: .7rem; }
.flash { padding: .9rem 1.2rem; border-radius: 12px; font-size: .95rem; border: 1px solid; }
.flash-success { background: #ecfdf3; border-color: #abefc6; color: #067647; }
.flash-error   { background: #fef3f2; border-color: #fda29b; color: #b42318; }
.flash-info    { background: var(--blush); border-color: #f3c9cf; color: var(--wine); }

/* ---------- Footer ---------- */
.site-footer { background: linear-gradient(180deg, var(--wine), #4d0712); color: rgba(255,255,255,.78); margin-top: 4rem; padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.site-footer .brand-name { color: #fff; }
.site-footer h4 { color: var(--gold-soft); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: rgba(255,255,255,.82); }
.site-footer a:hover { color: #fff; }
.site-footer p { margin: .4rem 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.4rem; font-size: .82rem; flex-wrap: wrap; gap: .6rem; }
.admin-link { color: rgba(255,255,255,.5) !important; font-size: .78rem; letter-spacing: .08em; }

/* ---------- Floating buttons ---------- */
.wa-float {
  position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 200; width: 58px; height: 58px;
  display: grid; place-items: center; border-radius: 50%; background: #25d366; color: #fff;
  box-shadow: 0 14px 34px rgba(37,211,102,.45); transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.08) rotate(-4deg); color: #fff; }
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45); } 70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
.to-top {
  position: fixed; left: 1.3rem; bottom: 1.3rem; z-index: 200; width: 46px; height: 46px; border-radius: 50%;
  border: 0; background: var(--wine); color: #fff; font-size: 1.1rem; cursor: pointer; opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), transform .3s var(--ease); box-shadow: var(--shadow);
}
.to-top.show { opacity: 1; visibility: visible; }
.to-top:hover { transform: translateY(-3px); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-figure { max-width: 460px; margin: 0 auto; }
  .features { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }

  .nav-burger { display: inline-flex; flex-direction: column; gap: 5px; cursor: pointer; z-index: 101; }
  .nav-burger span { width: 26px; height: 2px; background: var(--wine); transition: transform .3s var(--ease), opacity .3s var(--ease); }
  .site-nav {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px); background: var(--ivory);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.8rem;
    padding: 2rem 2.4rem; transform: translateX(100%); transition: transform .4s var(--ease);
    box-shadow: var(--shadow-lg);
  }
  .site-nav a { font-size: 1rem; }
  .nav-toggle:checked ~ .site-nav { transform: none; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; }
}

/* =====================================================================
   Inner-page header band (Portfolio, Reserve, Manage reservation)
   ===================================================================== */
.page-head {
  position: relative; text-align: center; color: #fff; overflow: hidden; isolation: isolate;
  padding: clamp(6.5rem, 12vw, 9rem) 1.2rem clamp(3rem, 6vw, 4.5rem);
  background:
    radial-gradient(60rem 40rem at 80% -10%, rgba(255,90,118,.5), transparent 60%),
    radial-gradient(50rem 40rem at 10% 120%, rgba(201,163,106,.3), transparent 58%),
    linear-gradient(150deg, var(--wine) 0%, var(--wine-2) 45%, var(--ruby) 100%);
}
.page-head::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .45;
  background-image: radial-gradient(rgba(255,255,255,.32) 1px, transparent 1.4px);
  background-size: 26px 26px; mask-image: radial-gradient(75% 75% at 50% 30%, #000, transparent);
}
.page-head .kicker { display: inline-block; font-size: .72rem; letter-spacing: .34em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1rem; }
.page-head h1 { color: #fff; font-weight: 300; font-size: clamp(2.6rem, 7vw, 4.6rem); }
.page-head h1 em { font-style: italic; color: var(--gold-soft); font-weight: 500; }
.page-head .lede { margin: 1.2rem auto 0; max-width: 560px; color: rgba(255,255,255,.9); font-weight: 300; font-size: clamp(1rem, 2.2vw, 1.18rem); }
.page-head [data-stagger] { opacity: 0; transform: translateY(24px); animation: rise .9s var(--ease) forwards; }
.page-head [data-stagger="1"] { animation-delay: .1s; }
.page-head [data-stagger="2"] { animation-delay: .26s; }
.page-head [data-stagger="3"] { animation-delay: .42s; }

/* =====================================================================
   Portfolio posts
   ===================================================================== */
.post { padding: 0 0 clamp(2.5rem, 5vw, 3.5rem); margin-bottom: clamp(2.5rem, 5vw, 3.5rem); border-bottom: 1px solid var(--line); }
.post:last-of-type { border-bottom: 0; }
.post-head { max-width: 720px; margin: 0 auto 1.8rem; text-align: center; }
.post-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.post-head p { margin-top: .7rem; color: var(--ink-soft); }

/* =====================================================================
   Confirm / reject landing page
   ===================================================================== */
.container.narrow { width: min(100% - 2.6rem, 640px); }
.confirm-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: clamp(2rem, 5vw, 3.2rem); text-align: center;
}
.confirm-icon {
  width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 1.3rem; display: grid; place-items: center;
  font-size: 2rem; color: #fff; background: linear-gradient(135deg, var(--wine-2), var(--ruby));
  box-shadow: 0 14px 34px rgba(194,21,58,.3);
}
.confirm-icon.good { background: linear-gradient(135deg, #16a34a, #0b8f3e); box-shadow: 0 14px 34px rgba(22,163,74,.32); }
.confirm-icon.warn { background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 14px 34px rgba(245,158,11,.32); }
.confirm-icon.bad  { background: linear-gradient(135deg, #b42318, #912018); box-shadow: 0 14px 34px rgba(180,35,24,.32); }
.confirm-card h1 { font-size: clamp(1.8rem, 5vw, 2.6rem); margin-bottom: .8rem; }
.confirm-card p { color: var(--ink-soft); margin-bottom: 1.4rem; }
.confirm-table { width: 100%; border-collapse: collapse; margin: 1.4rem 0; text-align: left; }
.confirm-table th, .confirm-table td { padding: .75rem .2rem; border-bottom: 1px solid var(--line); font-size: .95rem; }
.confirm-table th { color: var(--ink-soft); font-family: var(--font-body); font-weight: 500; width: 38%; text-transform: uppercase; letter-spacing: .08em; font-size: .74rem; }
.confirm-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.4rem; }

/* =====================================================================
   Status badges + extra buttons (shared, public)
   ===================================================================== */
.badge { display: inline-block; padding: .3rem .8rem; border-radius: 999px; font-size: .76rem; font-weight: 600; letter-spacing: .04em; text-transform: capitalize; }
.badge-pending   { background: #fff4e5; color: #b45309; }
.badge-confirmed { background: #ecfdf3; color: #067647; }
.badge-rejected  { background: #fef3f2; color: #b42318; }
.badge-cancelled { background: #f3f0f0; color: #6f6f6f; }
.btn-success { background: linear-gradient(135deg, #16a34a, #0b8f3e); color: #fff; box-shadow: 0 12px 30px rgba(22,163,74,.32); }
.btn-success:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 18px 40px rgba(22,163,74,.4); }
.btn-danger { background: linear-gradient(135deg, #d92d20, #b42318); color: #fff; box-shadow: 0 12px 30px rgba(180,35,24,.3); }
.btn-danger:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 18px 40px rgba(180,35,24,.4); }
