:root {
  --ink: #111827;
  --muted: #5f6b7a;
  --cream: #f6f2ea;
  --paper: #fffdf8;
  --honey: #b98643;
  --clay: #243a5e;
  --sage: #315f72;
  --line: rgba(17, 24, 39, 0.14);
  --shadow: 0 18px 50px rgba(17, 24, 39, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled,
.site-header.open {
  color: var(--ink);
  background: rgba(246, 242, 234, 0.94);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.1);
  backdrop-filter: blur(14px);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.8rem;
}

.site-nav {
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.site-header.scrolled .site-nav a:hover,
.site-header.open .site-nav a:hover {
  background: rgba(36, 58, 94, 0.12);
}

.nav-action {
  border: 1px solid currentColor;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 14, 24, 0.8), rgba(9, 14, 24, 0.34) 50%, rgba(9, 14, 24, 0.04)),
    linear-gradient(0deg, rgba(9, 14, 24, 0.56), rgba(9, 14, 24, 0.04) 52%);
}

.hero-content {
  position: relative;
  max-width: 720px;
  padding: 130px clamp(22px, 6vw, 76px) 88px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--honey);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f4c987;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  max-width: 700px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-content p:not(.eyebrow) {
  max-width: 580px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
}

.hero-actions,
.package-controls,
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.filter,
.package-card button,
.newsletter button {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
}

.primary {
  color: #fff;
  background: var(--clay);
}

.primary:hover {
  background: #182844;
}

.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
}

.full {
  width: 100%;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1180px;
  margin: -58px auto 0;
  padding: 0 clamp(16px, 4vw, 28px);
  position: relative;
  z-index: 3;
}

.quick-info div {
  padding: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.quick-info div:first-child {
  border-radius: 14px 0 0 14px;
}

.quick-info div:last-child {
  border-radius: 0 14px 14px 0;
}

.quick-info strong,
.quick-info span {
  display: block;
}

.quick-info strong {
  font-size: 1.5rem;
}

.quick-info span {
  color: var(--muted);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px clamp(18px, 4vw, 28px);
}

.split,
.consultation {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1fr);
  gap: clamp(28px, 7vw, 86px);
  align-items: start;
}

.story-copy {
  padding-top: 10px;
}

.feature-list span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--sage);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.38);
}

.section-heading {
  max-width: 720px;
}

.package-section {
  padding-top: 60px;
}

.package-controls {
  margin: 28px 0;
}

.filter {
  padding: 10px 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.filter.active {
  color: #fff;
  background: var(--sage);
}

.package-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: start;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.package-card,
.proposal-box,
.process-card,
.consult-form {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
}

.package-card {
  display: grid;
  min-height: 300px;
  padding: 22px;
}

.package-card .tag {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--sage);
  background: rgba(101, 116, 92, 0.13);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: capitalize;
}

.package-card p {
  margin-bottom: 18px;
}

.package-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.45;
}

.package-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.price {
  font-size: 1.1rem;
  font-weight: 900;
}

.package-card button {
  padding: 10px 14px;
  color: #fff;
  background: var(--honey);
}

.proposal-box {
  position: sticky;
  top: 92px;
  padding: 22px;
}

.proposal-items {
  display: grid;
  gap: 12px;
  min-height: 92px;
  padding: 16px 0;
}

.proposal-item,
.proposal-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.proposal-item button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--clay);
  background: #fff;
  cursor: pointer;
}

.empty,
.fine-print,
.form-status,
.newsletter p {
  font-size: 0.9rem;
}

.proposal-total {
  padding: 16px 0 20px;
  border-top: 1px solid var(--line);
  font-size: 1.1rem;
}

.process-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 0.85fr);
  gap: 18px;
}

.process-card {
  padding: 26px;
}

.step {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--sage);
  font-size: 0.82rem;
  font-weight: 900;
}

.consultation {
  border-top: 1px solid var(--line);
}

.consult-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(36, 58, 94, 0.2);
  border-color: var(--honey);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  gap: 30px;
  padding: 56px clamp(22px, 6vw, 76px);
  color: #fff;
  background: #111827;
}

.site-footer p,
.newsletter p {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.newsletter {
  align-self: center;
}

.newsletter label {
  margin-bottom: 10px;
}

.newsletter div {
  display: flex;
  gap: 8px;
}

.newsletter input {
  border-color: rgba(255, 255, 255, 0.18);
}

.newsletter button {
  padding: 0 18px;
  color: #fff;
  background: var(--honey);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    color: var(--ink);
    background: var(--paper);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .site-header.open .site-nav {
    display: flex;
  }

  .hero {
    min-height: 720px;
  }

.quick-info,
.split,
.package-layout,
.process-grid,
.consultation,
.site-footer {
    grid-template-columns: 1fr;
  }

  .quick-info {
    margin-top: 0;
    padding: 0;
  }

  .quick-info div,
  .quick-info div:first-child,
  .quick-info div:last-child {
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid var(--line);
  }

  .proposal-box {
    position: static;
  }
}

@media (max-width: 640px) {
  .brand span:last-child {
    max-width: 130px;
  }

  .hero-content {
    padding: 130px 20px 70px;
  }

  h1 {
    font-size: 3rem;
  }

  .package-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 18px;
  }

  .newsletter div {
    flex-direction: column;
  }

  .newsletter button {
    min-height: 46px;
  }
}
