/* ==========================================================================
   DESIGN TOKENS
   ========================================================================== */
:root {
  --color-linen-base: #FAF6F0;
  --color-gold-brass: #d4af37;
  --color-dark-gold: #b8860b;

  --cream-50: #FFFDF9;
  --cream-100: #FFF8F2;
  --cream-200: #FAF1E7;
  --peach-200: #F3DEC9;
  --peach-400: #E2AE92;
  --rose-500: #C96F51;
  --sage-100: #E6EDE3;
  --sage-200: #BED2C0;
  --sage-500: #72967E;

  --ink-900: #1B2636;
  --ink-700: #33445C;
  --ink-500: #627794;
  --ink-300: #9EB0C7;

  --radius-xl: 32px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;

  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-hand: "Playfair Display", Georgia, serif;
  --font-sans: "Manrope", sans-serif;

  --shadow-card: 0 10px 30px rgba(83, 62, 44, 0.07), 0 2px 4px rgba(0, 0, 0, 0.02);
  --shadow-hover: 0 20px 45px rgba(83, 62, 44, 0.12), 0 4px 10px rgba(0, 0, 0, 0.03);
}

/* ==========================================================================
   GLOBAL RESETS
   ========================================================================== */
* {
  box-sizing: border-box;
}

::selection {
  background: rgba(212, 175, 55, 0.22);
  color: var(--ink-900);
}

:root {
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 175, 55, 0.35) transparent;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.35);
  border-radius: 3px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--ink-900);
  background:
    radial-gradient(circle at top right, rgba(243, 222, 201, 0.65), transparent 45%),
    radial-gradient(circle at 10% 20%, rgba(190, 210, 192, 0.35), transparent 35%),
    linear-gradient(180deg, #FFFDF8 0%, #FAF5EE 50%, #FAF1E5 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* Elegant sunlit linen grid overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    linear-gradient(rgba(190, 210, 192, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(190, 210, 192, 0.28) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 1;
}

/* Paper grain noise overlay — gives everything a tactile paper feel */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

a {
  color: inherit;
}

button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

/* ==========================================================================
   SCROLL-TRIGGERED REVEAL SYSTEM
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 750ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 750ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="left"] {
  transform: translateX(-32px) translateY(10px);
}

[data-reveal="right"] {
  transform: translateX(32px) translateY(10px);
}

[data-reveal].in-view {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   PAGE HEADER & GOLD RIBBON
   ========================================================================== */
.gold-woven-ribbon-accent {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.4) 12%,
    var(--color-gold-brass) 38%,
    #f5e3b5 50%,
    var(--color-gold-brass) 62%,
    rgba(212, 175, 55, 0.4) 88%,
    transparent 100%
  );
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  z-index: 100;
  animation: ribbon-glow 6s ease-in-out infinite;
}

@keyframes ribbon-glow {
  0%, 100% { opacity: 0.88; }
  50% { opacity: 1; }
}

.page-shell {
  position: relative;
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 64px;
  z-index: 5;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  border-bottom: 1px dashed rgba(83, 62, 44, 0.12);
  padding-bottom: 24px;
}

.site-signature {
  display: block;
  text-decoration: none;
  z-index: 10;
  transition: opacity 200ms ease;
}

.site-signature:hover {
  opacity: 0.8;
}

.site-signature:focus-visible {
  outline: 2px solid var(--color-gold-brass);
  outline-offset: 4px;
  border-radius: 4px;
}

.site-logo {
  height: 72px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

.site-header-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 99px;
  background: var(--color-gold-brass);
  color: var(--ink-900);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.28);
}

.status-indicator-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink-900);
  opacity: 0.55;
  animation: pulse-dot 2.2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.4; }
  50% { transform: scale(1.15); opacity: 0.8; }
  100% { transform: scale(0.9); opacity: 0.4; }
}

/* ==========================================================================
   HERO SECTION — DRAMATIC TYPOGRAPHIC STAGE
   ========================================================================== */
.landing-main {
  display: grid;
  gap: 28px;
}

.desk-stage-container {
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: relative;
  overflow: visible;
}

/* Decorative botanical floral accent — large, very subtle, right-side atmospheric */
.hero-floral-accent {
  position: absolute;
  top: -60px;
  right: -80px;
  width: 360px;
  max-width: 38vw;
  opacity: 0.085;
  pointer-events: none;
  transform: rotate(12deg) scale(1.05);
  mix-blend-mode: multiply;
  z-index: 0;
  filter: saturate(0.6);
}

.hero-floral-accent img {
  width: 100%;
  height: auto;
  display: block;
}

