:root {
  --sand: #f7f2ec;
  --linen: #efe6db;
  --sage: #9aa79b;
  --deep-sage: #6f7d72;
  --stone: #d7c9bb;
  --gold: #c8ab7a;
  --ink: #2d2b29;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(45, 43, 41, 0.08);
  --radius: 22px;
}

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

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(200, 171, 122, 0.18), transparent 40%),
    radial-gradient(circle at 20% 20%, rgba(154, 167, 155, 0.2), transparent 45%),
    linear-gradient(180deg, var(--sand), var(--linen));
  line-height: 1.6;
}

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

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

.hero {
  padding: 32px 8vw 80px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.lead {
  font-size: 1.05rem;
  margin-bottom: 26px;
  color: #4b4743;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--deep-sage);
  margin-bottom: 14px;
  font-weight: 600;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--deep-sage);
  color: var(--white);
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 25px rgba(111, 125, 114, 0.25);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 35px rgba(111, 125, 114, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--deep-sage);
  border: 1px solid var(--deep-sage);
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  color: var(--deep-sage);
  border: 1px solid rgba(111, 125, 114, 0.4);
}

.contact-hint {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(215, 201, 187, 0.8);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.hero-media {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

.media-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-card.small {
  max-width: 75%;
  justify-self: end;
}

.section {
  padding: 80px 8vw;
}

.section-header {
  max-width: 640px;
  margin-bottom: 40px;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 14px;
}

.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--white);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(215, 201, 187, 0.5);
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #393531;
}

.focus-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
  background: rgba(255, 255, 255, 0.65);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid rgba(215, 201, 187, 0.6);
  box-shadow: var(--shadow);
}

.focus-media img {
  border-radius: 18px;
}

.testimonials .card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 242, 236, 0.9));
}

.testimonial span {
  display: block;
  margin-top: 14px;
  font-weight: 600;
  color: var(--deep-sage);
}

.pricing {
  padding-top: 30px;
}

.pricing-box {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(215, 201, 187, 0.6);
}

.pricing-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.contact-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(215, 201, 187, 0.5);
}

.contact-form {
  background: var(--white);
  padding: 26px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(215, 201, 187, 0.5);
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 8px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
  color: #4b4743;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(111, 125, 114, 0.3);
  font-family: inherit;
  background: #fbf9f6;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(111, 125, 114, 0.2);
  border-color: var(--deep-sage);
}

.footer {
  padding: 30px 8vw 50px;
  text-align: center;
  font-size: 0.9rem;
  color: #5e5852;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .media-card.small {
    max-width: 100%;
  }

  .pricing-box {
    padding: 26px;
  }
}
