@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Montserrat:wght@300;400;500;600&display=swap");
:root {
  --black: #090909;
  --ivory: #f4eee6;
  --gold: #c9a16b;
  --gold2: #ddc49d;
  --white: #f7f1e9;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
  --container: min(1400px, calc(100% - 90px));
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  overflow-x: hidden;
}
section {
  overflow-x: hidden;
  width: 100%;
  font-size: 1.5rem;
}
a {
  color: inherit;
  text-decoration: none;
}

.hero {
  min-height: 780px;
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  padding: 120px max(45px, calc((100vw - 1400px) / 2)) 70px;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.96), rgba(7, 7, 7, 0.58)),
    url("/assets/images/marble.png") center/cover;
}
.hero-copy {
  padding-left: 40px;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold2);
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
}
h1 {
  font-size: clamp(60px, 6vw, 94px);
  line-height: 0.84;
  margin: 20px 0;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 470px;
  color: #c5beb5;
  font-size: 13px;
  line-height: 1.9;
  margin: 30px 0;
}
.btn {
  display: inline-flex;
  padding: 16px 27px;
  border: 1px solid var(--gold2);
  background: var(--gold2);
  color: #18130e;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-art {
  height: 620px;
  background: url("/assets/images/box.png") center/contain no-repeat;
  /* box-shadow: -30px 30px 90px #000; */
}
.section {
  padding: 50px 0;
}
.cream {
  background: var(--ivory);
  color: #201b17;
}
.dark {
  background: var(--black);
}
.section-head {
  text-align: center;
  margin: 0 auto 48px;
}
.section-head > p:last-child {
  max-width: 530px;
  margin: 18px auto;
  line-height: 1.8;
  font-size: 12px;
  color: #766e66;
}
h2 {
  font-size: 58px;
  line-height: 0.9;
  margin: 12px 0;
}
.product-grid {
  width: var(--container);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.product-card {
  background: transparent;
  text-align: center;
  overflow: hidden;
}
.product-image {
  height: 390px;
  background-size: cover;
  background-position: center;
  transition: 0.6s;
}
.product-card:hover .product-image {
  transform: scale(1.035);
}
.image-1 {
  background-image: url("/assets/images/bouquet-1.jpg");
}
.image-2 {
  background-image: url("/assets/images/bouquet-2.jpg");
}
.image-3 {
  background-image: url("/assets/images/bouquet-3.jpg");
}
.image-4 {
  background-image: url("/assets/images/bouquet-4.jpg");
}
.product-card h3 {
  font-size: 23px;
  color: #000;
  margin: 22px 0 5px;
}
.product-card span {
  display: block;
  color: var(--gold2);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-bottom: 25px;
}
.bloom-bar {
  width: var(--container);
  margin: auto;
  min-height: 610px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  border: 1px solid rgba(201, 161, 107, 0.32);
}
.bloom-image {
  background: url("/assets/images/bloom-bar.jpg") center/cover;
}
.bloom-copy {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.95)),
    url("/assets/images/floral-bottom.jpg") right center/auto 100% no-repeat;
}
.bloom-copy > p:not(.eyebrow) {
  color: #aaa29a;
  font-size: 12px;
  line-height: 2;
  max-width: 390px;
  margin: 25px 0;
}
.instagram-grid {
  width: var(--container);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
}
.ig {
  aspect-ratio: 1/1.1;
  background: center/cover;
}
.ig-1 {
  background-image: url("/assets/images/insta-1.jpg");
}
.ig-2 {
  background-image: url("/assets/images/insta-2.jpg");
}
.ig-3 {
  background-image: url("/assets/images/insta-3.jpg");
}
.ig-4 {
  background-image: url("/assets/images/insta-4.jpg");
}
.ig-5 {
  background-image: url("/assets/images/insta-5.jpg");
}
.benefits {
  width: var(--container);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(201, 161, 107, 0.3);
  border-bottom: 1px solid rgba(201, 161, 107, 0.3);
}
.benefits > div {
  text-align: center;
  padding: 42px 20px;
  border-right: 1px solid rgba(201, 161, 107, 0.3);
}
@media (max-width: 900px) {
  :root {
    --container: calc(100% - 36px);
  }

  .hero {
    display: block;
    padding: 145px 18px 60px;
  }
  .hero-copy {
    text-align: center;
    padding: 0;
  }
  .hero-copy > p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-art {
    height: 430px;
    margin-top: 45px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-image {
    height: 300px;
  }
  .bloom-bar {
    grid-template-columns: 1fr;
  }
  .bloom-image {
    height: 360px;
  }
  .bloom-copy {
    padding: 60px 35px;
  }
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .instagram-grid .ig:nth-child(n + 4) {
    display: none;
  }
  .benefits {
    grid-template-columns: 1fr;
  }
  .benefits > div {
    border-right: 0;
    border-bottom: 1px solid rgba(201, 161, 107, 0.3);
  }
}

/* =========================================================
   PRODUCT CAROUSEL
========================================================= */

.product-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
}

