:root {
  --ink: #29372f;
  --ink-soft: #68736c;
  --paper: #f3f2ed;
  --white: #fffdf8;
  --line: #d9ddd6;
  --sage: #8e9d91;
  --sage-soft: #e5e9e3;
  --sage-dark: #34483d;
  --sage-deep: #22352c;
  --ivory: #f2eee4;
  --cream: #e8e1d4;
  --terracotta: #93624f;
  --champagne: #b69569;
  --nav-height: 76px;
  --shadow: 0 22px 60px rgba(41, 55, 47, 0.12);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

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

:focus-visible {
  outline: 3px solid rgba(184, 93, 76, 0.45);
  outline-offset: 3px;
}

::selection {
  color: var(--white);
  background: var(--terracotta);
}

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

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  height: var(--nav-height);
  border-bottom: 1px solid rgba(217, 221, 214, 0.82);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 142px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-nav a {
  position: relative;
  padding: 10px 13px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.desktop-nav a::after {
  position: absolute;
  right: 13px;
  bottom: 5px;
  left: 13px;
  height: 1px;
  content: "";
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 18px;
  height: 1px;
  margin: 4px auto;
  content: "";
  background: currentColor;
}

.mobile-nav {
  display: none;
  position: fixed;
  z-index: 38;
  top: var(--nav-height);
  right: 0;
  left: 0;
  padding: 18px 20px 28px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Fraunces", serif;
  font-size: 25px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  transition: color 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

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

.button--primary {
  color: var(--white);
  background: var(--sage-dark);
  box-shadow: 0 10px 24px rgba(52, 72, 61, 0.2);
}

.button--primary:hover {
  background: var(--sage-deep);
  box-shadow: 0 14px 30px rgba(52, 72, 61, 0.28);
}

.button--dark {
  color: var(--white);
  background: var(--ink);
}

.button--light {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.button--ivory {
  color: var(--sage-deep);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(20, 35, 27, 0.16);
}

.button--ivory:hover {
  background: var(--ivory);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.button--outline {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.button--outline:hover {
  border-color: var(--ink);
  background: var(--white);
}

.button--small {
  min-height: 40px;
  padding: 9px 15px;
  font-size: 12px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.display {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

.page-hero {
  padding: 94px 0 70px;
  background: var(--white);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 70px;
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(48px, 7vw, 94px);
}

.page-hero__intro {
  max-width: 540px;
  margin: 0 0 4px;
  color: var(--ink-soft);
  font-size: 17px;
}

.home-hero {
  position: relative;
  display: flex;
  min-height: calc(90svh - var(--nav-height));
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--sage-deep);
}

.home-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(28, 48, 37, 0.96) 0%, rgba(40, 62, 49, 0.72) 47%, rgba(40, 62, 49, 0.18) 78%),
    linear-gradient(0deg, rgba(26, 43, 34, 0.66) 0%, transparent 48%),
    url("/webluxe-mozambique-hero.png") center / cover no-repeat;
  filter: saturate(0.72);
}

.home-hero__content {
  position: relative;
  z-index: 1;
  width: min(780px, 75%);
  padding: 92px 0 86px;
}

.home-hero .eyebrow {
  color: #e4d9c6;
}

.home-hero h1 {
  max-width: 760px;
  font-size: clamp(58px, 7.6vw, 106px);
  line-height: 0.91;
}

.home-hero p:not(.eyebrow) {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-scroll span {
  display: block;
  width: 42px;
  height: 1px;
  background: currentColor;
  transform-origin: right;
  animation: scrollPulse 2.6s var(--ease) infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleX(0.5); opacity: 0.5; }
  50% { transform: scaleX(1); opacity: 1; }
}

.proof-strip {
  color: var(--white);
  background: var(--sage-deep);
}

.proof-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 112px;
  align-items: center;
}

.proof-item {
  padding: 22px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.proof-item:first-child {
  border-left: 0;
}

.proof-item strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 21px;
  font-weight: 500;
}

.proof-item span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.section {
  padding: 104px 0;
}

.section--white {
  background: var(--white);
}

.section--ink {
  color: var(--white);
  background: var(--sage-deep);
}

.section--sage {
  background: var(--sage-soft);
}

.section--ivory {
  background: var(--ivory);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 52px;
}

.section-heading h2 {
  max-width: 760px;
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: 0.96;
}

.section-heading p:last-child {
  max-width: 520px;
  margin: 0 0 5px;
  color: var(--ink-soft);
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  border: 0;
}

.service-card {
  min-height: 260px;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}

.service-card:hover {
  border-color: #c8cec6;
  box-shadow: 0 18px 38px rgba(45, 61, 52, 0.08);
  transform: translateY(-4px);
}

.service-card__number {
  display: block;
  margin-bottom: 70px;
  color: var(--sage);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.service-card h3 {
  margin: 0 0 12px;
  font-family: "Fraunces", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.1;
}

.service-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.feature-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 620px;
}

.feature-band__media {
  min-height: 520px;
  background: url("/webluxe-mozambique-hero.png") center / cover no-repeat;
}

.feature-band__media--studio {
  background-image:
    linear-gradient(rgba(52, 72, 61, 0.08), rgba(52, 72, 61, 0.08)),
    url("/webluxe-mozambique-hero.png");
}

.feature-band__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px max(34px, 7vw);
  color: var(--white);
  background: var(--sage-deep);
}

.feature-band__content h2 {
  max-width: 620px;
  font-size: clamp(44px, 5vw, 72px);
}

.feature-band__content p {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.68);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
}

.template-toolbar {
  position: sticky;
  z-index: 20;
  top: var(--nav-height);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 248, 247, 0.96);
  backdrop-filter: blur(16px);
}

.template-filters {
  display: grid;
  gap: 13px;
}

.filter-group {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.filter-group > span {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.filter-group--package {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.filter-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.filter-button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.filter-button[aria-pressed="true"] {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.filter-button--package[aria-pressed="true"] {
  border-color: var(--sage-dark);
  background: var(--sage-dark);
}

.gallery-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 42px 0 24px;
}

.gallery-meta p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

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

.template-card {
  min-width: 0;
}

.template-card__preview {
  position: relative;
  height: 510px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--card-ink);
  background: var(--card-bg);
  box-shadow: 0 10px 30px rgba(16, 33, 50, 0.07);
  isolation: isolate;
}

.template-card__preview::after {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  height: 32%;
  content: "";
  background: linear-gradient(transparent, rgba(8, 15, 22, 0.32));
  pointer-events: none;
}

.template-card__live {
  position: absolute;
  z-index: 6;
  top: 14px;
  left: 14px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #fff;
  background: rgba(12, 20, 29, 0.44);
  backdrop-filter: blur(8px);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.template-card__package {
  position: absolute;
  z-index: 6;
  top: 14px;
  right: 14px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #fff;
  background: rgba(12, 20, 29, 0.44);
  backdrop-filter: blur(8px);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-site {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
}

.mini-site__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--card-ink) 15%, transparent);
  background: color-mix(in srgb, var(--card-bg) 88%, transparent);
}

.mini-site__monogram {
  font-family: var(--card-display);
  font-size: 17px;
}

.mini-site__lines {
  display: flex;
  gap: 5px;
}

.mini-site__lines i {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.mini-site__hero {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 24px 40px;
  overflow: hidden;
}

.mini-site__hero > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: var(--card-filter, none);
}

.mini-site__hero > .invitation-art {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.mini-site__hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: var(--card-overlay);
}

.invitation-art {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  place-content: center;
  place-items: center;
  overflow: hidden;
  color: var(--art-ink);
  background:
    radial-gradient(circle at 18% 14%, color-mix(in srgb, var(--art-accent) 20%, transparent) 0 9%, transparent 9.5%),
    linear-gradient(145deg, var(--art-bg), var(--art-paper));
  font-family: var(--art-font);
  text-align: center;
}

.invitation-art::before,
.invitation-art::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.invitation-art::before {
  inset: 7%;
  border: 1px solid color-mix(in srgb, var(--art-ink) 18%, transparent);
}

.invitation-art::after {
  right: -12%;
  bottom: -9%;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--art-accent) 35%, transparent);
  border-radius: 50%;
  box-shadow:
    -36px -22px 0 -24px color-mix(in srgb, var(--art-accent) 32%, transparent),
    -78px 18px 0 -48px color-mix(in srgb, var(--art-ink) 24%, transparent);
}

