:root {
  --plum-950: #1b0814;
  --plum-900: #260d1c;
  --plum-800: #351426;
  --plum-700: #55223e;
  --berry: #9f3e64;
  --rose: #d9a3b6;
  --blush: #f1dce2;
  --ivory: #fbf7f2;
  --cream: #f4eee8;
  --ink: #281c23;
  --muted: #72666d;
  --line: rgba(54, 24, 40, 0.14);
  --white-line: rgba(255, 255, 255, 0.14);
  --green: #1fa463;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1200px;
  --header-height: 78px;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--plum-950);
  background: white;
  border-radius: 4px;
  transform: translateY(-150%);
}

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

.announcement {
  position: relative;
  z-index: 50;
  color: rgba(255, 255, 255, 0.84);
  background: var(--plum-950);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.announcement__inner {
  display: flex;
  min-height: 35px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.announcement__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--rose);
}

.site-header {
  position: absolute;
  top: 35px;
  right: 0;
  left: 0;
  z-index: 40;
  color: white;
  border-bottom: 1px solid var(--white-line);
}

.nav-wrap {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
}

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

.brand__mark {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.08em;
}

.brand__text {
  display: grid;
  line-height: 1;
  text-transform: uppercase;
}

.brand__text strong {
  font-family: var(--serif);
  font-size: 1.22rem;
  letter-spacing: 0.13em;
}

.brand__text small {
  margin-top: 5px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.36em;
}

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

.main-nav > a:not(.nav-cta) {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--rose);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s 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 {
  padding: 12px 20px;
  color: var(--plum-900);
  background: var(--ivory);
  border: 1px solid var(--ivory);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: 0.25s ease;
}

.nav-cta:hover {
  color: white;
  background: transparent;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 15% 90%, rgba(159, 62, 100, 0.17), transparent 25%),
    linear-gradient(115deg, var(--plum-950), var(--plum-800));
}

.hero::before {
  position: absolute;
  top: 114px;
  bottom: 0;
  left: calc(50% - 70px);
  width: 1px;
  background: linear-gradient(to bottom, var(--white-line), transparent 88%);
  content: "";
}

.hero::after {
  position: absolute;
  top: 46%;
  left: -110px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(217, 163, 182, 0.11);
  border-radius: 50%;
  content: "";
}

.hero__grid {
  display: grid;
  min-height: 790px;
  padding-top: 150px;
  padding-bottom: 70px;
  align-items: center;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 80px;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 12px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--rose);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow__line {
  display: inline-block;
  width: 34px;
  height: 1px;
  background: currentColor;
}

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

.eyebrow--light {
  justify-content: center;
  color: var(--rose);
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.92;
}

h1 {
  max-width: 680px;
  margin-top: 28px;
  font-size: clamp(4.4rem, 7.2vw, 7rem);
}

h1 em,
h2 em {
  color: var(--rose);
  font-weight: 500;
}

.hero__lead {
  max-width: 600px;
  margin: 29px 0 0;
  color: rgba(255, 255, 255, 0.69);
  font-size: 1.04rem;
  line-height: 1.8;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid transparent;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

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

.button svg {
  width: 19px;
  height: 19px;
}

.button--primary {
  color: var(--plum-950);
  background: var(--blush);
}

.button--primary:hover {
  background: white;
}

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

.button--ghost:hover {
  border-color: white;
}

.button--ghost svg,
.text-link svg {
  width: 17px;
  transition: transform 0.25s ease;
}

.button--ghost:hover svg,
.text-link:hover svg {
  transform: translateX(4px);
}

.hero__proof {
  display: flex;
  margin-top: 40px;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}

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

.rating strong {
  color: white;
}

.stars {
  color: #e8b864;
  font-size: 0.77rem;
  letter-spacing: 0.08em;
}

.proof-separator {
  width: 1px;
  height: 30px;
  background: var(--white-line);
}

.location-mini {
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-mini svg {
  width: 17px;
}

.hero__visual {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 500px;
  justify-self: end;
}

.hero__visual::before {
  position: absolute;
  z-index: -1;
  top: -24px;
  right: -25px;
  width: 65%;
  height: 62%;
  border: 1px solid rgba(217, 163, 182, 0.28);
  content: "";
}

.hero__image-wrap {
  position: relative;
  height: 555px;
  overflow: hidden;
  background: #562b41;
}

.hero__image-wrap img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 8, 20, 0.34), transparent 48%);
}

