:root {
  --bg: #FAF6F0;
  --bg-soft: #F5F2ED;
  --panel: rgba(255, 255, 255, 0.6);
  --panel-strong: rgba(255, 255, 255, 0.85);
  --text: #2C2A29;
  --muted: rgba(44, 42, 41, 0.75);
  --line: rgba(44, 42, 41, 0.08);
  --gold: #B8860B;
  --gold-strong: #966b04;
  --rose: #b97a6a;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.05);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(216, 179, 111, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(185, 122, 106, 0.18), transparent 24%),
    linear-gradient(180deg, #FAF6F0 0%, #F5F2ED 100%);
  font-family: "Manrope", system-ui, sans-serif;
  min-height: 100vh;
}

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

button {
  font: inherit;
}

.ambient {
  position: fixed;
  inset: auto;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.ambient-left {
  top: -10rem;
  left: -12rem;
  background: rgba(216, 179, 111, 0.16);
}

.ambient-right {
  right: -12rem;
  top: 18rem;
  background: rgba(185, 122, 106, 0.14);
}

.topbar,
main,
.footer {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 3rem;
  margin: 0 auto;
  max-width: 1550px;
  position: sticky;
  top: 0;
  z-index: 1000; /* High z-index prevents page elements from overwriting header on scroll */
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(250, 246, 240, 0.96);
  border-bottom: 1.5px solid rgba(184, 134, 11, 0.22);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  transition: opacity 0.2s ease;
}

.brand-lockup:hover {
  opacity: 0.92;
}

.brand-logo-img {
  height: 3.2rem;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.08));
}

.brand-lockup h1,
.section-heading h2,
.hero-copy h2,
.service-card h3,
.package-card h3,
.portal-card h3,
.admin-card h3,
.quote-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.01em;
}

.brand-lockup h1 {
  margin: 0;
  font-size: 1.1rem;
}

.eyebrow {
  margin: 0 0 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--gold-strong);
}

.powered-by-badge {
  font-size: 0.75rem;
  color: var(--gold-strong);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.topnav a {
  position: relative;
  padding: 0.35rem 0.5rem;
  font-weight: 600;
  transition: color 0.25s ease;
}

.topnav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 99px;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.topnav a:hover {
  color: var(--gold-strong);
}

.topnav a:hover::after,
.topnav a.active::after {
  width: 80%;
}

/* MOBILE HAMBURGER TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* MOBILE NAV DRAWER & OVERLAY */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 290px;
  height: 100vh;
  background: #FAF6F0;
  z-index: 2000;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(44, 42, 41, 0.1);
}

.close-mobile-nav {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text);
  line-height: 1;
}

.mobile-topnav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-topnav a {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(44, 42, 41, 0.08);
  transition: color 0.2s ease;
}

.mobile-topnav a.active,
.mobile-topnav a:hover {
  color: var(--gold-strong);
}

@media (max-width: 900px) {
  .topnav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

.section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 88px);
}

.hero-copy h2 {
  margin: 0;
  max-width: 15ch;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.95;
}

.lead,
.section-heading p,
.service-card li,
.package-card p,
.portal-card p,
.admin-card p,
.quote-note p,
.footer p,
.quote-breakdown span,
.quote-topline,
.calc-badge,
.quote-card span,
.tracker span,
.tracker strong,
.download-list li {
  color: var(--muted);
}

.lead {
  max-width: 58ch;
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 1.5rem 0 0;
}

.hero-actions,
.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.button {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #8b6508, #b8860b);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.3);
}

