@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@1,500;1,600&family=Inter:wght@500;600;700;800&display=swap");

@font-face {
  font-family: "Cormorant";
  src: url("./fonte/CormorantGaramond-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Griffiths";
  src: url("./fonte/Griffiths.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


:root {
  --primary: #6A0F23;      /* vinho */
  --primary-hover: #540B1B;

  --petrol: #162223;       /* verde petróleo */
  --gold: #C8A56B;         /* dourado fosco */

  --accent: #520d0d;       /* terracota elegante */
  --coral: #660c14;        /* coral fechado */
  --rose: #8a1630;
  --sage: #7FAE8C;
  --stone: #C8A56B;
  --mist: #E7E7E5;
  --mint: #E8F0EA;
  --dark: #071112;
  --blue-100: rgba(200, 165, 107, 0.16);
  --blue-300: var(--gold);
  --blue-400: var(--primary);
  --blue-500: var(--primary);

  --title-font: "Griffiths", Georgia, serif;

  --warm-white: #F1F1F0;
  --white: #F1F1F0;
  --soft: #F1F1F0;

  --text: #162223;
  --muted: #5F6A6C;

  --line: #F1F1F0;

  --success: #7FAE8C;
  --error: #721111;

  --shadow: 0 22px 60px rgba(22,34,35,.14);
  --hero-overlay: rgba(22,34,35,.55);
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, var(--soft) 0%, var(--white) 46%, var(--soft) 100%);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: #F1F1F0;
  border-bottom: 2px solid rgb(92, 0, 20);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 30px rgba(22, 34, 35, 0.1);
}

.header-inner {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: auto;
  min-width: 0;
  white-space: nowrap;
}

.brand-symbol {
  display: block;
  width: auto;
  height: 74px;
  flex: 0 0 auto;
  transform: none;
}

.brand-logo {
  display: none;
  width: 230px;
  height: auto;
  flex: 0 0 auto;
  transform: none;
}

.inline-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  vertical-align: middle;
}

.inline-brand-symbol,
.inline-brand-logo {
  display: block;
  flex: 0 0 auto;
}

.inline-brand-symbol {
  width: auto;
  height: 46px;
  transform: translateY(-4px);
}

.inline-brand-logo {
  width: 210px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 26px;
  color: var(--petrol);
  font-size: 14px;
  font-weight: 500;
}

.main-nav a,
.nav-title {
  color: inherit;
  border: 0;
  background: transparent;
  padding: 24px 0;
  cursor: pointer;
}

.main-nav a:hover,
.nav-title:hover {
  color: var(--blue-500);
}

.nav-group {
  position: relative;
}

.nav-title::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-submenu {
  position: absolute;
  top: 64px;
  left: -20px;
  min-width: 210px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.2s ease;
}

.nav-submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
}

.nav-submenu a:hover {
  background: #F1F1F0;
}

.nav-group:hover .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.login-link {
  color: var(--blue-500);
  font-size: 14px;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 600;
  line-height: 1.2;
  transition: 0.2s ease;
  white-space: nowrap;
}

.button-small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 14px;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), #8a1630);
  border-color: var(--primary);
  box-shadow: 0 12px 26px rgba(106, 15, 35, 0.24);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--primary-hover), var(--primary));
  border-color: var(--primary-hover);
}

.button-white {
  color: var(--petrol);
  background: var(--white);
  border-color: var(--white);
}

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

.button-ghost {
  color: var(--white);
  background: rgba(241, 241, 240, 0.2);
  border-color: rgba(241, 241, 240, 0.28);
}

.button-ghost:hover {
  background: rgba(241, 241, 240, 0.32);
}

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

.button-outline:hover {
  color: var(--petrol);
  background: var(--gold);
  border-color: var(--gold);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  padding: 9px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--petrol);
}

.hero {
  position: relative;
  min-height: 820px;
  padding-top: 72px;
  overflow: hidden;
  color: var(--white);
  background: var(--petrol);
  isolation: isolate;
}

.hero-slider,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slider {
  z-index: -3;
}

.hero-slide {
  background-position: center center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.01) translateX(0);
  animation: heroSlide 35s infinite;
}

.hero-slide-one {
  background-image: url("img/01 (3).png");
}

.hero-slide-two {
  background-image: url("img/01 (4).png");
  animation-delay: 7s;
}

.hero-slide-three {
  background-image: url("img/01 (5).png");
  animation-delay: 14s;
}

.hero-slide-four {
  background-image: url("img/01 (6).png");
  animation-delay: 21s;
}

.hero-slide-five {
  background-image: url("img/01 (7).png");
  animation-delay: 28s;
}

.hero-slide-six,
.hero-slide-seven {
  display: none;
}

.hero-overlay {
  display: block;
  z-index: -2;
  background:
    radial-gradient(circle at 24% 28%, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.20), rgba(22, 119, 128, 0.253));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  background: linear-gradient(180deg, rgba(241, 241, 240, 0) 0%, rgba(241, 241, 240, 0.62) 55%, var(--soft) 100%);
  z-index: -1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 620px 0 170px;
  max-width: none;
  transform: none;
}

.hero-copy {
  max-width: none;
  text-align: center;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--title-font);
}

h1 {
  max-width: none;
  margin-bottom: 20px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.02;
  font-weight: 650;
  letter-spacing: 0;
}

