:root {
  --header-height: 90px;
  --deep-green: #123421;
  --brand-green: #004c36;
  --pale-header: #eff7f5;
  --soft-line: #cfe0db;
  --ink: #064b36;
  --muted: #646866;
  --white: #ffffff;
  --page: #fbfdfc;
  font-family: Georgia, "Times New Roman", serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 500px 760px 42px;
  align-items: center;
  gap: 50px;
  min-height: var(--header-height);
  padding: 10px 96px 10px 104px;
  background: var(--pale-header);
  border-bottom: 1px solid rgba(0, 76, 54, 0.08);
  box-shadow: 0 14px 28px rgba(0, 76, 54, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: min(500px, 100%);
}

.brand-mark {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 999px;
  object-fit: cover;
}

.brand-wordmark {
  width: 395px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  color: var(--deep-green);
  font-size: clamp(1rem, 1.1vw, 1.18rem);
  font-weight: 400;
  line-height: 1;
}

.main-nav a {
  color: var(--deep-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: inherit;
  font-weight: inherit;
  padding: 10px 0;
  white-space: nowrap;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
  transition:
    color 160ms ease,
    text-decoration-color 160ms ease;
}

.main-nav a:visited {
  color: var(--deep-green);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: inherit;
  text-decoration-color: currentColor;
}

.instagram-link {
  justify-self: end;
  width: 42px;
  height: 42px;
}

.instagram-link img {
  width: 100%;
  height: 100%;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;
  border: 1px solid rgba(0, 76, 54, 0.24);
  background: rgba(255, 255, 255, 0.7);
  z-index: 40;
}

.menu-toggle span:not(.sr-only) {
  width: 22px;
  height: 2px;
  background: var(--brand-green);
}

.promise-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 84px;
  padding: 0 clamp(42px, 5vw, 96px);
  background: var(--deep-green);
  color: var(--white);
  box-shadow: 0 22px 34px rgba(0, 76, 54, 0.28);
}

.promise-row article {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.promise-row h2 {
  margin: 0 0 3px;
  font-size: clamp(1.12rem, 1.32vw, 1.52rem);
  line-height: 1.04;
}

.promise-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(0.82rem, 0.84vw, 1rem);
  font-weight: 400;
  line-height: 1.2;
}

.category-strip {
  position: sticky;
  top: var(--header-height);
  z-index: 19;
  display: grid;
  grid-template-columns: repeat(8, minmax(118px, 1fr));
  gap: clamp(22px, 2.9vw, 58px);
  align-items: center;
  height: 120px;
  padding: 12px clamp(64px, 6.3vw, 136px) 10px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(18, 52, 33, 0.08);
}

.category-strip a {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
  color: #000000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.86rem, 0.9vw, 1.1rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.category-strip img {
  width: clamp(60px, 4.2vw, 78px);
  aspect-ratio: 1;
  border-radius: 999px;
  object-fit: cover;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.28));
  transition: transform 180ms ease;
}

.category-strip a:hover img,
.category-strip a:focus-visible img {
  transform: translateY(-3px);
}

.bouquets-section {
  padding: 35px clamp(64px, 5.5vw, 104px) 74px;
  background: var(--page);
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(1rem, 1.1vw, 1.18rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.bouquets-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.bouquets-heading a {
  margin-bottom: 8px;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.bouquets-heading a:hover,
.bouquets-heading a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.bouquets-heading a.is-active {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.bouquets-section h1,
.content-section h2,
.contact-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 3vw, 3.6rem);
  font-weight: 900;
  line-height: 1.02;
}

.bouquet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(42px, 4.2vw, 78px);
  margin-top: 50px;
}

.bouquet-card {
  min-width: 0;
  padding: 10px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(18, 52, 33, 0.08);
}

.bouquet-card.is-hidden {
  display: none;
}

.bouquet-grid:not(.is-expanded) .bouquet-card.is-catalog-extra {
  display: none;
}

.bouquet-card img {
  width: 100%;
  aspect-ratio: 1.005;
  object-fit: cover;
  background: var(--white);
}

.bouquet-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 12px;
  align-items: start;
  min-height: 88px;
  padding: 14px 2px 4px;
  color: #0d1713;
}

.bouquet-details > div {
  display: contents;
}

