:root {
  --paper: #F4F1EA;
  --card: #FBFAF6;
  --footer: #EDE9E0;
  --ink: #1E2320;
  --ink-2: #3A403B;
  --muted: #5B625C;
  --line: #DCD7CC;
  --line-2: #CFC9BD;
  --forest: #2E4A3D;
  --forest-dark: #213629;
  --sage: #E3E8DD;
  --rust: #9C5530;
  --rust-dark: #82452A;
  --disabled: #A9A396;
  --faint: #C9C4BA;
  --error: #9C3A2A;
  --live: #4F8A5B;

  --serif: 'Newsreader', Georgia, serif;
  --sans: 'Hanken Grotesk', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

html, body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
* { box-sizing: border-box; }
a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--rust); }
input, textarea, select, button { font-family: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }

.shell { min-height: 100vh; display: flex; flex-direction: column; }
.wrap { max-width: 1240px; margin: 0 auto; padding-left: 24px; padding-right: 24px; width: 100%; }
.stack-6 { display: flex; flex-direction: column; gap: 6px; }

/* ---------- Type ---------- */
.serif { font-family: var(--serif); font-weight: 400; }
.eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rust); }
.h-section { font-family: var(--serif); font-weight: 400; font-size: 44px; letter-spacing: -0.015em; margin: 0; }
.h-sub { font-family: var(--serif); font-weight: 400; font-size: 32px; margin: 0 0 20px; }
.muted { color: var(--muted); }
.link-btn { cursor: pointer; text-decoration: underline; text-underline-offset: 3px; background: none; border: 0; padding: 0; font: inherit; color: inherit; }
.link-btn:hover { color: var(--rust); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; border: 0; cursor: pointer; font-weight: 500; text-decoration: none; transition: background-color .15s, color .15s, border-color .15s; }
.btn:hover { text-decoration: none; }
.btn--pill { border-radius: 999px; padding: 14px 22px; font-size: 15px; }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--primary { background: var(--forest); color: var(--card); }
.btn--primary:hover { background: var(--forest-dark); color: var(--card); }
.btn--light { background: var(--card); color: var(--ink); }
.btn--light:hover { background: var(--sage); color: var(--ink); }
.btn--ghost-light { background: transparent; color: var(--card); border: 1px solid rgba(251,250,246,0.7); }
.btn--ghost-light:hover { background: rgba(251,250,246,0.12); color: var(--card); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--card); }
.btn--block { border-radius: 6px; padding: 15px; font-size: 16px; font-weight: 600; color: var(--card); width: 100%; }
.btn--rust { background: var(--rust); }
.btn--rust:hover { background: var(--rust-dark); }
.btn--off { background: var(--disabled); cursor: default; }
.btn--busy { background: #6E7A70; cursor: progress; }
.btn--square { border-radius: 6px; padding: 14px 26px; font-size: 16px; font-weight: 600; }
.round-btn { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); background: transparent; cursor: pointer; font-size: 16px; line-height: 1; }
.round-btn:hover:not(:disabled) { border-color: var(--forest); }
.round-btn:disabled { opacity: 0.35; cursor: default; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(244,241,234,0.94); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.site-header__inner { padding-top: 14px; padding-bottom: 14px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; }
.brand__mark { width: 44px; height: 44px; flex: none; }
.brand:hover { color: var(--ink); }
.brand__name { font-family: var(--serif); font-size: 24px; letter-spacing: -0.01em; }
.brand__tag { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.08em; }
.nav { display: flex; align-items: center; gap: 22px; font-size: 15px; flex-wrap: wrap; }
.nav__link { color: var(--ink); text-decoration: none; }
.nav__link--mono { color: var(--muted); font-family: var(--mono); font-size: 12px; }

/* ---------- Footer ---------- */
.site-footer { margin-top: auto; border-top: 1px solid var(--line); background: var(--footer); }
.site-footer__inner { padding-top: 40px; padding-bottom: 40px; display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; font-size: 14px; color: var(--muted); }
.site-footer__name { font-family: var(--serif); font-size: 22px; color: var(--ink); }

/* ---------- Shared ---------- */
.photo { background-color: var(--sage); background-size: cover; background-position: center; width: 100%; height: 100%; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 6px; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; flex-wrap: wrap; margin-bottom: 36px; }

/* ---------- Home ---------- */
.hero { position: relative; height: min(84vh, 780px); min-height: 520px; background: var(--forest); overflow: hidden; }
.hero__img { position: absolute; inset: 0; }
.hero__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,28,24,0.28) 0%, rgba(20,28,24,0.4) 40%, rgba(20,28,24,0.78) 100%); }
.hero__body { position: absolute; left: 0; right: 0; bottom: 0; padding-bottom: 56px; color: var(--card); }
.hero__kicker { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.hero__title { font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 6.4vw, 84px); line-height: 1.02; letter-spacing: -0.02em; margin: 0 0 20px; max-width: 15ch; text-wrap: balance; }
.hero__lede { font-size: 18px; line-height: 1.5; max-width: 46ch; margin: 0 0 28px; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

.stays { padding-top: 96px; padding-bottom: 40px; scroll-margin-top: 70px; }
.stays__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); gap: 28px; }
.stay-card { display: flex; flex-direction: column; overflow: hidden; color: inherit; text-decoration: none; transition: border-color .15s; }
.stay-card:hover { border-color: var(--forest); color: inherit; }
.stay-card__img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--sage); }
.stay-card__body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 10px; }
.stay-card__name { font-family: var(--serif); font-weight: 400; font-size: 32px; margin: 0; letter-spacing: -0.01em; }
.stay-card__tagline { margin: 0; color: var(--muted); line-height: 1.5; }
.stay-card__foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 10px; padding-top: 16px; border-top: 1px solid var(--line); flex-wrap: wrap; }

