* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #33282b;
  --muted: #75676a;
  --cream: #fbf7f2;
  --rose: #b55a68;
  --white: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  animation: page-enter .7s ease both;
}

@keyframes page-enter {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes menu-drop {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

.reveal.is-visible {
  animation: reveal-up .7s cubic-bezier(.22, 1, .36, 1) both;
}

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

/* NAV */

.nav {
  height: 78px;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(251, 247, 242, .98);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #eee4de;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "DM Serif Display", serif;
  font-size: 28px;
  white-space: nowrap;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 14px;
  display: block;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 18px rgba(120, 75, 80, 0.12);
  padding: 4px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a:hover {
  color: var(--rose);
}

.desktop-nav.mobile-open {
  animation: menu-drop .25s ease both;
}

.nav-cta {
  padding: 10px 20px;
  border: 1px solid var(--ink);
  border-radius: 30px;
}

.menu {
  display: none;
  border: 0;
  background: transparent;
  font-size: 25px;
  cursor: pointer;
  transition: transform .2s ease, color .2s ease;
}

.menu:active {
  transform: scale(.88);
}

/* TYPE */

.eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--rose);
  margin-bottom: 15px;
}

h1,
h2 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  line-height: 1.05;
}

h1 {
  font-size: clamp(50px, 5.7vw, 82px);
}

h1 em {
  color: var(--rose);
  font-style: italic;
}

h2 {
  font-size: clamp(40px, 4vw, 58px);
}

/* HERO
   Important fix:
   - minmax(0, ...) prevents image/content from forcing grid overflow
   - image is constrained by both width and height
   - no transform/rotation
*/

.hero {
  min-height: calc(100vh - 78px);
  padding: 42px 8% 58px;

  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 60px);

  align-items: center;
  overflow: hidden;
}

.hero-copy {
  min-width: 0;
  position: relative;
  z-index: 2;
  padding-left: 8px;
}

.hero-text {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
  margin: 25px 0 30px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 25px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 14px;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(86, 51, 59, .14);
}

.button:active {
  transform: translateY(1px) scale(.98);
  box-shadow: none;
}

.primary {
  background: var(--rose);
  color: white;
}

.secondary {
  border: 1px solid #cbbdb7;
  background: transparent;
}

.trust {
  display: flex;
  gap: 22px;
  margin-top: 30px;
  color: #7d7072;
  font-size: 12px;
  flex-wrap: wrap;
}

/* HERO IMAGE
   The image itself is deliberately limited.
   This prevents a tall/large source image from taking over the page.
*/

.hero-art {
  min-width: 0;
  width: 100%;
  min-height: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent;
}

.hero-image-wrap {
  position: relative;
  width: min(500px, 100%);
  aspect-ratio: 1 / 1;
  padding: 12px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(120, 96, 101, 0.16);
  border-radius: 30% 30% 36% 36% / 16% 16% 24% 24%;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4);
}

.hero-image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  border-radius: 28% 28% 32% 32% / 16% 16% 22% 22%;

  filter: drop-shadow(
    0 18px 26px rgba(70, 40, 40, 0.12)
  );
}

/* BADGE */

.flower-badge {
  position: absolute;
  z-index: 3;

  right: 16px;
  top: 10%;

  width: 92px;
  height: 92px;

  background: rgba(255, 255, 255, 0.97);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  font-family: "DM Serif Display", serif;
  font-size: 17px;
  line-height: 1.05;

  box-shadow: 0 10px 24px rgba(70, 40, 40, .1);
  border: 1px solid rgba(105, 84, 89, 0.12);
}

/* BOUQUETS */
#bouquets {
    scroll-margin-top: 100px;
}

.section {
  padding: 100px 8%;
  scroll-margin-top: 100px;
}

.product-section {
  padding: 70px 8%;
  scroll-margin-top: 100px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 38px;
}

.text-link {
  font-weight: 700;
  font-size: 14px;
  color: var(--rose);
}

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

.card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(86, 51, 59, .07);
  transition: transform .2s ease, box-shadow .2s ease;
}

.card-link {
  display: block;
  color: inherit;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(86, 51, 59, .12);
}

.card-image img {
  transition: transform .45s cubic-bezier(.22, 1, .36, 1);
}

.card:hover .card-image img {
  transform: none;
}

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

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

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