.hero-copy h1 {
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-copy .hero-statement {
  color: #071112;
  width: max-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(30px, 4.1vw, 54px);
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-copy .hero-statement em {
  color: var(--gold);
  font-style: italic;
  font-weight: 650;
}

.hero-title{
  font-family: var(--title-font);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
   text-align: center;
}
.hero-title span{
  color: var(--coral);
  font-style: italic;
}

.inline-brand-hero {
  width: fit-content;
  padding: 14px 18px 10px;
  background: #F1F1F0;
  border: 1px solid #F1F1F0;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(51, 51, 51, 0.14);
}

.inline-brand-hero .inline-brand-symbol {
  height: 58px;
}

.inline-brand-hero .inline-brand-logo {
  width: 286px;
}

.hero-content p {
  max-width: 620px;
  margin-bottom: 34px;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 300;
}

.hero-copy p {
  color: #F1F1F0;
  text-shadow: 0 10px 30px rgba(51, 51, 51, 0.2);
}

.hero-actions,
.section-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-actions {
  width: 100%;
  justify-content: center;
  margin-top: clamp(40px, 7vh, 80px);
}

.hero-actions .button {
  color: var(--gold);
  background: #071112;
  border-color: #071112;
}

.hero-actions .button:hover {
  color: var(--primary);
  background: #0d1b1d;
  border-color: #0d1b1d;
}

.hero .button-ghost {
  color: var(--gold);
  background: #071112;
  border-color: #071112;
}

.hero .button-ghost:hover {
  background: #0d1b1d;
  border-color: #0d1b1d;
}

.hero-link {
  display: inline-block;
  align-self: center;
  margin-top: 28px;
  color: var(--white);
  font-weight: 600;
  text-align: center;
  border-bottom: 1px solid rgba(169, 129, 0, 0.9);
}

.hero-preview {
  display: none;
}

.hero-corner-card {
  display: none;
}
/* estilos normais */

body{
   background: var(--warm-white);
}

.navbar{
   height:90px;
}

.sobre{
   min-height:100vh;
}

/* aqui termina os estilos normais */


/* RESPONSIVO */
@media(max-width:768px){

   .sobre{
      padding:40px;
   }

}

@keyframes heroSlide {
  0% {
    opacity: 0;
    transform: scale(1.01) translateX(0);
  }

  4%,
  18% {
    opacity: 1;
  }

  22%,
  100% {
    opacity: 0;
    transform: scale(1.04) translateX(-1.5%);
  }
}

.browser-card {
  overflow: hidden;
  border: 10px solid rgba(241, 241, 240, 0.72);
  border-radius: 16px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.25);
  transform: rotate(-2deg);
}

.browser-top,
.layout-browser {
  display: flex;
  gap: 6px;
  padding: 12px;
  background: var(--white);
}

.browser-top span,
.layout-browser span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--stone);
}

.wedding-screen {
  min-height: 270px;
  display: grid;
  place-content: center;
  text-align: center;
  background-image: linear-gradient(rgba(22, 34, 35, 0.38), rgba(221, 106, 115, 0.18)), url("https://images.unsplash.com/photo-1511285560929-80b456fea0bc?auto=format&fit=crop&w=900&q=78");
  background-position: center;
  background-size: cover;
}

.wedding-screen p {
  margin: 0;
  color: var(--white);
  font-weight: 300;
}

.script-name {
  font-family: var(--title-font);
  font-size: 46px;
  font-style: italic;
}

.section {
  padding: 104px 0;
}

@media (min-width: 861px) {
  .intro {
    margin-top: 120px;
  }
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 72px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.video-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  background-image: url("img/01 (7).png");
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 82px;
  height: 82px;
  border: 0;
  border-radius: 50%;
  color: var(--coral);
  background: var(--warm-white);
  box-shadow: 0 18px 40px rgba(69, 98, 104, 0.18);
  transform: translate(-50%, -50%);
  font-size: 26px;
  padding-left: 6px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.video-card.is-playing .play-button {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.92);
}

.copy-block .eyebrow,
.section-heading .eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue-500);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  color: var(--dark);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0;
}

.copy-block p,
.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.copy-block p {
  margin-bottom: 18px;
}

.section-actions {
  margin-top: 30px;
}

.layouts,
.features,
.faq {
  background: linear-gradient(180deg, var(--white), var(--soft));
}

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

.section-heading h2::after,
.copy-block h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  margin: 16px auto 0;
  background: var(--gold);
}

.copy-block h2::after {
  margin-left: 0;
}

.layouts {
  background: #071112;
  scroll-margin-top: 92px;
}

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

.theme-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.theme-heading h2 {
  color: #F7F3EE;
}

.theme-heading p {
  color: rgba(247, 243, 238, 0.7);
}

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

.layout-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  border-radius: 25px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  isolation: isolate;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.layout-card:hover,
.layout-card:focus-visible {
  box-shadow: 0 34px 84px rgba(0, 0, 0, 0.42);
  outline: 0;
  transform: translateY(-10px);
}

.layout-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s ease;
}

.layout-card:hover img,
.layout-card:focus-visible img {
  transform: scale(1.06);
}

.layout-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.15)
    );
}

.layout-content {
  width: 100%;
  padding: 34px;
  color: #F7F3EE;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}

.layout-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: #C8A56B;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.layout-content h3 {
  margin-bottom: 4px;
  color: #F7F3EE;
  font-family: "Cormorant Garamond", "Cormorant", Georgia, serif;
  font-size: clamp(42px, 6vw, 68px);
  font-style: italic;
  font-weight: 500;
  line-height: 0.95;
}

.layout-content p {
  margin-bottom: 18px;
  color: rgba(247, 243, 238, 0.7);
  font-size: 17px;
  font-weight: 600;
}

