:root {
  --berry: #8f184f;
  --berry-dark: #4f102e;
  --rose: #d94781;
  --rose-soft: #f4dce7;
  --cream: #fffaf1;
  --paper: #fffdf8;
  --olive: #4c562b;
  --olive-light: #7d8552;
  --ink: #21181c;
  --muted: #6f6065;
  --white: #fff;
  --shadow: 0 24px 70px rgba(79, 16, 46, 0.15);
  --radius: 28px;
  --shell: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--berry);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 88px;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(143, 24, 79, 0.1);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1240px, calc(100% - 32px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 176px;
  max-height: 68px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.93rem;
  font-weight: 600;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--rose);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 25px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta {
  background: var(--berry);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(143, 24, 79, 0.22);
}

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--rose-soft);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--berry-dark);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: calc(100svh - 88px);
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(54, 8, 31, 0.84) 0%, rgba(54, 8, 31, 0.56) 45%, rgba(54, 8, 31, 0.15) 80%),
    linear-gradient(0deg, rgba(30, 10, 16, 0.35), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--shell);
  padding: 80px 0 120px;
}

.hero-content > * {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #f8d9e5;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--berry);
}

.eyebrow-light {
  color: #f8cbdc;
}

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

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.05;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 8vw, 6.8rem);
  letter-spacing: -0.055em;
  text-wrap: balance;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

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

.button-primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 16px 40px rgba(217, 71, 129, 0.32);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.hero-ornament {
  position: absolute;
  z-index: 2;
  color: rgba(255, 255, 255, 0.62);
  pointer-events: none;
}

.hero-ornament-one {
  top: 22%;
  right: 9%;
  font-size: 2rem;
}

.hero-ornament-two {
  right: 20%;
  bottom: 20%;
  font-size: 1.35rem;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.welcome {
  background: var(--cream);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: end;
}

.section-heading h2 {
  color: var(--berry-dark);
}

.section-heading > p:last-child,
.welcome-copy > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.welcome-copy > p {
  margin-bottom: 42px;
}

.mini-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(143, 24, 79, 0.16);
}

.mini-features div {
  padding-top: 24px;
}

.mini-features strong,
.mini-features span {
  display: block;
}

.mini-features strong {
  color: var(--berry);
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
}

.mini-features span {
  color: var(--muted);
  font-size: 0.78rem;
}

.services {
  background:
    radial-gradient(circle at 3% 10%, rgba(244, 220, 231, 0.7), transparent 25%),
    var(--paper);
}

.centered {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-auto-rows: 335px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--berry-dark);
  color: var(--white);
  box-shadow: 0 14px 35px rgba(42, 18, 28, 0.11);
}

.service-card-large {
  grid-row: span 2;
}

.service-card-wide {
  grid-column: span 2;
}

.service-card img,
.service-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-card img {
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.service-shade {
  background: linear-gradient(180deg, transparent 35%, rgba(40, 11, 26, 0.88));
}

.service-card:hover img {
  transform: scale(1.045);
}

.service-content {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
}

.service-number {
  display: block;
  margin-bottom: 8px;
  color: #f6c7d9;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.service-content h3 {
  margin-bottom: 8px;
  font-size: 1.7rem;
}

.service-content p {
  max-width: 420px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.5;
}

.venue {
  overflow: hidden;
  background: var(--berry-dark);
  color: var(--white);
}

.venue-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 90px;
  align-items: center;
}

.venue-photo {
  position: relative;
}

.venue-photo::before {
  position: absolute;
  top: -28px;
  left: -30px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  content: "";
}

.venue-photo img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 140px 140px 24px 24px;
  object-fit: cover;
}

.venue-note {
  position: absolute;
  right: -35px;
  bottom: 40px;
  max-width: 220px;
  padding: 22px 26px;
  border-radius: 20px;
  background: var(--cream);
  color: var(--berry-dark);
  box-shadow: var(--shadow);
}

.venue-note span,
.venue-note strong {
  display: block;
}

