:root {
  --ink: #315b45;
  --paper: #f8fcff;
  --accent: #345f8a;
  --line: #b6cfdf;
  --sky: #deedf8;
  --mint: #edf5e8;
  --blush: #e8afca;
  --leaf: #c6dfaf;
  --leaf-dark: #b8d79d;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 17px/1.6 Arial, sans-serif;
}
a { color: inherit; }
button, select { font: inherit; }

/* Top notice + header */
.notice {
  text-align: center;
  background: #d0e6bc;
  color: var(--ink);
  font-size: 13px;
  padding: 8px;
}
header {
  padding: 22px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  font: 30px Georgia, serif;
  text-decoration: none;
  color: var(--ink);
}
nav { display: flex; gap: 28px; font-size: 14px; }
nav a { text-decoration: none; }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}
.intro {
  padding: 75px 11% 60px 12%;
  align-self: center;
  background: #e5f1fa;
}
.eyebrow {
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: bold;
}
h1 {
  font: clamp(48px, 5.7vw, 86px)/1.02 Georgia, serif;
  letter-spacing: -.04em;
  margin: 26px 0;
}
h1 em {
  color: var(--accent);
  font-weight: normal;
  text-decoration: underline;
  text-decoration-color: var(--blush);
  text-decoration-thickness: 5px;
  text-underline-offset: 9px;
}
p { max-width: 650px; }
.btn {
  display: inline-block;
  background: var(--leaf);
  color: #294832;
  padding: 14px 23px;
  border: 1px solid #a9c88f;
  text-decoration: none;
  border-radius: 0;
  cursor: pointer;
}
.btn:hover { background: var(--leaf-dark); }
.hero figure {
  margin: 0;
  position: relative;
  min-height: 500px;
  background: var(--sky);
}
.hero img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}
.hero figcaption {
  position: absolute;
  bottom: 15px;
  left: 20px;
  background: var(--paper);
  padding: 5px 10px;
  font-size: 12px;
}
.sub { font-size: 14px; }
.ribbon {
  padding: 22px;
  text-align: center;
  border-block: 1px solid var(--line);
  font-family: Georgia, serif;
  font-size: 21px;
  background: #f7e4ed;
}

/* Sections */
section { padding: 75px 8%; }
h2 {
  font: clamp(35px, 4vw, 55px)/1.1 Georgia, serif;
  margin: 12px 0 25px;
  letter-spacing: -.025em;
}
h3 { font: 30px Georgia, serif; margin: 10px 0; }
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* Packages */
.package { border: 1px solid var(--line); padding: 35px; }
.package.featured {
  background: var(--mint);
  border-top: 5px solid var(--leaf-dark);
  box-shadow: 0 5px 0 var(--blush);
}
.price { font: 45px Georgia, serif; }
.package ul { padding-left: 20px; }
.package li { margin: 9px 0; }
.tag {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--accent);
}
.add { padding: 25px 0; border-bottom: 1px solid var(--line); }

/* Story */
.story {
  background: var(--mint);
  color: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
}
.story p { margin-top: 0; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.number { font: 40px Georgia, serif; color: var(--accent); }
.steps h3 { font-size: 24px; }

/* Planner */
.planner { background: var(--sky); }
.planner label {
  display: block;
  font-weight: bold;
  font-size: 14px;
  margin: 20px 0 6px;
}
select {
  padding: 12px;
  width: 100%;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid #72796a;
}
.summary { padding: 35px; background: var(--paper); }
output { display: block; font: 52px Georgia, serif; margin: 15px 0; }
.check { display: flex; gap: 12px; align-items: center; margin: 20px 0; }
.check label { margin: 0; }
.check input { width: 20px; height: 20px; accent-color: #24523e; }

/* FAQ */
details { border-bottom: 1px solid var(--line); padding: 20px 0; }
summary { cursor: pointer; font-size: 18px; font-weight: bold; }

/* Footer */
footer {
  padding: 35px 8%;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 25px;
  font-size: 14px;
}

button:focus-visible, a:focus-visible, select:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

@media (max-width: 750px) {
  header { padding: 18px 6%; }
  .brand { font-size: 25px; }
  nav { gap: 15px; }
  nav a:last-child { display: none; }
  .hero, .grid, .story, .steps { grid-template-columns: 1fr; }
  .intro { padding: 45px 8%; }
  .hero figure { min-height: 470px; }
  .hero { min-height: auto; }
  section { padding: 50px 7%; }
  .story { gap: 10px; }
  footer { display: block; }
  .ribbon { font-size: 17px; }
  .package { padding: 25px; }
}