.layout-features {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.layout-features li {
  padding: 7px 10px;
  color: rgba(247, 243, 238, 0.86);
  background: rgba(247, 243, 238, 0.12);
  border: 1px solid rgba(247, 243, 238, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.layout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.layout-actions button {
  min-height: 44px;
  padding: 0 18px;
  color: #071112;
  background: #C8A56B;
  border: 1px solid #C8A56B;
  border-radius: 999px;
  cursor: pointer;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
}

.layout-actions button:first-child {
  color: #F7F3EE;
  background: rgba(247, 243, 238, 0.12);
  border-color: rgba(247, 243, 238, 0.32);
}

.layout-actions button:hover,
.layout-actions button:focus-visible {
  color: #F7F3EE;
  background: #6A0F23;
  border-color: #6A0F23;
  outline: 0;
}

.center-actions {
  justify-content: center;
  margin-top: 42px;
}

.gift-list {
  background: linear-gradient(180deg, var(--soft), #F1F1F0);
}

.check-list {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue-300);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
}

.gift-visual,
.app-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.gift-bg {
  position: absolute;
  inset: 58px 0 34px;
  border-radius: 8px;
  background-image: linear-gradient(135deg, rgba(226, 192, 141, 0.26), #F1F1F0), url("https://images.unsplash.com/photo-1482482097755-0b595893ba63?auto=format&fit=crop&w=900&q=76");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.phone {
  position: relative;
  width: 250px;
  min-height: 500px;
  padding: 18px;
  background: var(--petrol);
  border-radius: 32px;
  box-shadow: 0 28px 70px rgba(69, 98, 104, 0.25);
}

.phone-large {
  transform: translateX(36px) rotate(3deg);
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 86px;
  height: 20px;
  background: var(--petrol);
  border-radius: 0 0 12px 12px;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-screen {
  min-height: 464px;
  padding: 54px 18px 22px;
  overflow: hidden;
  background: var(--white);
  border-radius: 22px;
}

.phone-screen h3 {
  margin-bottom: 22px;
  color: var(--dark);
  font-size: 24px;
}

.gift-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.gift-item span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--petrol);
  background: var(--mint);
  border-radius: 50%;
}

.gift-item strong,
.gift-item small {
  display: block;
}

.gift-item small {
  color: var(--muted);
}

.progress {
  height: 10px;
  margin-top: 26px;
  overflow: hidden;
  background: var(--mist);
  border-radius: 999px;
}

.progress span {
  display: block;
  width: 68%;
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--gold));
}

.app-section {
  background: #F1F1F0;
}

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

.tilted {
  transform: rotate(-5deg);
}

.app-screen {
  background: linear-gradient(180deg, var(--mint), var(--white));
}

.app-screen h3 {
  color: var(--blue-500);
}

.app-brand-title {
  margin-bottom: 22px;
}

.inline-brand-app {
  max-width: 100%;
}

.inline-brand-app .inline-brand-symbol {
  height: 34px;
}

.inline-brand-app .inline-brand-logo {
  width: 132px;
}

.notification {
  padding: 14px;
  margin-bottom: 14px;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(69, 98, 104, 0.08);
  font-size: 14px;
}

.floating-note {
  position: absolute;
  padding: 12px 16px;
  color: var(--blue-500);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  font-weight: 700;
}

.note-one {
  top: 120px;
  right: 42px;
}

.note-two {
  left: 32px;
  bottom: 128px;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.store-row a {
  min-width: 150px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--dark);
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
}

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

.feature-grid article,
.testimonial-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(22, 34, 35, 0.08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--sage), var(--petrol));
  border-radius: 50%;
  font-weight: 700;
}

.feature-grid h3 {
  margin-bottom: 10px;
  color: var(--dark);
  font-size: 20px;
  line-height: 1.25;
}

.feature-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.press {
  padding-bottom: 76px;
}

