/* =========================================================
   Kiniththa MAIN WEBSITE
   Digital Invitations for Every Occasion
========================================================= */

/* =========================
   GLOBAL VARIABLES
========================= */

:root {
  --primary: #183d31;
  --primary-dark: #0d241d;
  --primary-deep: #071912;
  --primary-light: #285948;

  --gold: #d8b36a;
  --gold-light: #f0d79e;
  --gold-dark: #a77c2f;

  --cream: #fbf8f2;
  --cream-dark: #f2eadc;
  --cream-warm: #efe4d4;

  --white: #ffffff;
  --black: #111713;

  --text: #26322d;
  --text-light: #68736e;

  --border: rgba(24, 61, 49, 0.13);
  --border-gold: rgba(216, 179, 106, 0.38);

  --shadow-small: 0 10px 30px rgba(19, 45, 36, 0.08);
  --shadow-medium: 0 18px 50px rgba(19, 45, 36, 0.13);
  --shadow-large: 0 30px 80px rgba(8, 28, 21, 0.18);

  --radius-small: 12px;
  --radius-medium: 20px;
  --radius-large: 30px;

  --transition: 0.3s ease;
}


/* =========================
   RESET
========================= */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-height: 100vh;
  overflow-x: hidden;

  font-family:
    "Segoe UI",
    "Noto Sans Sinhala",
    Arial,
    sans-serif;

  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

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

button {
  cursor: pointer;
}

ul {
  list-style: none;
}

section {
  position: relative;
}

[hidden] {
  display: none !important;
}

::selection {
  background: var(--gold);
  color: var(--primary-dark);
}


/* =========================
   SHARED LAYOUT
========================= */

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-heading h2 {
  margin-top: 12px;

  color: var(--primary-dark);

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.16;
}

.section-heading h2 span {
  display: block;
  color: var(--gold-dark);
}

.section-heading > p:last-child {
  max-width: 700px;
  margin: 20px auto 0;

  color: var(--text-light);
  font-size: 1.02rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: var(--gold-dark);

  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}


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

.primary-button,
.secondary-button,
.template-button,
.package-button,
.nav-order-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  border: 1px solid transparent;
  border-radius: 999px;

  font-weight: 700;

  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.primary-button {
  min-height: 54px;
  padding: 14px 25px;

  background: var(--gold);
  color: var(--primary-dark);

  box-shadow: 0 14px 35px rgba(216, 179, 106, 0.28);
}

.primary-button:hover {
  transform: translateY(-3px);
  background: var(--gold-light);
  box-shadow: 0 18px 45px rgba(216, 179, 106, 0.38);
}

.secondary-button {
  min-height: 54px;
  padding: 14px 24px;

  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);

  backdrop-filter: blur(12px);
}

.secondary-button:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.14);
}


/* =========================
   HEADER
========================= */

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;

  width: 100%;
  min-height: 82px;
  padding: 0;

  border-bottom: 1px solid transparent;

  transition:
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.site-header.scrolled {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(10, 31, 24, 0.94);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);

  backdrop-filter: blur(18px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;

  min-height: 82px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--white);
}

.brand.brand-logo {
  flex: 0 0 300px;

  width: 300px;
  max-width: 300px;
  height: 66px;

  overflow: visible;
}

.brand.brand-logo img {
  width: 300px;
  max-width: 300px;
  height: auto;
  max-height: 66px;

  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-nav > a:not(.nav-order-button) {
  position: relative;

  padding: 8px 0;

  color: rgba(255, 255, 255, 0.78);

  font-size: 0.82rem;
  font-weight: 600;

  transition: color var(--transition);
}

.main-nav > a:not(.nav-order-button)::after {
  position: absolute;
  bottom: 0;
  left: 0;

  width: 0;
  height: 1px;

  background: var(--gold);

  content: "";

  transition: width var(--transition);
}

.main-nav > a:not(.nav-order-button):hover,
.main-nav > a:not(.nav-order-button).active {
  color: var(--white);
}

.main-nav > a:not(.nav-order-button):hover::after,
.main-nav > a:not(.nav-order-button).active::after {
  width: 100%;
}

.nav-order-button {
  min-height: 43px;
  padding: 10px 17px;

  background: var(--gold);
  color: var(--primary-dark);

  font-size: 0.8rem;
  white-space: nowrap;
}

.nav-order-button:hover {
  transform: translateY(-2px);
  background: var(--gold-light);
}

.menu-button {
  display: none;
  flex-direction: column;
  gap: 5px;

  width: 44px;
  height: 44px;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);
}

.menu-button span {
  display: block;

  width: 20px;
  height: 2px;
  margin: 0 auto;

  border-radius: 10px;

  background: var(--white);

  transition:
    transform var(--transition),
    opacity var(--transition);
}

.menu-button.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.active span:nth-child(2) {
  opacity: 0;
}

.menu-button.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* =========================
   HERO
========================= */

.hero-section {
  display: flex;
  align-items: center;

  min-height: 900px;
  padding: 150px 0 90px;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(216, 179, 106, 0.16),
      transparent 30%
    ),
    radial-gradient(
      circle at 86% 32%,
      rgba(70, 127, 105, 0.22),
      transparent 36%
    ),
    linear-gradient(135deg, #071912 0%, #102d22 55%, #163d2f 100%);

  color: var(--white);
}

.hero-section::before {
  position: absolute;
  inset: 0;

  opacity: 0.3;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px
    );

  background-size: 55px 55px;

  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 75px;
}

.hero-content {
  max-width: 690px;
}

.hero-eyebrow {
  color: var(--gold-light);
}

.hero-content h1 {
  margin-top: 18px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -2px;
}

.hero-content h1 span {
  display: block;

  margin-top: 9px;

  color: var(--gold-light);
  font-style: italic;
}

.hero-description {
  max-width: 680px;
  margin-top: 28px;

  color: rgba(255, 255, 255, 0.74);

  font-size: 1.05rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 36px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;

  margin-top: 35px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 0.82rem;
  font-weight: 600;
}

.trust-item span {
  display: grid;
  place-items: center;

  width: 24px;
  height: 24px;

  border: 1px solid rgba(216, 179, 106, 0.4);
  border-radius: 50%;

  background: rgba(216, 179, 106, 0.1);
  color: var(--gold);
}

.hero-visual {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 620px;
}