.header-cart-btn {
  background: linear-gradient(135deg, #7a5a07, #b8860b, #593f02) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  border: 1.5px solid rgba(255, 230, 170, 0.45) !important;
  box-shadow: 0 6px 22px rgba(122, 90, 7, 0.38) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.header-cart-btn:hover {
  background: linear-gradient(135deg, #946f0c, #d4af37, #7a5a07) !important;
  box-shadow: 0 8px 28px rgba(184, 134, 11, 0.5) !important;
  transform: translateY(-2px) scale(1.03) !important;
  color: #ffffff !important;
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.45);
  border-color: rgba(44, 42, 41, 0.12);
  color: var(--text);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero-stats article,
.floating-card,
.service-card,
.package-card,
.quote-card,
.portal-card,
.admin-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.45));
  border: 1px solid rgba(44, 42, 41, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-stats article {
  padding: 1.1rem 1.2rem;
}

.hero-stats strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: var(--gold-strong);
}

.hero-stats span {
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 680px;
}

.floating-card {
  position: absolute;
  overflow: hidden;
}

.invitation-card {
  inset: 4% 12% auto auto;
  width: min(90%, 420px);
  padding: 1rem;
  animation: float 7s ease-in-out infinite;
}

.card-tag {
  display: inline-flex;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(216, 179, 111, 0.16);
  border: 1px solid rgba(216, 179, 111, 0.22);
  color: var(--gold-strong);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.invitation-mock {
  margin-top: 0.9rem;
  border-radius: 24px;
  min-height: 360px;
  padding: 2rem;
  background:
    radial-gradient(circle at top, rgba(240, 212, 160, 0.24), transparent 38%),
    linear-gradient(180deg, rgba(250, 246, 240, 0.96), rgba(245, 242, 237, 0.98));
  border: 1px solid rgba(44, 42, 41, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.invitation-ribbon {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  width: 60%;
  height: 8px;
  transform: rotate(22deg);
  background: linear-gradient(90deg, transparent, rgba(240, 212, 160, 0.8), transparent);
}

.invitation-mock p {
  margin: 0;
  color: var(--gold-strong);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.78rem;
}

.invitation-mock h3 {
  margin: 0.85rem 0 0.45rem;
  font-size: 3rem;
  line-height: 0.95;
}

.invitation-mock span {
  color: var(--muted);
  font-size: 0.92rem;
}

.small-card {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  min-width: 190px;
}

.small-card span {
  display: block;
  color: var(--gold-strong);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.small-card strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.96rem;
  line-height: 1.4;
}

.card-a {
  left: 0;
  top: 1rem;
  animation: float 8.5s ease-in-out infinite;
}

.card-b {
  left: 0.5rem;
  bottom: 7rem;
  animation: float 9.5s ease-in-out infinite reverse;
}

.card-c {
  right: 0.8rem;
  bottom: 2rem;
  animation: float 8s ease-in-out infinite;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.6rem;
}

.section-heading h2 {
  margin: 0.2rem 0 0.75rem;
  font-size: clamp(2rem, 3.6vw, 3.45rem);
  line-height: 1;
}

.service-grid,
.package-grid,
.portal-grid,
.admin-grid {
  display: grid;
  gap: 1rem;
}

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

.service-card,
.package-card,
.portal-card,
.admin-card {
  padding: 1.25rem;
}

.service-card h3,
.package-card h3,
.portal-card h3,
.admin-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.65rem;
}

.service-card ul,
.package-card ul,
.download-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
}

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

.package-card.featured {
  border-color: rgba(216, 179, 111, 0.36);
  background: linear-gradient(180deg, rgba(216, 179, 111, 0.16), rgba(255, 255, 255, 0.5));
}

.package-label {
  display: inline-flex;
  margin-bottom: 0.6rem;
  color: var(--gold-strong);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 1rem;
  align-items: start;
}

.calculator-panel,
.quote-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.35));
  border: 1px solid rgba(44, 42, 41, 0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.calculator-panel {
  padding: 1.25rem;
}

.calc-header,
.quote-topline,
.quote-breakdown div,
.grand-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.calc-header {
  margin-bottom: 1rem;
}

.calc-header h3,
.quote-card h3 {
  margin: 0.25rem 0 0;
  font-size: 2rem;
}

.calc-badge {
  display: inline-flex;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(216, 179, 111, 0.14);
  border: 1px solid rgba(216, 179, 111, 0.2);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.service-catalog {
  display: grid;
  gap: 0.95rem;
}

.service-group {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(44, 42, 41, 0.06);
  border-radius: 22px;
  padding: 1rem;
}

.service-group h4 {
  margin: 0 0 0.8rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
}

.service-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.service-option {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.85rem;
  border-radius: 16px;
  border: 1px solid rgba(44, 42, 41, 0.06);
  background: rgba(255, 255, 255, 0.7);
}

.service-option input {
  margin-top: 0.2rem;
  accent-color: var(--gold);
}

.service-option label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  cursor: pointer;
}

.service-option strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.service-option span {
  font-size: 0.82rem;
  color: var(--muted);
}

.quote-panel {
  position: sticky;
  top: 7.5rem;
}

.quote-card {
  padding: 1.3rem;
}

.quote-topline {
  margin-bottom: 1rem;
}

.quote-breakdown {
  display: grid;
  gap: 0.8rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(44, 42, 41, 0.06);
  border-bottom: 1px solid rgba(44, 42, 41, 0.06);
}

.quote-breakdown div {
  font-size: 0.96rem;
}

.quote-breakdown strong {
  font-size: 1rem;
}

.grand-total {
  margin-top: 1rem;
  padding: 1rem 0 0.3rem;
}

.grand-total span {
  font-size: 1.05rem;
  color: var(--gold-strong);
}

.grand-total strong {
  font-size: 2rem;
  color: var(--gold-strong);
  font-family: "Cormorant Garamond", serif;
}

.quote-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

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

.tracker {
  display: grid;
  gap: 0.65rem;
}

.track-bar {
  height: 10px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.track-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(240, 212, 160, 0.95), rgba(216, 179, 111, 0.7));
}

