* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green: #0f3b2a;
  --deep: #0b2d20;
  --gold: #b68a43;
  --cream: #fbf8f0;
  --ivory: #fffdf8;
  --text: #14231b;
  --muted: #28352e;
  --line: #eadfce;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.5;
}

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

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

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.site-header {
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  flex-direction: column;
  color: var(--green);
  line-height: 1;
  font-weight: 900;
}

.brand span {
  font-size: 27px;
  letter-spacing: 2px;
}

.brand small {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 4px;
  margin-top: 8px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 16px;
  color: var(--green);
  font-weight: 900;
}

.hero {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #faf6ed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,253,248,0.98) 0%, rgba(255,253,248,0.88) 38%, rgba(255,253,248,0.48) 100%),
    url('https://images.unsplash.com/photo-1519167758481-83f550bb49b3?auto=format&fit=crop&w=1800&q=85') center/cover;
  opacity: 0.95;
}

.hero-decor {
  position: absolute;
  right: 12%;
  bottom: 44px;
  width: 210px;
  height: 230px;
  z-index: 2;
  pointer-events: none;
}

.plant {
  width: 95px;
  height: 150px;
  border-left: 4px solid rgba(73, 94, 61, .65);
  position: absolute;
  right: 42px;
  top: 0;
  transform: rotate(-8deg);
}

.plant::before,
.plant::after {
  content: "";
  position: absolute;
  width: 85px;
  height: 85px;
  border-radius: 70% 0 70% 0;
  border: 1px solid rgba(73, 94, 61, .34);
  background: rgba(101, 120, 77, .18);
}

.plant::before {
  left: -70px;
  top: 22px;
  transform: rotate(-15deg);
}

.plant::after {
  left: 8px;
  top: 60px;
  transform: rotate(45deg);
}

.candle {
  position: absolute;
  bottom: 0;
  right: 10px;
  width: 66px;
  height: 74px;
  border: 1px solid rgba(181,138,66,.45);
  border-radius: 8px 8px 16px 16px;
  background: rgba(255,255,255,.44);
  box-shadow: 0 0 30px rgba(181,138,66,.25);
}

.candle::after {
  content: "";
  position: absolute;
  left: 26px;
  top: 17px;
  width: 14px;
  height: 22px;
  border-radius: 50% 50% 50% 50%;
  background: rgba(255, 205, 120, .72);
  box-shadow: 0 0 22px rgba(255, 190, 80, .95);
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 820px;
  padding: 74px 0 68px;
}

.topline {
  font-size: 15px;
  font-weight: 900;
  color: var(--green);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.gold-line {
  width: 92px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 28px;
}

.hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--green);
  font-size: clamp(48px, 7vw, 78px);
  line-height: 1.02;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--gold);
}

.hero-sub {
  max-width: 650px;
  margin: 0 auto 28px;
  font-size: 21px;
  color: #182720;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 15px 38px;
  border-radius: 5px;
  background: var(--green);
  color: #fff;
  border: 1px solid var(--green);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 14px;
  font-weight: 900;
}

.btn-outline {
  background: rgba(255,255,255,.7);
  color: var(--green);
}

.rentals {
  background: var(--ivory);
  padding: 42px 0 16px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-bottom: 30px;
}

.section-title span {
  width: 145px;
  height: 2px;
  background: var(--gold);
}

.section-title h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 28px;
  color: var(--green);
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.rental-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.rental-card {
  background: #fff;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(15, 59, 42, .08);
  border: 1px solid rgba(181,138,66,.12);
}

.rental-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  background: #f3f0ea;
}

.card-text {
  text-align: center;
  padding: 18px 18px 22px;
}

.card-text h3 {
  font-size: 18px;
  color: var(--green);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.card-text p {
  font-size: 15px;
  color: #1e2b25;
  line-height: 1.4;
}

.card-text i {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 0;
}

.info-strip {
  background: #fffaf3;
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.info-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: start;
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 900;
}

.info-item h4 {
  font-size: 13px;
  letter-spacing: 1.2px;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.info-item p {
  font-size: 14px;
  color: #233029;
}

footer {
  background: var(--green);
  color: white;
  padding: 22px;
  text-align: center;
}

footer p {
  margin: 2px 0;
}

.page-hero {
  padding: 90px 0;
  background: #efe7da;
}

.page-hero h1 {
  color: var(--green);
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 70px 0;
}

.service-card,
.info-card {
  background: #fff;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
}

.service-card img {
  width: 100%;
  border-radius: 18px;
}

.service-card h2 {
  margin: 16px 0 10px;
  color: var(--green);
}

.contact-box {
  padding: 70px 0;
}

@media(max-width: 980px) {
  .rental-grid,
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 768px) {
  .nav {
    height: auto;
    padding: 18px 0;
    flex-direction: column;
  }

  .nav-links {
    gap: 18px;
  }

  .hero {
    min-height: 640px;
  }

  .hero-decor {
    display: none;
  }

  .section-title {
    gap: 18px;
  }

  .section-title span {
    width: 60px;
  }

  .rental-grid,
  .info-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .rental-card img {
    height: 300px;
  }
}
