:root {
  color-scheme: light;
  --bg: #f7f0e7;
  --paper: #fffaf2;
  --ink: #2f2a24;
  --muted: #766d62;
  --line: rgba(77, 58, 42, 0.18);
  --green: #5e7d56;
  --green-dark: #2e513d;
  --rose: #c66b6d;
  --rose-dark: #8b3d45;
  --gold: #c99b58;
  --shadow: 0 24px 70px rgba(65, 42, 30, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 12% 18%, rgba(198, 107, 109, 0.14), transparent 28%),
    radial-gradient(circle at 82% 10%, rgba(94, 125, 86, 0.18), transparent 26%),
    linear-gradient(135deg, #f9f3ea 0%, var(--bg) 48%, #efe2d1 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.76);
  box-shadow: 0 16px 40px rgba(63, 45, 32, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--green-dark), var(--green));
  color: #fff7e8;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  gap: 8px;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  transition: background 180ms ease, color 180ms ease;
}

.nav a:hover {
  background: rgba(94, 125, 86, 0.12);
  color: var(--green-dark);
}

main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 100px);
  padding: 70px 0 48px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 8vw, 108px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.92;
}

h2 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  border-color: transparent;
  background: linear-gradient(145deg, var(--green-dark), var(--green));
  color: #fffaf1;
  box-shadow: 0 16px 34px rgba(46, 81, 61, 0.22);
}

.button.secondary {
  background: rgba(255, 250, 242, 0.64);
  color: var(--green-dark);
}

.hero-card {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.78), rgba(255, 250, 242, 0.38)),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(94, 125, 86, 0.06) 35px 36px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(94, 125, 86, 0.18);
  border-radius: 26px;
}

.petal,
.flower-center,
.stem,
.leaf {
  position: absolute;
  left: 50%;
  top: 46%;
}

.petal {
  width: 118px;
  height: 168px;
  border-radius: 70% 20% 70% 28%;
  background: linear-gradient(145deg, #ffc8cb, var(--rose));
  box-shadow: inset -18px -16px 30px rgba(139, 61, 69, 0.18);
  transform-origin: 14px 142px;
}

.petal-a { transform: translate(-18px, -148px) rotate(-8deg); }
.petal-b { transform: translate(-12px, -144px) rotate(66deg); }
.petal-c { transform: translate(-12px, -144px) rotate(138deg); }
.petal-d { transform: translate(-12px, -144px) rotate(210deg); }
.petal-e { transform: translate(-12px, -144px) rotate(282deg); }

.flower-center {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffe9a9, var(--gold));
  box-shadow: 0 10px 24px rgba(74, 49, 23, 0.2);
  transform: translate(-37px, -38px);
}

.stem {
  width: 10px;
  height: 260px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  transform: translate(-5px, 20px);
}

.leaf {
  width: 130px;
  height: 64px;
  border-radius: 80% 0 80% 0;
  background: linear-gradient(145deg, #8ba878, var(--green));
}

.leaf-left { transform: translate(-130px, 120px) rotate(-22deg); }
.leaf-right { transform: translate(4px, 178px) scaleX(-1) rotate(-22deg); }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 80px;
}

.stats article,
.card,
.visit {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.7);
  box-shadow: 0 18px 50px rgba(65, 42, 30, 0.08);
  backdrop-filter: blur(14px);
}

.stats article {
  padding: 22px;
}

.stats strong {
  display: block;
  margin-bottom: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.stats span,
.card p,
.visit p {
  color: var(--muted);
  line-height: 1.6;
}

.section {
  padding: 26px 0 82px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  padding: 28px;
}

.icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 46px;
  place-items: center;
  border-radius: 50%;
  background: rgba(198, 107, 109, 0.12);
  color: var(--rose-dark);
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: 210px;
  gap: 16px;
}

.tile {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 210px;
  padding: 22px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 35%, rgba(255, 255, 255, 0.32), transparent 24%),
    radial-gradient(circle at 68% 42%, rgba(255, 255, 255, 0.25), transparent 18%);
}

.tile span {
  position: relative;
  color: #fffaf1;
  font-size: 24px;
  font-weight: 900;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
}

.tile-rose { background: linear-gradient(145deg, #b64c58, #ed9aa0); }
.tile-green { background: linear-gradient(145deg, #2f5a42, #93aa76); }
.tile-sand { background: linear-gradient(145deg, #af7b43, #e5c58f); }
.tile-lilac { background: linear-gradient(145deg, #70587a, #c7a4be); }

.visit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 72px;
  padding: 34px;
}

.visit p {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 18px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 860px) {
  .site-header {
    border-radius: 24px;
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 52px;
  }

  .hero-card {
    min-height: 420px;
  }

  .stats,
  .cards,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  main,
  .site-header,
  .site-footer {
    width: min(100% - 24px, 1120px);
  }

  .hero {
    gap: 28px;
  }

  h1 {
    font-size: 48px;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-card {
    min-height: 360px;
    border-radius: 24px;
  }

  .petal {
    width: 86px;
    height: 126px;
  }

  .flower-center {
    width: 58px;
    height: 58px;
    transform: translate(-29px, -30px);
  }

  .stem {
    height: 210px;
  }
}