.invitation-art__ornament {
  position: absolute;
  top: 16%;
  width: 52px;
  height: 52px;
  border: 1px solid color-mix(in srgb, var(--art-accent) 65%, transparent);
  border-radius: 50% 50% 4px;
  transform: rotate(45deg);
}

.invitation-art__kicker {
  z-index: 1;
  margin-top: 82px;
  font-family: "Manrope", sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.invitation-art__monogram {
  z-index: 1;
  margin: 16px 0 8px;
  color: var(--art-accent);
  font-size: clamp(46px, 7vw, 82px);
  font-weight: 400;
  line-height: 0.85;
}

.invitation-art__names {
  z-index: 1;
  max-width: 80%;
  font-size: clamp(26px, 4vw, 48px);
  line-height: 0.95;
}

.invitation-art__date {
  z-index: 1;
  margin-top: 17px;
  font-family: "Manrope", sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.invitation-art__rule {
  z-index: 1;
  width: 46px;
  height: 1px;
  margin-top: 18px;
  background: var(--art-accent);
}

.invitation-art--noir {
  background:
    linear-gradient(135deg, transparent 0 48%, color-mix(in srgb, var(--art-paper) 7%, transparent) 48% 52%, transparent 52%),
    var(--art-bg);
}

.invitation-art--garden,
.invitation-art--botanical {
  background:
    radial-gradient(ellipse at 8% 94%, color-mix(in srgb, var(--art-accent) 36%, transparent) 0 7%, transparent 7.5%),
    radial-gradient(ellipse at 18% 87%, color-mix(in srgb, var(--art-accent) 25%, transparent) 0 9%, transparent 9.5%),
    radial-gradient(ellipse at 95% 8%, color-mix(in srgb, var(--art-accent) 28%, transparent) 0 8%, transparent 8.5%),
    linear-gradient(145deg, var(--art-bg), var(--art-paper));
}

.invitation-art--cultural,
.invitation-art--cultural-modern {
  background:
    repeating-linear-gradient(45deg, transparent 0 18px, color-mix(in srgb, var(--art-accent) 14%, transparent) 18px 19px),
    linear-gradient(145deg, var(--art-bg), var(--art-paper));
}

.invitation-art--corporate {
  justify-content: start;
  padding-left: 16%;
  text-align: left;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--art-accent) 25%, transparent) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(var(--art-bg), var(--art-paper));
}

