:root {
  --bg: #fffaf1;
  --paper: #fffdf7;
  --ink: #29231f;
  --muted: #73665f;
  --sage: #9ab7a6;
  --olive: #5d7766;
  --peach: #f3b08a;
  --coral: #d97857;
  --line: rgba(41, 35, 31, 0.12);
  --shadow: 0 24px 60px rgba(89, 65, 45, 0.18);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 15%, rgba(243, 176, 138, 0.25), transparent 36%),
    radial-gradient(circle at 92% 10%, rgba(154, 183, 166, 0.26), transparent 30%),
    radial-gradient(circle at 78% 86%, rgba(217, 120, 87, 0.18), transparent 30%),
    var(--bg);
  line-height: 1.5;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.page-glow {
  position: fixed;
  pointer-events: none;
  z-index: -1;
  border-radius: 999px;
  filter: blur(64px);
}

.page-glow-left {
  width: 260px;
  height: 260px;
  left: -80px;
  top: 26%;
  background: rgba(243, 176, 138, 0.48);
}

.page-glow-right {
  width: 220px;
  height: 220px;
  right: -70px;
  top: 70%;
  background: rgba(154, 183, 166, 0.45);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(8px);
  background: rgba(255, 250, 241, 0.8);
  border-bottom: 1px solid rgba(41, 35, 31, 0.08);
}

.topbar-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.84rem;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(130deg, var(--peach), #ffc5aa);
  color: #663926;
  font-size: 1.05rem;
  box-shadow: 0 8px 18px rgba(217, 120, 87, 0.28);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: #453b36;
  transition: color 0.25s ease;
}

.nav a:hover {
  color: var(--coral);
}

.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-btn span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease;
}

section {
  padding: 5.5rem 0;
}

.hero {
  padding-top: 1.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 3rem;
  align-items: start;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--olive);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.74rem;
}

.hero h1 {
  font-size: clamp(2.3rem, 4.9vw, 4.35rem);
  line-height: 1.03;
  margin-bottom: 1.25rem;
}

.hero-text {
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.93rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:disabled {
  transform: none;
  opacity: 0.75;
  cursor: not-allowed;
}

.btn-primary {
  background: linear-gradient(120deg, var(--coral), #e89873);
  color: #fff;
  box-shadow: 0 14px 26px rgba(217, 120, 87, 0.28);
}

.btn-ghost {
  border-color: rgba(41, 35, 31, 0.16);
  color: #3f3530;
  background: rgba(255, 255, 255, 0.4);
}

.hero-facts {
  margin-top: 2rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.hero-facts li {
  padding: 0.95rem 0.85rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(41, 35, 31, 0.08);
  display: grid;
  gap: 0.2rem;
}

.hero-facts strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.28rem;
}

.hero-facts span {
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.bloom-card {
  position: relative;
  width: min(420px, 100%);
  padding: 0.95rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(41, 35, 31, 0.09);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.68), rgba(255, 248, 240, 0.9));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.bloom-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  top: -58px;
  right: -42px;
  background: radial-gradient(circle, rgba(217, 120, 87, 0.46), rgba(243, 176, 138, 0.1));
  animation: drift 8s ease-in-out infinite;
}

.bloom-photo {
  width: 100%;
  height: clamp(280px, 54vh, 460px);
  object-fit: cover;
  object-position: center 24%;
  border-radius: 20px;
  border: 1px solid rgba(41, 35, 31, 0.08);
  overflow: hidden;
}

.bloom-note {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  margin-top: 0;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(41, 35, 31, 0.08);
  backdrop-filter: blur(4px);
}

.bloom-note p {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
}

.bloom-note h2 {
  margin: 0.35rem 0;
  font-size: 1.7rem;
}

.bloom-note span {
  color: #5f514a;
  font-size: 0.9rem;
}

.section-head {
  max-width: 650px;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.06;
}

.collections {
  padding-top: 3rem;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(41, 35, 31, 0.1);
  background: var(--paper);
  box-shadow: 0 18px 34px rgba(89, 65, 45, 0.11);
}

.card-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.card-body {
  padding: 1.1rem 1.1rem 1.2rem;
}

.card-body h3 {
  font-size: 1.44rem;
  margin-bottom: 0.55rem;
}

.card-body p {
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.card-body span {
  font-weight: 700;
  color: #3f352f;
}

.services-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 1.6rem;
  align-items: start;
}

.services-grid h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.06;
}