.footer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(44, 42, 41, 0.06);
}

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

@media (max-width: 1100px) {
  .hero,
  .calculator-layout,
  .service-grid,
  .package-grid,
  .portal-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 560px;
  }

  .quote-panel {
    position: static;
  }
}

@media (max-width: 900px) {
  .topnav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}

@media (max-width: 768px) {
  .topbar {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0.65rem 0.9rem !important;
    gap: 0.5rem !important;
    flex-wrap: nowrap !important;
  }

  .brand-lockup {
    gap: 0.55rem !important;
  }

  .brand-logo-img {
    height: 2.1rem !important;
    max-width: 90px !important;
  }

  .brand-lockup h1 {
    font-size: 0.92rem !important;
    line-height: 1.1 !important;
  }

  .brand-lockup .eyebrow {
    font-size: 0.62rem !important;
    letter-spacing: 0.12em !important;
  }

  .header-cart-btn {
    padding: 0.35rem 0.75rem !important;
    font-size: 0.78rem !important;
    gap: 0.25rem !important;
    border-radius: 8px !important;
  }

  .cart-badge-count {
    min-width: 18px !important;
    height: 18px !important;
    font-size: 0.7rem !important;
    padding: 0 4px !important;
  }

  .section {
    padding: 2.25rem 1rem !important;
  }

  .page-hero {
    padding: 2rem 1rem !important;
  }

  .page-hero h2, .section-heading h2, .hero-copy h2 {
    font-size: clamp(1.8rem, 7vw, 2.5rem) !important;
    line-height: 1.1 !important;
  }

  .lead {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }

  .service-grid, .package-grid, .portal-grid, .admin-grid, .gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }

  .calculator-layout {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .floating-cart-btn {
    bottom: 16px !important;
    right: 16px !important;
    padding: 0.65rem 1rem !important;
    font-size: 0.82rem !important;
  }

  .global-toast-msg {
    width: 90% !important;
    bottom: 20px !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.82rem !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
  }

  .footer {
    flex-direction: column !important;
    gap: 1.25rem !important;
  }
}

@media (max-width: 480px) {
  .topbar {
    padding: 0.5rem 0.75rem !important;
  }

  .brand-lockup h1 {
    font-size: 0.85rem !important;
  }

  .brand-lockup .eyebrow {
    display: none !important;
  }
}

@media print {
  body {
    background: #ffffff !important;
    color: #111111 !important;
  }

  .topbar,
  .hero-actions,
  .hero-visual,
  .topnav,
  .button,
  .quote-actions,
  .footer,
  .admin-section,
  .floating-cart-btn,
  .global-toast-msg,
  .mobile-nav-overlay,
  .mobile-nav-drawer,
  #portal {
    display: none !important;
  }

  .section {
    padding: 0.5rem 0 !important;
    max-width: none !important;
  }

  .calculator-layout {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .calculator-panel,
  .quote-card {
    box-shadow: none !important;
    border: 1px solid #ccc !important;
    background: #ffffff !important;
    padding: 1rem !important;
  }

  .page-hero-graphic {
    display: none !important;
  }

  .invitation-details-block {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }
}

.page-shell main {
  padding-bottom: 1rem;
}

.page-hero {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

.page-hero-copy h2 {
  margin: 0.25rem 0 0.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 0.95;
}

.page-hero-graphic,
.collage-card,
.graphic-band-grid img,
.portfolio-card img {
  border: 1px solid rgba(44, 42, 41, 0.1);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow);
}

.page-hero-graphic {
  padding: 1rem;
}

