* {
  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;
}

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 {
  font-family: "DM Serif Display", serif;
  font-size: 28px;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a:hover {
  color: var(--rose);
}

.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;
}

/* 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: 55px 8% 70px;

  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(30px, 5vw, 75px);

  align-items: center;
  overflow: hidden;
}

.hero-copy {
  min-width: 0;
  position: relative;
  z-index: 2;
}

.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;
}

.button:hover {
  transform: translateY(-2px);
}

.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%;
  height: min(620px, calc(100vh - 150px));

  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent;
}

.hero-image-wrap {
  position: relative;
  width: min(410px, 78%);
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  display: block;

  width: 100%;
  height: 100%;

  max-width: 410px;
  max-height: 620px;

  object-fit: cover;

  /* Organic oval shape */
  border-radius: 48% 52% 50% 50% / 42% 45% 55% 58%;

  filter: drop-shadow(
    0 22px 30px rgba(70, 40, 40, 0.13)
  );
}

/* BADGE */

.flower-badge {
  position: absolute;
  z-index: 3;

  right: -35px;
  top: 14%;

  width: 94px;
  height: 94px;

  background: white;
  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 15px 35px rgba(70, 40, 40, .12);
}

/* BOUQUETS */
#bouquets {
    scroll-margin-top: 100px;
}

.section {
  padding: 100px 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:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(86, 51, 59, .12);
}

.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; }

.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: #e7cbd0;
  border-radius: 46% 54% 52% 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.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: 60px 7% 70px;
    min-height: auto;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-art {
    height: 540px;
    min-height: 0;
  }

  .hero-image-wrap {
    width: min(390px, 82%);
    height: 100%;
  }

  .hero-image {
    max-width: 390px;
    max-height: 540px;
  }

  .flower-badge {
    right: -20px;
    top: 12%;
  }

  .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%;
  }

  .section,
  .occasions,
  .about,
  .contact {
    padding: 75px 6%;
  }

  .section-heading {
    align-items: flex-start;
    gap: 20px;
    flex-direction: column;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 48px;
  }

  .hero {
    padding-left: 6%;
    padding-right: 6%;
  }

  .hero-art {
    height: 460px;
  }

  .hero-image-wrap {
    width: 86%;
  }

  .flower-badge {
    right: -5px;
    top: 10%;
    width: 76px;
    height: 76px;
    font-size: 13px;
  }

  .occasion-grid {
    grid-template-columns: 1fr;
  }

  .card-image {
    height: 250px;
  }
}


.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: cover;
    object-position: center;

    display: block;

    border-radius: 14px;
}