:root {
  --pwb-ink: #1a2e2a;
  --pwb-teal: #234e52;
  --pwb-leaf: #6b8f71;
  --pwb-rose: #c97b84;
  --pwb-rose-deep: #a85d66;
  --pwb-parchment: #f7f3ea;
  --pwb-blush: #f3e8e4;
  --pwb-white: #fffcf7;
  --pwb-muted: #5d6b66;
  --pwb-line: rgba(26, 46, 42, 0.12);
  --pwb-serif: "Cormorant Garamond", Georgia, serif;
  --pwb-sans: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --pwb-head: 84px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--pwb-head) + 10px);
}

body {
  margin: 0;
  color: var(--pwb-ink);
  background: var(--pwb-parchment);
  font-family: var(--pwb-sans);
  font-size: 16.5px;
  line-height: 1.7;
}

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

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

h1,
h2,
h3,
.pwb-brand strong {
  font-family: var(--pwb-serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--pwb-teal);
  margin: 0 0 0.5em;
}

p {
  margin: 0 0 1rem;
}

figure,
address {
  margin: 0;
  font-style: normal;
}

.pwb-wrap {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

section[id] {
  scroll-margin-top: calc(var(--pwb-head) + 14px);
}

.pwb-skip {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 80;
  background: var(--pwb-teal);
  color: #fff;
  padding: 8px 12px;
}

.pwb-skip:focus {
  top: 10px;
}

.pwb-kicker {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pwb-rose-deep);
}

.pwb-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--pwb-head);
  background: var(--pwb-parchment);
  border-bottom: 1px solid var(--pwb-line);
}

.pwb-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(26, 46, 42, 0.08);
}

.pwb-header__row {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pwb-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pwb-brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.pwb-brand strong {
  display: block;
  margin: 0;
  font-size: 1.45rem;
  color: var(--pwb-teal);
}

.pwb-brand small {
  display: block;
  color: var(--pwb-muted);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.pwb-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.pwb-nav-list {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pwb-nav-list a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--pwb-muted);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

.pwb-nav-list a:hover,
.pwb-nav-list a.is-active {
  color: var(--pwb-teal);
  border-bottom-color: var(--pwb-rose);
}

.pwb-call {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--pwb-teal);
}

.pwb-burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.pwb-burger span {
  display: block;
  height: 2px;
  margin: 7px 0;
  background: var(--pwb-teal);
}

.pwb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px 12px 999px 12px;
  background: var(--pwb-rose);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.pwb-btn:hover {
  background: var(--pwb-rose-deep);
}

.pwb-btn--line {
  background: transparent;
  color: var(--pwb-teal);
  border: 1px solid rgba(35, 78, 82, 0.28);
}

.pwb-btn--wide {
  width: 100%;
}

.pwb-hero {
  padding: 48px 0 28px;
}

.pwb-hero__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: center;
}

.pwb-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  max-width: 12ch;
}

.pwb-lede {
  font-size: 1.08rem;
  max-width: 42ch;
  color: var(--pwb-muted);
}

.pwb-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 16px;
}

.pwb-fine {
  margin: 0;
  font-size: 0.86rem;
  color: var(--pwb-muted);
}

.pwb-hero__frame {
  position: relative;
}

.pwb-hero__frame::before {
  content: "";
  position: absolute;
  inset: -18px -18px 28px 28px;
  border: 2px solid var(--pwb-leaf);
  border-radius: 40% 18% 32% 22%;
  z-index: 0;
}

.pwb-hero__frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: min(72vh, 620px);
  object-fit: cover;
  border-radius: 38% 16% 30% 20%;
}

.pwb-band {
  padding: 8px 0 40px;
}

.pwb-band__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pwb-band article {
  background: var(--pwb-white);
  border: 1px solid var(--pwb-line);
  border-left: 4px solid var(--pwb-leaf);
  padding: 16px 18px;
}

.pwb-band span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pwb-leaf);
  font-weight: 700;
}

.pwb-band strong {
  font-family: var(--pwb-serif);
  font-size: 1.12rem;
  color: var(--pwb-teal);
}

.pwb-block {
  padding: 88px 0;
}

.pwb-block--tint {
  background: #efe8d8;
}

.pwb-block--ink {
  background: var(--pwb-teal);
  color: var(--pwb-parchment);
}

.pwb-block--ink h2,
.pwb-block--ink h3 {
  color: var(--pwb-parchment);
}

.pwb-block--blush {
  background: var(--pwb-blush);
  padding-bottom: 0;
}

.pwb-head {
  max-width: 620px;
  margin-bottom: 36px;
}

.pwb-head h2,
.pwb-about h2,
.pwb-faq h2,
.pwb-contact h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.pwb-about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.pwb-about__photo img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  border-radius: 18px 72px 18px 72px;
}

.pwb-about__photo figcaption {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--pwb-muted);
}

.pwb-ticks {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.pwb-ticks li {
  padding-left: 22px;
  margin-bottom: 8px;
  position: relative;
}

.pwb-ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50% 40% 50% 40%;
  background: var(--pwb-leaf);
}