.media-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.inline-brand-heading {
  padding: 10px 12px 7px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(69, 98, 104, 0.08);
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.logo-cloud span {
  min-height: 76px;
  display: grid;
  place-items: center;
  color: var(--petrol);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
}

.testimonials {
  background: linear-gradient(180deg, var(--warm-white), var(--white));
}

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

.couple-photo {
  width: 86px;
  height: 86px;
  margin-bottom: 22px;
  border-radius: 50%;
  background-position: center;
  background-size: cover;
  border: 4px solid #F1F1F0;
}

.photo-one {
  background-image: url("https://images.unsplash.com/photo-1522673607200-164d1b6ce486?auto=format&fit=crop&w=300&q=78");
}

.photo-two {
  background-image: url("https://images.unsplash.com/photo-1529634806980-85c3dd6d34ac?auto=format&fit=crop&w=300&q=78");
}

.photo-three {
  background-image: url("https://images.unsplash.com/photo-1523438885200-e635ba2c371e?auto=format&fit=crop&w=300&q=78");
}

.testimonial-card p {
  color: var(--muted);
}

.stars {
  margin-bottom: 16px;
  color: var(--gold);
  letter-spacing: 0;
}

.testimonial-card h3 {
  margin-bottom: 4px;
  color: var(--dark);
  font-size: 19px;
}

.testimonial-card small {
  color: var(--muted);
}

.accordion {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.accordion button {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  color: var(--dark);
  background: var(--white);
  border: 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-weight: 700;
}

.accordion button span {
  color: var(--blue-500);
  font-size: 24px;
}

.accordion-panel {
  display: none;
  padding: 0 24px 22px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.accordion-panel.is-open {
  display: block;
}

.footer {
  color: var(--white);
  background: linear-gradient(180deg, #162223, #10191a);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 46px;
  padding: 62px 0;
}

.footer p {
  color: #F1F1F0;
}

.footer h3 {
  margin-bottom: 14px;
  font-size: 16px;
}

.footer a {
  display: block;
  margin-bottom: 10px;
  color: #F1F1F0;
}

.footer-brand {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

.social-row a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

.footer-seals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-seals span {
  padding: 7px 10px;
  color: var(--petrol);
  background: var(--gold);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
}

.floating-cta {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 90;
  display: none;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), #8a1630);
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(106, 15, 35, 0.28);
  transform: translateX(-50%);
  font-weight: 700;
}

.chat-assistant {
  position: fixed;
  right: 24px;
  bottom: 20px;
  z-index: 95;
  width: clamp(96px, 12vw, 138px);
  aspect-ratio: 1;
  display: block;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  filter: drop-shadow(0 14px 24px rgba(51, 51, 51, 0.18));
  transition: transform 0.2s ease, filter 0.2s ease;
  outline: 0;
}

.chat-assistant:hover,
.chat-assistant:focus,
.chat-assistant:focus-visible {
  filter: drop-shadow(0 18px 30px rgba(51, 51, 51, 0.24));
  transform: translateY(-4px);
  outline: 0;
}

.chat-assistant img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.chat-panel {
  position: fixed;
  right: 26px;
  bottom: 150px;
  z-index: 96;
  width: min(320px, calc(100vw - 32px));
  display: none;
  padding: 18px;
  color: var(--text);
  background: #F1F1F0;
  border: 1px solid #F1F1F0;
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(69, 98, 104, 0.18);
}

.chat-panel.is-open {
  display: block;
}

.chat-close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 28px;
  height: 28px;
  color: var(--muted);
  background: transparent;
  border: 0;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.chat-message {
  max-width: 240px;
  margin: 0 26px 14px 0;
  padding: 12px 14px;
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.45;
}

.chat-options {
  display: grid;
  gap: 8px;
}

.chat-options button {
  min-height: 38px;
  padding: 9px 12px;
  color: var(--petrol);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.chat-options button:hover,
.chat-options button:focus-visible {
  color: var(--blue-500);
  border-color: rgba(221, 106, 115, 0.55);
  outline: 0;
}

.chat-response {
  display: none;
  margin-top: 12px;
  padding: 12px 14px;
  color: var(--petrol);
  background: rgba(221, 106, 115, 0.14);
  border: 1px solid rgba(221, 106, 115, 0.24);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.45;
}

.chat-response.is-visible {
  display: block;
}

.login-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 12%, rgba(221, 106, 115, 0.14), transparent 28%),
    linear-gradient(135deg, var(--warm-white), var(--white) 46%, #F1F1F0);
}

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 20px;
}

.login-brand {
  position: fixed;
  top: 24px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #F1F1F0;
  border: 1px solid #F1F1F0;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(69, 98, 104, 0.08);
  backdrop-filter: blur(12px);
}

.login-card {
  width: min(430px, 100%);
  padding: 34px;
  text-align: center;
  background: rgba(255, 253, 252, 0.96);
  border: 1px solid #F1F1F0;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(69, 98, 104, 0.16);
}

.login-card-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 10px 12px;
}

.login-card-logo .brand-symbol {
  height: 42px;
}

.login-card-logo .brand-logo {
  width: 180px;
}

.login-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue-500);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.login-card h1 {
  margin-bottom: 8px;
  color: var(--petrol);
  font-size: clamp(30px, 5vw, 40px);
  line-height: 1.08;
}

.login-card p {
  margin-bottom: 22px;
  color: var(--muted);
}

.social-login {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.social-login .social-button:first-child {
  grid-column: 1 / -1;
}

.social-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 14px;
  color: var(--petrol);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}

.social-button:hover,
.social-button:focus-visible {
  border-color: rgba(221, 106, 115, 0.55);
  box-shadow: 0 10px 24px rgba(69, 98, 104, 0.08);
  outline: 0;
}

.social-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.login-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
  color: var(--muted);
  font-size: 13px;
}

.login-divider::before,
.login-divider::after {
  content: "";
  height: 1px;
  background: var(--line);
}

.login-form {
  display: grid;
  gap: 14px;
}

.input-group {
  display: grid;
  gap: 7px;
  color: var(--petrol);
  font-size: 14px;
  font-weight: 700;
}

.input-shell {
  position: relative;
  display: block;
}

.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  color: var(--blue-500);
  font-size: 15px;
  font-weight: 800;
  transform: translateY(-50%);
}

.input-shell input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px 0 42px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
}

.input-shell input:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(221, 106, 115, 0.16);
}

.login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 2px 0 8px;
  font-size: 13px;
}

.remember-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.remember-login input {
  width: 16px;
  height: 16px;
  accent-color: var(--coral);
}

.login-options a {
  color: var(--blue-500);
  font-weight: 700;
}

.login-submit {
  width: 100%;
}

.login-feedback {
  min-height: 20px;
  margin: 0;
  font-size: 13px;
}

.login-feedback[data-type="error"] {
  color: var(--error);
}

.login-feedback[data-type="success"] {
  color: var(--success);
}

.modal-layer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-layer.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(51, 51, 51, 0.62);
  backdrop-filter: blur(5px);
}

