:root {
  --terra-bg: #e7e7e7;
  --terra-green: #36574c;
  --terra-brown: #a15b43;
  --terra-dark: #0a0a0a;
  --terra-text: #f4f1ef;
}

.terra-body {
  background: var(--terra-bg);
  color: #444;
}

.terra-main {
  padding: 60px 0 0;
}

.terra-hero-card {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  margin-bottom: 40px;
}

.terra-hero-media {
  position: relative;
  min-height: 620px;
  background-position: center;
  background-size: cover;
}

.terra-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.terra-hero-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 36px 20px;
  color: #fff;
}

.terra-hero-logo {
  width: 320px;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
}

.terra-hero-title {
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  font-weight: 500;
  margin: 0;
  text-shadow: 0 12px 24px rgba(0, 0, 0, 0.45);
}

.terra-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 36px;
  border-radius: 999px;
  background: rgba(80, 80, 80, 0.9);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.terra-info {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  border-radius: 32px 0 32px 0;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.terra-info-brand {
  background: var(--terra-green);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
}

.terra-info-logo {
  width: 300px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}

.terra-info-text {
  background: var(--terra-brown);
  color: var(--terra-text);
  padding: 62px 72px;
  font-size: 1rem;
  line-height: 1.7;
}

.terra-info-text p {
  margin: 0 0 18px;
}

.terra-info-text p:last-child {
  margin-bottom: 0;
}

.terra-dark {
  background: #fff;
  padding: 60px 0 90px;
  margin-top: 50px;
}

.terra-gallery-title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  aspect-ratio: 1 / 1;
  border-radius: 26px;
  padding: 20px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--terra-brown);
  
}

.terra-photo-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.terra-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.terra-plus {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.terra-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 34px;
}

.terra-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c9c9c9;
}

.terra-dot.is-active {
  background: #7a7a7a;
}

.terra-heading {
  text-align: center;
  color: var(--terra-brown);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 500;
  margin: 100px 0;
}

.terra-heading span {
  font-weight: 700;
}

.terra-plans {
  align-items: flex-start;
}

.terra-plan-card {
  text-align: center;
}

.terra-plan-image {
  max-width: 100%;
  border-radius: 12px;
  background: #fff;
  padding: 8px;
}

.terra-plan-label {
  color: #b7b7b7;
  font-size: 0.95rem;
  margin-top: 10px;
  letter-spacing: 0.02em;
}

.terra-plan-label span {
  color: #b7b7b7;
  font-weight: 600;
  margin-left: 6px;
}

@media (max-width: 991px) {
  .terra-main {
    padding: 50px 0 0;
  }

  .terra-hero-logo {
    width: 180px;
  }

  .terra-hero-media {
    min-height: 500px;
  }

  .terra-info {
    grid-template-columns: 1fr;
  }

  .terra-info-brand {
    padding: 30px;
  }

  .terra-info-text {
    padding: 42px;
  }
}

@media (max-width: 575px) {
  .terra-hero-media {
    min-height: 420px;
  }

  .terra-hero-logo {
    width: 150px;
  }

  .terra-hero-title {
    font-size: 1.5rem;
  }

  .terra-hero-btn {
    padding: 10px 28px;
  }

  .terra-dark {
    padding: 50px 0 80px;
  }
}