.bouquet-details h2 {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.12rem, 1.08vw, 1.38rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
}

.bouquet-details p {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
  color: rgba(13, 23, 19, 0.66);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  line-height: 1.35;
  overflow: visible;
  text-overflow: clip;
  white-space: nowrap;
}

.bouquet-details strong {
  grid-column: 2;
  grid-row: 1;
  padding-top: 4px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.84rem, 0.78vw, 0.96rem);
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
}

.content-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(38px, 6vw, 96px);
  padding: 78px clamp(64px, 5.5vw, 104px);
  border-top: 1px solid var(--soft-line);
  background: var(--white);
}

.contact-section {
  scroll-margin-top: calc(var(--header-height) + 230px);
}

.content-section > p,
.personalisation-copy > p,
.contact-section p:not(.section-kicker) {
  max-width: 760px;
  margin: 10px 0 0;
  color: #000000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  line-height: 1.78;
}

.personalisation-section {
  align-items: center;
  background: var(--white);
  height: 600px;
  overflow: hidden;
  scroll-margin-top: calc(var(--header-height) + 230px);
}

.personalisation-copy {
  display: grid;
  gap: 24px;
}

.personalisation-copy > p {
  color: #000000;
}

.personalisation-photo {
  align-self: center;
  justify-self: stretch;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
}

.personalisation-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
  border: 10px solid var(--pale-header);
  box-shadow: 0 18px 40px rgba(18, 52, 33, 0.12);
}

.event-section {
  display: block;
  background: #f6fbfa;
  scroll-margin-top: calc(var(--header-height) + 230px);
}

.event-section > div:first-child {
  max-width: 980px;
  margin-bottom: 38px;
}

.event-carousel {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  gap: 16px;
  align-items: center;
  margin-top: 42px;
}

.event-carousel-window {
  min-width: 0;
  overflow: hidden;
}

.event-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 2px 0 14px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.event-track::-webkit-scrollbar {
  display: none;
}

.event-card {
  position: relative;
  display: flex;
  min-height: 340px;
  flex: 0 0 calc((100% - 48px) / 3);
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 28px;
  border-radius: 8px;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.68)),
    var(--event-image);
  background-position: center;
  background-size: cover;
  box-shadow: 0 18px 38px rgba(18, 52, 33, 0.12);
  color: var(--white);
  scroll-snap-align: start;
}

.event-card h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 1.7rem;
  line-height: 1.08;
}

.event-card p {
  max-width: 420px;
  margin: 0;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.event-nav {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--deep-green);
  color: var(--white);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.event-nav:hover,
.event-nav:focus-visible {
  transform: translateY(-2px);
}

.event-nav:disabled {
  cursor: default;
  opacity: 0.36;
  transform: none;
}

.event-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2px;
}

.event-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(6, 75, 54, 0.28);
  cursor: pointer;
}

.event-dot.is-active {
  background: var(--ink);
}

.contact-copy {
  align-self: start;
}

.contact-details {
  display: grid;
  grid-template-columns: max-content minmax(64px, 1fr) max-content;
  column-gap: 0;
  row-gap: 22px;
  align-items: start;
  margin-top: 28px;
  color: #000000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
}

.contact-details::before {
  content: "";
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  align-self: stretch;
  width: 1px;
  background: var(--ink);
}

.contact-detail {
  display: grid;
  gap: 7px;
  align-content: start;
}

.contact-detail h3 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
}

.contact-detail a,
.contact-detail span {
  color: #000000;
  line-height: 1.45;
}

.contact-phone {
  grid-column: 3;
  grid-row: 1;
}

.contact-hours {
  grid-column: 1;
  grid-row: 1;
}

.hours-list {
  display: grid;
  gap: 3px;
  justify-items: start;
  text-align: left;
}

.hours-row {
  display: grid;
  grid-template-columns: 86px 12px max-content;
  column-gap: 4px;
  align-items: baseline;
}

.hours-day {
  text-align: left;
}

.hours-separator {
  text-align: center;
}

.hours-time {
  text-align: left;
}

.map-card {
  display: grid;
  grid-template-rows: 1fr auto;
  margin-top: calc(clamp(1rem, 1.1vw, 1.18rem) * 1.15 + 18px);
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--soft-line);
  background: var(--white);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.map-card a {
  display: block;
  padding: 14px 18px;
  border-top: 1px solid var(--soft-line);
  color: #000000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.98rem;
  line-height: 1.35;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 30px clamp(46px, 5.5vw, 104px);
  background: var(--pale-header);
  border-top: 1px solid var(--soft-line);
}

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