.modal {
  position: relative;
  width: min(960px, 100%);
  max-height: min(780px, calc(100vh - 48px));
  display: none;
  overflow-y: auto;
  padding: 34px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(51, 51, 51, 0.26);
}

.modal.is-active {
  display: block;
}

.compact-modal {
  width: min(560px, 100%);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue-500);
  background: var(--white);
  font-size: 24px;
  line-height: 1;
}

.modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 30px;
  align-items: stretch;
}

.tool-form h2 {
  font-size: clamp(28px, 4vw, 38px);
}

.tool-form label {
  display: block;
  margin-bottom: 16px;
  color: var(--dark);
  font-weight: 700;
}

.tool-form input,
.tool-form select,
.tool-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
}

.tool-form input[type="color"] {
  min-height: 48px;
  padding: 5px;
}

.tool-form input[type="file"] {
  padding: 11px;
  background: var(--warm-white);
}

.form-row,
.option-grid,
.form-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

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

.option-grid {
  margin: 4px 0 18px;
}

.option-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  margin: 0;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
}

.option-grid input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--blue-300);
}

.tool-form input:focus,
.tool-form select:focus,
.tool-form textarea:focus {
  border-color: var(--blue-300);
  box-shadow: 0 0 0 3px rgba(221, 106, 115, 0.18);
}

.inline-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.live-preview {
  min-height: 470px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 34px;
  color: var(--white);
  text-align: center;
  border-radius: 8px;
  background-image: linear-gradient(rgba(22, 34, 35, 0.42), rgba(221, 106, 115, 0.24)), url("https://images.unsplash.com/photo-1511285560929-80b456fea0bc?auto=format&fit=crop&w=900&q=78");
  background-position: center;
  background-size: cover;
}

.live-preview.classic {
  background-image: linear-gradient(rgba(51, 51, 51, 0.46), rgba(69, 98, 104, 0.52)), url("https://images.unsplash.com/photo-1520854221256-17451cc331bf?auto=format&fit=crop&w=900&q=78");
}

.live-preview.modern {
  background-image: linear-gradient(rgba(69, 98, 104, 0.48), rgba(168, 181, 161, 0.38)), url("https://images.unsplash.com/photo-1532712938310-34cb3982ef74?auto=format&fit=crop&w=900&q=78");
}

.preview-ribbon {
  margin-bottom: 18px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.live-preview .preview-ribbon {
  background: color-mix(in srgb, var(--preview-color, var(--blue-300)) 70%, transparent);
}

.live-preview h3 {
  margin-bottom: 8px;
  font-family: var(--title-font);
  font-size: clamp(42px, 7vw, 64px);
  font-style: italic;
  line-height: 1.05;
}

.live-preview p {
  margin-bottom: 22px;
  font-size: 20px;
  font-weight: 700;
}

.live-preview strong {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
}

.live-preview span {
  max-width: 360px;
  font-size: 18px;
}

.results-list,
.gift-shop,
.guest-list,
.gift-summary {
  display: grid;
  gap: 12px;
}

.gift-shop {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.result-card,
.shop-item,
.cart-item,
.guest-item {
  display: grid;
  gap: 8px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.result-card {
  grid-template-columns: 58px 1fr auto;
  align-items: center;
}

.result-avatar {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), var(--rose));
  border-radius: 50%;
  font-weight: 700;
}

.result-card h3,
.shop-item h3,
.gift-summary h3,
.guest-list h3 {
  margin-bottom: 0;
  color: var(--dark);
  font-size: 18px;
}

.result-card p,
.shop-item p,
.cart-item p,
.guest-item p {
  margin: 0;
  color: var(--muted);
}

.mini-button {
  min-height: 38px;
  padding: 0 14px;
  color: var(--white);
  background: var(--primary);
  border: 0;
  border-radius: 4px;
  font-weight: 700;
}

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

.shop-item {
  grid-template-columns: 1fr;
  align-items: stretch;
  overflow: hidden;
  padding: 0 0 14px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(22, 34, 35, 0.07);
}

.shop-photo {
  position: relative;
  min-height: 128px;
  border-radius: 8px 8px 0 0;
  background-position: center;
  background-size: cover;
}

.shop-photo span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px 9px;
  color: var(--white);
  background: rgba(22, 34, 35, 0.84);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.shop-copy {
  min-width: 0;
  padding: 14px 14px 0;
}

.shop-copy .shop-description {
  display: block;
  margin-top: 5px;
}

.shop-copy p:not(.shop-description) {
  display: none;
}

.shop-action {
  display: grid;
  justify-items: center;
  gap: 9px;
  padding: 0 14px;
}

.shop-price,
.summary-total strong {
  color: var(--blue-500);
  font-size: 20px;
  font-weight: 800;
}

.shop-price::before,
.couple-gift-card p::before {
  content: "por ";
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.gift-summary {
  align-content: start;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid var(--line);
}

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

.tools-grid button {
  min-height: 120px;
  padding: 18px;
  color: var(--blue-500);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  text-align: left;
}

.tools-grid button:hover {
  border-color: var(--blue-300);
  box-shadow: 0 12px 28px rgba(69, 98, 104, 0.1);
}

.utility-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.utility-actions a,
.utility-actions button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: var(--white);
  background: var(--blue-300);
  border: 0;
  border-radius: 4px;
  font-weight: 700;
}

.utility-actions .secondary {
  color: var(--blue-500);
  background: var(--blue-100);
}

.couple-page {
  background: var(--white);
}

.couple-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(20px, calc((100vw - 1120px) / 2));
  background: #F1F1F0;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.couple-header nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-weight: 700;
}