.values { padding-top: 56px; padding-bottom: 56px; }
.values__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px; border-top: 1px solid var(--ink); padding-top: 32px; }
.values__item { display: flex; flex-direction: column; gap: 10px; }
.values__num { font-family: var(--mono); font-size: 12px; color: var(--rust); }
.values__item h4 { font-family: var(--serif); font-weight: 400; font-size: 24px; margin: 0; }
.values__item p { margin: 0; color: var(--muted); line-height: 1.55; }

.reviews-band { background: var(--forest); color: var(--card); margin-top: 56px; scroll-margin-top: 70px; }
.reviews-band__inner { padding-top: 96px; padding-bottom: 96px; }
.reviews-band .section-head { margin-bottom: 44px; }
.stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat__num { font-family: var(--serif); font-size: 40px; }
.stat__label { font-size: 13px; opacity: 0.85; }
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 20px; }
.quote { margin: 0; padding: 28px; border: 1px solid rgba(251,250,246,0.22); border-radius: 6px; display: flex; flex-direction: column; gap: 18px; justify-content: space-between; }
.quote blockquote { margin: 0; font-family: var(--serif); font-size: 21px; line-height: 1.4; text-wrap: pretty; }
.quote figcaption { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; flex-wrap: wrap; }
.quote__stay { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.85; }

.guides { padding-top: 96px; padding-bottom: 96px; }
.guides .h-section { margin-bottom: 36px; }
.guides__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); gap: 48px; }
.guides__head { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid var(--ink); padding-bottom: 12px; margin-bottom: 4px; gap: 12px; }
.guides__head h3 { font-family: var(--serif); font-weight: 400; font-size: 26px; margin: 0; }
.guides__head a { font-size: 14px; }
.guides__row { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.dist { font-family: var(--mono); font-size: 12px; color: var(--muted); white-space: nowrap; }

/* ---------- Property ---------- */
.page { max-width: 1240px; margin: 0 auto; padding: 28px 24px 80px; width: 100%; }
.crumbs { font-size: 14px; color: var(--muted); margin-bottom: 18px; display: flex; gap: 8px; }
.crumbs a { color: inherit; }
.prop-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; flex-wrap: wrap; margin-bottom: 24px; }
.prop-head .eyebrow { margin-bottom: 10px; }
.prop-head h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(36px, 5vw, 60px); letter-spacing: -0.02em; line-height: 1.05; margin: 0; }
.prop-head__rating { font-size: 15px; color: var(--muted); }