.invitation-art--compact .invitation-art__kicker,
.invitation-art--compact .invitation-art__names,
.invitation-art--compact .invitation-art__date,
.invitation-art--compact .invitation-art__rule {
  opacity: 0;
}

.invitation-art--compact .invitation-art__monogram {
  font-size: 96px;
  opacity: 0.32;
}

.mini-site__category {
  margin: 0 0 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.mini-site__hero h3 {
  max-width: 90%;
  margin: 0;
  font-family: var(--card-display);
  font-size: clamp(36px, 3.5vw, 56px);
  font-weight: 400;
  line-height: 0.94;
}

.mini-site__date {
  margin: 13px 0 0;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mini-site__countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 24px;
}

.mini-site__countdown span {
  padding: 8px 4px;
  border-top: 1px solid currentColor;
  font-size: 9px;
  text-align: center;
}

.template-card__info {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 18px 2px 0;
}

.template-card__info h3 {
  margin: 0 0 3px;
  font-family: "Fraunces", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
}

.template-card__info p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.template-card__description {
  max-width: 48ch;
  margin-top: 9px !important;
  font-size: 13px !important;
  line-height: 1.55;
}

.template-card__actions {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-end;
}

.text-action {
  padding: 3px 0;
  border: 0;
  color: var(--terracotta);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
}

.text-action:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.template-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  color: var(--ink);
  background: #e6e9e8;
  animation: modalIn 280ms var(--ease) both;
}

@keyframes modalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.preview-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  min-height: 72px;
  padding: 10px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.preview-toolbar__start,
.preview-toolbar__end {
  display: flex;
  align-items: center;
  gap: 12px;
}

.template-stepper {
  display: flex;
  min-height: 40px;
  align-items: center;
  gap: 7px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}

.template-stepper button {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  font-size: 16px;
}

.template-stepper button:hover {
  color: var(--white);
  background: var(--sage-dark);
}

.template-stepper span {
  min-width: 40px;
  color: var(--ink-soft);
  font-size: 9px;
  text-align: center;
}

.preview-toolbar__end {
  justify-content: flex-end;
}