.venue-note span {
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.venue-note strong {
  margin-top: 5px;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  line-height: 1.2;
}

.venue-copy h2 {
  color: var(--white);
}

.venue-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-list li span {
  display: inline-grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: var(--rose);
  font-size: 0.78rem;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

.moments {
  background: var(--rose-soft);
}

.occasion-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.occasion-list span {
  padding: 15px 23px;
  border: 1px solid rgba(143, 24, 79, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--berry-dark);
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
}

.contact {
  position: relative;
  overflow: hidden;
  background: var(--berry);
  color: var(--white);
}

.contact::before,
.contact::after {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  content: "";
}

.contact::before {
  top: -220px;
  right: -80px;
}

.contact::after {
  bottom: -240px;
  left: -110px;
}

.contact-flower {
  position: absolute;
  top: 50px;
  left: 8%;
  color: rgba(255, 255, 255, 0.25);
  font-size: 3rem;
  transform: rotate(-15deg);
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 90px;
  align-items: center;
}

.contact-copy h2 {
  max-width: 700px;
  color: var(--white);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.contact-card {
  display: grid;
  gap: 22px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.contact-row {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-row > span {
  display: grid;
  flex: 0 0 auto;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.contact-row small,
.contact-row strong {
  display: block;
}

.contact-row small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-row strong {
  font-size: 0.94rem;
  line-height: 1.45;
}

.button-light {
  margin-top: 4px;
  background: var(--white);
  color: var(--berry);
}

.site-footer {
  padding: 70px 0 24px;
  background: #1e1017;
  color: rgba(255, 255, 255, 0.72);
}

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

.footer-brand img {
  width: 185px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p {
  max-width: 330px;
}

.footer-grid h3 {
  margin: 8px 0 18px;
  color: var(--white);
  font-size: 1.08rem;
}

.footer-grid a {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
}

.footer-grid a:hover {
  color: var(--white);
}

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

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 12px 30px rgba(20, 92, 49, 0.3);
  font-size: 1.45rem;
  transition: transform 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

:focus-visible {
  outline: 3px solid #ffb3d0;
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .section {
    padding: 84px 0;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 102;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    background: var(--cream);
    color: var(--berry-dark);
    font-family: "Playfair Display", serif;
    font-size: 1.75rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-cta {
    margin-top: 12px;
    font-family: "DM Sans", sans-serif;
    font-size: 1rem;
  }

  .welcome-grid,
  .venue-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .service-grid {
    grid-auto-rows: 310px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card-large {
    grid-row: span 1;
  }

  .venue-photo {
    max-width: 620px;
  }

  .venue-photo img {
    aspect-ratio: 4 / 3;
    border-radius: 100px 100px 24px 24px;
  }

  .venue-note {
    right: 20px;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: min(100% - 28px, 1160px);
    --radius: 22px;
  }

  .site-header {
    height: 76px;
  }

  html {
    scroll-padding-top: 78px;
  }

  .brand img {
    width: 150px;
  }

  .hero {
    min-height: calc(100svh - 76px);
    align-items: end;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(54, 8, 31, 0.92) 0%, rgba(54, 8, 31, 0.52) 65%, rgba(54, 8, 31, 0.15)),
      linear-gradient(90deg, rgba(54, 8, 31, 0.35), transparent);
  }

  .hero-content {
    padding: 120px 0 135px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.3rem);
  }

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

  .button {
    width: 100%;
  }

  .scroll-cue {
    width: max-content;
  }

  .mini-features {
    gap: 10px;
  }

  .mini-features strong {
    font-size: 1.8rem;
  }

  .service-grid {
    display: grid;
    grid-auto-rows: 350px;
    grid-template-columns: 1fr;
  }

  .service-card-wide {
    grid-column: span 1;
  }

  .venue-photo img {
    aspect-ratio: 4 / 5;
    border-radius: 80px 80px 22px 22px;
  }

  .venue-note {
    right: 12px;
    bottom: 22px;
    max-width: 190px;
  }

  .contact-card {
    padding: 25px;
  }

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

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

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

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

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

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