.gallery { display: grid; grid-template-columns: minmax(0, 1fr); gap: 10px; margin-bottom: 48px; }
.gallery__main { aspect-ratio: 16 / 8; min-height: 260px; border-radius: 6px; overflow: hidden; background: var(--sage); }
.gallery__thumbs { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
.thumb { cursor: pointer; aspect-ratio: 4 / 3; border-radius: 4px; overflow: hidden; background: var(--sage); border: 0; padding: 0; outline-offset: 2px; opacity: 0.75; transition: opacity .15s; }
.thumb:hover { opacity: 1; }
.thumb[aria-current="true"] { outline: 2px solid var(--forest); opacity: 1; }

.prop-body { display: flex; flex-wrap: wrap; gap: 40px; align-items: flex-start; }
.prop-main { flex: 1 1 420px; min-width: 0; display: flex; flex-direction: column; gap: 56px; }
.chips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.chip { border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; font-size: 14px; background: var(--card); }
.prose p { font-size: 17px; line-height: 1.65; margin: 0 0 16px; max-width: 64ch; text-wrap: pretty; }
.amenities { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); border-top: 1px solid var(--line); margin: 0; padding: 0; list-style: none; }
.amenities li { padding: 14px 0; border-bottom: 1px solid var(--line); display: flex; gap: 12px; align-items: center; }
.amenities li::before { content: ''; width: 6px; height: 6px; background: var(--rust); border-radius: 50%; flex: none; }
.row-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.row-head .h-sub { margin: 0; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 16px; }
.review { margin: 0; padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.review blockquote { margin: 0; font-family: var(--serif); font-size: 19px; line-height: 1.4; text-wrap: pretty; }
.review figcaption { font-size: 13px; color: var(--muted); }

#guide { scroll-margin-top: 80px; }
.filter-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.filter { border: 1px solid var(--forest); border-radius: 999px; padding: 8px 14px; font-size: 14px; cursor: pointer; background: transparent; color: var(--forest); }
.filter:hover { background: var(--sage); }
.filter[aria-pressed="true"] { background: var(--forest); color: var(--card); }
.guide-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); gap: 16px; }
.guide-card { padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.guide-card__meta { display: flex; justify-content: space-between; gap: 10px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }
.guide-card__meta span:first-child { color: var(--rust); }
.guide-card__meta span:last-child { color: var(--muted); }
.guide-card h3 { font-family: var(--serif); font-weight: 500; font-size: 21px; margin: 0; }
.guide-card p { margin: 0; color: var(--muted); line-height: 1.5; font-size: 15px; }

/* Booking widget */
.book { flex: 1 1 320px; max-width: 420px; position: sticky; top: 88px; background: var(--card); border: 1px solid var(--line); border-radius: 8px; padding: 22px; display: flex; flex-direction: column; gap: 16px; }
.book__top { display: flex; justify-content: space-between; align-items: baseline; }
.book__rate { font-family: var(--serif); font-size: 30px; }
.sync-pill { font-family: var(--mono); font-size: 11px; color: var(--forest); display: flex; align-items: center; gap: 6px; }
.sync-pill::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--live); }
.dates { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: 6px; }
.dates > div { padding: 10px 12px; }
.dates > div:first-child { border-right: 1px solid var(--line); }
.field-label { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.field-value { font-size: 15px; color: var(--ink); margin-top: 2px; }
.cal__nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.cal__title { font-weight: 600; }
.cal__dow, .cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.cal__dow { text-align: center; font-size: 11px; color: var(--muted); margin-bottom: 4px; }
.cal__grid { row-gap: 2px; }
.day { height: 40px; display: flex; align-items: center; justify-content: center; font-size: 14px; border: 0; background: transparent; color: var(--ink); border-radius: 6px; padding: 0; font-family: inherit; }
.day--open { cursor: pointer; }
.day--open:hover:not(.day--end) { background: var(--sage); }
.day--past { color: var(--faint); }
.day--booked { color: var(--disabled); text-decoration: line-through; }
.day--range { background: var(--sage); border-radius: 0; }
.day--end { background: var(--forest); color: var(--card); font-weight: 600; }
.day:disabled { cursor: default; }
.legend { display: flex; gap: 16px; font-size: 12px; color: var(--muted); margin-top: 10px; flex-wrap: wrap; }
.legend span { display: flex; align-items: center; gap: 6px; }
.legend__sel { width: 10px; height: 10px; background: var(--forest); border-radius: 2px; }
.legend__booked { text-decoration: line-through; color: var(--disabled); }
.guests { display: flex; justify-content: space-between; align-items: center; border: 1px solid var(--line); border-radius: 6px; padding: 10px 12px; }
.guests__btns { display: flex; gap: 8px; }
.price { display: flex; flex-direction: column; gap: 8px; font-size: 15px; }
.price__row { display: flex; justify-content: space-between; color: var(--ink-2); }
.price__total { display: flex; justify-content: space-between; font-weight: 600; padding-top: 10px; border-top: 1px solid var(--line); margin-top: 4px; }
.savings { font-size: 13px; color: var(--forest); background: var(--sage); border-radius: 4px; padding: 8px 10px; }
.book__hint { font-size: 13px; color: var(--muted); text-align: center; min-height: 18px; }

/* ---------- Checkout ---------- */
.page--checkout { max-width: 1100px; padding: 36px 24px 96px; }
.back { display: inline-block; font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.page-title { font-family: var(--serif); font-weight: 400; font-size: 44px; letter-spacing: -0.015em; margin: 0 0 28px; }
.checkout { display: flex; flex-wrap: wrap; gap: 48px; align-items: flex-start; }
.checkout__main { flex: 1 1 480px; min-width: 0; display: flex; flex-direction: column; gap: 28px; }
.steps { display: flex; gap: 24px; font-size: 14px; border-bottom: 1px solid var(--line); padding-bottom: 14px; font-weight: 600; color: var(--disabled); }
.steps [aria-current="step"] { color: var(--ink); }
.form { display: flex; flex-direction: column; gap: 16px; }
.form-grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.form-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.field { display: flex; flex-direction: column; gap: 6px; font-size: 14px; font-weight: 500; }
.input { padding: 13px 14px; border: 1px solid var(--line-2); border-radius: 6px; font-size: 16px; background: var(--card); outline-color: var(--forest); min-width: 0; color: var(--ink); }
.input--mono { font-family: var(--mono); }
textarea.input { resize: vertical; }
.err { color: var(--error); font-weight: 400; font-size: 13px; min-height: 0; }
.err:empty { display: none; }
.who { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); flex-wrap: wrap; gap: 8px; }
.agree { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.5; color: var(--ink-2); cursor: pointer; }
.agree input { margin-top: 3px; accent-color: var(--forest); width: 16px; height: 16px; flex: none; }
.fineprint { margin: 0; font-size: 13px; color: var(--muted); }
.summary { flex: 1 1 320px; max-width: 400px; background: var(--card); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.summary__img { aspect-ratio: 16 / 9; background: var(--sage); }
.summary__body { padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.summary__name { font-family: var(--serif); font-size: 26px; }
.summary__when { font-size: 15px; color: var(--ink-2); padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.summary .price__total { margin-top: 0; }

/* ---------- Confirm ---------- */
.page--confirm { max-width: 720px; padding: 80px 24px 120px; display: flex; flex-direction: column; gap: 22px; }
.conf-code { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--forest); }
.conf-title { font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 6vw, 64px); letter-spacing: -0.02em; line-height: 1.05; margin: 0; }
.conf-lede { font-size: 18px; line-height: 1.6; margin: 0; color: var(--ink-2); }
.conf-paid { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; display: flex; justify-content: space-between; font-size: 16px; }
.conf-paid strong { font-weight: 600; }

/* ---------- Owner / sync ---------- */
.page--owner { max-width: 1100px; padding: 48px 24px 96px; }
.owner-kicker { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--rust); margin-bottom: 12px; }
.owner-intro { margin: 0 0 36px; color: var(--muted); line-height: 1.6; max-width: 68ch; }
.feeds { display: flex; flex-direction: column; gap: 28px; }
.feed { background: var(--card); border: 1px solid var(--line); border-radius: 8px; padding: 24px; display: flex; flex-direction: column; gap: 18px; }
.feed__head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.feed__head h2 { font-family: var(--serif); font-weight: 400; font-size: 28px; margin: 0; }
.feed__last { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.caps-label { font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.feed__url { display: flex; flex-direction: column; gap: 6px; }
.feed__controls { display: flex; gap: 8px; flex-wrap: wrap; }
.feed__controls .input { flex: 1 1 320px; padding: 12px 14px; font-size: 14px; font-family: var(--mono); background: #fff; }
.btn--tool { border-radius: 6px; padding: 12px 18px; font-size: 14px; }
.btn--tool.btn--primary { font-weight: 600; }
.btn--outline { background: transparent; color: var(--ink); border: 1px solid var(--line-2); font-weight: 400; }
.btn--outline:hover { border-color: var(--ink); }
.btn--outline-forest { background: transparent; color: var(--forest); border: 1px solid var(--forest); border-radius: 6px; padding: 10px 16px; font-size: 14px; font-weight: 400; }
.btn--outline-forest:hover { background: var(--sage); }
.feed__status { font-size: 14px; color: var(--ink-2); background: var(--sage); border-radius: 4px; padding: 10px 12px; }
.ranges { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 8px; margin-top: 8px; }
.range { display: flex; justify-content: space-between; gap: 8px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 4px; font-size: 14px; }
.range__src { font-family: var(--mono); font-size: 11px; text-transform: uppercase; color: var(--rust); }
.range__src--direct { color: var(--forest); }
.feed__foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 16px; font-size: 14px; }
.feed__export { font-family: var(--mono); font-size: 13px; word-break: break-all; }

@media (max-width: 560px) {
  .nav { gap: 16px; }
  .brand__mark { width: 36px; height: 36px; }
  .gallery__thumbs { gap: 6px; }
  .book { position: static; max-width: none; }
}

/* ---------- Contact ---------- */
.page--contact { max-width: 1100px; padding: 48px 24px 96px; }
.contact { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 48px; align-items: start; }
.contact__lede { font-size: 17px; line-height: 1.55; color: var(--ink-2); margin: 0 0 28px; max-width: 420px; }
.contact__facts { display: flex; flex-direction: column; gap: 14px; margin: 0; }
.contact__facts dt { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rust); }
.contact__facts dd { margin: 2px 0 0; font-size: 15px; }
.contact__card { background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 28px; }
.contact__card select.input { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 20px) 55%, calc(100% - 15px) 55%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 36px; }
.contact__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact__error { background: #F5E1DC; color: var(--error); border-radius: 6px; padding: 12px 14px; font-size: 14px; }
.contact__done { display: flex; flex-direction: column; gap: 14px; }
.contact__check { width: 44px; height: 44px; border-radius: 50%; background: var(--sage); color: var(--forest); display: grid; place-items: center; font-size: 22px; }
@media (max-width: 860px) {
  .contact { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .page--contact { padding-top: 32px; }
  .contact__card { padding: 20px; }
}