.hero__monogram {
  position: absolute;
  right: -5px;
  bottom: -78px;
  color: rgba(255, 255, 255, 0.11);
  font-family: var(--serif);
  font-size: 17rem;
  font-weight: 600;
  line-height: 1;
}

.order-card {
  position: absolute;
  right: -38px;
  bottom: 50px;
  display: flex;
  width: 280px;
  min-height: 116px;
  padding: 22px;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  background: var(--ivory);
  box-shadow: 0 22px 55px rgba(10, 2, 7, 0.25);
}

.order-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  color: white;
  background: var(--green);
  border-radius: 50%;
}

.order-card__icon svg {
  width: 23px;
}

.order-card small,
.order-card strong {
  display: block;
}

.order-card small {
  margin-bottom: 4px;
  color: var(--berry);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.order-card strong {
  font-family: var(--serif);
  font-size: 1.16rem;
  line-height: 1.2;
}

.hero__scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.58rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero__scroll i {
  width: 1px;
  height: 26px;
  background: var(--rose);
}

.occasion-strip {
  overflow: hidden;
  color: var(--plum-950);
  background: var(--blush);
  border-bottom: 1px solid rgba(85, 34, 62, 0.12);
}

.occasion-track {
  display: flex;
  min-height: 63px;
  width: max-content;
  min-width: 100%;
  padding-inline: 28px;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3.2vw, 48px);
  white-space: nowrap;
}

.occasion-track span {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 600;
}

.occasion-track i {
  color: var(--berry);
  font-size: 0.64rem;
  font-style: normal;
}

.section {
  padding: 116px 0;
}

.collection {
  background:
    linear-gradient(rgba(83, 42, 63, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83, 42, 63, 0.035) 1px, transparent 1px),
    var(--ivory);
  background-size: 80px 80px;
}

.section-heading--split {
  display: grid;
  margin-bottom: 52px;
  align-items: end;
  grid-template-columns: 1fr 420px;
  gap: 60px;
}

.section-heading h2 {
  margin-top: 20px;
  color: var(--plum-950);
  font-size: clamp(3.4rem, 5.5vw, 5.5rem);
}

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

.section-heading__aside {
  padding-bottom: 5px;
}

.section-heading__aside p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  padding-bottom: 4px;
  align-items: center;
  gap: 12px;
  color: var(--plum-700);
  border-bottom: 1px solid rgba(85, 34, 62, 0.45);
  font-size: 0.78rem;
  font-weight: 700;
}

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

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

.product-card--tall {
  grid-row: span 2;
}

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

.product-card__image {
  position: relative;
  height: 365px;
  overflow: hidden;
  background: #e7dde0;
}

.product-card--tall .product-card__image {
  height: 790px;
}

.product-card--wide .product-card__image {
  height: 365px;
}

.product-card__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(25, 7, 17, 0.28), transparent 45%);
  content: "";
  opacity: 0.22;
  transition: opacity 0.35s ease;
}

.product-card__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0, 1);
}

.product-card:hover .product-card__image img {
  transform: scale(1.04);
}

.product-card:hover .product-card__image::after {
  opacity: 0.55;
}