/* Hero header: centered, typographic stage */
.desk-reveal-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  animation: reveal-fade 900ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  position: relative;
  z-index: 2;
}

@keyframes reveal-fade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Letterpress ornamental rule */
.hero-ornament {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--ink-500);
  opacity: 0.8;
}

/* Opening soon badge */
.construction-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--sage-100) 0%, rgba(255, 253, 250, 0.9) 100%);
  border: 1px solid var(--sage-200);
  padding: 6px 16px;
  border-radius: 99px;
  color: var(--sage-500);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  box-shadow:
    0 2px 8px rgba(114, 150, 126, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

/* Hero headline — dramatic letterpress display */
.desk-reveal-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 18px;
  line-height: 1.06;
  letter-spacing: -0.01em;
  /* Letterpress ink emboss effect */
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9),
    0 -0.5px 0 rgba(83, 62, 44, 0.2),
    0 4px 18px rgba(83, 62, 44, 0.06);
}

/* Italic italic emphasis — "crafted by hand." */
.desk-reveal-header h2 em {
  font-style: italic;
  color: var(--rose-500);
  font-weight: 600;
}

/* Decorative gold rule under headline */
.desk-reveal-header h2::after {
  content: "";
  display: block;
  width: 52px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--color-gold-brass) 40%, var(--color-gold-brass) 60%, transparent);
  margin: 18px auto 0;
  opacity: 0.7;
}

.desk-reveal-header p {
  margin: 0;
  color: var(--ink-700);
  font-size: 1rem;
  line-height: 1.68;
  font-family: var(--font-sans);
  max-width: 580px;
  margin: 0 auto;
}

/* What we make: specialties strip */
.specialties-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 10px;
  margin-top: 24px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.specialties-row .sep {
  color: var(--color-gold-brass);
  opacity: 0.7;
  font-size: 0.8rem;
}

/* Hero scroll CTA link */
.hero-register-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  color: var(--rose-500);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: gap 250ms cubic-bezier(0.16, 1, 0.3, 1), color 200ms ease;
  cursor: pointer;
}

.hero-register-link:hover {
  gap: 13px;
  color: #a85537;
}

.hero-register-link:focus-visible {
  outline: 2px solid var(--rose-500);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ==========================================================================
   DESK WORKSPACE GRID
   ========================================================================== */
.desk-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: start;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   LEFT COLUMN: OVERLAPPING STATIONERY SPREAD
   ========================================================================== */
.stationery-desk-spread {
  position: relative;
  width: 100%;
  padding: 24px 0;
}

.desk-cards-container {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
  padding: 12px 6px 20px;
}

/* High-fidelity cotton paper invitation cards */
.desk-card {
  position: relative;
  flex: 1;
  min-width: 0;
  background: linear-gradient(135deg, var(--cream-100) 0%, var(--peach-200) 100%);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1.5px solid var(--color-gold-brass);
  box-shadow: var(--shadow-card);
  transition:
    transform 400ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 400ms cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
  /* Subtle paper grain on cards */
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='c' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23c)' opacity='0.03'/%3E%3C/svg%3E"),
    linear-gradient(135deg, var(--cream-100) 0%, var(--peach-200) 100%);
}

.card-border-dashed {
  border-radius: var(--radius-md);
  padding: 24px;
  height: 100%;
  position: relative;
}

/* Social platform mark (brand logo + name) */
.social-platform-mark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  color: var(--ink-500);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-brand-mark {
  opacity: 0.65;
  flex-shrink: 0;
}

.social-brand-mark--instagram {
  color: #C13584;
  opacity: 0.7;
}

/* Facebook card: brand-blue chip */
.card--facebook .social-platform-mark {
  background: rgba(24, 119, 242, 0.06);
  border: 1px solid rgba(24, 119, 242, 0.14);
  padding: 4px 10px 4px 6px;
  border-radius: 99px;
  color: rgba(24, 119, 242, 0.85);
}

.card--facebook .social-brand-mark {
  opacity: 1;
  color: rgba(24, 119, 242, 0.85);
}

/* Instagram card: brand-pink chip */
.card--instagram .social-platform-mark {
  background: rgba(193, 53, 132, 0.06);
  border: 1px solid rgba(193, 53, 132, 0.14);
  padding: 4px 10px 4px 6px;
  border-radius: 99px;
  color: rgba(193, 53, 132, 0.85);
}

.card--instagram .social-brand-mark {
  opacity: 1;
  color: rgba(193, 53, 132, 0.85);
}

.card-suite-art {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 6px;
  margin-bottom: 14px;
  box-shadow: 0 2px 12px rgba(83, 62, 44, 0.12);
}