.site-footer .brand-mark {
  width: 54px;
  height: 54px;
}

.site-footer .brand-wordmark {
  width: min(360px, 44vw);
}

.site-footer p {
  margin: 0;
  color: var(--brand-green);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

@media (max-width: 1680px) {
  .site-header {
    grid-template-columns: minmax(350px, 1fr) auto 54px;
    gap: clamp(28px, 3vw, 48px);
    padding-inline: clamp(46px, 5.5vw, 104px);
  }

  .main-nav {
    justify-content: center;
    gap: 26px;
  }

  .instagram-link {
    width: 42px;
    height: 42px;
  }

  .category-strip {
    gap: 24px;
    padding-inline: 42px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 90px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 12px 22px;
  }

  .brand {
    width: min(450px, calc(100vw - 98px));
  }

  .brand-mark {
    width: 56px;
    height: 56px;
  }

  .brand-wordmark {
    width: min(320px, calc(100vw - 180px));
  }

  .instagram-link {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    position: fixed;
    top: 13px;
    right: 18px;
    opacity: 1;
    visibility: visible;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    gap: 0;
    padding: 18px 22px;
    background: rgba(239, 247, 245, 0.98);
    border-bottom: 1px solid var(--soft-line);
    box-shadow: 0 18px 30px rgba(18, 52, 33, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 180ms ease;
  }

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

  .main-nav a {
    padding: 18px 0;
    text-align: center;
  }

  .promise-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px 22px;
  }

  .promise-row article {
    min-height: 68px;
  }

  .category-strip {
    grid-template-columns: repeat(4, minmax(110px, 1fr));
    height: 120px;
    padding: 12px 22px 10px;
  }

  .bouquets-section,
  .content-section,
  .contact-section {
    padding-inline: 22px;
  }

  .bouquet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px;
  }

  .content-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .event-carousel {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 12px;
  }

  .event-card {
    flex-basis: calc((100% - 24px) / 2);
  }

  .event-nav {
    width: 42px;
    height: 42px;
  }

  .personalisation-photo {
    justify-self: start;
  }

  .personalisation-section {
    scroll-margin-top: calc(var(--header-height) + 120px);
  }

  .event-section {
    scroll-margin-top: calc(var(--header-height) + 120px);
  }

  .contact-section {
    scroll-margin-top: calc(var(--header-height) + 120px);
  }

  .map-card {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 78px;
  }

  .site-header {
    gap: 12px;
  }

  .brand {
    width: min(270px, calc(100vw - 120px));
    gap: 10px;
  }

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

  .brand-wordmark {
    width: min(218px, calc(100vw - 170px));
  }

  .main-nav {
    inset-block-start: var(--header-height);
  }

  .promise-row,
  .category-strip,
  .bouquet-grid {
    grid-template-columns: 1fr;
  }

  .promise-row h2 {
    font-size: 1.24rem;
  }

  .promise-row p {
    max-width: 310px;
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .category-strip {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    align-items: center;
    height: 120px;
    padding: 12px 22px 10px;
  }

  .category-strip a {
    min-width: 112px;
  }

  .bouquets-section {
    padding-top: 34px;
  }

  .bouquets-section h1,
  .content-section h2,
  .contact-section h2 {
    font-size: 3rem;
  }

  .bouquets-heading {
    display: grid;
    gap: 12px;
  }

  .bouquets-heading a {
    margin-bottom: 0;
    font-size: 0.82rem;
  }

  .bouquet-grid {
    margin-top: 34px;
  }

  .event-carousel {
    grid-template-columns: 1fr;
  }

  .event-carousel-window {
    grid-row: 1;
  }

  .event-track {
    gap: 16px;
  }

  .event-card {
    min-height: 320px;
    flex-basis: 100%;
    padding: 24px;
  }

  .event-nav {
    display: none;
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-details::before {
    display: none;
  }

  .contact-hours,
  .contact-phone {
    grid-column: 1;
    grid-row: auto;
  }

  .personalisation-photo {
    width: 100%;
  }

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