:root {
  --cream: #fbf6ea;
  --paper: #fffdf7;
  --sand: #ead8b6;
  --sage: #5f7d66;
  --forest: #314733;
  --ink: #2b2b2b;
  --shadow: 0 16px 38px rgba(49, 71, 51, 0.12);
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Trebuchet MS", "Gill Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(65rem 30rem at 95% -10%, rgba(95, 125, 102, 0.18), transparent 70%),
    radial-gradient(55rem 35rem at -5% 90%, rgba(234, 216, 182, 0.6), transparent 70%),
    linear-gradient(180deg, var(--paper), var(--cream));
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
.eyebrow,
.cta {
  font-family: Georgia, "Times New Roman", serif;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: var(--forest);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15rem;
}

.container {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

.site-bg-shape {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(35px);
  opacity: 0.3;
}

.site-bg-shape-top {
  top: -140px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: #9aba9f;
}

.site-bg-shape-bottom {
  bottom: -180px;
  left: -140px;
  width: 420px;
  height: 420px;
  background: #e6cfa0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 247, 0.82);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(49, 71, 51, 0.1);
}

.topbar-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}

.brand {
  width: min(460px, 70vw);
}

.social-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: flex-end;
}

.social-nav a {
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  padding-top: clamp(2.4rem, 6vw, 4.8rem);
  align-items: center;
}

.hero-copy {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(49, 71, 51, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(1.2rem, 3vw, 2.2rem);
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.74rem;
  color: var(--sage);
}

h1 {
  margin: 0.6rem 0 0;
  line-height: 1.18;
  font-size: clamp(1.65rem, 3.2vw, 2.8rem);
  color: var(--forest);
}

.lead {
  margin-top: 1rem;
  max-width: 58ch;
}

.cta {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.66rem 1.05rem;
  border-radius: 999px;
  border: 1px solid var(--forest);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.cta:hover {
  background: var(--forest);
  color: #fff;
  transform: translateY(-1px);
}

.hero-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(49, 71, 51, 0.1);
  box-shadow: var(--shadow);
}

.announcement {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.56));
  border: 1px solid rgba(49, 71, 51, 0.12);
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 3vw, 2.1rem);
  box-shadow: var(--shadow);
}

h2 {
  margin-top: 0;
  color: var(--forest);
  font-size: clamp(1.3rem, 2.4vw, 2rem);
}

.price {
  font-weight: 700;
  color: var(--forest);
}

.gallery {
  margin-top: clamp(1.9rem, 4.5vw, 3rem);
  margin-bottom: clamp(3rem, 6vw, 4rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.tile {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(49, 71, 51, 0.08);
  box-shadow: var(--shadow);
  background: #fff;
}

.tile img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.footer {
  border-top: 1px solid rgba(49, 71, 51, 0.12);
  background: rgba(255, 252, 246, 0.9);
}

.footer-inner {
  text-align: center;
  padding: 1.6rem 0 1.9rem;
}

.footer p {
  margin: 0.2rem 0;
}

.small {
  font-size: 0.88rem;
  opacity: 0.75;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 560ms ease forwards;
}

.hero .reveal:nth-child(1) {
  animation-delay: 90ms;
}

.hero .reveal:nth-child(2) {
  animation-delay: 180ms;
}

.announcement.reveal {
  animation-delay: 260ms;
}

.gallery .tile:nth-child(1) {
  animation-delay: 320ms;
}

.gallery .tile:nth-child(2) {
  animation-delay: 400ms;
}

.gallery .tile:nth-child(3) {
  animation-delay: 480ms;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 0.95rem;
  }

  .social-nav {
    justify-content: flex-start;
  }

  .gallery {
    grid-template-columns: 1fr;
  }
}