.card-wax-accent {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  margin-bottom: 10px;
  box-shadow: 0 2px 10px rgba(83, 62, 44, 0.18);
}

.desk-card h3 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--ink-900);
  margin: 10px 0;
  line-height: 1.15;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
}

.card-body-text {
  margin: 0 0 24px;
  font-size: 0.91rem;
  color: var(--ink-700);
  line-height: 1.6;
  text-shadow: 0 0.5px 0 rgba(255, 255, 255, 0.8);
}

/* Desktop: flex side-by-side, gentle outward tilt for stationery-spread feel */
.card--facebook {
  transform: rotate(-1.5deg);
  transform-origin: bottom center;
  margin-top: 0;
}

.card--instagram {
  transform: rotate(1.5deg);
  transform-origin: bottom center;
  margin-top: 20px;
}

.desk-card:hover {
  box-shadow: var(--shadow-hover);
  z-index: 15;
}

.ticket-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 99px;
  background: var(--sage-100);
  border: 1px solid rgba(114, 150, 126, 0.18);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-500);
  margin-bottom: 4px;
}

.ticket-status-pill .status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage-500);
  animation: pulse-light 1.4s infinite;
}

@keyframes pulse-light {
  0%, 100% { opacity: 0.5; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.15); }
}

.ticket-category-tag {
  display: inline-block;
  color: var(--rose-500);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.card-cta-row {
  margin-top: auto;
}

/* ==========================================================================
   RIGHT COLUMN: THE GUESTBOOK LEDGER
   ========================================================================== */
.ledger-column {
  width: 100%;
}

.artisan-ledger {
  display: grid;
  grid-template-columns: 24px 1fr;
  background: #2a180c;
  border-radius: 12px 18px 18px 12px;
  box-shadow:
    0 20px 50px rgba(42, 24, 12, 0.16),
    0 2px 6px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
  transition:
    transform 400ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 400ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, box-shadow;
}

.artisan-ledger:hover {
  box-shadow:
    0 30px 60px rgba(42, 24, 12, 0.24),
    0 4px 10px rgba(0, 0, 0, 0.07);
}

/* Realistic bound leather spine */
.ledger-spine {
  background: linear-gradient(to right, #1d0f06 0%, #301b0e 45%, #180b03 90%, #0d0601 100%);
  border-right: 1.5px solid #0d0601;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 24px 0;
  box-shadow: inset 1px 0 3px rgba(255, 255, 255, 0.05);
}

.leather-sewing {
  height: 8px;
  background: var(--color-gold-brass);
  opacity: 0.65;
  margin: 0 4px;
  border-radius: 99px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.ledger-pages {
  background:
    linear-gradient(to right, #FFFDF8, #FFF5EC 14px, #FFFDFB 42px);
  padding: 44px 32px 40px;
  position: relative;
  min-height: 520px;
}

/* Vertical binder margin line */
.ledger-pages::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  bottom: 0;
  width: 1px;
  background: rgba(201, 111, 81, 0.14);
}

.ledger-title-header {
  margin-bottom: 24px;
  padding-left: 12px;
}

.ledger-eyebrow {
  display: block;
  color: var(--rose-500);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.ledger-title-header h2 {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 8px;
  line-height: 1.15;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9),
    0 3px 10px rgba(83, 62, 44, 0.05);
}

.ledger-subtitle {
  margin: 0;
  font-size: 0.94rem;
  color: var(--ink-500);
  line-height: 1.58;
}

/* ==========================================================================
   PREMIUM FLOATING LABEL FORM
   ========================================================================== */
.inquiry-form {
  display: grid;
  gap: 18px;
  margin-top: 14px;
  padding-left: 12px;
  z-index: 5;
  position: relative;
}

.form-field-group {
  position: relative;
  width: 100%;
}

.form-field-group input,
.form-field-group textarea {
  width: 100%;
  min-height: 54px;
  padding: 22px 14px 6px;
  border: none;
  border-bottom: 1.5px solid rgba(84, 97, 118, 0.22);
  background: transparent;
  color: var(--ink-900);
  font-family: var(--font-hand);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 500;
  outline: none;
  border-radius: 0;
  transition: border-color 220ms ease;
  box-shadow: none;
}

.form-field-group select {
  width: 100%;
  min-height: 54px;
  padding: 22px 14px 6px;
  border: none;
  border-bottom: 1.5px solid rgba(84, 97, 118, 0.22);
  background: transparent;
  color: var(--ink-900);
  font-family: var(--font-sans);
  font-size: 0.94rem;
  font-style: normal;
  font-weight: 600;
  outline: none;
  border-radius: 0;
  transition: border-color 220ms ease;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%231B2636' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px bottom 12px;
  background-size: 18px;
  padding-right: 36px;
  cursor: pointer;
}

.form-field-group select option {
  font-family: var(--font-sans) !important;
  font-style: normal !important;
  font-weight: 500 !important;
  color: var(--ink-900) !important;
  background-color: #FFFDF9 !important;
  padding: 12px !important;
}

.form-field-group textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.5;
}

.form-field-group label {
  position: absolute;
  left: 14px;
  top: 16px;
  color: #8a7060; /* warm taupe — reads against linen, not cool/grey */
  font-size: 0.95rem;
  font-weight: 600;
  pointer-events: none;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), font-size 220ms ease, color 220ms ease;
  transform-origin: left top;
  font-family: var(--font-sans);
  font-style: normal;
}

/* Floating label focus states */
.form-field-group input:focus ~ label,
.form-field-group input:not(:placeholder-shown) ~ label,
.form-field-group textarea:focus ~ label,
.form-field-group textarea:not(:placeholder-shown) ~ label,
.form-field-group select:focus ~ label,
.form-field-group select:valid ~ label {
  transform: translateY(-13px) scale(0.75);
  color: var(--rose-500);
  font-weight: 800;
}

.form-field-group input:focus,
.form-field-group select:focus,
.form-field-group textarea:focus {
  border-bottom-color: var(--rose-500);
}

/* Accessible focus-visible ring for keyboard nav */
.form-field-group input:focus-visible,
.form-field-group select:focus-visible,
.form-field-group textarea:focus-visible {
  outline: 2px solid rgba(201, 111, 81, 0.4);
  outline-offset: 2px;
}

.honeypot {
  display: none !important;
}

/* Bot Mitigation Styles */
.turnstile-slot {
  margin: 10px 0 6px;
  display: flex;
  justify-content: center;
}

.local-verify-slot {
  margin: 10px 0 6px;
  padding-left: 12px;
  animation: reveal-verify-box 550ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes reveal-verify-box {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.local-verify-box {
  background: #FFFDF9;
  border: 1.5px dashed rgba(212, 175, 55, 0.44);
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  box-shadow:
    inset 0 1px 3px rgba(0, 0, 0, 0.03),
    0 6px 14px rgba(83, 62, 44, 0.02);
}

.verify-instructions {
  margin: 0 0 12px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink-700);
  font-family: var(--font-sans);
}

#local-verify-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border-radius: 99px;
  padding: 10px 22px;
  border: 1.5px solid rgba(212, 175, 55, 0.5);
  background: transparent;
  color: var(--ink-900);
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
  font-style: normal;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

#local-verify-btn:hover {
  transform: translateY(-1.5px);
  background-color: var(--cream-100);
  border-color: var(--color-gold-brass);
}

#local-verify-btn:focus-visible {
  outline: 2px solid var(--color-gold-brass);
  outline-offset: 3px;
}