.service-list {
  display: grid;
  gap: 0.9rem;
}

.service {
  padding: 1.2rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(41, 35, 31, 0.1);
  background: rgba(255, 253, 247, 0.74);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.service:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(89, 65, 45, 0.14);
}

.service h3 {
  font-size: 1.34rem;
  margin-bottom: 0.4rem;
}

.service p {
  color: var(--muted);
}

.gallery {
  padding-top: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  margin: 0;
  aspect-ratio: 2 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(41, 35, 31, 0.1);
  box-shadow: 0 16px 30px rgba(89, 65, 45, 0.13);
}

.gallery-item-lg {
  aspect-ratio: 4 / 5;
}

.gallery-item-md {
  aspect-ratio: 3 / 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.reviews {
  padding-top: 3rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.review {
  margin: 0;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(41, 35, 31, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.review p {
  font-size: 0.98rem;
  color: #443a34;
}

.review cite {
  margin-top: 0.75rem;
  display: inline-block;
  color: var(--olive);
  font-style: normal;
  font-weight: 700;
  font-size: 0.86rem;
}

.contact-wrap {
  padding: 1.6rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(41, 35, 31, 0.1);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.8), rgba(255, 246, 236, 0.74));
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.4rem;
  align-items: start;
}

.contact-wrap h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.08;
  margin-bottom: 0.8rem;
}

.contact-wrap > div > p:nth-of-type(2) {
  color: var(--muted);
}

.contact-list {
  margin-top: 1.3rem;
  display: grid;
  gap: 0.25rem;
}

.contact-list a,
.contact-list span {
  font-weight: 600;
  color: #433934;
}

.contact-form {
  display: grid;
  gap: 0.75rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(41, 35, 31, 0.15);
  border-radius: 12px;
  padding: 0.73rem 0.85rem;
  font: inherit;
  color: #2e2723;
  background: rgba(255, 255, 255, 0.82);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(93, 119, 102, 0.35);
  border-color: transparent;
}

.form-status {
  min-height: 1.2rem;
  margin: 0.1rem 0 0;
  font-size: 0.86rem;
  font-weight: 600;
  color: #5f514a;
}

.form-status.is-success {
  color: #2f6a4f;
}

.form-status.is-error {
  color: #a23b2b;
}

.footer {
  padding: 1.3rem 0 1.5rem;
  border-top: 1px solid rgba(41, 35, 31, 0.11);
  background: rgba(255, 251, 244, 0.74);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #63554f;
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-10px, 8px);
  }
}

@media (max-width: 1024px) {
  section {
    padding: 4.7rem 0;
  }

  .hero-grid,
  .services-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 1.2rem;
  }

  .collection-grid,
  .gallery-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bloom-card {
    margin-inline: auto;
  }

  .bloom-photo {
    height: clamp(280px, 48vh, 420px);
  }
}

@media (max-width: 760px) {
  .menu-btn {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    background: rgba(255, 250, 241, 0.97);
    border-bottom: 1px solid rgba(41, 35, 31, 0.09);
    display: grid;
    gap: 0.2rem;
    padding: 0.9rem 1rem 1rem;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.24s ease, opacity 0.24s ease;
  }

  .topbar.open .nav {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .topbar.open .menu-btn span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .topbar.open .menu-btn span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .hero-facts,
  .collection-grid,
  .gallery-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item,
  .gallery-item-lg,
  .gallery-item-md {
    aspect-ratio: 5 / 6;
  }

  .bloom-photo {
    height: clamp(240px, 72vw, 360px);
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.4rem;
  }
}