.preview-back {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  font-size: 22px;
}

.preview-title strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.1;
}

.preview-title span {
  display: block;
  color: var(--ink-soft);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.device-switcher {
  display: flex;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}

.device-switcher button {
  min-height: 38px;
  padding: 7px 13px;
  border: 0;
  border-radius: 999px;
  color: var(--ink-soft);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
}

.device-switcher button[aria-pressed="true"] {
  color: var(--white);
  background: var(--ink);
}

.preview-stage {
  display: flex;
  min-height: 0;
  align-items: center;
  justify-content: center;
  padding: 26px;
  overflow: hidden;
}

.package-preview-label {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.preview-stage--package {
  overflow-y: auto;
  background: var(--sage-soft);
}

.package-modal-content {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(350px, 0.9fr);
  width: min(100%, 970px);
  min-height: 0;
  align-items: center;
  gap: clamp(45px, 7vw, 90px);
}

.package-modal-phone {
  position: relative;
  width: min(100%, 340px);
  height: min(72svh, 700px);
  min-height: 540px;
  margin: 0 auto;
  padding: 11px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 48px;
  background: #090c10;
  box-shadow: 0 34px 80px rgba(16, 33, 50, 0.25);
}

.package-modal-phone__notch {
  position: absolute;
  z-index: 2;
  top: 11px;
  right: 0;
  left: 0;
  width: 34%;
  height: 22px;
  margin: 0 auto;
  border-radius: 0 0 14px 14px;
  background: #090c10;
  pointer-events: none;
}

.package-modal-phone iframe {
  display: block;
  width: 100%;
  height: 100%;
  overflow: auto;
  border: 0;
  border-radius: 37px;
  background: #fff;
}

.package-modal-details {
  min-width: 0;
  padding: 30px 0;
}

.package-modal-details h2 {
  max-width: 480px;
  font-size: clamp(54px, 7vw, 84px);
}

.package-modal-details > p:not(.eyebrow):not(.package-modal-price) {
  max-width: 560px;
  color: var(--ink-soft);
}

.package-modal-price {
  margin: 18px 0 22px;
  color: var(--terracotta);
  font-size: 14px;
  font-weight: 700;
}

.package-modal-details ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 570px;
  margin: 34px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.package-modal-details li {
  padding: 14px 8px 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.package-modal-actions {
  display: grid;
  max-width: 570px;
  gap: 22px;
}

.package-modal-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.package-modal-nav button {
  min-height: 44px;
  padding: 8px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
}

.package-modal-nav button:first-child {
  text-align: left;
}

.package-modal-nav button:last-child {
  text-align: right;
}

.package-modal-nav span {
  color: var(--ink-soft);
  font-size: 11px;
}

.preview-browser {
  position: relative;
  width: min(100%, 1440px);
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border: 1px solid #cbd1cf;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(16, 33, 50, 0.2);
  transition: width 320ms var(--ease), border-radius 320ms var(--ease);
}

.preview-browser[data-device="tablet"] {
  width: min(100%, 820px);
}

.preview-browser[data-device="mobile"] {
  width: 100%;
  max-width: 390px;
  flex: 0 1 390px;
  border: 10px solid #0b0e12;
  border-radius: 38px;
}

.preview-browser[data-device="mobile"]::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  width: 34%;
  height: 18px;
  margin: 0 auto;
  border-radius: 0 0 12px 12px;
  content: "";
  background: #0b0e12;
  pointer-events: none;
}

.preview-browser iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-step {
  min-height: 290px;
  padding: 34px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.process-step:last-child {
  border-right: 0;
}

.process-step span {
  color: #dfbd78;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.process-step h3 {
  margin: 75px 0 12px;
  font-family: "Fraunces", serif;
  font-size: 26px;
  font-weight: 500;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

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

.package-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.package-preview-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(16, 33, 50, 0.08);
}

.package-preview-card--dark {
  color: var(--white);
  border-color: var(--sage-deep);
  background: var(--sage-deep);
}

.package-preview-card__visual {
  display: grid;
  min-height: 390px;
  place-items: center;
  overflow: hidden;
  background: #ece9e2;
}

.package-preview-card--balanced .package-preview-card__visual {
  background: #dce4dc;
}

.package-preview-card--dark .package-preview-card__visual {
  background: #1e3128;
}

.package-phone-small {
  position: relative;
  width: 178px;
  height: 356px;
  padding: 7px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: #090c10;
  box-shadow: 0 24px 50px rgba(16, 33, 50, 0.2);
}

.package-phone-small__notch {
  position: absolute;
  z-index: 2;
  top: 7px;
  right: 0;
  left: 0;
  width: 35%;
  height: 14px;
  margin: 0 auto;
  border-radius: 0 0 9px 9px;
  background: #090c10;
}

.package-phone-small iframe {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 21px;
  background: #fff;
  pointer-events: none;
}

.package-preview-card__content {
  padding: 28px 26px 26px;
}

.package-preview-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 28px;
  color: var(--sage-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.package-preview-card--dark .package-preview-card__meta {
  color: #dfbd78;
}

.package-preview-card h3 {
  margin: 0 0 12px;
  font-family: "Fraunces", serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
}

.package-preview-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.package-preview-card--dark p {
  color: rgba(255, 255, 255, 0.68);
}

.package-preview-card ul {
  margin: 25px 0 28px;
  padding: 0;
  list-style: none;
}

.package-preview-card li {
  padding: 9px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.package-preview-card--dark li {
  border-color: rgba(255, 255, 255, 0.14);
}

.package-preview-card__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  text-align: center;
}

.package-card {
  position: relative;
  min-height: 510px;
  padding: 34px 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.package-card--featured {
  color: var(--white);
  background: var(--sage-deep);
  border-color: var(--sage-deep);
}

.package-card__tag {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--terracotta);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.package-card--featured .package-card__tag {
  color: #dfbd78;
}

.package-card h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 34px;
  font-weight: 500;
}

.package-price {
  margin: 12px 0 25px;
  font-size: 14px;
  font-weight: 700;
}

.package-price strong {
  font-size: 34px;
}

.package-card p {
  color: var(--ink-soft);
  font-size: 14px;
}

.package-card--featured p {
  color: rgba(255, 255, 255, 0.66);
}

.package-features {
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.package-features li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

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

.pdf-band {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, 0.6fr);
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--sage-soft);
}

.pdf-band > div {
  padding: 28px 30px;
  border-right: 1px solid var(--line);
}

.pdf-band > div:last-child {
  border-right: 0;
}

.pdf-band h3,
.pdf-band p {
  margin: 0;
}

.pdf-band h3 {
  font-family: "Fraunces", serif;
  font-size: 27px;
  font-weight: 500;
}

.pdf-band strong {
  display: block;
  font-size: 28px;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 50px 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: "Fraunces", serif;
  font-size: 22px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 21px;
  right: 0;
  content: "+";
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 700px;
  margin: -6px 0 24px;
  color: var(--ink-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
}

.contact-details {
  padding-top: 8px;
}

.contact-details h2 {
  font-size: clamp(42px, 5vw, 68px);
}

.contact-list {
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.contact-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list span {
  display: block;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.field {
  display: grid;
  gap: 7px;
}

.field--wide {
  grid-column: 1 / -1;
}

.field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink);
  background: var(--paper);
}

.field textarea {
  min-height: 138px;
  resize: vertical;
}

.form-status {
  display: none;
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 14px;
  border-left: 3px solid var(--sage);
  color: var(--ink);
  background: #e5eee8;
  font-size: 13px;
}

.form-status.is-visible {
  display: block;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  color: var(--white);
  background: var(--sage-dark);
}

.cta-band__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 50px;
}

.cta-band h2 {
  max-width: 800px;
  font-size: clamp(44px, 6vw, 78px);
}

.site-footer {
  padding: 60px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  background: #1d3027;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  gap: 50px;
  padding-bottom: 54px;
}

.footer-brand img {
  width: 190px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 400px;
  margin: 22px 0 0;
  font-size: 13px;
}

.footer-col h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  display: block;
  margin: 9px 0;
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 80px 20px;
  border: 1px dashed var(--line);
  text-align: center;
}

.editorial-link {
  justify-self: end;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--sage);
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 700;
}

.carousel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin: -18px 0 26px;
}

