:root {
  color-scheme: light;
  --cream: #fff8eb;
  --cream-strong: #f7e6c7;
  --ink: #2e241f;
  --muted: #6f5b50;
  --green: #496a4f;
  --rose: #b65b62;
  --white: #fffdf8;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}

a { color: inherit; text-decoration-color: color-mix(in srgb, currentColor 45%, transparent); text-underline-offset: .18em; }
img { display: block; max-width: 100%; height: auto; }

.hero {
  min-height: min(820px, 84svh);
  padding: clamp(1rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 15% 15%, #f6cbd0 0, transparent 28rem),
    radial-gradient(circle at 80% 5%, #d9e7c2 0, transparent 24rem),
    linear-gradient(135deg, #fff8eb 0%, #fff3df 58%, #f5ead0 100%);
}

.topbar, .hero-grid, .section, .visit-section, .contact, .gallery, .footer {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 0 2rem;
}
.brand { font-weight: 800; text-decoration: none; }
.navlinks { display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; color: var(--muted); font-size: .95rem; }
.navlinks a { text-decoration: none; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, .82fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}
.hero-copy h1 {
  max-width: 9ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 11vw, 8rem);
  line-height: .86;
  letter-spacing: -.07em;
}
.hero-copy p:not(.eyebrow) { max-width: 34rem; font-size: clamp(1.1rem, 2vw, 1.45rem); color: var(--muted); }
.eyebrow, .section-index {
  margin: 0 0 .75rem;
  color: var(--rose);
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-size: .78rem;
}
.hero-card {
  position: relative;
  justify-self: end;
  width: min(100%, 34rem);
  margin: 0;
}
.hero-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 68% 42%;
  border-radius: 40% 60% 46% 54% / 52% 44% 56% 48%;
  box-shadow: 0 2rem 5rem rgb(76 52 38 / 18%);
}
.hero-mark {
  position: absolute;
  right: -1.3rem;
  bottom: 1.4rem;
  display: grid;
  gap: .2rem;
  width: min(16rem, 62%);
  padding: 1rem 1.1rem;
  color: var(--ink);
  background: rgb(255 253 248 / 88%);
  border: 1px solid rgb(46 36 31 / 10%);
  border-radius: 1.4rem;
  box-shadow: 0 1rem 2.5rem rgb(76 52 38 / 18%);
  backdrop-filter: blur(10px);
  transform: rotate(-3deg);
}
.mark-kicker {
  color: var(--green);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mark-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.04em;
}
.actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: .75rem 1.1rem;
  border: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  background: rgb(255 255 255 / 38%);
}
.button.primary { background: var(--green); color: var(--white); border-color: var(--green); }
.button.ghost {
  background: transparent;
  border-color: transparent;
  color: var(--muted);
}
.notice-banner {
  width: 100%;
  margin: 0;
  padding: clamp(1rem, 2.5vw, 1.5rem) 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 50%, rgb(255 253 248 / 40%) 0, transparent 18rem),
    linear-gradient(135deg, #f8bac6 0%, #ffd5cf 52%, #f6e1aa 100%);
  border-block: 1px solid rgb(182 91 98 / 18%);
  box-shadow: 0 .8rem 2rem rgb(76 52 38 / 8%);
}
.notice-banner-inner {
  display: grid;
  gap: .35rem;
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}
.notice-banner .eyebrow {
  margin: 0;
}
.notice-banner h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: .95;
  letter-spacing: -.04em;
}
.notice-banner p:not(.eyebrow) {
  margin: 0;
  color: var(--green);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 900;
}