.product-card__tag {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 7px 12px;
  color: var(--plum-950);
  background: rgba(251, 247, 242, 0.92);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card__body {
  display: flex;
  padding: 18px 2px 0;
  align-items: center;
  justify-content: space-between;
}

.product-card__body small {
  color: var(--berry);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card__body h3,
.product-card__overlay h3 {
  margin: 1px 0 0;
  font-family: var(--serif);
  font-size: 1.75rem;
  line-height: 1.15;
}

.product-card__button {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--plum-700);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: 0.25s ease;
}

.product-card__button:hover {
  color: white;
  background: var(--plum-700);
}

.product-card__button svg {
  width: 18px;
}

.product-card__overlay {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 28px;
  left: 30px;
  color: white;
}

.product-card__overlay small {
  color: var(--blush);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card__overlay h3 {
  margin-bottom: 17px;
  font-size: 2.15rem;
}

.button--light {
  min-height: 42px;
  padding-inline: 18px;
  color: var(--plum-950);
  background: var(--ivory);
}

.photo-note {
  margin: 30px 0 0;
  color: #8b7e85;
  font-size: 0.74rem;
}

.services {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--plum-900);
}

.services::before {
  position: absolute;
  top: -260px;
  left: calc(50% - 310px);
  width: 620px;
  height: 620px;
  border: 1px solid rgba(217, 163, 182, 0.1);
  border-radius: 50%;
  content: "";
}

.services::after {
  position: absolute;
  top: -180px;
  left: calc(50% - 230px);
  width: 460px;
  height: 460px;
  border: 1px solid rgba(217, 163, 182, 0.08);
  border-radius: 50%;
  content: "";
}

.section-heading--center {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}

.services .section-heading h2 {
  color: white;
}

.services .section-heading h2 em {
  color: var(--rose);
}

.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  position: relative;
  min-height: 335px;
  padding: 42px 38px 36px;
  border: 1px solid var(--white-line);
}

.service-card + .service-card {
  border-left: 0;
}

.service-card--accent {
  background: var(--plum-800);
}

.service-card__no {
  position: absolute;
  top: 24px;
  right: 27px;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--serif);
  font-size: 1rem;
}

.service-card__icon {
  display: grid;
  width: 66px;
  height: 66px;
  margin-bottom: 48px;
  place-items: center;
  color: var(--rose);
  border: 1px solid rgba(217, 163, 182, 0.38);
  border-radius: 50%;
}

.service-card__icon svg {
  width: 31px;
}

.service-card h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 600;
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.85rem;
  line-height: 1.75;
}

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

.how__grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 100px;
}

.how__intro {
  position: sticky;
  top: 130px;
}

.how h2 {
  margin-top: 20px;
  color: var(--plum-950);
  font-size: clamp(3.5rem, 5.2vw, 5.2rem);
}

.how h2 em {
  color: var(--berry);
}

.button--dark {
  margin-top: 32px;
  color: white;
  background: var(--plum-800);
}

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

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

.steps li {
  display: grid;
  min-height: 150px;
  padding: 30px 0;
  align-items: center;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 80px 1fr;
}

.steps > li > span {
  color: var(--berry);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.steps h3 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1.2;
}

.steps p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.contact-card {
  display: grid;
  min-height: 580px;
  color: white;
  background: var(--plum-800);
  grid-template-columns: 0.94fr 1.06fr;
}

.contact-card__content {
  padding: 62px;
}

.contact-card h2 {
  margin-top: 20px;
  font-size: clamp(3rem, 4.3vw, 4.5rem);
}

.contact-card h2 em {
  color: var(--rose);
}

.contact-card__content > p {
  max-width: 470px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.contact-list {
  display: grid;
  margin-top: 34px;
  gap: 16px;
}

.contact-list > a,
.contact-list > div {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.contact-list__icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--rose);
  border: 1px solid rgba(217, 163, 182, 0.28);
  border-radius: 50%;
}

.contact-list__icon svg {
  width: 17px;
}

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