.carousel-heading > p {
  max-width: 580px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.carousel-controls,
.testimonial-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-controls button,
.testimonial-controls button {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  font-size: 18px;
  transition: color 220ms var(--ease), background 220ms var(--ease), transform 220ms var(--ease);
}

.carousel-controls button:hover {
  color: var(--white);
  background: var(--sage-dark);
  transform: translateY(-2px);
}

.theme-rail {
  display: grid;
  grid-auto-columns: clamp(270px, 30vw, 390px);
  grid-auto-flow: column;
  gap: 18px;
  padding-bottom: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--sage) transparent;
  scrollbar-width: thin;
}

.theme-card {
  min-width: 0;
  scroll-snap-align: start;
}

.theme-card__preview {
  position: relative;
  display: block;
  width: 100%;
  height: 470px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--sage-soft);
  box-shadow: 0 16px 36px rgba(45, 61, 52, 0.1);
}

.theme-card__preview::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(24, 39, 31, 0.04) 42%, rgba(24, 39, 31, 0.72));
}

.theme-card__preview > .invitation-art {
  width: 100%;
  height: 100%;
  transition: transform 700ms var(--ease), filter 700ms var(--ease);
}

.theme-card:hover .theme-card__preview > .invitation-art {
  filter: saturate(0.9);
  transform: scale(1.035);
}