.card-image {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.card-image span {
  font-size: 65px;
  margin: 0 -12px;
}

.pink { background: #f3d9dd; }
.cream { background: #eee6d4; }
.lavender { background: #e5ddec; }
.pastel { background: #f0e0d8; }

.card-body {
  padding: 22px;
}

.card h3 {
  font-family: "DM Serif Display", serif;
  font-size: 25px;
  font-weight: 400;
}

.card p {
  color: var(--muted);
  font-size: 13px;
  margin: 4px 0 14px;
}

.card strong {
  font-size: 14px;
  color: var(--rose);
}

/* OCCASIONS */

.occasions {
  padding: 100px 8%;
  background: #e9eee6;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
}

.occasion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

.occasion-grid span {
  font-size: 25px;
  color: var(--rose);
}

.occasion-grid h3 {
  font-family: "DM Serif Display", serif;
  font-size: 25px;
  font-weight: 400;
}

.occasion-grid p {
  font-size: 13px;
  color: var(--muted);
}

/* ABOUT */

.about {
  padding: 110px 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.about-art {
  min-height: 430px;
  background: #f4ece6;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(103, 79, 86, 0.08);
}

.customization-image {
  width: 100%;
  max-width: 520px;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  box-shadow: 0 18px 32px rgba(90, 70, 76, 0.12);
}

.about-flower {
  font-size: 100px;
  line-height: 1;
  margin-bottom: 10px;
}

.about-art span {
  font-family: "DM Serif Display", serif;
  font-size: 35px;
  line-height: .9;
  color: var(--rose);
}

.about p:not(.eyebrow) {
  color: var(--muted);
  margin: 22px 0;
  max-width: 560px;
}

/* CONTACT */

.contact {
  padding: 85px 8%;
  background: #453438;
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact .eyebrow {
  color: #efb7b9;
}

.contact-box {
  background: #5a4549;
  padding: 34px;
  border-radius: 22px;
}

.contact-box p {
  color: #eee0e1;
  margin-bottom: 22px;
}

.contact-box small {
  display: block;
  color: #d7c7c9;
  margin-top: 16px;
  font-size: 11px;
}

.whatsapp {
  background: #25d366;
  color: white;
  border: 0;
}

/* FOOTER */

footer {
  padding: 30px 8%;
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}

footer .logo {
  font-size: 21px;
}

/* MOBILE */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    padding: 40px 7% 52px;
    min-height: auto;
    gap: 30px;
  }

  .hero-copy {
    max-width: 700px;
    padding-left: 0;
  }

  .hero-text {
    max-width: 100%;
    font-size: 15px;
    margin: 18px 0 24px;
  }

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

  .button {
    width: 100%;
  }

  .hero-art {
    height: auto;
    min-height: 0;
  }

  .hero-image-wrap {
    width: min(380px, 84vw);
    height: auto;
    min-height: 0;
  }

  .flower-badge {
    right: 8px;
    top: 10%;
    width: 78px;
    height: 78px;
    font-size: 13px;
  }

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

  .occasions,
  .about,
  .contact {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

@media (max-width: 800px) {
  .desktop-nav {
    display: none;
  }

  .menu {
    display: block;
  }

  .nav {
    padding: 0 5%;
    height: 72px;
  }

  .logo {
    gap: 8px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .logo span {
    font-size: 22px;
  }

  .section,
  .occasions,
  .about,
  .contact {
    padding: 75px 6%;
  }

  .section-heading {
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
  }

  .about-art {
    min-height: 260px;
  }

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

@media (max-width: 480px) {
  h1 {
    font-size: 48px;
  }

  .hero {
    padding-left: 6%;
    padding-right: 6%;
    padding-top: 28px;
    padding-bottom: 42px;
  }

  .eyebrow {
    letter-spacing: 2px;
  }

  .hero-art {
    height: auto;
  }

  .hero-image-wrap {
    width: 88%;
  }

  .flower-badge {
    right: 4px;
    top: 10%;
    width: 70px;
    height: 70px;
    font-size: 12px;
  }

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

  .card-image {
    height: 250px;
  }

  .customization-image {
    max-width: 100%;
  }
}


.card-image {
    height: 300px;
    padding: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;

  object-fit: contain;
    object-position: center;

    display: block;

    border-radius: 14px;
}