* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1b1b;
  --muted: #5c5c5c;
  --sand: #f5f0ea;
  --sage: #d8e2d0;
  --clay: #c9b7a2;
  --sky: #dbe7f5;
  --night: #142030;
  --accent: #2f5d62;
  --accent-2: #b26b3f;
  --soft-white: #fcfbf9;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--soft-white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6%;
  background: var(--soft-white);
  position: relative;
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 18px;
  background: var(--sand);
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 6px 12px;
  border: 1px solid var(--clay);
  border-radius: 16px;
  margin-left: 20px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6% 80px;
  background: var(--sky);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.bg-hero::before {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.bg-lake::before {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
}

.bg-forest::before {
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1400&q=80");
}

.hero-inner {
  display: flex;
  flex-direction: row;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  flex: 1;
  background: rgba(252, 251, 249, 0.9);
  padding: 26px;
  border-radius: 24px;
  align-self: flex-start;
}

.hero-copy h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.hero-copy p {
  margin-bottom: 12px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 22px;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn.primary {
  background: var(--accent);
  color: var(--soft-white);
}

.btn.secondary {
  background: var(--clay);
  color: var(--ink);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.hero-image {
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: var(--clay);
  border-radius: 28px;
  overflow: hidden;
  min-height: 320px;
}

.hero-image img {
  width: 100%;
  height: 100%;
}

.floating-card {
  position: absolute;
  right: 8%;
  bottom: -40px;
  background: var(--soft-white);
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  max-width: 260px;
  z-index: 2;
}

.floating-card p {
  font-size: 0.9rem;
  color: var(--muted);
}

.offset-section {
  display: flex;
  flex-direction: row;
  gap: 24px;
  padding: 90px 6%;
  position: relative;
}

.offset-section.reverse {
  flex-direction: row-reverse;
  background: var(--sand);
}

.offset-section.bg-deep {
  background: var(--night);
  color: var(--soft-white);
}

.offset-section.bg-deep .offset-copy {
  background: rgba(20, 32, 48, 0.85);
  color: var(--soft-white);
}

.offset-section.bg-deep .offset-copy p {
  color: #d6dce3;
}

.offset-copy {
  flex: 1;
  background: var(--soft-white);
  padding: 24px;
  border-radius: 22px;
  align-self: center;
}

.offset-copy h2 {
  margin-bottom: 14px;
  font-size: 2rem;
}

.offset-copy p {
  margin-bottom: 12px;
  color: var(--muted);
}

.offset-media {
  flex: 1;
  background: var(--sage);
  border-radius: 30px;
  overflow: hidden;
  min-height: 280px;
  align-self: stretch;
}

.offset-media img {
  width: 100%;
  height: 100%;
}

.cards-section {
  padding: 70px 6% 90px;
  background: var(--soft-white);
}

.cards-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.cards-header h2 {
  font-size: 2.1rem;
}

.cards-header p {
  max-width: 480px;
  color: var(--muted);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: var(--sand);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-media {
  background: var(--clay);
}

.card-media img {
  width: 100%;
  height: 180px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 600;
  color: var(--accent-2);
}

.card-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.testimonial-band {
  display: flex;
  flex-direction: row;
  gap: 26px;
  padding: 70px 6%;
  background: var(--night);
  color: var(--soft-white);
  position: relative;
}

.testimonial-band.alt {
  background: var(--accent);
}

.testimonial-copy {
  flex: 1;
}

.testimonial-copy h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.testimonial-copy blockquote {
  margin-bottom: 14px;
  font-style: italic;
}

.testimonial-media {
  flex: 1;
  background: #203247;
  border-radius: 22px;
  overflow: hidden;
}

.testimonial-media img {
  width: 100%;
  height: 100%;
}

.form-section {
  padding: 90px 6% 110px;
  background: var(--sage);
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.form-card {
  flex: 1.2;
  background: var(--soft-white);
  padding: 26px;
  border-radius: 22px;
}

.form-card h2 {
  margin-bottom: 12px;
}

.form-card p {
  margin-bottom: 16px;
  color: var(--muted);
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-fields label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-fields input,
.form-fields select,
.form-fields textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d0d0d0;
  font-size: 1rem;
  background: #fff;
}

.form-fields textarea {
  min-height: 120px;
  resize: vertical;
}

.form-aside {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.aside-card {
  background: var(--soft-white);
  padding: 20px;
  border-radius: 18px;
}

.sticky-cta {
  position: sticky;
  top: 16px;
  background: var(--night);
  color: var(--soft-white);
}

.footer {
  margin-top: auto;
  padding: 40px 6%;
  background: var(--ink);
  color: var(--soft-white);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer small {
  color: #c9c9c9;
}

.banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  background: var(--soft-white);
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 360px;
  z-index: 20;
}

.banner-actions {
  display: flex;
  gap: 10px;
}

.simple-hero {
  padding: 60px 6% 70px;
  background: var(--sky);
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.simple-hero.bg-sage {
  background: var(--sage);
}

.simple-hero.bg-sand {
  background: var(--sand);
}

.simple-hero .hero-text {
  flex: 1;
  background: var(--soft-white);
  padding: 22px;
  border-radius: 20px;
}

.simple-hero .hero-text h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.simple-hero .hero-text p {
  color: var(--muted);
  margin-bottom: 10px;
}

.simple-hero .hero-visual {
  flex: 1;
  background: var(--clay);
  border-radius: 20px;
  overflow: hidden;
}

.simple-hero .hero-visual img {
  width: 100%;
  height: 100%;
}

.content-block {
  padding: 60px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.content-block p {
  color: var(--muted);
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-grid {
  display: flex;
  flex-direction: row;
  gap: 22px;
  padding: 60px 6% 90px;
}

.contact-card {
  flex: 1;
  background: var(--sand);
  padding: 22px;
  border-radius: 20px;
}

.notice {
  background: var(--sky);
  padding: 16px;
  border-radius: 16px;
}

.media-frame {
  background: var(--clay);
  border-radius: 20px;
  overflow: hidden;
}

@media (max-width: 980px) {
  .hero-inner,
  .offset-section,
  .testimonial-band,
  .form-section,
  .simple-hero,
  .contact-grid {
    flex-direction: column;
  }

  .floating-card {
    position: static;
    margin-top: 16px;
  }

  .nav-links {
    flex-wrap: wrap;
  }
}