.page-hero-graphic img,
.graphic-band-grid img,
.portfolio-card img,
.graphic-img {
  width: 100%;
  display: block;
  height: auto;
}

.graphic-img {
  border-radius: 22px;
}

.collage-visual {
  min-height: 620px;
}

.collage-card {
  overflow: hidden;
  padding: 0;
}

.collage-card.card-a {
  width: min(78%, 360px);
  top: 0.5rem;
  left: 6%;
}

.collage-card.card-b {
  width: min(84%, 420px);
  right: 0;
  top: 12%;
}

.collage-card.card-c {
  width: min(78%, 380px);
  left: 14%;
  bottom: 2%;
}

.collage-note {
  right: 2%;
  top: 48%;
  transform: translateY(-50%);
  width: 250px;
  padding: 1rem 1.1rem;
  z-index: 2;
}

.page-links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.page-link-card {
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.35));
  border: 1px solid rgba(44, 42, 41, 0.08);
  box-shadow: var(--shadow);
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.page-link-card span {
  color: var(--gold-strong);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
}

.page-link-card strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  line-height: 1.05;
}

.graphic-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1rem;
  align-items: center;
}

.graphic-band-copy h2 {
  margin: 0.2rem 0 0.8rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.graphic-band-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.comparison-table {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(44, 42, 41, 0.08);
  box-shadow: var(--shadow);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.7fr);
  gap: 0.75rem;
  align-items: center;
}

.comparison-row span {
  padding: 0.9rem 0.95rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
}

.comparison-row.header span {
  background: rgba(216, 179, 111, 0.12);
  color: var(--gold-strong);
  font-weight: 700;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.portfolio-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.35));
  border: 1px solid rgba(44, 42, 41, 0.08);
  box-shadow: var(--shadow);
}

.portfolio-card div {
  padding: 1rem 1.1rem 1.2rem;
}

.portfolio-card h3 {
  margin: 0.25rem 0 0.55rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.85rem;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.before-after-card {
  padding: 1.4rem;
  border-radius: var(--radius-xl);
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border: 1px solid rgba(44, 42, 41, 0.08);
  box-shadow: var(--shadow);
}

.before-after-card span {
  color: var(--gold-strong);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
}

.before-after-card strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  line-height: 1;
  margin-top: 0.65rem;
}

.before-after-card.muted {
  background: rgba(255, 255, 255, 0.45);
}

.before-after-card.highlighted {
  background: linear-gradient(135deg, rgba(216, 179, 111, 0.18), rgba(255, 255, 255, 0.45));
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-card {
  padding: 1.35rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.35));
  border: 1px solid rgba(44, 42, 41, 0.08);
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin-top: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(44, 42, 41, 0.1);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(44, 42, 41, 0.45);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(216, 179, 111, 0.35);
  border-color: rgba(216, 179, 111, 0.4);
}

@media (max-width: 1100px) {
  .page-hero,
  .graphic-band,
  .portfolio-grid,
  .before-after-grid,
  .contact-grid,
  .page-links-grid {
    grid-template-columns: 1fr;
  }

  .collage-visual {
    min-height: 760px;
  }

  .comparison-row {
    grid-template-columns: 1.2fr repeat(3, 0.65fr);
  }
}

@media (max-width: 820px) {
  .collage-visual {
    min-height: 900px;
  }

  .collage-note {
    position: absolute;
    top: auto;
    bottom: 1rem;
    right: 1rem;
    transform: none;
  }
}


@media (max-width: 820px) {
  .button {
    padding: 0.7rem 1.1rem;
    font-size: 0.9rem;
  }
  .section {
    padding: 3rem 1.2rem;
  }
}

/* CAROUSEL STYLES */
.gallery-img-wrapper {
  position: relative;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(44, 42, 41, 0.15);
  color: var(--text);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.carousel-btn:hover {
  background: var(--gold);
  color: white;
}

.carousel-btn.prev { left: 8px; }
.carousel-btn.next { right: 8px; }

.carousel-counter {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.65);
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 5;
}

.service-smart-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1) !important;
  border-color: rgba(184, 134, 11, 0.3) !important;
}

/* GLOBAL GALLERY & FILTER BUTTON STYLES */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.filter-btn {
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(44, 42, 41, 0.15);
  color: var(--text);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.filter-btn:hover {
  background: #ffffff;
  border-color: var(--gold);
  color: var(--gold-strong);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--gold-strong);
  border-color: var(--gold-strong);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(150, 107, 4, 0.35);
}