.phone-mockup {
  position: relative;
  z-index: 3;

  width: min(340px, 80vw);
  min-height: 640px;
  padding: 14px;

  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 46px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.16),
      rgba(255, 255, 255, 0.05)
    );

  box-shadow:
    0 45px 100px rgba(0, 0, 0, 0.35),
    inset 0 0 0 4px rgba(255, 255, 255, 0.04);

  transform: rotate(3deg);

  backdrop-filter: blur(20px);
}

.phone-top-bar {
  position: absolute;
  z-index: 5;
  top: 22px;
  left: 50%;

  transform: translateX(-50%);
}

.phone-top-bar span {
  display: block;

  width: 90px;
  height: 24px;

  border-radius: 999px;

  background: rgba(2, 13, 9, 0.88);
}

.invitation-preview {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-height: 610px;
  padding: 50px 28px 35px;

  overflow: hidden;

  border-radius: 35px;

  color: #5a382a;
  text-align: center;

  transition:
    background 0.6s ease,
    color 0.6s ease;
}

.preview-theme-wedding {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.8), transparent 31%),
    linear-gradient(160deg, #f8eee2, #ead4bd 55%, #cfac8a);
  color: #5a382a;
}

.preview-theme-birthday {
  background:
    radial-gradient(circle at 25% 15%, rgba(255, 255, 255, 0.75), transparent 24%),
    radial-gradient(circle at 82% 24%, rgba(255, 218, 116, 0.5), transparent 26%),
    linear-gradient(155deg, #ffdbe9, #f5a8d1 48%, #9b73d8);
  color: #5a2a50;
}

.preview-theme-corporate {
  background:
    radial-gradient(circle at 80% 15%, rgba(216, 179, 106, 0.23), transparent 30%),
    linear-gradient(145deg, #0c1f29, #163c45 55%, #0b2622);
  color: #f4e4bd;
}

.invitation-preview::before,
.invitation-preview::after {
  position: absolute;

  width: 230px;
  height: 230px;

  border: 1px solid currentColor;
  border-radius: 50%;

  opacity: 0.13;

  content: "";
}

.invitation-preview::before {
  top: 65px;
  right: -95px;
}

.invitation-preview::after {
  bottom: 38px;
  left: -105px;
}

.preview-small-text {
  position: relative;
  z-index: 2;

  margin-bottom: 27px;

  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.invitation-preview h2 {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
}

.preview-primary,
.preview-secondary {
  color: inherit;
}

.preview-connector {
  margin: 14px 0;

  color: #aa7352;

  font-size: 1.35rem;
  font-style: italic;
}

.preview-theme-birthday .preview-connector {
  color: #8f3f75;
}

.preview-theme-corporate .preview-connector {
  color: var(--gold);
  font-size: 0.95rem;
  font-style: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.preview-divider {
  position: relative;
  z-index: 2;

  margin: 23px 0;

  color: currentColor;
  opacity: 0.65;
}

.preview-date {
  position: relative;
  z-index: 2;

  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.preview-message {
  position: relative;
  z-index: 2;

  max-width: 230px;
  margin-top: 18px;

  opacity: 0.76;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.93rem;
  font-style: italic;
}

.preview-open-button {
  position: relative;
  z-index: 2;

  min-height: 46px;
  margin-top: 30px;
  padding: 11px 24px;

  border: 1px solid currentColor;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.28);
  color: inherit;

  font-weight: 700;

  transition:
    background var(--transition),
    transform var(--transition);
}

.preview-theme-corporate .preview-open-button {
  background: rgba(255, 255, 255, 0.07);
}

.preview-open-button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.55);
}

.preview-switcher {
  position: absolute;
  z-index: 3;
  bottom: 17px;

  display: flex;
  gap: 7px;
}

.preview-dot {
  width: 8px;
  height: 8px;

  border: 0;
  border-radius: 50%;

  background: currentColor;
  opacity: 0.28;

  transition:
    width var(--transition),
    opacity var(--transition);
}

.preview-dot.active {
  width: 24px;
  border-radius: 999px;
  opacity: 0.78;
}

.floating-card {
  position: absolute;
  z-index: 5;

  display: flex;
  align-items: center;
  gap: 12px;

  min-width: 210px;
  padding: 14px 16px;

  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 17px;

  background: rgba(10, 35, 27, 0.73);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);

  backdrop-filter: blur(16px);
}

.floating-card > span {
  display: grid;
  place-items: center;

  width: 38px;
  height: 38px;

  border-radius: 50%;

  background: rgba(216, 179, 106, 0.16);
  color: var(--gold);
}

.floating-card div {
  display: flex;
  flex-direction: column;
}

.floating-card strong {
  font-size: 0.81rem;
}

.floating-card small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.67rem;
}

.floating-card-one {
  top: 110px;
  left: -45px;
}

.floating-card-two {
  right: -55px;
  bottom: 105px;
}

.hero-decoration {
  position: absolute;

  border: 1px solid rgba(216, 179, 106, 0.08);
  border-radius: 50%;

  pointer-events: none;
}

.hero-decoration-one {
  top: -220px;
  right: -170px;

  width: 600px;
  height: 600px;
}

.hero-decoration-two {
  bottom: -270px;
  left: -180px;

  width: 520px;
  height: 520px;
}


/* =========================
   STATS
========================= */

.stats-section {
  z-index: 8;

  margin-top: -45px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: var(--radius-medium);

  background: var(--white);

  box-shadow: var(--shadow-medium);
}

.stat-card {
  position: relative;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 29px 20px;

  text-align: center;
}

.stat-card:not(:last-child)::after {
  position: absolute;
  top: 25%;
  right: 0;

  width: 1px;
  height: 50%;

  background: var(--border);

  content: "";
}

.stat-card strong {
  color: var(--primary);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 500;
}

.stat-card span {
  margin-top: 4px;

  color: var(--text-light);

  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}


/* =========================
   CATEGORIES
========================= */