.couple-header nav a:hover {
  color: var(--blue-500);
}

.couple-hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  padding-top: 70px;
  color: var(--white);
  overflow: hidden;
}

.couple-hero-bg,
.couple-hero-overlay {
  position: absolute;
  inset: 0;
}

.couple-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1511285560929-80b456fea0bc?auto=format&fit=crop&w=1800&q=82");
  background-position: center;
  background-size: cover;
}

.couple-hero.classic .couple-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1520854221256-17451cc331bf?auto=format&fit=crop&w=1800&q=82");
}

.couple-hero.modern .couple-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1532712938310-34cb3982ef74?auto=format&fit=crop&w=1800&q=82");
}

.couple-hero-overlay {
  background: linear-gradient(90deg, rgba(22, 34, 35, 0.78), rgba(221, 106, 115, 0.32));
}

.theme-forest .couple-hero-overlay {
  background: linear-gradient(90deg, rgba(35, 61, 44, 0.78), rgba(111, 139, 107, 0.34));
}

.theme-classic .couple-hero-overlay {
  background: linear-gradient(90deg, rgba(14, 16, 18, 0.8), rgba(47, 52, 55, 0.28));
}

.theme-photo .couple-hero-overlay {
  background: linear-gradient(90deg, rgba(69, 98, 104, 0.64), rgba(217, 111, 99, 0.3));
}

.theme-blush .couple-hero-overlay {
  background: linear-gradient(90deg, rgba(86, 63, 68, 0.66), rgba(255, 143, 163, 0.28));
}

.couple-hero-content {
  position: relative;
  text-align: center;
}

.couple-hero-content span {
  display: inline-block;
  margin-bottom: 22px;
  padding: 9px 18px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
}

.couple-hero-content h1 {
  max-width: none;
  font-family: var(--title-font);
  font-style: italic;
}

.couple-hero-content p {
  margin-bottom: 34px;
  font-size: 24px;
  font-weight: 700;
}

.couple-hero-tagline {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: #F1F1F0;
  font-size: 22px;
  font-weight: 600;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.couple-hero-facts {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 6px auto 34px;
}

.couple-hero-facts div {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.couple-hero-facts strong,
.couple-hero-facts small {
  display: block;
}

.couple-hero-facts strong {
  color: var(--white);
  font-family: var(--title-font);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.05;
}

.couple-hero-facts small {
  margin-top: 5px;
  color: #F1F1F0;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.couple-detail-band {
  position: relative;
  z-index: 2;
  margin-top: -64px;
  padding-bottom: 30px;
}

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

.detail-grid article {
  min-height: 174px;
  padding: 26px;
  background: #F1F1F0;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 55px rgba(69, 98, 104, 0.14);
}

.detail-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-500);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--petrol);
  font-family: var(--title-font);
  font-size: 22px;
  line-height: 1.18;
}

.detail-grid p {
  margin: 0;
  color: var(--muted);
}

.story-photo {
  min-height: 460px;
  border-radius: 8px;
  background-image: url("https://images.unsplash.com/photo-1522673607200-164d1b6ce486?auto=format&fit=crop&w=900&q=80");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.story-photo.round {
  aspect-ratio: 1;
  min-height: 0;
  border-radius: 50%;
}

.story-photo.square {
  aspect-ratio: 1;
  min-height: 0;
  border-radius: 0;
}

.couple-gallery {
  background: var(--white);
}

.couple-gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 16px 42px rgba(69, 98, 104, 0.12);
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.38));
}

.gallery-tile span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--white);
  font-weight: 800;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.gallery-tile-1 {
  grid-row: span 2;
}

.gallery-tile-4 {
  grid-column: span 2;
}

.couple-schedule {
  background: linear-gradient(180deg, var(--warm-white), var(--white));
}

.schedule-list {
  width: min(860px, 100%);
  display: grid;
  gap: 14px;
  margin: 0 auto;
}

.schedule-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 22px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(69, 98, 104, 0.08);
}

.schedule-item span {
  color: var(--blue-500);
  font-family: var(--title-font);
  font-size: 24px;
  font-weight: 800;
}

.schedule-item strong {
  color: var(--petrol);
  font-size: 18px;
}

.couple-place {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--blue-500);
  font-weight: 800;
}

.hidden-section {
  display: none;
}

.couple-gifts {
  background: linear-gradient(180deg, var(--warm-white), #F1F1F0);
}

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

.couple-gift-card {
  overflow: hidden;
  padding: 0 0 18px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(22, 34, 35, 0.08);
}

.couple-gift-photo {
  position: relative;
  min-height: 185px;
  margin-bottom: 18px;
  background-position: center;
  background-size: cover;
}

.couple-gift-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.42));
}

.couple-gift-photo span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0 12px;
  color: var(--white);
  background: rgba(22, 34, 35, 0.86);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.couple-gift-card h3 {
  min-height: 48px;
  padding: 0 18px;
  margin-bottom: 8px;
  color: var(--dark);
  font-size: 19px;
}

