:root {
  --evergreen-950: #0b1511;
  --evergreen-900: #0f1c16;
  --evergreen-700: #1f3a2b;
  --evergreen-600: #2a4f3a;
  --sand-50: #f7f2ea;
  --sand-100: #efe3cf;
  --sand-200: #e2cfad;
  --honey-400: #d7a547;
  --honey-500: #c99031;
  --white: #ffffff;
  --shadow-soft: 0 20px 60px rgba(15, 28, 22, 0.3);
  --shadow-luxe: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius-lg: 32px;
  --radius-md: 20px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: var(--evergreen-950);
  color: var(--sand-50);
}

h1,
h2,
h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 16px;
  line-height: 1.6;
}

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

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

.page {
  position: relative;
  overflow: hidden;
}

.ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  z-index: 0;
}

.ambient-top {
  top: -120px;
  right: -10%;
  width: 420px;
  height: 420px;
  background: rgba(46, 139, 87, 0.18);
}

.ambient-bottom {
  bottom: -120px;
  left: -5%;
  width: 360px;
  height: 360px;
  background: rgba(215, 165, 71, 0.15);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 21, 17, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  font-weight: 600;
  font-size: 1.6rem;
}

.logo span {
  position: relative;
  top: -4px;
}

.logo img {
  width: 90px;
  height: 90px;
  border-radius: 14px;
  object-fit: cover;
  transform: scale(1.45);
  transform-origin: left center;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(247, 242, 234, 0.8);
}

.nav-cta {
  display: flex;
  gap: 12px;
}

.nav-mobile {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    border-color 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--honey-400);
  color: var(--evergreen-950);
}

.btn-primary:hover {
  background: var(--honey-500);
  transform: translateY(-1px);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.45);
}

.hero,
.section,
.quote {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero {
  padding: 72px 0 24px;
}

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

.hero-copy .lead {
  color: rgba(247, 242, 234, 0.78);
  font-size: 1.05rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 16px;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.75);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 16px;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(247, 242, 234, 0.7);
}

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  z-index: 0;
}

.hero-media img {
  position: relative;
  z-index: 1;
  border-radius: calc(var(--radius-lg) - 4px);
  box-shadow: var(--shadow-luxe);
  object-fit: cover;
}

.quote {
  padding: 24px 0 24px;
}

.panel {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-soft);
  padding: 32px;
}

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

.quote-info p {
  color: rgba(247, 242, 234, 0.72);
}

.quote-gallery {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.quote-gallery img {
  border-radius: 18px;
  height: 140px;
  object-fit: cover;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.7);
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.1);
  color: var(--sand-50);
  font-family: inherit;
  font-size: 0.9rem;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field-full {
  grid-column: 1 / -1;
}

.form-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(247, 242, 234, 0.7);
}

.form-message {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 600;
  display: none;
}

.form-message.success {
  display: block;
  border-color: rgba(56, 189, 129, 0.4);
  background: rgba(16, 185, 129, 0.12);
  color: #b6f2d5;
}

.form-message.error {
  display: block;
  border-color: rgba(248, 113, 113, 0.5);
  background: rgba(248, 113, 113, 0.12);
  color: #fecaca;
}

.section {
  padding: 48px 0;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

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

.card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

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

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

.card-wide {
  grid-column: 1 / -1;
}

.add-ons label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  margin: 12px 0;
}

.add-ons input {
  accent-color: var(--honey-400);
}

.pricing {
  margin-top: 24px;
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.pricing-grid {
  min-width: 720px;
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.9rem;
}

.pricing-cell {
  background: rgba(15, 28, 22, 0.9);
  padding: 16px;
}

.pricing-cell.heading {
  font-weight: 600;
}

.badge {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--honey-400);
  color: var(--evergreen-950);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.note {
  color: rgba(247, 242, 234, 0.7);
  font-size: 0.9rem;
}

.promo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(215, 165, 71, 0.4);
  background: rgba(215, 165, 71, 0.12);
}

.review-placeholder {
  margin-top: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 28px;
  text-align: center;
}

.faq details {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  padding: 18px 20px;
}

.faq details + details {
  margin-top: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.final-cta {
  padding-bottom: 72px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 0 60px;
}

.footer-grid {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  color: rgba(247, 242, 234, 0.7);
  font-size: 0.9rem;
}

.footer-title {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

@media (max-width: 960px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-mobile {
    display: inline-flex;
  }
}

@media (max-width: 720px) {
  .panel {
    padding: 24px;
  }

  .section {
    padding: 40px 0;
  }
}