.categories-section {
  padding-top: 145px;

  background:
    radial-gradient(circle at 10% 25%, rgba(216, 179, 106, 0.08), transparent 25%),
    var(--cream);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.category-card {
  position: relative;

  display: flex;
  flex-direction: column;

  min-height: 510px;
  padding: 31px;

  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: var(--radius-large);

  background: var(--white);

  box-shadow: var(--shadow-small);

  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.category-card::after {
  position: absolute;
  right: -80px;
  bottom: -95px;

  width: 220px;
  height: 220px;

  border: 1px solid currentColor;
  border-radius: 50%;

  opacity: 0.08;

  content: "";
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-medium);
}

.category-wedding {
  background:
    radial-gradient(circle at top right, rgba(177, 101, 117, 0.13), transparent 32%),
    var(--white);
  color: #6d3944;
}

.category-birthday {
  background:
    radial-gradient(circle at top right, rgba(151, 101, 198, 0.13), transparent 32%),
    var(--white);
  color: #684589;
}

.category-corporate {
  background:
    radial-gradient(circle at top right, rgba(48, 100, 114, 0.14), transparent 32%),
    var(--white);
  color: #234f5a;
}

.category-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-icon {
  display: grid;
  place-items: center;

  width: 52px;
  height: 52px;

  border: 1px solid currentColor;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.55);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.category-number {
  opacity: 0.25;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.category-label {
  margin-top: 32px;

  color: currentColor;

  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.category-card h3 {
  margin-top: 8px;

  color: var(--primary-dark);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1.2;
}

.category-card > p:not(.category-label) {
  margin-top: 18px;

  color: var(--text-light);
  font-size: 0.9rem;
}

.category-card ul {
  display: grid;
  gap: 9px;

  margin-top: 22px;
}

.category-card li {
  position: relative;

  padding-left: 20px;

  color: var(--text);
  font-size: 0.83rem;
}

.category-card li::before {
  position: absolute;
  left: 0;

  color: currentColor;

  content: "✓";
  font-weight: 900;
}

.category-footer {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;

  margin-top: auto;
  padding-top: 30px;
}

.category-footer > div {
  display: flex;
  flex-direction: column;
}

.category-footer small {
  color: var(--text-light);
  font-size: 0.67rem;
  text-transform: uppercase;
}

.category-footer strong {
  color: var(--primary-dark);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.category-link {
  color: currentColor;

  font-size: 0.77rem;
  font-weight: 800;

  transition: transform var(--transition);
}

.category-link:hover {
  transform: translateX(4px);
}


/* =========================
   TEMPLATES
========================= */

.templates-section {
  background:
    linear-gradient(180deg, #f3eadf, var(--cream));
}

.template-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;

  margin-bottom: 38px;
}

.filter-button,
.pricing-tab {
  min-height: 45px;
  padding: 10px 18px;

  border: 1px solid var(--border);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.7);
  color: var(--text-light);

  font-size: 0.78rem;
  font-weight: 700;

  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.filter-button:hover,
.pricing-tab:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  color: var(--primary);
}

.filter-button.active,
.pricing-tab.active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 27px;
}

.template-card {
  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: var(--radius-medium);

  background: var(--white);

  box-shadow: var(--shadow-small);

  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    opacity 0.22s ease;
}

.template-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-medium);
}

.template-card.filtered-out {
  display: none;
}

.template-preview {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 300px;
  padding: 35px 25px;

  overflow: hidden;

  text-align: center;
}

.template-preview::before,
.template-preview::after {
  position: absolute;

  width: 160px;
  height: 160px;

  border: 1px solid currentColor;
  border-radius: 50%;

  opacity: 0.15;

  content: "";
}

.template-preview::before {
  top: -65px;
  right: -60px;
}

.template-preview::after {
  bottom: -70px;
  left: -60px;
}

.template-code,
.template-status {
  position: absolute;
  z-index: 3;
  top: 17px;

  padding: 6px 10px;

  border: 1px solid currentColor;
  border-radius: 999px;

  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.template-code {
  left: 17px;
}

.template-status {
  right: 17px;
}

.template-status.available {
  background: rgba(255, 255, 255, 0.18);
}

.template-status.coming {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.16);
  color: rgba(255, 255, 255, 0.9);
}

.template-preview-content {
  position: relative;
  z-index: 2;
}

.template-preview-content small {
  display: block;

  margin-bottom: 18px;

  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.template-preview-content h3 {
  max-width: 260px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.05rem;
  font-weight: 400;
  line-height: 1.1;
}

.template-preview-content p {
  margin-top: 16px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.88rem;
  font-style: italic;
}

.template-floral {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.7), transparent 36%),
    linear-gradient(145deg, #f5e1df, #d9a9a9);
  color: #603f40;
}