.couple-gift-card small {
  display: block;
  min-height: 58px;
  padding: 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.couple-gift-card p {
  padding: 0 18px;
  color: var(--blue-500);
  font-size: 20px;
  font-weight: 800;
}

.couple-gift-card .mini-button {
  min-width: 128px;
  margin: 0 18px;
  background: #F1F1F0;
}

.couple-notes {
  background:
    radial-gradient(circle at 12% 18%, rgba(221, 106, 115, 0.14), transparent 30%),
    linear-gradient(180deg, var(--white), var(--soft));
}

.notes-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.note-form,
.note-board {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(22, 34, 35, 0.08);
}

.note-board h3 {
  margin-bottom: 18px;
  color: var(--petrol);
  font-size: 28px;
}

.note-list {
  display: grid;
  gap: 12px;
}

.note-card {
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-left: 3px solid var(--coral);
  border-radius: 8px;
}

.note-card p {
  margin-bottom: 10px;
  color: var(--muted);
}

.note-card strong {
  color: var(--petrol);
}

.couple-rsvp {
  background: var(--white);
}

.theme-forest .couple-story {
  background: linear-gradient(180deg, #F1F1F0, #F1F1F0);
}

.theme-classic .couple-story {
  background: linear-gradient(180deg, var(--warm-white), var(--white));
}

.theme-classic .couple-hero-content span {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.46);
}

.theme-photo .couple-story {
  background: linear-gradient(180deg, #F1F1F0, #F1F1F0);
}

.theme-blush .couple-story {
  background: linear-gradient(180deg, #F1F1F0, var(--warm-white));
}

.theme-forest .couple-gifts {
  background: linear-gradient(180deg, #eef5ec, var(--white));
}

.theme-classic .couple-gifts {
  background: linear-gradient(180deg, var(--white), var(--warm-white));
}

.theme-photo .couple-gifts {
  background: linear-gradient(180deg, #F1F1F0, var(--white));
}

.theme-blush .couple-gifts {
  background: linear-gradient(180deg, #F1F1F0, var(--white));
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 16px;
  }

  .header-actions {
    gap: 10px;
  }

  .hero-preview {
    opacity: 0.82;
  }

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

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

  .header-inner {
    height: 64px;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .main-nav {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 0;
    padding: 18px 20px 120px;
    overflow-y: auto;
    background: var(--white);
    font-size: 18px;
  }

  body.menu-open .main-nav {
    display: flex;
  }

  .main-nav a,
  .nav-title {
    width: 100%;
    padding: 16px 0;
    text-align: left;
    border-bottom: 1px solid var(--line);
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    padding: 0 0 12px 16px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-submenu a {
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 0;
  }

  .header-actions {
    margin-left: auto;
  }

  .login-link {
    display: none;
  }

  .header-actions .button {
    display: none;
  }

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

  .hero-content {
    padding: 94px 0 110px;
    transform: none;
  }

  .hero-copy .hero-statement {
    width: 100%;
    font-size: clamp(24px, 5vw, 38px);
    line-height: 1.08;
  }

  .hero-content p {
    font-size: 18px;
  }

  .hero-corner-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100% - 28px, 360px);
    margin: -72px auto 70px;
    display: block;
  }

  .hero-preview {
    display: none;
  }

  .section {
    padding: 76px 0;
  }

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

  .layout-card {
    min-height: 500px;
  }

  .split,
  .split.reverse {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .split.reverse .gift-visual {
    order: -1;
  }

  .video-card {
    min-height: 320px;
  }

  .gift-visual,
  .app-visual {
    min-height: 460px;
  }

  .logo-cloud,
  .testimonial-grid,
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .floating-cta {
    display: flex;
  }

  .chat-assistant {
    right: 12px;
    bottom: 78px;
    width: 96px;
  }

  .chat-panel {
    right: 12px;
    bottom: 176px;
  }

  .login-shell {
    align-items: start;
    padding-top: 104px;
  }

  .login-brand {
    top: 16px;
    left: 14px;
  }

  .login-card {
    padding: 28px 18px;
  }

  .login-options {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .modal {
    padding: 28px 18px;
  }

  .modal-grid,
  .inline-form,
  .result-card,
  .shop-item,
  .tools-grid,
  .couple-gift-grid,
  .form-row,
  .option-grid,
  .form-actions {
    grid-template-columns: 1fr;
  }

  .shop-action {
    justify-items: start;
  }

  .gift-shop {
    grid-template-columns: 1fr;
  }

  .shop-photo {
    min-height: 180px;
  }

  .live-preview {
    min-height: 360px;
  }

  .couple-header {
    min-height: 72px;
    align-items: center;
    flex-direction: row;
    gap: 12px;
    padding: 8px 14px;
  }

  .couple-header nav {
    min-width: 0;
    flex: 1;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    padding: 6px 0;
    font-size: 14px;
    scrollbar-width: none;
  }

  .couple-header nav::-webkit-scrollbar {
    display: none;
  }

  .couple-header nav a {
    flex: 0 0 auto;
  }

  .couple-hero {
    min-height: 640px;
    padding-top: 72px;
  }

  .couple-hero-facts,
  .detail-grid,
  .couple-gallery-grid,
  .couple-gift-grid,
  .notes-layout {
    grid-template-columns: 1fr;
  }

  .couple-detail-band {
    margin-top: -38px;
  }

  .gallery-tile,
  .gallery-tile-1,
  .gallery-tile-4 {
    grid-column: auto;
    grid-row: auto;
  }

  .schedule-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 620px) {
  .login-shell {
    align-items: start;
    padding: 24px 14px;
  }

  .login-card {
    padding: 24px 18px;
  }

  .modal-layer {
    padding: 10px;
  }

  .modal {
    max-height: calc(100svh - 20px);
    padding: 22px 16px;
  }

  .modal-close {
    top: 10px;
    right: 10px;
  }

  .login-card-logo {
    margin-bottom: 12px;
    padding: 0;
  }

  .login-card p {
    margin-bottom: 16px;
  }

  .social-login {
    gap: 8px;
  }

  .social-button {
    min-height: 42px;
  }

  .login-divider {
    margin: 16px 0;
  }

  .login-form {
    gap: 10px;
  }

  .input-shell input {
    min-height: 46px;
  }

  .brand {
    min-width: 0;
  }

  .brand-symbol {
    height: 54px;
    transform: none;
  }

  .brand-logo {
    width: 156px;
  }

  .inline-brand {
    gap: 8px;
  }

  .inline-brand-symbol {
    height: 34px;
    transform: translateY(-3px);
  }

  .inline-brand-logo {
    width: 156px;
  }

  .inline-brand-hero {
    padding: 10px 12px 7px;
  }

  .inline-brand-hero .inline-brand-symbol {
    height: 40px;
  }

  .inline-brand-hero .inline-brand-logo {
    width: 206px;
  }

  .inline-brand-heading .inline-brand-symbol,
  .inline-brand-app .inline-brand-symbol {
    height: 30px;
  }

  .inline-brand-heading .inline-brand-logo,
  .inline-brand-app .inline-brand-logo {
    width: 128px;
  }

  .hero-main-image {
    height: 330px;
    object-position: 30% center;
  }

  .hero-copy .hero-statement {
    font-size: clamp(18px, 5.5vw, 30px);
  }

  .hero-actions,
  .section-actions,
  .center-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .social-login {
    grid-template-columns: 1fr;
  }

  .social-login .social-button:first-child {
    grid-column: auto;
  }

  .button {
    width: 100%;
  }

  .layout-grid,
  .feature-grid,
  .logo-cloud,
  .testimonial-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .layout-card {
    min-height: 520px;
  }

  .phone-large,
  .tilted {
    transform: none;
  }

  .floating-note {
    display: none;
  }

  .footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 0 82px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 28px, 430px);
  }

  .site-header {
    border-bottom-width: 1px;
    overflow: visible;
  }

  .header-inner {
    height: 66px;
    gap: 12px;
  }

  .brand-symbol {
    height: 50px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    margin-left: auto;
    border-color: transparent;
    background: transparent;
  }

  .main-nav {
    top: 66px;
    bottom: auto;
    z-index: 1000;
    height: calc(100svh - 66px);
    padding: 10px 20px 24px;
    overflow-y: auto;
    background: rgba(241, 241, 240, 0.98);
    border-top: 1px solid rgba(106, 15, 35, 0.18);
    box-shadow: 0 22px 50px rgba(7, 17, 18, 0.22);
    font-size: 16px;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .site-header {
    height: 100svh;
    background: #F1F1F0;
    backdrop-filter: none;
  }

  body.menu-open .main-nav {
    position: absolute;
    top: 66px;
    bottom: 0;
    height: auto;
    display: flex;
  }

  .main-nav a,
  .nav-title {
    padding: 13px 0;
  }

  .nav-submenu {
    padding-left: 10px;
  }

  .hero {
    min-height: calc(100svh - 66px);
    padding-top: 66px;
    display: flex;
    align-items: center;
  }

  .hero-slide {
    background-position: 42% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(241, 241, 240, 0.28) 0%, rgba(7, 17, 18, 0.54) 42%, rgba(7, 17, 18, 0.72) 100%),
      linear-gradient(90deg, rgba(241, 241, 240, 0.18), rgba(7, 17, 18, 0.28));
  }

  .hero::after {
    height: 92px;
    background: linear-gradient(180deg, rgba(241, 241, 240, 0) 0%, var(--soft) 100%);
  }

  .hero-content {
    width: min(100% - 28px, 430px);
    min-height: calc(100svh - 66px);
    justify-content: center;
    padding: 34px 0 76px;
  }

  .hero-copy,
  .hero-actions {
    transform: translateY(58px);
  }

  .hero-copy .hero-statement {
    width: min(100%, 342px);
    color: #071112;
    font-size: clamp(30px, 9vw, 38px);
    line-height: 0.98;
    white-space: normal;
    text-wrap: balance;
    text-shadow: 0 1px 18px rgba(241, 241, 240, 0.44);
  }

  .hero-copy .hero-statement em {
    color: var(--gold);
  }

  .hero-actions {
    width: min(100%, 330px);
    margin-top: 36px;
    gap: 12px;
  }

  .hero-actions .button {
    min-height: 54px;
    border-radius: 6px;
    font-size: 16px;
  }

  .floating-cta,
  .chat-assistant,
  .chat-panel {
    display: none;
  }

  .section {
    padding: 58px 0;
  }

  .layouts {
    scroll-margin-top: 66px;
  }

  .intro {
    padding-top: 44px;
  }

  .split,
  .split.reverse {
    gap: 28px;
  }

  .video-card {
    min-height: 260px;
    border-radius: 8px;
  }

  .play-button {
    width: 72px;
    height: 72px;
    font-size: 22px;
  }

  h2 {
    font-size: clamp(30px, 10vw, 40px);
  }

  .copy-block p,
  .section-heading p {
    font-size: 16px;
  }

  .section-actions {
    margin-top: 22px;
    gap: 10px;
  }

  .layout-card {
    min-height: 520px;
  }

  .layout-content {
    padding: 26px;
  }

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

  .layout-actions button {
    width: 100%;
  }

  .gift-visual,
  .app-visual {
    min-height: 340px;
  }

  .footer-top {
    gap: 28px;
  }

  .footer-bottom-inner {
    padding-bottom: 24px;
  }
}