.service-smart-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(44, 42, 41, 0.12);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-shadow: var(--shadow);
}

.service-smart-card .gallery-img-wrapper {
  height: 200px;
  background: #FAF6F0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* VISTAPRINT-STYLE E-COMMERCE CARDS */
.vistaprint-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem 1.5rem;
}

.vistaprint-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
}

.vistaprint-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: #EFECE6;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.vistaprint-img-box.video-card-box {
  aspect-ratio: 9 / 14 !important;
  background: #0c0b0a !important;
  border: 1.5px solid rgba(184, 134, 11, 0.3) !important;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.6);
}

.vistaprint-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.vistaprint-img-box video,
.gallery-img-wrapper video {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  background: #0c0b0a !important;
  border-radius: inherit;
  transition: transform 0.35s ease;
}

.vistaprint-card:hover .vistaprint-img-box img,
.vistaprint-card:hover .vistaprint-img-box video {
  transform: scale(1.02);
}

.vistaprint-heart {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  cursor: pointer;
  z-index: 5;
  transition: transform 0.2s ease, background 0.2s ease;
}

.vistaprint-heart:hover {
  transform: scale(1.1);
  background: #fff0f3;
}

.vistaprint-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #0284c7;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  z-index: 5;
  letter-spacing: 0.3px;
}

.vistaprint-title {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.25;
}

.vistaprint-subtitle {
  font-size: 0.8rem;
  color: #666666;
  margin: 0;
}

.vistaprint-rating {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  color: #e67e22;
  font-weight: 700;
}

.vistaprint-rating span.count {
  color: #888888;
  font-weight: 400;
}

.vistaprint-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.2rem;
}

.vistaprint-price {
  font-size: 1rem;
  font-weight: 800;
  color: #111111;
}

.vistaprint-add-btn {
  background: var(--gold-strong);
  color: #ffffff;
  border: none;
  padding: 0.45rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.vistaprint-add-btn:hover {
  background: #7a5602;
  transform: translateY(-1px);
}

/* LIGHTBOX FULLSCREEN MODAL */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  background: #111111;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #ffffff;
  font-size: 2.2rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
  transition: transform 0.2s ease;
}

.lightbox-close:hover {
  transform: scale(1.2);
  color: var(--gold);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.2s ease;
}

.lightbox-nav-btn:hover {
  background: var(--gold);
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav-btn.prev { left: -60px; }
.lightbox-nav-btn.next { right: -60px; }

@media (max-width: 768px) {
  .lightbox-nav-btn.prev { left: 10px; }
  .lightbox-nav-btn.next { right: 10px; }
}

/* ==========================================================================
   FLOATING QUICK CART & INTERACTIVE TOAST UX
   ========================================================================== */
.floating-cart-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9990;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, #111111, #2c2a29);
  color: #f7e6c4;
  border: 1.5px solid rgba(216, 179, 111, 0.4);
  border-radius: 99px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.floating-cart-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.45);
  border-color: var(--gold);
  color: #ffffff;
}

.cart-badge-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 21px;
  height: 21px;
  padding: 0 6px;
  background: #111111;
  color: #f7e6c4;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 800;
  margin-left: 0.35rem;
  border: 1px solid rgba(247, 230, 196, 0.4);
}

.global-toast-msg {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(40px);
  background: linear-gradient(135deg, #1f1d1b, #2c2a29);
  color: #ffffff;
  border: 1px solid rgba(216, 179, 111, 0.5);
  padding: 0.85rem 1.4rem;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  font-size: 0.92rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.global-toast-msg.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.toast-cart-btn {
  background: linear-gradient(135deg, #d8b36f, #b8860b);
  color: #111111;
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
}

.toast-cart-btn:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Service Search Bar */
.service-search-wrapper {
  margin-bottom: 1.5rem;
  position: relative;
  max-width: 500px;
}

.service-search-input {
  width: 100%;
  padding: 0.85rem 1.25rem 0.85rem 2.8rem;
  border-radius: 99px;
  border: 1.5px solid rgba(184, 134, 11, 0.25);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  font-size: 0.95rem;
  color: var(--text);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  outline: none;
  transition: all 0.3s ease;
}

.service-search-input:focus {
  border-color: var(--gold-strong);
  box-shadow: 0 4px 20px rgba(184, 134, 11, 0.15);
  background: #ffffff;
}

.service-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-strong);
  font-size: 1rem;
  pointer-events: none;
}