:root{
  --bg: #ffffff;
  --ink: #1c1c1c;

  /* your palette */
  --mint: #AFC7C7;
  --sage: #B4CCA3;
  --sun:  #EDB92B;
  --pink: #FFB0EE;

  --border: rgba(0,0,0,0.18);
  --shadow: rgba(0,0,0,0.10);

  --radius: 16px;
  --pad: 14px;
  --gap: 14px;
}

*{ box-sizing: border-box; }

body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(255,176,238,0.20), transparent 40%),
    radial-gradient(circle at 90% 0%, rgba(237,185,43,0.18), transparent 40%),
    radial-gradient(circle at 25% 90%, rgba(175,199,199,0.22), transparent 45%),
    var(--bg);
}

a{ color: inherit; }
a:hover{ text-decoration: underline; }

.wrap{
  max-width: 980px;
  margin: 18px auto;
  padding: 14px;
}

/* Header image block */
.header{
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 26px var(--shadow);
  background: rgba(255,255,255,0.7);
}

.header-img{
  width: 100%;
  height: 170px;           /* change height if you want */
  object-fit: cover;       /* keeps it nicely cropped */
  display: block;
}

/* Nav bar under header */
.nav{
  margin-top: 10px;
  border: 2px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  box-shadow: 0 10px 26px var(--shadow);
  padding: 8px 10px;

  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav a{
  text-decoration: none;
  letter-spacing: 1px;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  background: linear-gradient(135deg, rgba(180,204,163,0.50), rgba(175,199,199,0.50));
}

.nav a:nth-child(2){
  background: linear-gradient(135deg, rgba(237,185,43,0.30), rgba(255,176,238,0.22));
}

/* Grid that matches your sketch */
.grid{
  margin-top: var(--gap);
  display: grid;
  gap: var(--gap);

  grid-template-columns: 1fr 2fr;
  grid-template-areas:
    "a b"
    "c b"
    "d e";
}

/* Boxes */
.box{
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 10px 26px var(--shadow);
  padding: var(--pad);
}

.box h2{
  margin: 0 0 8px;
  font-size: 1.05rem;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(175,199,199,0.35);
}

.box p, .box ul{
  margin: 0;
  opacity: 0.9;
  line-height: 1.35;
}

.box ul{ padding-left: 18px; margin-top: 6px; }

/* Place boxes into the sketch areas */
.box-a{ grid-area: a; }
.box-b{ grid-area: b; }
.box-c{ grid-area: c; }
.box-d{ grid-area: d; }
.box-e{ grid-area: e; }

/* Make featured box feel “bigger” */
.box-b{
  background: linear-gradient(135deg, rgba(255,255,255,0.82), rgba(255,176,238,0.12));
  min-height: 280px;
}

/* Mobile: stack */
@media (max-width: 820px){
  .grid{
    grid-template-columns: 1fr;
    grid-template-areas:
      "a"
      "b"
      "c"
      "d"
      "e";
  }
  .box-b{ min-height: 200px; }
}

.footer{
  margin-top: 14px;
  text-align: center;
  opacity: 0.75;
  font-size: 0.95rem;
}