.template-royal {
  background:
    radial-gradient(circle at center, rgba(216, 179, 106, 0.15), transparent 40%),
    linear-gradient(145deg, #111713, #2a2d25);
  color: #e6c884;
}

.template-ivory {
  background: linear-gradient(145deg, #fbf8f0, #e8dfcd);
  color: #6b5a43;
}

.template-heritage {
  background:
    radial-gradient(circle at top, rgba(255, 216, 156, 0.18), transparent 35%),
    linear-gradient(145deg, #6e211f, #3e0d11);
  color: #efc57c;
}

.template-cinematic {
  background:
    radial-gradient(circle at center, rgba(201, 157, 107, 0.17), transparent 40%),
    linear-gradient(145deg, #17110e, #4b3025);
  color: #efcfab;
}

.template-golden {
  background:
    radial-gradient(circle at 18% 18%, rgba(240, 215, 158, 0.26), transparent 28%),
    radial-gradient(circle at 80% 72%, rgba(216, 179, 106, 0.18), transparent 34%),
    linear-gradient(145deg, #07080a, #1c1a17 58%, #3a2b17);
  color: #f0d79e;
}

.template-kids {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.78), transparent 24%),
    radial-gradient(circle at 82% 28%, rgba(255, 238, 128, 0.72), transparent 22%),
    linear-gradient(145deg, #7ed7e8, #e38cc5 55%, #7257c7);
  color: #ffffff;
}

.template-milestone {
  background:
    radial-gradient(circle at center, rgba(245, 207, 140, 0.19), transparent 38%),
    linear-gradient(145deg, #131313, #34281e);
  color: #f0d39b;
}

.template-neon {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 0, 184, 0.38), transparent 30%),
    radial-gradient(circle at 83% 70%, rgba(0, 232, 255, 0.35), transparent 30%),
    linear-gradient(145deg, #070712, #1d1236);
  color: #f8f2ff;
}

.template-opening {
  background:
    radial-gradient(circle at top right, rgba(216, 179, 106, 0.22), transparent 30%),
    linear-gradient(145deg, #0b2520, #1d5548);
  color: #f0d79e;
}

.template-launch {
  background:
    radial-gradient(circle at center, rgba(75, 160, 255, 0.2), transparent 40%),
    linear-gradient(145deg, #07111d, #102d4a);
  color: #d7eaff;
}

.template-conference {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(145deg, #1a2d3a, #335d67);
  color: #e8f4f0;
}

.template-card-content {
  display: flex;
  flex-direction: column;

  min-height: 405px;
  padding: 27px;
}

.template-category {
  color: var(--gold-dark);

  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.template-card-content h3 {
  margin-top: 3px;

  color: var(--primary-dark);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.template-card-content > p:not(.template-category) {
  min-height: 100px;
  margin-top: 14px;

  color: var(--text-light);
  font-size: 0.87rem;
}

.template-features {
  display: grid;
  gap: 8px;

  margin-top: 18px;
}

.template-features li {
  position: relative;

  padding-left: 20px;

  color: var(--text);
  font-size: 0.8rem;
}

.template-features li::before {
  position: absolute;
  top: 1px;
  left: 0;

  color: var(--gold-dark);

  content: "✓";
  font-weight: 900;
}

.template-button {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  padding: 12px 18px;

  border-color: var(--border);
  background: var(--cream);
  color: var(--primary);

  font-size: 0.84rem;
}

.template-button:hover {
  border-color: var(--gold);
  background: var(--primary);
  color: var(--white);
}

.template-button.disabled {
  cursor: default;
  opacity: 0.58;
}

.template-button.disabled:hover {
  transform: none;
  border-color: var(--border);
  background: var(--cream);
  color: var(--primary);
}


/* =========================
   FEATURES
========================= */

.features-section {
  background:
    linear-gradient(180deg, #f2eadf, var(--cream));
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 21px;
}

.feature-card {
  position: relative;

  min-height: 245px;
  padding: 27px;

  overflow: hidden;

  border: 1px solid var(--border);
  border-radius: var(--radius-medium);

  background: rgba(255, 255, 255, 0.75);

  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.feature-card::after {
  position: absolute;
  right: -55px;
  bottom: -65px;

  width: 140px;
  height: 140px;

  border: 1px solid rgba(216, 179, 106, 0.14);
  border-radius: 50%;

  content: "";
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.feature-icon {
  display: grid;
  place-items: center;

  width: 48px;
  height: 48px;

  border: 1px solid rgba(216, 179, 106, 0.35);
  border-radius: 50%;

  background: rgba(216, 179, 106, 0.12);
  color: var(--gold-dark);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.feature-card h3 {
  margin-top: 22px;

  color: var(--primary-dark);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.feature-card p {
  margin-top: 11px;

  color: var(--text-light);
  font-size: 0.85rem;
}


/* =========================
   PROCESS
========================= */

.process-section {
  overflow: hidden;

  background: var(--primary-dark);
  color: var(--white);
}

.process-section::before {
  position: absolute;
  inset: 0;

  opacity: 0.25;

  background-image:
    radial-gradient(circle at 20% 30%, rgba(216, 179, 106, 0.14), transparent 28%),
    radial-gradient(circle at 85% 60%, rgba(63, 137, 108, 0.22), transparent 32%);

  content: "";
}

.process-section .container {
  position: relative;
  z-index: 2;
}

.process-section .section-heading h2 {
  color: var(--white);
}

.process-section .section-heading p:last-child {
  color: rgba(255, 255, 255, 0.65);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 21px;
}

.process-card {
  position: relative;

  min-height: 270px;
  padding: 29px;

  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-medium);

  background: rgba(255, 255, 255, 0.04);

  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.process-card:hover {
  transform: translateY(-7px);
  border-color: rgba(216, 179, 106, 0.42);
  background: rgba(255, 255, 255, 0.07);
}

.process-number {
  display: block;

  color: var(--gold);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.7rem;
  line-height: 1;
}

.process-card h3 {
  margin-top: 29px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1.3;
}

.process-card p {
  margin-top: 13px;

  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
}


/* =========================
   PRICING
========================= */

.pricing-section {
  background: var(--cream);
}

.pricing-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;

  margin-bottom: 42px;
}

.pricing-tab {
  padding-inline: 22px;
}

.pricing-panel {
  animation: panelFade 0.35s ease;
}

@keyframes panelFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 25px;
}

.pricing-card {
  position: relative;

  display: flex;
  flex-direction: column;

  min-height: 635px;
  padding: 32px;

  border: 1px solid var(--border);
  border-radius: var(--radius-large);

  background: var(--white);

  box-shadow: var(--shadow-small);

  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.pricing-card.featured-package {
  transform: translateY(-13px);

  border-color: rgba(216, 179, 106, 0.55);

  background:
    radial-gradient(circle at top right, rgba(216, 179, 106, 0.18), transparent 30%),
    linear-gradient(145deg, #102b21, #173d2f);

  color: var(--white);

  box-shadow: var(--shadow-large);
}

.pricing-card.featured-package:hover {
  transform: translateY(-20px);
}

.popular-label {
  position: absolute;
  top: 18px;
  right: 18px;

  padding: 6px 11px;

  border-radius: 999px;

  background: var(--gold);
  color: var(--primary-dark);

  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.pricing-card-header p {
  color: var(--gold-dark);

  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.featured-package .pricing-card-header p {
  color: var(--gold);
}

.pricing-card-header h3 {
  margin-top: 5px;

  color: var(--primary-dark);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.48rem;
  font-weight: 500;
}

.featured-package .pricing-card-header h3 {
  color: var(--white);
}

.package-price {
  display: flex;
  align-items: flex-start;
  gap: 7px;

  margin-top: 29px;
  padding-bottom: 22px;

  border-bottom: 1px solid var(--border);
}

.featured-package .package-price {
  border-color: rgba(255, 255, 255, 0.12);
}

.package-price span {
  margin-top: 9px;

  color: var(--text-light);
  font-size: 0.78rem;
  font-weight: 700;
}

.featured-package .package-price span {
  color: rgba(255, 255, 255, 0.55);
}

.package-price strong {
  color: var(--primary);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1;
}

.featured-package .package-price strong {
  color: var(--gold-light);
}

.package-price-from span {
  max-width: 62px;
  line-height: 1.3;
}

.pricing-summary {
  margin-top: 20px;

  color: var(--text-light);
  font-size: 0.84rem;
}

.featured-package .pricing-summary {
  color: rgba(255, 255, 255, 0.64);
}

.package-features {
  display: grid;
  gap: 13px;

  margin-top: 25px;
}

.package-features li {
  position: relative;

  padding-left: 22px;

  color: var(--text-light);
  font-size: 0.84rem;
}

.package-features li::before {
  position: absolute;
  left: 0;

  color: var(--gold-dark);

  content: "✓";
  font-weight: 900;
}

.featured-package .package-features li {
  color: rgba(255, 255, 255, 0.72);
}

.featured-package .package-features li::before {
  color: var(--gold);
}

.package-button {
  width: 100%;
  min-height: 51px;
  margin-top: auto;
  padding: 13px 17px;

  border-color: var(--border);
  background: var(--cream);
  color: var(--primary);

  font-size: 0.82rem;
  text-align: center;
}

.package-button:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

.featured-package .package-button {
  border-color: transparent;
  background: var(--gold);
  color: var(--primary-dark);
}

.featured-package .package-button:hover {
  background: var(--gold-light);
}

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  max-width: 850px;
  margin: 42px auto 0;
  padding: 17px 22px;

  border: 1px solid var(--border-gold);
  border-radius: 999px;

  background: rgba(216, 179, 106, 0.09);
}

.pricing-note span {
  color: var(--gold-dark);
}

.pricing-note p {
  color: var(--text-light);
  font-size: 0.82rem;
  text-align: center;
}


/* =========================
   SERVICE POLICY
========================= */

.policy-section {
  background:
    linear-gradient(145deg, #efe4d5, #fbf8f2);
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
}

.policy-card {
  min-height: 260px;
  padding: 27px;

  border: 1px solid var(--border);
  border-radius: var(--radius-medium);

  background: rgba(255, 255, 255, 0.78);

  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.policy-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-small);
}

.policy-icon {
  display: grid;
  place-items: center;

  width: 52px;
  height: 52px;

  border: 1px solid var(--border-gold);
  border-radius: 50%;

  background: rgba(216, 179, 106, 0.13);
  color: var(--gold-dark);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.policy-card h3 {
  margin-top: 20px;

  color: var(--primary-dark);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-weight: 500;
}

.policy-card p {
  margin-top: 11px;

  color: var(--text-light);
  font-size: 0.84rem;
}

.add-on-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  margin-top: 33px;

  overflow: hidden;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-medium);

  background: var(--primary-dark);

  box-shadow: var(--shadow-medium);
}

.add-on-bar > div {
  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 22px 16px;

  text-align: center;
}

.add-on-bar > div:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.add-on-bar span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
}

.add-on-bar strong {
  margin-top: 4px;

  color: var(--gold-light);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}


/* =========================
   WHY US
========================= */

.why-us-section {
  background:
    linear-gradient(135deg, #efe5d6, #fbf8f2);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 75px;
}

.why-us-content h2 {
  margin-top: 12px;

  color: var(--primary-dark);

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  font-weight: 500;
  line-height: 1.15;
}

.why-us-content h2 span {
  display: block;
  color: var(--gold-dark);
}

.why-us-content > p:not(.eyebrow) {
  margin-top: 22px;

  color: var(--text-light);
}

.why-us-list {
  display: grid;
  gap: 19px;

  margin-top: 31px;
}

.why-us-list > div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.why-us-list > div > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;

  width: 30px;
  height: 30px;
  margin-top: 2px;

  border-radius: 50%;

  background: var(--primary);
  color: var(--gold);
}

.why-us-list p {
  display: flex;
  flex-direction: column;

  color: var(--text-light);
  font-size: 0.86rem;
}

.why-us-list strong {
  margin-bottom: 2px;

  color: var(--primary-dark);
  font-size: 0.95rem;
}

.why-us-card {
  position: relative;

  min-height: 470px;
  padding: 58px;

  overflow: hidden;

  border-radius: var(--radius-large);

  background:
    radial-gradient(circle at top left, rgba(216, 179, 106, 0.14), transparent 32%),
    linear-gradient(145deg, #102b21, #1d4a39);

  color: var(--white);

  box-shadow: var(--shadow-large);
}

.why-us-card::after {
  position: absolute;
  right: -100px;
  bottom: -110px;

  width: 300px;
  height: 300px;

  border: 1px solid rgba(216, 179, 106, 0.16);
  border-radius: 50%;

  content: "";
}

.quote-symbol {
  color: var(--gold);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 6rem;
  line-height: 0.65;
}

.why-us-card blockquote {
  position: relative;
  z-index: 2;

  margin-top: 32px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-style: italic;
  line-height: 1.35;
}

.why-us-brand {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;

  margin-top: 52px;
}

.why-us-brand strong {
  color: var(--gold-light);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.why-us-brand span {
  margin-top: 5px;

  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}


/* =========================
   FAQ
========================= */

.faq-section {
  background: var(--cream);
}

.faq-list {
  max-width: 870px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;

  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  width: 100%;
  padding: 24px 4px;

  border: 0;

  background: transparent;
  color: var(--primary-dark);

  font-size: 0.98rem;
  font-weight: 700;
  text-align: left;
}

.faq-question span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;

  width: 34px;
  height: 34px;

  border: 1px solid var(--border);
  border-radius: 50%;

  color: var(--gold-dark);

  transition: transform var(--transition);
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;

  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}

.faq-answer p {
  max-width: 760px;
  padding: 0 50px 0 4px;

  color: var(--text-light);
  font-size: 0.89rem;
}

.faq-item.active .faq-answer {
  max-height: 280px;
  padding-bottom: 24px;
}


/* =========================
   CONTACT CTA
========================= */

.contact-section {
  padding: 0 0 100px;

  background: var(--cream);
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;

  padding: 58px;

  overflow: hidden;

  border-radius: var(--radius-large);

  background:
    radial-gradient(circle at 92% 15%, rgba(216, 179, 106, 0.18), transparent 30%),
    linear-gradient(135deg, #0e291f, #1e4a39);

  color: var(--white);

  box-shadow: var(--shadow-large);
}

.contact-content {
  max-width: 700px;
}

.contact-content .eyebrow {
  color: var(--gold-light);
}

.contact-content h2 {
  margin-top: 12px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
}

.contact-content > p:last-child {
  margin-top: 18px;

  color: rgba(255, 255, 255, 0.65);
}

.contact-actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.contact-phone {
  color: rgba(255, 255, 255, 0.78);

  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1px;
}


/* =========================
   FOOTER
========================= */

.site-footer {
  padding: 72px 0 25px;

  background: #071912;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.8fr;
  gap: 62px;
}

.footer-logo {
  width: 260px;
  height: 62px;
}

.footer-logo img {
  width: 260px;
  height: auto;
  max-height: 62px;

  object-fit: contain;
  object-position: left center;
}

.footer-brand > p {
  max-width: 440px;
  margin-top: 22px;

  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 9px;

  color: var(--gold-light);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-weight: 500;
}

.footer-links a,
.footer-contact a,
.footer-contact p {
  color: rgba(255, 255, 255, 0.55);

  font-size: 0.81rem;

  transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;

  margin-top: 62px;
  padding-top: 23px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
}


/* =========================
   FLOATING WHATSAPP
========================= */

.floating-whatsapp {
  position: fixed;
  z-index: 999;
  right: 24px;
  bottom: 24px;

  display: grid;
  place-items: center;

  width: 58px;
  height: 58px;

  border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;

  background: #25d366;
  color: var(--white);

  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.33);

  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.45);
}

.floating-whatsapp span {
  font-size: 1.42rem;
}


/* =========================
   SCROLL REVEAL
========================= */

.reveal {
  opacity: 0;
  transform: translateY(35px);

  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
}

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


/* =========================
   NOSCRIPT
========================= */

noscript {
  position: fixed;
  z-index: 2000;
  right: 0;
  bottom: 0;
  left: 0;

  padding: 12px;

  background: #7c1d1d;
  color: var(--white);

  text-align: center;
}


/* =========================
   RESPONSIVE - LAPTOP
========================= */

@media (max-width: 1120px) {
  .brand.brand-logo {
    flex-basis: 250px;
    width: 250px;
    max-width: 250px;
  }

  .brand.brand-logo img {
    width: 250px;
    max-width: 250px;
  }

  .main-nav {
    gap: 15px;
  }

  .main-nav > a:not(.nav-order-button) {
    font-size: 0.76rem;
  }

  .nav-order-button {
    padding-inline: 14px;
    font-size: 0.75rem;
  }

  .hero-grid {
    gap: 45px;
  }

  .floating-card-one {
    left: -15px;
  }

  .floating-card-two {
    right: -20px;
  }

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

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


/* =========================
   RESPONSIVE - TABLET & NAV
========================= */

@media (max-width: 920px) {
  html {
    scroll-padding-top: 80px;
  }

  .site-header,
  .nav-container {
    min-height: 74px;
  }

  .brand.brand-logo {
    flex-basis: 235px;
    width: 235px;
    max-width: 235px;
    height: 56px;
  }

  .brand.brand-logo img {
    width: 235px;
    max-width: 235px;
    max-height: 56px;
  }

  .menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: absolute;
    top: 74px;
    right: 20px;
    left: 20px;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;

    max-height: calc(100vh - 95px);
    padding: 20px;
    overflow-y: auto;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;

    background: rgba(7, 25, 18, 0.98);

    box-shadow: var(--shadow-large);

    opacity: 0;
    pointer-events: none;

    transform: translateY(-12px);

    transition:
      opacity var(--transition),
      transform var(--transition);

    backdrop-filter: blur(18px);
  }

  .main-nav.active {
    opacity: 1;
    pointer-events: auto;

    transform: translateY(0);
  }

  .main-nav > a:not(.nav-order-button) {
    padding: 11px 8px;
    font-size: 0.84rem;
  }

  .nav-order-button {
    margin-top: 8px;
  }

  .hero-section {
    min-height: auto;
    padding-top: 135px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 68px;
  }

  .hero-content {
    max-width: 780px;
    margin: 0 auto;

    text-align: center;
  }

  .hero-description {
    margin-right: auto;
    margin-left: auto;
  }

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

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card:nth-child(2)::after {
    display: none;
  }

  .stat-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .category-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 670px;
    margin: 0 auto;
  }

  .category-card {
    min-height: auto;
  }

  .pricing-card {
    min-height: auto;
  }

  .pricing-card.featured-package,
  .pricing-card.featured-package:hover {
    transform: none;
  }

  .package-button {
    margin-top: 32px;
  }

  .features-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .policy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .add-on-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .add-on-bar > div:nth-child(2) {
    border-right: 0;
  }

  .add-on-bar > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-actions {
    align-items: flex-start;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}


/* =========================
   RESPONSIVE - MOBILE
========================= */

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 82px 0;
  }

  .site-header,
  .nav-container {
    min-height: 70px;
  }

  .main-nav {
    top: 70px;
    right: 14px;
    left: 14px;
  }

  .brand.brand-logo {
    flex-basis: 205px;
    width: 205px;
    max-width: 205px;
    height: 50px;
  }

  .brand.brand-logo img {
    width: 205px;
    max-width: 205px;
    max-height: 50px;
  }

  .hero-section {
    padding: 122px 0 74px;
  }

  .hero-content h1 {
    font-size: clamp(2.6rem, 12vw, 4.25rem);
    letter-spacing: -1px;
  }

  .hero-description {
    font-size: 0.94rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button {
    width: 100%;
  }

  .hero-trust {
    gap: 13px 18px;
  }

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

  .phone-mockup {
    width: min(305px, 88vw);
    min-height: 570px;
  }

  .invitation-preview {
    min-height: 540px;
  }

  .invitation-preview h2 {
    font-size: 2.55rem;
  }

  .floating-card {
    min-width: 180px;
    padding: 11px 13px;
  }

  .floating-card-one {
    top: 70px;
    left: -4px;
  }

  .floating-card-two {
    right: -4px;
    bottom: 70px;
  }

  .stats-section {
    margin-top: -25px;
  }

  .stat-card {
    padding: 23px 12px;
  }

  .stat-card strong {
    font-size: 1.42rem;
  }

  .stat-card span {
    font-size: 0.59rem;
  }

  .categories-section {
    padding-top: 100px;
  }

  .category-card {
    padding: 26px;
  }

  .category-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .template-grid,
  .features-grid,
  .process-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .template-card-content {
    min-height: auto;
  }

  .template-card-content > p:not(.template-category) {
    min-height: auto;
  }

  .template-button {
    margin-top: 26px;
  }

  .feature-card,
  .process-card,
  .policy-card {
    min-height: auto;
  }

  .pricing-tabs {
    flex-direction: column;
  }

  .pricing-tab {
    width: 100%;
  }

  .pricing-card {
    padding: 28px;
  }

  .pricing-note {
    align-items: flex-start;
    border-radius: var(--radius-medium);
  }

  .add-on-bar {
    grid-template-columns: 1fr;
  }

  .add-on-bar > div:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .why-us-card {
    min-height: auto;
    padding: 42px 31px;
  }

  .contact-card {
    padding: 40px 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}


/* =========================
   RESPONSIVE - SMALL MOBILE
========================= */

@media (max-width: 420px) {
  .brand.brand-logo {
    flex-basis: 185px;
    width: 185px;
    max-width: 185px;
    height: 46px;
  }

  .brand.brand-logo img {
    width: 185px;
    max-width: 185px;
    max-height: 46px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .hero-content h1 {
    font-size: 2.55rem;
  }

  .phone-mockup {
    transform: rotate(0);
  }

  .floating-card {
    display: none;
  }

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

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card:not(:last-child)::after {
    display: none;
  }

  .stat-card {
    border-bottom: 1px solid var(--border);
  }

  .stat-card:last-child {
    border-bottom: 0;
  }

  .template-preview {
    min-height: 280px;
  }

  .template-card-content {
    padding: 23px;
  }

  .category-card {
    padding: 24px;
  }

  .faq-question {
    font-size: 0.89rem;
  }

  .footer-logo,
  .footer-logo img {
    width: 220px;
  }
}


/* =========================
   REDUCED MOTION ACCESSIBILITY
========================= */

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   KINIRTHTHA COMPACT TEMPLATE BROWSER
   Desktop carousel + mobile swipe layout
========================================================= */

.template-browser-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  margin-bottom: 18px;
}

.template-browser-summary {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.template-browser-summary span {
  color: var(--primary-dark);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
  font-weight: 500;
}

.template-browser-summary strong {
  color: var(--gold-dark);

  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.template-browser-controls {
  display: flex;
  gap: 9px;
}

.template-arrow {
  display: grid;
  place-items: center;

  width: 45px;
  height: 45px;

  border: 1px solid var(--border);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.82);
  color: var(--primary);

  font-size: 1.15rem;
  font-weight: 800;

  box-shadow: var(--shadow-small);

  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition),
    color var(--transition),
    opacity var(--transition);
}

.template-arrow:hover:not(:disabled) {
  transform: translateY(-2px);

  border-color: var(--gold);
  background: var(--primary);
  color: var(--white);
}

.template-arrow:disabled {
  opacity: 0.34;
  cursor: not-allowed;
  box-shadow: none;
}

.template-swipe-hint {
  display: none;
}

.template-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 54px) / 3);
  grid-template-columns: none;
  gap: 27px;

  padding: 8px 2px 28px;
  overflow-x: auto;
  overflow-y: hidden;

  scroll-behavior: smooth;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;

  overscroll-behavior-inline: contain;
}

.template-grid::-webkit-scrollbar {
  display: none;
}

.template-card {
  height: 100%;

  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.template-card.filtered-out {
  display: none;
}

.template-card-content {
  height: 100%;
}

@media (max-width: 1120px) {
  .template-grid {
    grid-template-columns: none;
    grid-auto-columns: calc((100% - 27px) / 2);
  }
}

@media (max-width: 680px) {
  .templates-section {
    overflow: hidden;
  }

  .templates-section .section-heading {
    margin-bottom: 34px;
  }

  .template-filter {
    flex-wrap: nowrap;
    justify-content: flex-start;

    margin-right: -14px;
    margin-bottom: 24px;
    padding-right: 14px;
    overflow-x: auto;

    scrollbar-width: none;
  }

  .template-filter::-webkit-scrollbar {
    display: none;
  }

  .filter-button {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 9px 16px;
  }

  .template-browser-toolbar {
    margin-bottom: 10px;
  }

  .template-browser-summary {
    display: grid;
    gap: 2px;
  }

  .template-browser-summary span {
    font-size: 1.08rem;
  }

  .template-browser-summary strong {
    font-size: 0.66rem;
  }

  .template-arrow {
    width: 40px;
    height: 40px;

    font-size: 1rem;
  }

  .template-swipe-hint {
    display: block;

    margin-bottom: 12px;

    color: var(--text-light);

    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.4px;
  }

  .template-grid {
    grid-template-columns: none;
    grid-auto-columns: min(87%, 355px);
    gap: 16px;

    margin-right: -14px;
    padding: 6px 14px 24px 0;

    scroll-padding-inline: 0 14px;
  }

  .template-preview {
    min-height: 220px;
    padding: 30px 20px;
  }

  .template-preview-content h3 {
    font-size: 1.72rem;
  }

  .template-preview-content p {
    margin-top: 12px;
    font-size: 0.8rem;
  }

  .template-code,
  .template-status {
    top: 13px;
    padding: 5px 8px;
    font-size: 0.56rem;
  }

  .template-code {
    left: 13px;
  }

  .template-status {
    right: 13px;
  }

  .template-card-content {
    min-height: 330px;
    padding: 21px;
  }

  .template-card-content h3 {
    font-size: 1.35rem;
  }

  .template-card-content > p:not(.template-category) {
    display: -webkit-box;

    min-height: auto;
    margin-top: 11px;
    overflow: hidden;

    font-size: 0.82rem;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .template-features {
    gap: 7px;
    margin-top: 15px;
  }

  .template-features li {
    font-size: 0.76rem;
  }

  .template-features li:nth-child(n + 3) {
    display: none;
  }

  .template-button {
    min-height: 45px;
    margin-top: auto;
  }
}

@media (max-width: 420px) {
  .template-grid {
    grid-auto-columns: min(91%, 340px);
  }

  .template-browser-controls {
    gap: 6px;
  }

  .template-arrow {
    width: 38px;
    height: 38px;
  }
}

/* =========================================================
   KINIRTHTHA TEMPLATE ORDER BUTTON FIX
========================================================= */

.template-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;

  width: 100%;
  margin-top: auto;
  padding-top: 24px;
}

.template-card-actions .template-button,
.template-order-button {
  width: 100%;
  min-height: 48px;
  margin-top: 0;
  padding: 11px 14px;

  border: 1px solid var(--border);
  border-radius: 999px;

  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;

  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.template-card-actions .template-button {
  background: var(--cream);
  color: var(--primary);
}

.template-card-actions .template-button:hover {
  transform: translateY(-2px);

  border-color: var(--gold);
  background: var(--primary);
  color: var(--white);
}

.template-order-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-color: var(--gold);
  background: var(--gold);
  color: var(--primary-dark);

  box-shadow: 0 12px 28px rgba(216, 179, 106, 0.20);
}

.template-order-button:hover {
  transform: translateY(-2px);

  border-color: var(--gold-light);
  background: var(--gold-light);
  color: var(--primary-dark);

  box-shadow: 0 16px 35px rgba(216, 179, 106, 0.30);
}

@media (max-width: 680px) {
  .template-card-actions {
    gap: 8px;
    padding-top: 18px;
  }

  .template-card-actions .template-button,
  .template-order-button {
    min-height: 44px;
    padding: 10px 9px;

    font-size: 0.72rem;
  }
}

@media (max-width: 360px) {
  .template-card-actions {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   KINIRTHTHA COMPACT FEATURE CAROUSEL
   Keeps the homepage shorter on desktop and mobile.
========================================================= */

.feature-browser-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  margin-bottom: 18px;
}

.feature-browser-summary {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.feature-browser-summary span {
  color: var(--primary-dark);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
  font-weight: 500;
}

.feature-browser-summary strong {
  color: var(--gold-dark);

  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.feature-browser-controls {
  display: flex;
  gap: 9px;
}

.feature-arrow {
  display: grid;
  place-items: center;

  width: 45px;
  height: 45px;

  border: 1px solid var(--border);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.86);
  color: var(--primary);

  font-size: 1.15rem;
  font-weight: 800;

  box-shadow: var(--shadow-small);

  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition),
    color var(--transition),
    opacity var(--transition);
}

.feature-arrow:hover:not(:disabled) {
  transform: translateY(-2px);

  border-color: var(--gold);
  background: var(--primary);
  color: var(--white);
}

.feature-arrow:disabled {
  opacity: 0.34;
  cursor: not-allowed;
  box-shadow: none;
}

.feature-swipe-hint {
  display: none;
}

.features-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 63px) / 4);
  grid-template-columns: none;
  gap: 21px;

  padding: 7px 2px 28px;
  overflow-x: auto;
  overflow-y: hidden;

  scroll-behavior: smooth;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;

  overscroll-behavior-inline: contain;
}

.features-grid::-webkit-scrollbar {
  display: none;
}

.feature-card {
  height: 100%;
  min-height: 245px;

  scroll-snap-align: start;
  scroll-snap-stop: always;
}

@media (max-width: 980px) {
  .features-grid {
    grid-template-columns: none;
    grid-auto-columns: calc((100% - 21px) / 2);
  }
}

@media (max-width: 680px) {
  .features-section {
    overflow: hidden;
  }

  .features-section .section-heading {
    margin-bottom: 34px;
  }

  .feature-browser-toolbar {
    margin-bottom: 9px;
  }

  .feature-browser-summary {
    display: grid;
    gap: 2px;
  }

  .feature-browser-summary span {
    font-size: 1.08rem;
  }

  .feature-browser-summary strong {
    font-size: 0.66rem;
  }

  .feature-browser-controls {
    gap: 6px;
  }

  .feature-arrow {
    width: 40px;
    height: 40px;

    font-size: 1rem;
  }

  .feature-swipe-hint {
    display: block;

    margin-bottom: 11px;

    color: var(--text-light);

    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.35px;
  }

  .features-grid {
    grid-template-columns: none;
    grid-auto-columns: min(86%, 335px);
    gap: 15px;

    margin-right: -14px;
    padding: 5px 14px 24px 0;

    scroll-padding-inline: 0 14px;
  }

  .feature-card {
    min-height: 210px;
    padding: 22px;
  }

  .feature-icon {
    width: 43px;
    height: 43px;

    font-size: 0.96rem;
  }

  .feature-card h3 {
    margin-top: 17px;

    font-size: 1.1rem;
  }

  .feature-card p {
    display: -webkit-box;

    margin-top: 8px;
    overflow: hidden;

    font-size: 0.8rem;
    line-height: 1.7;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .feature-card::after {
    right: -68px;
    bottom: -78px;
  }
}

@media (max-width: 420px) {
  .features-grid {
    grid-auto-columns: min(90%, 325px);
  }

  .feature-arrow {
    width: 38px;
    height: 38px;
  }
}


/* =========================================================
   KINIRTHTHA FINAL ORDER BUTTON VISIBILITY FIX
========================================================= */

.template-card {
  display: flex !important;
  flex-direction: column !important;
  height: auto !important;
  min-height: 100%;
  overflow: hidden;
}

.template-preview {
  flex: 0 0 auto;
}

.template-card-content {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  height: auto !important;
  min-height: 455px !important;
  overflow: visible !important;
}

.template-card-actions {
  position: relative;
  z-index: 10;

  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 10px;

  width: 100%;
  margin-top: auto !important;
  padding-top: 22px;

  opacity: 1 !important;
  visibility: visible !important;
}

.template-card-actions .template-button,
.template-card-actions .template-order-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;

  min-width: 0;
  min-height: 48px;
  margin: 0 !important;
  padding: 11px 12px;

  border-radius: 999px;

  line-height: 1.2;
  white-space: nowrap;

  opacity: 1 !important;
  visibility: visible !important;
}

.template-card-actions .template-button {
  border: 1px solid var(--primary);
  background: var(--white);
  color: var(--primary);
}

.template-card-actions .template-button:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
}

.template-card-actions .template-order-button {
  border: 1px solid var(--gold-dark);
  background: var(--gold);
  color: var(--primary-dark);

  box-shadow: 0 12px 28px rgba(216, 179, 106, 0.24);
}

.template-card-actions .template-order-button:hover {
  transform: translateY(-2px);
  border-color: var(--gold-light);
  background: var(--gold-light);
  color: var(--primary-dark);

  box-shadow: 0 16px 34px rgba(216, 179, 106, 0.32);
}

@media (max-width: 1120px) {
  .template-card-content {
    min-height: 430px !important;
  }
}

@media (max-width: 680px) {
  .template-card-content {
    min-height: 350px !important;
  }

  .template-card-actions {
    gap: 8px;
    padding-top: 17px;
  }

  .template-card-actions .template-button,
  .template-card-actions .template-order-button {
    min-height: 44px;
    padding: 10px 8px;
    font-size: 0.71rem;
  }
}

@media (max-width: 360px) {
  .template-card-actions {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   KINIRTHTHA CATEGORY FILTER FINAL FIX
   Must remain after the template-card visibility rules.
========================================================= */

.template-card.filtered-out,
.template-card[aria-hidden="true"] {
  display: none !important;
}

/* Only the currently selected category may be displayed. */
.template-card:not(.filtered-out)[aria-hidden="false"] {
  display: flex !important;
}