#local-verify-btn.is-verified {
  background-color: var(--sage-500) !important;
  color: #ffffff !important;
  border-color: var(--sage-500) !important;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(114, 150, 126, 0.28);
}

.stamp-svg-icon {
  flex-shrink: 0;
  transition: transform 320ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#local-verify-btn.is-verified .stamp-svg-icon {
  transform: scale(1.2) rotate(360deg);
}

.form-actions {
  margin-top: 8px;
}

.form-status {
  min-height: 1.6rem;
  margin: 8px 0 0;
  font-size: 0.92rem;
  line-height: 1.5;
  font-weight: 600;
  padding-left: 12px;
}

.form-status.is-error { color: #9c4530; }
.form-status.is-success { color: #385e44; }

/* Dynamic 3D wax seal ledger stamp */
.ledger-stamp-seal {
  position: absolute;
  bottom: 30px;
  right: 32px;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transform: scale(3.5) rotate(22deg);
  transition: transform 380ms cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 300ms ease;
}

.ledger-stamp-seal.is-stamped {
  opacity: 1;
  transform: scale(1) rotate(-11deg);
}

.wax-seal-wax {
  position: relative;
  width: 82px;
  height: 82px;
  background: radial-gradient(circle at 35% 35%, #ffd254 0%, var(--color-gold-brass) 55%, var(--color-dark-gold) 90%, #7e6300 100%);
  border-radius: 50%;
  box-shadow:
    0 12px 26px rgba(83, 62, 44, 0.28),
    0 1px 3px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.wax-seal-wax::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.wax-seal-initial {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #FFFDF9;
  text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.22), 1px 1px 1px rgba(255, 255, 255, 0.28);
  text-transform: uppercase;
}

/* ==========================================================================
   PREMIUM BUTTONS
   ========================================================================== */

/* Gold shimmer keyframe for primary CTA */
@keyframes shimmer-sweep {
  0% { left: -120%; }
  100% { left: 200%; }
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 12px 26px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 99px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
  background: none;
  color: inherit;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  overflow: hidden;
}

.button:focus-visible {
  outline: 2px solid var(--color-gold-brass);
  outline-offset: 3px;
}

.button-primary {
  background: var(--ink-900);
  color: #FFFDF9;
  border-color: var(--color-gold-brass);
  box-shadow:
    0 4px 14px rgba(27, 38, 54, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Gold shimmer sweep on primary buttons */
.button-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.22) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  animation: shimmer-sweep 5s ease-in-out infinite;
  pointer-events: none;
}

.button-primary:hover {
  background: #233147;
  transform: translateY(-1.5px);
  box-shadow:
    0 8px 22px rgba(27, 38, 54, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.button-primary:active {
  transform: translateY(0);
}

.button-primary:disabled {
  background: var(--ink-500);
  border-color: rgba(212, 175, 55, 0.3);
  cursor: not-allowed;
  opacity: 0.7;
}

.button-primary:disabled::after {
  animation: none;
}

.button-secondary {
  background: #FFFDF9;
  color: var(--ink-900);
  border-color: rgba(212, 175, 55, 0.52);
  box-shadow: 0 2px 4px rgba(83, 62, 44, 0.02);
}

.button-secondary:hover {
  background: var(--cream-100);
  border-color: var(--color-gold-brass);
  color: var(--ink-900);
  transform: translateY(-1.5px);
  box-shadow: 0 4px 12px rgba(83, 62, 44, 0.07);
}

.button-secondary:active {
  transform: translateY(0);
}

.button-large {
  padding: 15px 32px;
  font-size: 1rem;
  border-radius: 99px;
}

#ledger-submit-btn {
  width: 100%;
  margin-top: 10px;
  border: 1.5px solid var(--color-gold-brass) !important;
  background: var(--ink-900) !important;
  color: #FFFDF9 !important;
  font-weight: 800 !important;
  box-shadow:
    0 4px 14px rgba(27, 38, 54, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

#ledger-submit-btn:hover {
  background: #233147 !important;
  transform: translateY(-1.5px);
  box-shadow:
    0 8px 22px rgba(27, 38, 54, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

#ledger-submit-btn:active {
  transform: translateY(0);
}

/* ==========================================================================
   AMBIENT CANVAS PARTICLES
   ========================================================================== */
#foliage-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  width: 100vw;
  height: 100vh;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  margin-top: 56px;
  border-top: 1px dashed rgba(83, 62, 44, 0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--ink-500);
}

.footer-brand-text p {
  margin: 0;
  line-height: 1.6;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--ink-500);
  text-decoration: none;
  transition: all 200ms ease;
  cursor: pointer;
}

.footer-social-btn:hover {
  border-color: var(--color-gold-brass);
  color: var(--ink-900);
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-1px);
}

.footer-social-btn:focus-visible {
  outline: 2px solid var(--color-gold-brass);
  outline-offset: 3px;
}

/* ==========================================================================
   RESPONSIVE LAYOUT
   ========================================================================== */
@media (max-width: 900px) {
  .desk-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stationery-desk-spread {
    padding: 10px 0;
  }

  .desk-cards-container {
    flex-direction: column;
    gap: 20px;
    padding: 0;
  }

  .desk-card {
    width: 100%;
    margin-top: 0 !important;
    transform: none !important;
  }

  .hero-floral-accent {
    width: 240px;
    right: -40px;
    top: -30px;
    opacity: 0.07;
  }
}

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .site-logo {
    height: 56px;
  }

  .site-header-meta {
    width: 100%;
    justify-content: space-between;
  }

  .ledger-pages {
    padding: 32px 18px 28px;
  }

  .specialties-row {
    gap: 6px 8px;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .footer-brand-text {
    text-align: center;
  }
}

@media (max-width: 540px) {
  .desk-reveal-header h2 {
    font-size: 2rem;
  }

  .hero-floral-accent {
    display: none;
  }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  #foliage-canvas {
    display: none;
  }

  body::after {
    display: none;
  }

  .gold-woven-ribbon-accent {
    animation: none;
  }

  .status-indicator-dot,
  .badge-icon,
  .ticket-status-pill .status-dot {
    animation: none !important;
  }

  .button,
  .desk-card,
  .artisan-ledger,
  .site-signature,
  .footer-social-btn,
  .hero-register-link,
  [data-reveal] {
    transition: none !important;
  }

  .button-primary::after {
    animation: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