.theme-card__number,
.theme-card__open {
  position: absolute;
  z-index: 1;
  bottom: 18px;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.theme-card__number {
  left: 18px;
}

.theme-card__open {
  right: 18px;
}

.theme-card__copy {
  padding: 17px 2px 4px;
}

.theme-card__copy p {
  margin: 0 0 4px;
  color: var(--sage-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.theme-card__copy h3 {
  margin: 0 0 7px;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.theme-card__copy span {
  display: block;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.wedding-examples {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  grid-template-rows: repeat(2, 330px);
  gap: 18px;
}

.wedding-example {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--sage-dark);
  text-align: left;
}

.wedding-example--1 {
  grid-row: 1 / 3;
}

.wedding-example__art {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--ivory);
  transition: transform 800ms var(--ease), filter 800ms var(--ease);
}

.wedding-example:hover .wedding-example__art {
  transform: scale(1.035);
}

.wedding-example__art b {
  z-index: 2;
  color: var(--sage-dark);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(72px, 10vw, 150px);
  font-weight: 400;
  line-height: 1;
  opacity: 0.62;
}

.wedding-example:not(.wedding-example--1) .wedding-example__art b {
  font-size: clamp(70px, 7vw, 108px);
  opacity: 0.28;
  transform: translateY(-24%);
}

.wedding-example__art i {
  position: absolute;
  display: block;
  border: 1px solid rgba(52, 72, 61, 0.2);
  border-radius: 50%;
}

.wedding-example__art i:nth-child(1) {
  top: -22%;
  right: -14%;
  width: 64%;
  aspect-ratio: 1;
}

.wedding-example__art i:nth-child(2) {
  bottom: -34%;
  left: -8%;
  width: 58%;
  aspect-ratio: 1;
}

.wedding-example__art i:nth-child(3) {
  top: 12%;
  left: 10%;
  width: 1px;
  height: 76%;
  border: 0;
  border-radius: 0;
  background: rgba(52, 72, 61, 0.24);
  transform: rotate(24deg);
}

.wedding-example--botanical .wedding-example__art {
  background:
    radial-gradient(ellipse at 7% 92%, rgba(96, 124, 101, 0.32) 0 8%, transparent 8.5%),
    radial-gradient(ellipse at 18% 84%, rgba(96, 124, 101, 0.2) 0 10%, transparent 10.5%),
    linear-gradient(145deg, #e6ebe3, #f8f5ec);
}

.wedding-example--garden .wedding-example__art {
  background:
    repeating-linear-gradient(90deg, transparent 0 54px, rgba(110, 128, 111, 0.12) 54px 55px),
    linear-gradient(155deg, #dfe7dc, #f3eee2);
}

.wedding-example--classic .wedding-example__art {
  background:
    linear-gradient(45deg, transparent 49.8%, rgba(147, 98, 79, 0.2) 50%, transparent 50.2%),
    linear-gradient(-45deg, transparent 49.8%, rgba(147, 98, 79, 0.12) 50%, transparent 50.2%),
    #eee9dd;
}

.wedding-example::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(19, 34, 26, 0.02) 34%, rgba(19, 34, 26, 0.82));
}

.package-art {
  position: absolute;
  z-index: -2;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.28);
  background:
    radial-gradient(circle at 75% 24%, rgba(197, 166, 105, 0.24), transparent 28%),
    linear-gradient(145deg, #51675b, #1f352b);
}

.package-art span {
  font-family: "Cormorant Garamond", serif;
  font-size: 150px;
}

.package-art--essential {
  color: rgba(52, 72, 61, 0.25);
  background: linear-gradient(145deg, #f3eee3, #dfe6df);
}

.package-art--signature {
  background:
    repeating-linear-gradient(45deg, transparent 0 38px, rgba(255, 255, 255, 0.06) 38px 39px),
    linear-gradient(145deg, #879a8c, #34483d);
}

.wedding-example__overlay {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 26px;
  left: 28px;
  display: grid;
}

.wedding-example__overlay small {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.wedding-example__overlay strong {
  max-width: 500px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500;
  line-height: 0.98;
}

.wedding-example__overlay em {
  margin-top: 15px;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonials-section {
  padding: 112px 0;
  color: var(--white);
  background: var(--sage-dark);
}

.testimonials-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(60px, 10vw, 140px);
}

.testimonials-intro .eyebrow {
  color: #d9cebd;
}

.testimonials-intro h2 {
  max-width: 470px;
  font-size: clamp(46px, 5vw, 72px);
}

.testimonial-carousel {
  position: relative;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.testimonial-mark {
  position: absolute;
  top: 14px;
  left: 0;
  color: #d9cebd;
  font-family: "Cormorant Garamond", serif;
  font-size: 54px;
  line-height: 1;
}

.testimonial-carousel blockquote {
  max-width: 760px;
  min-height: 210px;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 4.5vw, 62px);
  font-weight: 400;
  line-height: 1.04;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
}

.testimonial-footer cite {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.testimonial-controls button {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.testimonial-controls button:hover {
  color: var(--sage-deep);
  background: var(--white);
}

.testimonial-controls span {
  min-width: 44px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  text-align: center;
}

.home-cta {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: var(--white);
  background: var(--sage-deep);
}

.home-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(27, 47, 36, 0.95), rgba(27, 47, 36, 0.58) 56%, rgba(27, 47, 36, 0.18)),
    url("/webluxe-mozambique-hero.png") center / cover no-repeat;
  filter: saturate(0.65);
  transform: scale(1.015);
}

.home-cta__content {
  position: relative;
  z-index: 1;
  padding: 128px 0;
}

.home-cta .eyebrow {
  color: #ded3c1;
}

.home-cta h2 {
  max-width: 800px;
  font-size: clamp(54px, 7vw, 94px);
  line-height: 0.92;
}

.home-cta p:not(.eyebrow) {
  max-width: 570px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

@media (max-width: 1024px) {
  .desktop-nav,
  .header-actions > .button {
    display: none;
  }

  .menu-button {
    display: block;
  }

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

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

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

  .package-card {
    min-height: 560px;
  }

  .preview-toolbar {
    grid-template-columns: 1fr auto;
  }

  .device-switcher {
    grid-row: 2;
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 8px;
  }

  .preview-toolbar__end .button {
    display: none;
  }

  .preview-stage {
    padding: 18px;
  }

  .package-modal-content {
    grid-template-columns: minmax(250px, 0.75fr) minmax(300px, 1fr);
    gap: 40px;
  }

  .wedding-examples {
    grid-template-rows: repeat(2, 290px);
  }
}

@media (max-width: 760px) {
  :root {
    --nav-height: 68px;
  }

  .shell {
    width: min(100% - 28px, 1180px);
  }

  .brand img {
    width: 124px;
  }

  .page-hero {
    padding: 66px 0 48px;
  }

  .page-hero__grid,
  .section-heading,
  .feature-band,
  .contact-layout,
  .cta-band__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .page-hero h1 {
    font-size: clamp(46px, 15vw, 68px);
  }

  .home-hero {
    min-height: calc(82svh - var(--nav-height));
  }

  .home-hero::before {
    background:
      linear-gradient(0deg, rgba(25, 45, 34, 0.96) 0%, rgba(32, 54, 42, 0.68) 65%, rgba(32, 54, 42, 0.12) 100%),
      url("/webluxe-mozambique-hero.png") 68% center / cover no-repeat;
  }

  .home-hero__content {
    width: 100%;
    padding: 70px 0 46px;
  }

  .home-hero h1 {
    font-size: clamp(50px, 14.5vw, 72px);
  }

  .home-hero p:not(.eyebrow) {
    font-size: 16px;
  }

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

  .proof-item {
    padding: 18px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .section {
    padding: 74px 0;
  }

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

  .section-heading h2 {
    font-size: clamp(39px, 12vw, 56px);
  }

  .section-heading .editorial-link {
    justify-self: start;
  }

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

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

  .package-preview-grid {
    display: grid;
    grid-auto-columns: min(88vw, 380px);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 14px;
    margin-right: -14px;
    padding-right: 14px;
    padding-bottom: 14px;
    overflow-x: auto;
    scroll-snap-type: inline mandatory;
  }

  .package-preview-card {
    scroll-snap-align: start;
  }

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

  .service-card__number {
    margin-bottom: 38px;
  }

  .feature-band__media {
    min-height: 480px;
  }

  .feature-band__content {
    padding: 60px 22px;
  }

  .template-toolbar {
    top: var(--nav-height);
  }

  .filter-group {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .filter-group > span {
    padding-left: 2px;
  }

  .template-grid {
    gap: 36px;
  }

  .template-card__preview {
    height: min(122vw, 540px);
  }

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

  .template-card__actions {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .process-step {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .process-step h3 {
    margin-top: 48px;
  }

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

  .package-preview-card__visual {
    min-height: 410px;
  }

  .hero-scroll {
    display: none;
  }

  .carousel-heading {
    align-items: center;
    margin-top: -8px;
  }

  .theme-rail {
    grid-auto-columns: min(82vw, 340px);
    margin-right: -14px;
    padding-right: 14px;
  }

  .theme-card__preview {
    height: 430px;
  }

  .wedding-examples {
    display: grid;
    grid-auto-columns: min(86vw, 380px);
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-template-rows: 540px;
    margin-right: -14px;
    padding-right: 14px;
    padding-bottom: 14px;
    overflow-x: auto;
    scroll-snap-type: inline mandatory;
  }

  .wedding-example,
  .wedding-example--1 {
    grid-row: auto;
    scroll-snap-align: start;
  }

  .testimonials-section {
    padding: 78px 0;
  }

  .testimonials-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .testimonial-carousel blockquote {
    min-height: 250px;
  }

  .home-cta {
    min-height: 620px;
  }

  .home-cta__content {
    padding: 100px 0;
  }

  .pdf-band {
    grid-template-columns: 1fr;
  }

  .pdf-band > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pdf-band > div:last-child {
    border-bottom: 0;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 24px 18px;
  }

  .field--wide {
    grid-column: auto;
  }

  .preview-toolbar {
    min-height: 112px;
    padding: 8px 10px;
  }

  .preview-title span {
    display: none;
  }

  .preview-toolbar__end {
    gap: 4px;
  }

  .template-stepper {
    display: flex;
  }

  .device-switcher button {
    padding-inline: 11px;
  }

  .preview-stage {
    padding: 10px;
  }

  .package-preview-label {
    display: none;
  }

  .template-modal--package .preview-toolbar {
    min-height: 66px;
  }

  .preview-stage--package {
    align-items: flex-start;
    padding: 14px 10px 30px;
  }

  .package-modal-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .package-modal-phone {
    width: min(82vw, 315px);
    height: min(67svh, 650px);
    min-height: 500px;
    border-radius: 42px;
  }

  .package-modal-phone iframe {
    border-radius: 32px;
  }

  .package-modal-details {
    padding: 0 10px 20px;
  }

  .package-modal-details h2 {
    font-size: 54px;
  }

  .preview-browser {
    border-radius: 5px;
  }

  .preview-browser[data-device="desktop"],
  .preview-browser[data-device="tablet"] {
    width: 100%;
  }

  .preview-browser[data-device="mobile"] {
    width: min(100%, 390px);
    border-width: 7px;
    border-radius: 30px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .carousel-heading > p {
    display: none;
  }

  .carousel-heading {
    justify-content: flex-end;
  }

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

  .testimonial-carousel blockquote {
    min-height: 330px;
  }

  .home-cta .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .preview-title {
    display: none;
  }

  .preview-toolbar {
    grid-template-columns: auto 1fr;
  }

  .device-switcher {
    width: 100%;
  }

  .device-switcher button {
    flex: 1;
    padding-inline: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
