/* South Sound Tide Farm — preview skin.
   Direction (09-visual): the plan's own identity. "Clean, Pacific Northwest
   aesthetic. Blues, greens, whites. Puget Sound, rain, winter light. Not
   'farm' (no barnwood), not 'tech' (no clean rooms)." Civic-coastal: Public
   Sans body (the US-gov face, right for a state-capital town), Newsreader
   display for winter-light warmth. No photography exists, so the page leans
   on type, tide color, and two inline SVGs. */

:root {
  --ink: #1d2f3a; /* deep sound water */
  --slate: #40525e;
  --tide: #2e6f5e; /* sea green, the action color */
  --tide-deep: #235348;
  --mist: #e8efee;
  --paper: #fbfcfc;
  --band: #f1f5f5; /* tinted section band */
  --winter: #dfe8ea; /* pale winter sky */
  --warn-bg: #fff6e8;
  --warn-ink: #7a5215;
  --max: 41rem;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Public Sans",
    -apple-system,
    "Segoe UI",
    sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
}

/* ---------- chrome ---------- */

.banner {
  background: var(--ink);
  color: var(--mist);
  font-size: 0.85rem;
  padding: 0.6rem 1rem;
  text-align: center;
  line-height: 1.45;
}
.banner a {
  color: #9fd3c2;
}

header.site {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.4rem 1.25rem 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.mark {
  font-family: "Newsreader", serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--tide-deep);
}
.sec {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}

footer.site {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
  font-size: 0.85rem;
  color: var(--slate);
  border-top: 1px solid var(--winter);
}

/* ---------- type ---------- */

.eyebrow {
  margin: 2.6rem 0 0.9rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
}

h1 {
  font-family: "Newsreader", serif;
  font-weight: 500;
  font-size: clamp(2.1rem, 6vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 1.1rem;
  color: var(--ink);
}

h2 {
  font-family: "Newsreader", serif;
  font-weight: 500;
  font-size: 1.65rem;
  line-height: 1.2;
  margin: 3rem 0 0.8rem;
  color: var(--ink);
}

h2::before {
  /* the tide line: a short wave rule above each section head */
  content: "";
  display: block;
  width: 3.2rem;
  height: 0.5rem;
  margin-bottom: 0.9rem;
  background: radial-gradient(
      circle at 25% 100%,
      var(--tide) 22%,
      transparent 24%
    )
    0 0/0.8rem 0.5rem repeat-x;
  opacity: 0.7;
}

.sub {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--slate);
}

p {
  margin: 0 0 1.05rem;
}

strong {
  color: var(--ink);
}

ul {
  padding-left: 1.2rem;
  margin: 0 0 1.2rem;
}
li {
  margin-bottom: 0.55rem;
}

blockquote {
  margin: 1.6rem 0;
  padding: 0.2rem 0 0.2rem 1.1rem;
  border-left: 3px solid var(--tide);
  color: var(--slate);
}

hr {
  border: 0;
  height: 1px;
  background: var(--winter);
  margin: 2.6rem 0;
}

/* ---------- hero ---------- */

.hero {
  margin: 1.8rem 0 0.4rem;
  border-radius: 10px;
  overflow: hidden;
}
.hero svg {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- figures & diagrams ---------- */

figure.diagram {
  margin: 2rem 0;
  padding: 1.3rem 1.3rem 0.9rem;
  background: var(--band);
  border-radius: 10px;
}
figure.diagram svg {
  display: block;
  width: 100%;
  height: auto;
}
figcaption {
  font-size: 0.85rem;
  color: var(--slate);
  margin-top: 0.7rem;
  line-height: 1.5;
}

/* ---------- tinted bands ---------- */

.honesty {
  background: var(--ink);
  color: var(--mist);
  margin: 3rem -1.25rem;
  padding: 0.4rem 1.25rem 1.8rem;
  border-radius: 0;
}
.honesty h2,
.honesty strong {
  color: #fff;
}
.honesty h2::before {
  background: radial-gradient(circle at 25% 100%, #7fc0ab 22%, transparent 24%)
    0 0/0.8rem 0.5rem repeat-x;
}
.honesty a {
  color: #9fd3c2;
}
@media (min-width: 46rem) {
  .honesty {
    border-radius: 12px;
    padding: 0.4rem 2rem 1.8rem;
    margin: 3rem -2rem;
  }
}

.pricecard {
  background: var(--band);
  border: 1px solid var(--winter);
  border-radius: 12px;
  margin: 3rem 0;
  padding: 0.3rem 1.4rem 1.2rem;
}

/* ---------- CTA ---------- */

.cta {
  margin: 2.2rem 0;
  text-align: center;
}
.btn {
  display: inline-block;
  background: var(--tide);
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.85rem 1.9rem;
  border-radius: 8px;
  letter-spacing: 0.01em;
}
.btn-lg {
  font-size: 1.15rem;
  padding: 1rem 2.3rem;
}
.btn.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.cta-warn {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--warn-ink);
  background: var(--warn-bg);
  border-radius: 6px;
  padding: 0.35rem 0.7rem;
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
}
.cta-micro {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.85rem;
  color: var(--slate);
}

/* the reservation form (preview: disabled) */
.resform {
  margin: 1.4rem auto 0;
  max-width: 26rem;
  display: grid;
  gap: 0.6rem;
  text-align: left;
}
.resform input,
.resform select {
  width: 100%;
  padding: 0.7rem 0.8rem;
  font-size: 1rem;
  border: 1px solid var(--winter);
  border-radius: 8px;
  background: #fff;
  color: var(--slate);
  font-family: inherit;
}
.resform [disabled] {
  background: var(--band);
}
.resform .check {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.9rem;
  color: var(--slate);
}
.resform .check input {
  width: auto;
}

.offerstrip {
  margin: 1.2rem 0 0.4rem;
  padding: 0.6rem 0.9rem;
  background: var(--band);
  border-left: 3px solid var(--tide);
  border-radius: 6px;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ---------- placeholders ---------- */

.ph {
  display: inline-block;
  background: var(--warn-bg);
  color: var(--warn-ink);
  border: 1px dashed #d8b26a;
  border-radius: 5px;
  font-size: 0.8em;
  font-family: ui-monospace, monospace;
  padding: 0 0.35em;
  white-space: nowrap;
}

.note {
  background: var(--warn-bg);
  color: var(--warn-ink);
  border-radius: 8px;
  padding: 0.7rem 0.9rem;
  font-size: 0.9rem;
  margin: 1.4rem 0;
}

/* ---------- tables ---------- */

.tablewrap {
  overflow-x: auto;
  margin: 1.4rem 0;
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.95rem;
}
th,
td {
  text-align: left;
  padding: 0.5rem 0.7rem;
  border-bottom: 1px solid var(--winter);
}
th {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
}