.product-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  flex: 1;
  padding: 5px 0 20px;
}

.product-carousel::-webkit-scrollbar {
  display: none;
}

.product-carousel .product-card {
  flex: 0 0 calc(25% - 18px);
  min-width: 260px;
  scroll-snap-align: start;
  position: relative;
}

.product-card-image {
  display: block;
  aspect-ratio: 0.82;
  overflow: hidden;
  background: var(--ivory-2);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

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

.product-card-content {
  padding: 18px 2px 5px;
}

.product-card-category {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 8px;
  color: #fff;
}

.product-card h3 {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 14px;
}

.product-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.product-price {
  font-size: 13px;
  letter-spacing: 0.5px;
}

.price-old {
  text-decoration: line-through;
  opacity: 0.45;
  margin-right: 7px;
}

.price-sale {
  font-weight: 600;
}

.product-shop-link {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  width: 100%;
  display: block;
  height: 40px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
}

.carousel-arrow {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(32, 28, 24, 0.25);
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  transition: 0.25s ease;
}

.carousel-arrow:hover {
  background: var(--dark-text);
  color: var(--ivory);
}

.products-empty {
  text-align: center;
  padding: 100px 20px;
}

.products-empty h3 {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  max-width: 600px;
  margin: 15px auto 30px;
}

.collection-footer {
  text-align: center;
  margin-top: 35px;
}

/* =========================================================
   HERO
========================================================= */

.hero-description {
  max-width: 560px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 30px;
}

.text-link {
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
}

/* =========================================================
   OCCASIONS
========================================================= */

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

.occasion-card {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.occasion-birthday {
  background-image: url("/assets/images/occasion-birthday.jpg");
}

.occasion-weddings {
  background-image: url("/assets/images/occasion-weddings.jpg");
}

.occasion-gifting {
  background-image: url("/assets/images/occasion-gifting.jpg");
}

.occasion-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.05) 65%
  );
}

.occasion-content {
  position: relative;
  z-index: 2;
  padding: 32px;
  color: white;
}