.contact-list small {
  margin-bottom: 1px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-list strong {
  color: rgba(255, 255, 255, 0.89);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.5;
}

.contact-list strong i {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-style: normal;
}

.button--whatsapp {
  color: white;
  background: var(--green);
}

.button--whatsapp:hover {
  background: #198d56;
}

.button--outline-light {
  color: white;
  border-color: rgba(255, 255, 255, 0.25);
}

.contact-card__map {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  background: #ddd5d9;
}

.contact-card__map::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(53, 20, 38, 0.16), transparent 25%);
  content: "";
}

.contact-card__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 580px;
  filter: saturate(0.7) contrast(1.03);
}

.map-badge {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  display: flex;
  min-height: 48px;
  padding: 0 17px;
  align-items: center;
  gap: 9px;
  color: var(--plum-950);
  background: white;
  box-shadow: 0 12px 35px rgba(27, 8, 20, 0.18);
  font-size: 0.75rem;
  font-weight: 700;
}

.map-badge svg {
  width: 18px;
  color: var(--berry);
}

.site-footer {
  color: rgba(255, 255, 255, 0.65);
  background: var(--plum-950);
}

.footer__main {
  display: grid;
  min-height: 175px;
  align-items: center;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 40px;
}

.brand--footer {
  color: white;
}

.footer__main p {
  margin: 0;
  text-align: center;
  font-family: var(--serif);
  font-size: 1.25rem;
}

.footer__links {
  display: flex;
  justify-content: flex-end;
  gap: 25px;
  font-size: 0.74rem;
  font-weight: 600;
}

.footer__links a:hover {
  color: white;
}

.footer__bottom {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--white-line);
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.67rem;
}

.floating-whatsapp {
  position: fixed;
  z-index: 45;
  right: 24px;
  bottom: 24px;
  display: flex;
  min-height: 54px;
  padding: 0 19px;
  align-items: center;
  gap: 9px;
  color: white;
  background: var(--green);
  border-radius: 28px;
  box-shadow: 0 12px 35px rgba(9, 62, 37, 0.3);
  font-size: 0.74rem;
  font-weight: 700;
  transition: 0.25s ease;
}

.floating-whatsapp:hover {
  background: #198d56;
  transform: translateY(-2px);
}

.floating-whatsapp svg {
  width: 23px;
}

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