.pwb-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.pwb-tile {
  background: var(--pwb-white);
  overflow: hidden;
  border-radius: 8px 28px 8px 28px;
  border: 1px solid var(--pwb-line);
}

.pwb-tile img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.pwb-tile__body {
  padding: 20px 22px 24px;
}

.pwb-tile em {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--pwb-rose-deep);
  font-weight: 700;
}

.pwb-tile a {
  display: inline-block;
  margin-top: 6px;
  font-weight: 700;
  color: var(--pwb-teal);
  border-bottom: 1px solid var(--pwb-rose);
}

.pwb-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: none;
}

.pwb-steps li {
  padding: 8px 8px 0;
  border-top: 1px dashed rgba(247, 243, 234, 0.28);
}

.pwb-steps b {
  margin: 14px 0 10px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--pwb-rose);
  color: #fff;
  font-family: var(--pwb-serif);
  font-size: 1.2rem;
  display: grid;
  place-items: center;
}

.pwb-faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 40px;
}

.pwb-faq details {
  background: var(--pwb-white);
  border-bottom: 1px solid var(--pwb-line);
  padding: 4px 4px 4px 0;
}

.pwb-faq summary {
  cursor: pointer;
  font-weight: 700;
  padding: 14px 0;
  list-style: none;
}

.pwb-faq summary::-webkit-details-marker {
  display: none;
}

.pwb-faq details p {
  color: var(--pwb-muted);
  padding-bottom: 12px;
}

.pwb-contact {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  padding-bottom: 52px;
}

.pwb-facts {
  margin: 24px 0 0;
}

.pwb-facts div {
  margin-bottom: 14px;
}

.pwb-facts dt {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pwb-leaf);
  font-weight: 700;
}

.pwb-facts dd {
  margin: 2px 0 0;
}

.pwb-form {
  background: var(--pwb-white);
  padding: 26px;
  display: grid;
  gap: 12px;
  border-radius: 8px 32px 8px 32px;
  box-shadow: 0 18px 40px rgba(26, 46, 42, 0.08);
}

.pwb-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
  font-size: 0.88rem;
}

.pwb-form__two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pwb-form input,
.pwb-form textarea,
.pwb-form select {
  width: 100%;
  border: 1px solid var(--pwb-line);
  border-radius: 8px;
  padding: 11px 12px;
  font: inherit;
  background: var(--pwb-parchment);
}

.pwb-form input:focus,
.pwb-form textarea:focus,
.pwb-form select:focus {
  outline: 2px solid var(--pwb-leaf);
  border-color: transparent;
}

.pwb-pot {
  position: absolute;
  left: -9999px;
  height: 1px;
  overflow: hidden;
}

.pwb-form__note {
  min-height: 1.3em;
  margin: 0;
  font-weight: 600;
}

.pwb-form__note.is-ok {
  color: var(--pwb-leaf);
}

.pwb-form__note.is-bad {
  color: #8b3a32;
}

.pwb-map {
  height: 340px;
}

.pwb-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.pwb-foot {
  background: var(--pwb-ink);
  color: rgba(247, 243, 234, 0.82);
  padding: 56px 0 0;
}

.pwb-foot .pwb-brand strong,
.pwb-foot .pwb-brand small {
  color: var(--pwb-parchment);
}

.pwb-foot__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
}

.pwb-foot-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pwb-foot-links li {
  margin-bottom: 8px;
}

.pwb-foot a:hover {
  color: #fff;
}

.pwb-foot__legal {
  border-top: 1px solid rgba(247, 243, 234, 0.12);
  padding: 14px 0 20px;
  font-size: 0.86rem;
}

.pwb-foot__legal-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.pwb-foot__legal-row p {
  margin: 0;
}

.pwb-foot__legal a {
  margin-left: 10px;
  text-decoration: underline;
}

.pwb-page {
  padding: 48px 0 88px;
}

.pwb-page__inner {
  max-width: 740px;
}

.pwb-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 22px;
}

.pwb-page h2 {
  margin: 26px 0 8px;
  font-size: 1.35rem;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .pwb-hero__grid,
  .pwb-about,
  .pwb-tiles,
  .pwb-steps,
  .pwb-faq,
  .pwb-contact,
  .pwb-band__row,
  .pwb-foot__grid {
    grid-template-columns: 1fr;
  }

  .pwb-hero__frame img,
  .pwb-about__photo img {
    min-height: 280px;
    height: 46vh;
  }
}

@media (max-width: 760px) {
  .pwb-burger {
    display: block;
  }

  .pwb-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--pwb-head);
    background: var(--pwb-parchment);
    padding: 18px 22px 26px;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid var(--pwb-line);
  }

  .pwb-nav.is-open {
    display: flex;
  }

  .pwb-nav-list {
    flex-direction: column;
    gap: 12px;
  }

  .pwb-form__two {
    grid-template-columns: 1fr;
  }

  .pwb-block {
    padding: 60px 0;
  }
}