.section {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(15rem, .72fr);
  gap: clamp(2rem, 6vw, 4.5rem);
  padding: clamp(4rem, 9vw, 7rem) 0;
  border-top: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
}
.section:nth-child(even) .section-copy { order: 2; }
.section h2, .contact h2, .gallery h2 {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: .94;
  letter-spacing: -.045em;
}
.section-copy p { color: var(--muted); font-size: 1.05rem; }
.flower-list {
  display: grid;
  gap: .65rem;
  padding: 0;
  margin: 1.4rem 0 0;
  list-style: none;
}
.flower-list li::before { content: "❀"; color: var(--rose); margin-right: .55rem; }
.section-media { display: grid; gap: 1rem; align-content: center; }
.section-media img, .shop-image {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 1rem 3rem rgb(76 52 38 / 12%);
}
.feature-image {
  object-fit: cover;
}
.feature-image-1 {
  aspect-ratio: 1 / 1;
}
.feature-image-2 {
  aspect-ratio: 5 / 4;
}
.feature-image-3 {
  aspect-ratio: 4 / 5;
}
.section-media img:nth-child(2) {
  width: 82%;
  justify-self: end;
}
.feature-action {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 1.4rem;
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid color-mix(in srgb, var(--green) 28%, transparent);
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(16rem, .75fr);
  gap: clamp(1rem, 3vw, 1.5rem);
  align-items: stretch;
  padding: clamp(3rem, 7vw, 5rem) 0;
  border-top: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
}
.visit-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 3rem);
  background: rgb(255 253 248 / 72%);
  border-radius: 1.6rem;
  box-shadow: 0 .8rem 2rem rgb(76 52 38 / 8%);
}
.visit-copy h2 {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: .96;
  letter-spacing: -.045em;
}
.visit-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}
.shop-image {
  aspect-ratio: 1 / 1;
}
.map-shell {
  position: relative;
  grid-column: 1 / -1;
  min-height: 20rem;
  aspect-ratio: 10 / 3;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 .8rem 2rem rgb(76 52 38 / 8%);
}
.map-frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 20rem;
  object-fit: cover;
  border: 0;
  pointer-events: none;
}
.map-highlight {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: .7rem 1rem;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 900;
  background: rgb(255 253 248 / 90%);
  border-radius: 999px;
  box-shadow: 0 .5rem 1.4rem rgb(76 52 38 / 14%);
}
.map-inset {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: min(16rem, 34vw);
  margin: 0;
  overflow: hidden;
  background: var(--cream);
  border: .35rem solid rgb(255 253 248 / 92%);
  border-radius: 1rem;
  box-shadow: 0 .8rem 2rem rgb(76 52 38 / 18%);
}
.map-inset img {
  display: block;
  width: 100%;
  aspect-ratio: 13 / 9;
  object-fit: cover;
}
.map-inset figcaption {
  padding: .45rem .6rem .55rem;
  color: var(--ink);
  font-size: .78rem;
  font-weight: 900;
  text-align: center;
}



.contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding: clamp(3rem, 7vw, 5rem);
  background: var(--green);
  color: var(--white);
  border-radius: 2rem;
}
.contact address { font-style: normal; }
.hours-notice {
  margin-bottom: 1.4rem;
  padding: 1rem;
  color: var(--ink);
  background: var(--cream);
  border-radius: 1rem;
}
.hours-notice .eyebrow {
  margin-bottom: .35rem;
  color: var(--rose);
}
.hours-notice p {
  margin: 0 0 .25rem;
}

.hours { display: grid; gap: .6rem; margin: 0; }
.hours div { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px solid rgb(255 255 255 / 18%); }
.hours dt { font-weight: 800; }
.hours dd { margin: 0; color: rgb(255 255 255 / 78%); }
.socials { padding-left: 1rem; }

.gallery { padding: clamp(4rem, 9vw, 7rem) 0; }
.section-heading { max-width: 42rem; margin-bottom: 2rem; }
.gallery-grid {
  columns: 4 13rem;
  column-gap: 1rem;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  margin: 0 0 1rem;
  break-inside: avoid;
  border-radius: 1.2rem;
  box-shadow: 0 1rem 3rem rgb(76 52 38 / 12%);
}
.gallery-grid img:nth-child(5n + 2) {
  aspect-ratio: 1 / 1;
}
.gallery-grid img:nth-child(5n + 3) {
  aspect-ratio: 5 / 4;
}
.gallery-grid img:nth-child(5n + 4) {
  aspect-ratio: 3 / 4;
}
.gallery-grid img:nth-child(5n) {
  aspect-ratio: 4 / 3;
}


.footer { padding: 2rem 0 3rem; color: var(--muted); }

@media (max-width: 820px) {
  .topbar { display: none; }
  .hero-grid, .section, .visit-section, .contact { grid-template-columns: 1fr; }
  .section:nth-child(even) .section-copy { order: initial; }
  .hero-card { justify-self: start; }
  .hero-mark { right: .8rem; bottom: .8rem; }
  .map-shell {
    width: 100%;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
  .map-frame {
    min-height: 0;
  }
  .map-highlight {
    top: .65rem;
    left: .65rem;
    max-width: calc(100% - 1.3rem);
    padding: .55rem .7rem;
    font-size: .72rem;
    white-space: normal;
  }
  .map-inset {
    right: .65rem;
    bottom: .65rem;
    width: 7.5rem;
    border-width: .25rem;
    border-radius: .8rem;
  }
  .map-inset figcaption {
    padding: .35rem .4rem .42rem;
    font-size: .62rem;
  }
}