@media (prefers-reduced-motion: no-preference) {
  .hero__content,
  .hero__visual {
    animation: reveal 0.75s cubic-bezier(0.2, 0.7, 0, 1) both;
  }

  .hero__visual {
    animation-delay: 0.12s;
  }

  @keyframes reveal {
    from {
      opacity: 0;
      transform: translateY(22px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 1080px) {
  .hero__grid {
    gap: 50px;
  }

  .order-card {
    right: -15px;
  }

  .contact-card__content {
    padding: 48px;
  }

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

  .footer__main p {
    display: none;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .menu-toggle {
    position: relative;
    z-index: 52;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-content: center;
    gap: 7px;
    color: white;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
  }

  .menu-toggle span {
    display: block;
    width: 17px;
    height: 1px;
    background: currentColor;
    transition: 0.25s ease;
  }

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

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

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 51;
    display: flex;
    padding: 120px 28px 42px;
    align-items: stretch;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    color: white;
    background: var(--plum-950);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: 0.25s ease;
  }

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

  .main-nav > a:not(.nav-cta) {
    padding: 18px 3px;
    color: white;
    border-bottom: 1px solid var(--white-line);
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 500;
  }

  .nav-cta {
    margin-top: 28px;
    padding-block: 16px;
    text-align: center;
  }

  .hero::before {
    left: 50%;
  }

  .hero__grid {
    min-height: auto;
    padding-top: 150px;
    padding-bottom: 90px;
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .hero__content {
    max-width: 680px;
  }

  h1 {
    font-size: clamp(4rem, 12vw, 6.5rem);
  }

  .hero__visual {
    width: calc(100% - 40px);
    max-width: 570px;
    justify-self: center;
  }

  .hero__image-wrap {
    height: 620px;
  }

  .hero__scroll {
    display: none;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading__aside {
    max-width: 580px;
  }

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

  .product-card--tall {
    grid-row: auto;
  }

  .product-card--tall .product-card__image {
    height: 430px;
  }

  .product-card__image {
    height: 430px;
  }

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

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

  .service-card + .service-card {
    border-top: 0;
    border-left: 1px solid var(--white-line);
  }

  .service-card__icon {
    margin-bottom: 28px;
  }

  .how__grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .how__intro {
    position: static;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-card__map,
  .contact-card__map iframe {
    min-height: 450px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .announcement {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }

  .announcement__inner {
    min-height: 34px;
    gap: 7px;
  }

  .brand__text strong {
    font-size: 1.02rem;
  }

  .brand__text small {
    font-size: 0.54rem;
  }

  .brand__mark {
    width: 39px;
    height: 39px;
    font-size: 1rem;
  }

  .hero__grid {
    padding-top: 132px;
    padding-bottom: 70px;
    gap: 44px;
  }

  .eyebrow {
    gap: 9px;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .eyebrow__line {
    width: 24px;
  }

  h1 {
    margin-top: 22px;
    font-size: clamp(3.5rem, 17vw, 5.3rem);
  }

  .hero__lead {
    margin-top: 22px;
    font-size: 0.94rem;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__proof {
    margin-top: 30px;
    gap: 12px;
    font-size: 0.7rem;
  }

  .rating span:last-child {
    display: none;
  }

  .proof-separator {
    height: 24px;
  }

  .hero__visual {
    width: calc(100% - 18px);
  }

  .hero__visual::before {
    top: -13px;
    right: -13px;
  }

  .hero__image-wrap {
    height: 455px;
  }

  .hero__monogram {
    font-size: 12rem;
  }

  .order-card {
    right: -9px;
    bottom: 22px;
    width: 235px;
    min-height: 96px;
    padding: 16px;
  }

  .order-card__icon {
    width: 40px;
    height: 40px;
  }

  .order-card strong {
    font-size: 1rem;
  }

  .occasion-track {
    min-height: 55px;
    justify-content: flex-start;
    animation: marquee 22s linear infinite;
  }

  @keyframes marquee {
    to { transform: translateX(-40%); }
  }

  .section {
    padding: 82px 0;
  }

  .section-heading h2,
  .how h2 {
    font-size: clamp(3.1rem, 14.5vw, 4.4rem);
  }

  .section-heading--split {
    margin-bottom: 38px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .product-card--wide {
    grid-column: auto;
  }

  .product-card__image,
  .product-card--tall .product-card__image,
  .product-card--wide .product-card__image {
    height: 430px;
  }

  .product-card__body h3 {
    font-size: 1.55rem;
  }

  .product-card__overlay {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .product-card__overlay h3 {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 34px 28px;
  }

  .steps li {
    min-height: 0;
    padding: 27px 0;
    align-items: start;
    grid-template-columns: 50px 1fr;
  }

  .steps h3 {
    font-size: 1.55rem;
  }

  .contact {
    padding: 0;
  }

  .contact .container {
    width: 100%;
  }

  .contact-card__content {
    padding: 54px 24px;
  }

  .contact-card h2 {
    font-size: clamp(3.05rem, 14vw, 4.2rem);
  }

  .contact-actions {
    display: grid;
  }

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

  .contact-card__map,
  .contact-card__map iframe {
    min-height: 390px;
  }

  .footer__main {
    min-height: 180px;
    padding-block: 40px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__links {
    justify-content: flex-start;
  }

  .footer__bottom {
    min-height: 84px;
    padding-block: 18px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 54px;
    padding: 0;
    justify-content: center;
  }

  .floating-whatsapp span {
    display: none;
  }
}

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

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