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

:root {
  --color-ivory: #fffaf4;
  --color-pearl: #f8efe8;
  --color-blush: #efd8d2;
  --color-rose: #d9ada5;
  --color-champagne: #c8a977;
  --color-mauve: #8b6266;
  --color-ink: #2f2726;
  --color-muted: #765f5d;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--color-ink);
  font-family: "Montserrat", Arial, sans-serif;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.42) 0 1px, transparent 1px 100%),
    linear-gradient(135deg, var(--color-ivory) 0%, #fff 42%, var(--color-pearl) 100%);
  background-size: 3.5rem 3.5rem, 3.5rem 3.5rem, auto;
}

body::before,
body::after {
  position: fixed;
  z-index: 0;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(200, 169, 119, 0.18);
  content: "";
  pointer-events: none;
  transform: rotate(42deg);
}

body::before {
  top: -15rem;
  right: -10rem;
  background: rgba(255, 255, 255, 0.22);
}

body::after {
  bottom: -17rem;
  left: -13rem;
  background: rgba(239, 216, 210, 0.2);
}

a {
  color: inherit;
}

.page {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100vh;
  padding: 3rem;
  place-items: center;
}

.notice {
  display: grid;
  width: min(100%, 74rem);
  min-height: min(39rem, calc(100vh - 6rem));
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.72fr);
  gap: 3rem;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.8rem 0;
}

.logo {
  width: min(100%, 25rem);
  margin-bottom: 1.7rem;
  object-fit: auto;
  object-position: center;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--color-mauve);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4.9rem;
  font-weight: 600;
  line-height: 0.9;
}

.intro {
  max-width: 36rem;
  margin: 1.2rem 0 0;
  color: var(--color-muted);
  font-size: 1.1rem;
  line-height: 1.65;
}

.details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.details li {
  border: 1px solid rgba(200, 169, 119, 0.26);
  border-radius: 999px;
  padding: 0.68rem 1rem;
  color: var(--color-mauve);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
  background: rgba(255, 250, 244, 0.74);
}

.actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.8rem;
}

.whatsapp-link {
  display: inline-flex;
  min-height: 3.4rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 1px solid rgba(47, 39, 38, 0.14);
  border-radius: 999px;
  padding: 0.95rem 1.45rem;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  background: #1fa463;
  box-shadow: 0 16px 38px rgba(31, 164, 99, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-link:hover,
.whatsapp-link:focus-visible {
  background: #178c54;
  box-shadow: 0 18px 44px rgba(31, 164, 99, 0.32);
  transform: translateY(-2px);
}

.whatsapp-link:focus-visible {
  outline: 3px solid rgba(31, 164, 99, 0.28);
  outline-offset: 4px;
}

.whatsapp-link svg {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
  fill: currentColor;
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 5;
  display: grid;
  width: 3.35rem;
  height: 3.35rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: #fff;
  background: #1fa463;
  box-shadow: 0 16px 42px rgba(31, 164, 99, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #178c54;
  box-shadow: 0 18px 48px rgba(31, 164, 99, 0.42);
  transform: translateY(-2px);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(31, 164, 99, 0.28);
  outline-offset: 4px;
}

.whatsapp-float svg {
  width: 1.65rem;
  height: 1.65rem;
  fill: currentColor;
}

.phone {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.visual {
  position: relative;
  display: flex;
  min-height: 100%;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(200, 169, 119, 0.22);
  border-radius: 0.5rem;
  padding: 1rem;
  background:
    linear-gradient(rgba(255, 250, 244, 0.16), rgba(255, 250, 244, 0.16)),
    linear-gradient(160deg, #f3ddd8 0%, #fbf1e7 48%, #e6c7be 100%);
  box-shadow: 0 28px 80px rgba(115, 88, 80, 0.12);
}

.visual::before {
  position: absolute;
  inset: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  content: "";
}

.visual-panel {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 30rem;
  place-items: center;
  overflow: hidden;
}

.gown {
  position: relative;
  width: min(72%, 20rem);
  height: min(72%, 26rem);
}

.gown::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 26%;
  height: 28%;
  border-radius: 48% 48% 42% 42%;
  background: linear-gradient(180deg, #fffdf8 0%, #f7ece5 100%);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 119, 0.1);
  content: "";
  transform: translateX(-50%);
}

.gown::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 86%;
  border-radius: 48% 48% 6% 6% / 18% 18% 8% 8%;
  background:
    linear-gradient(100deg, transparent 0 17%, rgba(255, 255, 255, 0.64) 18% 20%, transparent 21% 100%),
    linear-gradient(78deg, transparent 0 48%, rgba(200, 169, 119, 0.12) 49% 51%, transparent 52% 100%),
    linear-gradient(180deg, #fffefb 0%, #f7eee8 48%, #eecfc7 100%);
  box-shadow: 0 34px 68px rgba(115, 88, 80, 0.16);
  content: "";
  clip-path: polygon(40% 0, 60% 0, 100% 100%, 0 100%);
}

.signature {
  position: absolute;
  right: 2rem;
  bottom: 3rem;
  left: 2rem;
  color: rgba(47, 39, 38, 0.55);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
  line-height: 1;
  text-align: center;
}

@media (max-width: 1120px) {
  .page {
    padding: 2rem;
  }

  .notice {
    min-height: min(38rem, calc(100vh - 4rem));
  }

  .content {
    padding: 2rem 0;
  }

  h1 {
    font-size: 4.35rem;
  }
}

@media (max-width: 860px) {
  .page {
    align-items: start;
    padding: 1rem;
  }

  .notice {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 0;
  }

  .content {
    min-height: auto;
    padding: 2rem 1.35rem 2.35rem;
  }

  .logo {
    width: min(100%, 20rem);
    height: 7rem;
    margin-bottom: 1.4rem;
  }

  h1 {
    font-size: 4rem;
  }

  .visual {
    min-height: 12rem;
    order: -1;
  }

  .visual-panel {
    min-height: 12rem;
  }

  .gown {
    width: min(50%, 10rem);
    height: 10.5rem;
  }

  .signature {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    font-size: 2.2rem;
  }

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

  .details {
    display: none;
  }

  .whatsapp-link {
    width: 100%;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 3.2rem;
  }

  .details li {
    width: 100%;
    border-radius: 0.4rem;
    text-align: center;
  }
}