.occasion-content span {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.occasion-content h3 {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  margin: 7px 0 12px;
}

.occasion-content small {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* =========================================================
   BRAND STORY
========================================================= */

.brand-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.brand-story-copy h2 {
  font-family: var(--serif);
  font-size: clamp(60px, 6vw, 100px);
  line-height: 0.85;
  font-weight: 400;
  margin: 20px 0 35px;
}

.brand-story-copy > p:not(.eyebrow) {
  max-width: 500px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 28px;
}

.brand-story-details {
  border-top: 1px solid var(--line);
}

.brand-story-details > div {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.story-number,
.benefit-number {
  display: block;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.brand-story-details h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 7px;
}

.brand-story-details p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

/* =========================================================
   BENEFITS
========================================================= */

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.benefit {
  padding: 15px 35px;
  border-right: 1px solid var(--line);
}

.benefit:first-child {
  padding-left: 0;
}

.benefit:last-child {
  border-right: 0;
}

.benefit h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 10px;
}

.benefit p {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
  max-width: 220px;
}
/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  background: #0b0b0b;
  color: #f5f0e8;
  padding: 80px 0 0;
  border-top: 1px solid rgba(212, 183, 130, 0.22);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Main footer grid */
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 70px;
  padding-bottom: 70px;
}

/* Brand */
.footer-brand {
  max-width: 360px;
}

.footer-brand .brand-name {
  display: inline-block;
  color: #f5f0e8;
  font-family: var(--serif, "Cormorant Garamond", serif);
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  margin-bottom: 18px;
}

.footer-brand p {
  color: rgba(245, 240, 232, 0.65);
  font-size: 14px;
  line-height: 1.9;
  margin: 0;
  max-width: 320px;
}

/* Footer headings */
.footer-column h4 {
  color: #d7b77d;
  font-family: var(--sans, "Montserrat", sans-serif);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 5px 0 24px;
}

/* Links */
.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column li {
  margin-bottom: 13px;
}

.footer-column a {
  color: rgba(245, 240, 232, 0.72);
  font-family: var(--sans, "Montserrat", sans-serif);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-column a:hover {
  color: #d7b77d;
}

/* Newsletter */
.footer-newsletter {
  border-top: 1px solid rgba(245, 240, 232, 0.12);
  padding: 45px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-newsletter-copy h3 {
  margin: 0 0 8px;
  color: #f5f0e8;
  font-family: var(--serif, "Cormorant Garamond", serif);
  font-size: 30px;
  font-weight: 500;
}

.footer-newsletter-copy p {
  margin: 0;
  color: rgba(245, 240, 232, 0.55);
  font-size: 13px;
}

.footer-newsletter-form {
  display: flex;
  width: min(420px, 100%);
  border-bottom: 1px solid rgba(245, 240, 232, 0.35);
}

.footer-newsletter-form input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: 0;
  outline: none;
  color: #f5f0e8;
  padding: 14px 5px;
  font-family: var(--sans, "Montserrat", sans-serif);
  font-size: 13px;
}

.footer-newsletter-form input::placeholder {
  color: rgba(245, 240, 232, 0.4);
}

.footer-newsletter-form button {
  border: 0;
  background: transparent;
  color: #d7b77d;
  cursor: pointer;
  padding: 14px 5px;
  font-family: var(--sans, "Montserrat", sans-serif);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  min-height: 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(245, 240, 232, 0.42);
  font-family: var(--sans, "Montserrat", sans-serif);
  font-size: 11px;
  letter-spacing: 0.03em;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 25px;
}

.footer-legal a {
  color: rgba(245, 240, 232, 0.45);
  font-size: 11px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-legal a:hover {
  color: #d7b77d;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {
  .site-footer {
    padding-top: 60px;
  }

  .footer-inner {
    padding: 0 24px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 45px 30px;
    padding-bottom: 50px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .footer-newsletter {
    display: block;
    padding: 35px 0;
  }

  .footer-newsletter-copy {
    margin-bottom: 25px;
  }

  .footer-newsletter-form {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .site-footer {
    padding-top: 50px;
  }

  .footer-inner {
    padding: 0 20px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 38px 20px;
  }

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

  .footer-brand .brand-name {
    font-size: 30px;
  }

  .footer-column h4 {
    font-size: 10px;
    margin-bottom: 18px;
  }

  .footer-column a {
    font-size: 12px;
  }

  .footer-newsletter-copy h3 {
    font-size: 26px;
  }

  .footer-bottom {
    padding: 22px 0;
    min-height: auto;
    display: block;
  }

  .footer-bottom p {
    margin-bottom: 15px;
    line-height: 1.6;
  }

  .footer-legal {
    gap: 18px;
    flex-wrap: wrap;
  }
}
