:root {
  --bg: #f7f2eb;
  --surface: #ffffff;
  --text: #3b2a1f;
  --muted: #7a5f49;
  --accent: #9a5b2a;
  --accent-dark: #6f3f1f;
  --gold: #d68a2f;
  --border: #e8dccd;
  --shadow: 0 24px 60px rgba(73, 43, 24, 0.14);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(154, 91, 42, 0.16), transparent 42%),
    radial-gradient(circle at 80% 0%, rgba(214, 138, 47, 0.14), transparent 36%),
    var(--bg);
  line-height: 1.55;
  position: relative;
  overflow-x: hidden;
}

.bg-shape {
  position: fixed;
  z-index: -1;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.bg-shape-one {
  top: -180px;
  left: -120px;
  background: #c27a41;
}

.bg-shape-two {
  bottom: -220px;
  right: -180px;
  background: #e1a25f;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  padding: 1.2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-family: "Sora", "Trebuchet MS", sans-serif;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.2px;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.08rem;
}

p {
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 0.78rem 1.3rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 8px 20px rgba(111, 63, 31, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 25px rgba(111, 63, 31, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid color-mix(in srgb, var(--accent-dark) 30%, white);
  box-shadow: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.btn-outline:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.hero {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy p {
  color: var(--muted);
  max-width: 56ch;
  margin-bottom: 1.25rem;
}

.rating {
  margin-top: 1rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.rating span {
  color: var(--muted);
  letter-spacing: 0;
  margin-left: 0.45rem;
  font-weight: 600;
}

.hero-media {
  margin: 0;
  height: min(420px, 60vw);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro,
.features,
.testimonials,
.gallery,
.site-footer {
  margin-top: 5.3rem;
}

.intro {
  margin-bottom: 4rem;
}

.intro h2 {
  font-size: clamp(0.9rem, 1.5vw, 1.02rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8a6d55;
  margin-bottom: 0.7rem;
}

.intro p {
  font-size: clamp(1.25rem, 2.5vw, 1.9rem);
  line-height: 1.35;
  color: #3b2a1f;
  max-width: 45ch;
}

.split {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.info-card {
  padding: 1.45rem;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--surface) 86%, #fff5e8);
  border: 1px solid var(--border);
}

.info-card ul {
  margin: 1rem 0 0;
  padding-left: 0;
  list-style: none;
  color: var(--muted);
}

.info-card li + li {
  margin-top: 0.35rem;
}

.info-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.info-card li::before {
  content: "";
  display: inline-block;
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 1.05rem;
  margin-top: 0.12rem;
  background: url("img/check.svg") center / contain no-repeat;
}

.image-block {
  border-radius: var(--radius);
  min-height: 185px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.image-block-warm {
  background:
    linear-gradient(140deg, rgba(214, 138, 47, 0.34), rgba(111, 63, 31, 0.42)),
    url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=900&q=80")
      center/cover;
}

.image-block-dark {
  background:
    linear-gradient(140deg, rgba(41, 25, 13, 0.58), rgba(111, 63, 31, 0.38)),
    url("https://images.unsplash.com/photo-1494314671902-399b18174975?auto=format&fit=crop&w=900&q=80")
      center/cover;
}

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

.feature-card,
.testimonial-card {
  padding: 1.2rem;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 16px;
}

.feature-card p {
  margin-top: 0.55rem;
  color: var(--muted);
}

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

.stars {
  color: var(--gold);
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.author {
  font-weight: 700;
  margin-top: 0.8rem;
}

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

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.site-footer {
  margin-bottom: 2rem;
  text-align: center;
  padding: 2.1rem;
  border-radius: var(--radius);
  background: linear-gradient(155deg, #3b2515, #8b4e23);
  color: #f8fafc;
}

.site-footer p {
  margin: 0.6rem auto 0;
  color: rgba(248, 250, 252, 0.87);
  max-width: 60ch;
}

.site-footer .btn {
  margin-top: 1rem;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

.copyright {
  margin-top: 40px!important;
  font-size: 12px;
}

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

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

@media (max-width: 900px) {
  .hero,
  .split,
  .split-reverse,
  .testimonial-grid,
  .feature-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    height: 320px;
  }

  .site-header {
    gap: 0.75rem;
    flex-wrap: wrap;
  }
}
