:root {
  --pink: #e72463;
  --dark: #111;
  --gray: #f1f1f1;
  --muted: #666;
  --max: 1170px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--dark);
  font-family: "Trebuchet MS", Arial, sans-serif;
  line-height: 1.65;
}
img {
  display: block;
  width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font: inherit;
}
.section {
  width: min(var(--max), calc(100% - 60px));
  margin: auto;
  padding: 105px 0;
}
.header {
  height: 100px;
  width: min(100% - 90px, 1170px);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 0;
}
.logo {
  width: 190px;
  margin-right: 125px;
}
.logo img {
  height: 76px;
  object-fit: contain;
}
.nav {
  display: flex;
  gap: 35px;
  font-size: 14px;
  font-weight: 700;
}
.nav a {
  padding: 8px 0;
  text-shadow:
    0 1px 2px rgba(255, 255, 255, 0.95),
    0 0 7px rgba(255, 255, 255, 0.8);
}
.nav a.active,
.nav a:hover {
  color: var(--pink);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 23px;
  margin-left: auto;
  text-shadow:
    0 1px 2px rgba(255, 255, 255, 0.95),
    0 0 7px rgba(255, 255, 255, 0.8);
}
.header-actions a {
  font-weight: 700;
}
.menu {
  border: 0;
  background: none;
  font-size: 24px;
  padding: 0;
  cursor: pointer;
}
.hero {
  height: 600px;
  position: relative;
  background: #eee;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  display: block;
  background: #eee;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s;
}
.slide.active-slide {
  opacity: 1;
  pointer-events: auto;
}
.slide-copy {
  position: relative;
  z-index: 2;
  width: 52%;
  height: 100%;
  padding: 150px 2vw 55px max(9.5vw, calc((100vw - 1170px) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tag {
  align-self: flex-start;
  background: var(--pink);
  color: #fff;
  padding: 2px 11px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.slide h1,
.slide h2 {
  font-size: 42px;
  line-height: 1.16;
  margin: 18px 0 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.slide p {
  max-width: 500px;
  color: #555;
  margin: 0 0 30px;
}
.slide-image {
  position: absolute;
  inset: 0 0 0 auto;
  width: 60%;
  overflow: hidden;
  background: transparent;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 38%);
  mask-image: linear-gradient(to right, transparent 0%, #000 38%);
}
.slide-image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.pink-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 48px;
  padding: 0 27px;
  background: var(--pink);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: 0.2s;
}
.pink-button:hover {
  background: #111;
}
.category-mosaic {
  display: grid;
  grid-template-columns: 37.4fr 2.6fr 19.9fr 2.6fr 8.7fr 2.6fr 26.2fr;
  grid-template-rows: 240px 240px;
  gap: 30px 0;
  padding-top: 90px;
}
.category {
  position: relative;
  overflow: hidden;
}
.category img {
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.category:hover img {
  transform: scale(1.04);
}
.category span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  min-width: 145px;
  text-align: center;
  padding: 11px 16px;
  box-shadow: 0 3px 15px #0001;
}
.category strong {
  display: block;
  font-size: 15px;
}
.category small {
  display: block;
  color: var(--pink);
  font-size: 9px;
  letter-spacing: 0.13em;
}
.cat-1 {
  grid-column: 1;
  grid-row: 1 / span 2;
}
.cat-2 {
  grid-column: 3 / span 3;
  grid-row: 1;
}
.cat-3 {
  grid-column: 7;
  grid-row: 1;
}
.cat-4 {
  grid-column: 3;
  grid-row: 2;
}
.cat-5 {
  grid-column: 5 / span 3;
  grid-row: 2;
}
.title-block {
  text-align: center;
  margin-bottom: 52px;
}
.title-block span,
.about-copy > span {
  font:
    italic 22px Georgia,
    serif;
  color: var(--pink);
}
.title-block h2,
.about-copy h2 {
  margin: 7px 0 0;
  font:
    400 34px Georgia,
    serif;
  letter-spacing: 0.02em;
}
.featured {
  padding-top: 45px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.card-image {
  height: 350px;
  position: relative;
  overflow: hidden;
  background: #eee;
}
.card-image img {
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.flower-card:hover img {
  transform: scale(1.04);
}
.card-image span {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--pink);
  color: #fff;
  padding: 4px 9px;
  font-size: 9px;
  font-weight: 700;
}
.flower-card h3 {
  text-align: center;
  margin: 18px 0 4px;
  font-size: 15px;
}
.flower-card p {
  text-align: center;
  margin: 0;
  color: #777;
  font-size: 12px;
}
.promo {
  min-height: 580px;
  background: #f0f0f0;
  display: grid;
  grid-template-columns: 47% 53%;
  align-items: stretch;
  margin-top: 45px;
}
.promo-copy {
  padding: 90px 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.promo-copy > span {
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
}
.promo-copy h2 {
  font:
    400 43px Georgia,
    serif;
  margin: 11px 0;
}
.promo-copy p {
  color: #666;
  max-width: 500px;
}
.promo > img {
  height: 580px;
  object-fit: cover;
}
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  align-items: center;
}
.about-images {
  height: 600px;
  position: relative;
}
.about-large {
  width: 78%;
  height: 510px;
  object-fit: cover;
}
.about-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 300px;
  object-fit: cover;
  border: 12px solid #fff;
}
.about-copy h3 {
  font:
    700 17px/1.7 Georgia,
    serif;
  margin: 28px 0 15px;
}
.about-copy p {
  font-size: 14px;
  color: #696969;
}
.about-copy a {
  display: inline-block;
  margin-top: 12px;
  color: var(--pink);
  font-weight: 700;
  font-size: 13px;
}
.testimonials {
  background: #f5f5f5;
  text-align: center;
  padding: 100px 20px;
}
.testimonials blockquote {
  max-width: 780px;
  margin: 0 auto;
  font:
    italic 16px/2 Georgia,
    serif;
  color: #666;
}
.testimonials blockquote strong {
  display: block;
  margin-top: 22px;
  color: #222;
  font:
    700 12px Arial,
    sans-serif;
}
.rating {
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.rating b {
  font:
    400 28px Georgia,
    serif;
}
.rating span {
  color: var(--pink);
  letter-spacing: 3px;
}
.rating small {
  color: #777;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.gallery-grid button {
  padding: 0;
  border: 0;
  background: #eee;
  height: 340px;
  cursor: zoom-in;
  overflow: hidden;
}
.gallery-grid img {
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.gallery-grid button:hover img {
  transform: scale(1.05);
}
.contact-strip {
  background: #e72463;
  color: #fff;
  min-height: 190px;
  padding: 45px max(30px, calc((100vw - 1170px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.contact-strip h2 {
  font:
    400 32px Georgia,
    serif;
  margin: 0;
}
.contact-strip p {
  margin: 6px 0 0;
}
.contact-strip .pink-button {
  background: #fff;
  color: #111;
  min-width: 170px;
}
.contact-strip .pink-button:hover {
  background: #111;
  color: #fff;
}
footer {
  background: #f5f5f5;
  padding: 80px max(30px, calc((100vw - 1170px) / 2)) 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 60px;
}
.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-grid img {
  width: 200px;
  height: 75px;
  object-fit: contain;
}
.footer-grid p {
  color: #777;
  font-size: 13px;
}
.footer-grid h3 {
  font:
    400 19px Georgia,
    serif;
  margin: 10px 0 18px;
}
.footer-grid a {
  font-size: 13px;
  color: #666;
  margin: 4px 0;
}
.footer-grid a:hover {
  color: var(--pink);
}
.social {
  display: flex;
  gap: 18px;
}
.copyright {
  border-top: 1px solid #ddd;
  margin-top: 55px;
  padding-top: 20px;
  text-align: center;
  color: #888;
  font-size: 11px;
}
.lightbox {
  width: min(900px, 92vw);
  height: min(850px, 88vh);
  border: 0;
  background: transparent;
  padding: 40px;
}
.lightbox::backdrop {
  background: #000e;
}
.lightbox img {
  height: 100%;
  object-fit: contain;
}
.lightbox button {
  position: absolute;
  right: 0;
  top: 0;
  border: 0;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  background: #fff;
  font-size: 24px;
  cursor: pointer;
}
@media (max-width: 1100px) {
  .header {
    width: calc(100% - 40px);
    padding-inline: 10px;
  }
  .logo {
    width: 165px;
    margin-right: 45px;
  }
  .nav {
    display: flex;
    position: static;
    flex-direction: row;
    padding: 0;
    gap: 18px;
    box-shadow: none;
    font-size: 12px;
  }
  .header-actions > a {
    display: inline;
  }
  .header-actions {
    gap: 12px;
    font-size: 20px;
  }
  .nav.open {
    display: flex;
  }
  .slide h1,
  .slide h2 {
    font-size: 38px;
  }
  .category-mosaic {
    gap: 16px;
    grid-template-columns: 1.2fr 0.65fr 1.2fr;
    grid-template-rows: 240px 240px;
  }
  .cat-1 {
    grid-column: auto;
    grid-row: span 2;
  }
  .cat-2,
  .cat-3,
  .cat-4,
  .cat-5 {
    grid-column: auto;
    grid-row: auto;
  }
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .header {
    background: rgba(238, 238, 238, 0.96);
    padding-inline: 18px;
  }
  .logo {
    margin-right: auto;
  }
  .nav {
    display: none;
    position: absolute;
    top: 85px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 25px;
    gap: 8px;
    box-shadow: 0 10px 20px #0002;
    font-size: 14px;
  }
  .nav.open {
    display: flex;
  }
  .header-actions > a {
    display: none;
  }
}
@media (max-width: 650px) {
  .section {
    width: calc(100% - 30px);
    padding: 75px 0;
  }
  .header {
    height: 78px;
  }
  .logo {
    width: 155px;
  }
  .logo img {
    height: 62px;
  }
  .header-actions a {
    display: none;
  }
  .hero {
    height: 720px;
  }
  .slide {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 52% 48%;
  }
  .slide-copy {
    position: static;
    width: auto;
    height: auto;
    grid-row: 2;
    padding: 45px 32px;
    background: #eee;
    justify-content: flex-start;
  }
  .slide-image {
    position: static;
    width: auto;
    -webkit-mask-image: none;
    mask-image: none;
    grid-row: 1;
  }
  .slide h1,
  .slide h2 {
    font-size: 34px;
    margin: 10px 0;
  }
  .slide p {
    font-size: 13px;
    margin-bottom: 18px;
  }
  .category-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 210px);
  }
  .cat-1 {
    grid-column: auto;
    grid-row: span 2;
  }
  .cat-5 {
    grid-column: span 2;
    grid-row: auto;
  }
  .featured {
    padding-top: 20px;
  }
  .card-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px 14px;
  }
  .card-image {
    height: 250px;
  }
  .promo {
    grid-template-columns: 1fr;
  }
  .promo-copy {
    padding: 65px 25px;
  }
  .promo > img {
    height: 400px;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .about-images {
    height: 500px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .gallery-grid button {
    height: 230px;
  }
  .contact-strip {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .title-block h2,
  .about-copy h2 {
    font-size: 28px;
  }
}
