/* ============ TOKENS ============ */
:root {
  --bg-main:       #F5F0E8;
  --bg-alt:        #EAE0D2;
  --bg-dark:       #2B2218;
  --text-primary:  #2B2218;
  --text-muted:    #6B5D4E;
  --text-soft:     #8B7E6C;
  --accent:        #B5654A;
  --accent-hover:  #9B5239;
  --accent-quiet:  #C9A87C;
  --border:        #DDD3C4;
  --border-soft:   #E8DFD0;

  --ff-serif: 'Cormorant Garamond', 'Georgia', serif;
  --ff-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --fs-12: 12px; --fs-14: 14px; --fs-16: 16px; --fs-18: 18px;
  --fs-22: 22px; --fs-28: 28px; --fs-36: 36px;
  --fs-56: clamp(40px, 5.5vw, 72px);
  --fs-hero: clamp(48px, 7vw, 96px);

  --s-1: 8px;  --s-2: 16px; --s-3: 24px; --s-4: 32px;
  --s-5: 48px; --s-6: 64px; --s-7: 96px; --s-8: 128px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  --container: 1280px;
  --container-narrow: 880px;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--ff-sans);
  font-size: var(--fs-16);
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; color: inherit; }
::selection { background: var(--accent); color: #fff; }

/* ============ TYPO HELPERS ============ */
h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--text-primary);
}
h1 { font-size: var(--fs-56); }
h2 { font-size: var(--fs-36); line-height: 1.15; }
h3 { font-size: var(--fs-28); }
h4 { font-size: var(--fs-22); line-height: 1.3; }

em { font-style: italic; color: var(--accent); }

.kicker {
  font-family: var(--ff-sans);
  font-size: var(--fs-12);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-4);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding: var(--s-7) 0; }
.section--alt { background: var(--bg-alt); }
.section__head { margin-bottom: var(--s-6); max-width: 720px; }
.section__head .kicker { display: block; margin-bottom: var(--s-2); }
.section__title { margin-bottom: var(--s-3); }
.section__lede { font-size: var(--fs-18); color: var(--text-muted); line-height: 1.6; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 32px;
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s var(--ease-soft);
  white-space: nowrap;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-hover); }
.btn--ghost { background: transparent; color: var(--text-primary); border-color: currentColor; }
.btn--ghost:hover { background: var(--text-primary); color: var(--bg-main); }
.btn--block { display: flex; width: 100%; }
.btn--sm { padding: 12px 18px; font-size: 12px; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 30;
  background: rgba(245, 240, 232, 0.0);
  transition: background 0.3s var(--ease-soft), backdrop-filter 0.3s;
  padding: 18px 0;
}
.nav.is-stuck {
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-4);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-4);
}
.nav__brand {
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--ff-serif);
  color: #fff;
  transition: color 0.3s;
}
.nav.is-stuck .nav__brand { color: var(--text-primary); }
.nav__brand-line { font-size: 18px; font-weight: 500; letter-spacing: 0.02em; }
.nav__brand-num { font-size: 22px; font-weight: 600; color: var(--accent); }

.nav__links { display: none; gap: var(--s-4); }
.nav.is-stuck .nav__links a { color: var(--text-primary); }
.nav__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.92);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.nav__links a:hover { color: var(--accent); }

.nav__phone {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav.is-stuck .nav__phone { color: var(--text-primary); border-color: var(--border); }
.nav__phone:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

@media (min-width: 900px) {
  .nav__links { display: flex; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(20,15,10,0.55) 0%,
      rgba(20,15,10,0.15) 30%,
      rgba(20,15,10,0.25) 55%,
      rgba(20,15,10,0.85) 100%),
    linear-gradient(90deg,
      rgba(20,15,10,0.45) 0%,
      rgba(20,15,10,0) 55%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-4) var(--s-6);
}
.hero__content .kicker {
  color: rgba(255,255,255,0.85);
  display: inline-block;
  margin-bottom: var(--s-3);
}
.hero__title {
  font-size: var(--fs-hero);
  color: #fff;
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 14ch;
  margin-bottom: var(--s-3);
}
.hero__title em { color: rgba(255,255,255,0.95); font-weight: 500; }
.hero__lede {
  font-size: var(--fs-18);
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  margin-bottom: var(--s-5);
  max-width: 32ch;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s-4);
  padding-top: var(--s-4);
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero__price {
  display: flex; flex-direction: column; gap: 4px;
}
.hero__price-num {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1;
}
.hero__price-sub {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.8);
}
.hero__cta {
  display: flex; gap: 12px;
  flex-wrap: wrap;
}
.hero__cta .btn--ghost { color: #fff; }
.hero__cta .btn--ghost:hover { background: #fff; color: var(--text-primary); }

.hero__scroll {
  position: absolute;
  bottom: 24px; right: 24px;
  z-index: 3;
  width: 44px; height: 44px;
  display: none;
  align-items: center; justify-content: center;
  color: #fff;
  opacity: 0.6;
  animation: bobble 2.2s ease-in-out infinite;
}
.hero__scroll svg { width: 22px; height: 22px; }
@media (min-width: 900px) { .hero__scroll { display: flex; } }
@keyframes bobble {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@media (max-width: 700px) {
  .hero__title { font-size: clamp(40px, 10vw, 56px); }
  .hero__meta { flex-direction: column; align-items: stretch; }
  .hero__cta { width: 100%; }
  .hero__cta .btn { flex: 1; }
}

/* ============ USP ============ */
.usp {
  padding: var(--s-7) 0;
  background: var(--bg-main);
  border-bottom: 1px solid var(--border-soft);
}
.usp__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 800px) {
  .usp__grid { grid-template-columns: repeat(3, 1fr); gap: var(--s-6); }
}
.usp__item { padding-top: var(--s-2); }
.usp__num {
  display: block;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 28px;
  color: var(--accent);
  margin-bottom: var(--s-2);
  font-weight: 500;
}
.usp__title { margin-bottom: var(--s-2); }
.usp__item p { color: var(--text-muted); font-size: var(--fs-16); line-height: 1.65; }

/* ============ GALLERY ============ */
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 600px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .gallery__item--hero { grid-column: span 2; grid-row: span 2; }
  .gallery__item--portrait { grid-row: span 2; }
}
.gallery__item {
  display: block;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--bg-alt);
  aspect-ratio: 16 / 10;
}
.gallery__item--portrait { aspect-ratio: 9 / 16; }
.gallery__item--hero { aspect-ratio: 16 / 10; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.gallery__item:hover img { transform: scale(1.04); }

/* ============ STORY ============ */
.story__text { margin-bottom: var(--s-6); }
.story__lede {
  font-family: var(--ff-serif);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.4;
  color: var(--text-primary);
  margin-bottom: var(--s-4);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.story__text p { margin-bottom: var(--s-3); color: var(--text-muted); }
.story__text p:last-child { margin-bottom: 0; }
.story__text strong { color: var(--text-primary); font-weight: 600; }

.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--border);
}
@media (min-width: 720px) { .features { grid-template-columns: 1fr 1fr; gap: var(--s-6); } }
.features__title {
  font-family: var(--ff-sans);
  font-size: var(--fs-12);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: var(--s-3);
}
.features__list { list-style: none; }
.features__list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: var(--fs-16);
  color: var(--text-primary);
  display: flex; align-items: center;
}
.features__list li::before {
  content: ''; display: inline-block;
  width: 4px; height: 4px;
  background: var(--accent-quiet);
  margin-right: 14px;
  border-radius: 50%;
}
.features__list li:last-child { border-bottom: none; }

/* ============ SPECS ============ */
.specs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
  margin-bottom: var(--s-6);
  padding: var(--s-5) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 720px) { .specs__grid { grid-template-columns: repeat(4, 1fr); gap: var(--s-5); } }
.spec { display: flex; flex-direction: column; gap: 8px; }
.spec__label {
  font-size: var(--fs-12);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.spec__value {
  font-family: var(--ff-serif);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1;
}

.specs__table {
  margin-bottom: var(--s-6);
}
.specs__table > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-soft);
}
@media (min-width: 600px) {
  .specs__table > div { grid-template-columns: 200px 1fr; gap: var(--s-4); align-items: baseline; }
}
.specs__table dt {
  font-size: var(--fs-14);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}
.specs__table dd {
  font-size: var(--fs-16);
  color: var(--text-primary);
}
.spec__addon {
  display: inline-block;
  margin-left: var(--s-2);
  color: var(--accent);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.price-card {
  background: var(--bg-alt);
  padding: var(--s-5);
  border: 1px solid var(--border);
  display: grid;
  gap: var(--s-4);
  margin-top: var(--s-5);
}
@media (min-width: 800px) {
  .price-card {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    gap: var(--s-5);
    padding: var(--s-6);
  }
  .price-card .btn { grid-column: span 2; max-width: 320px; justify-self: center; }
}
.price-card__main { display: flex; flex-direction: column; gap: 6px; }
.price-card__main .kicker { margin-bottom: 4px; }
.price-card__num {
  font-family: var(--ff-serif);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--text-primary);
}
.price-card__sub { color: var(--text-muted); font-size: 14px; letter-spacing: 0.04em; }
.price-card__addons {
  display: flex; flex-direction: column; gap: 10px;
  padding-left: 0;
  border-left: none;
}
@media (min-width: 800px) {
  .price-card__addons { padding-left: var(--s-4); border-left: 1px solid var(--border); }
}
.price-card__addon {
  display: flex; justify-content: space-between; gap: var(--s-3);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 14px;
  letter-spacing: 0.02em;
}
.price-card__addon:last-child { border-bottom: none; }
.price-card__addon > span:last-child { color: var(--accent); font-weight: 600; }

/* ============ LOCATION ============ */
.location__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 900px) {
  .location__grid { grid-template-columns: 3fr 2fr; gap: var(--s-6); }
}
.location__map {
  background: var(--bg-main);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.map-link { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; padding: var(--s-4); position: relative; }
.map-link img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.map-fallback {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: var(--ff-serif);
  font-size: 28px;
  color: var(--text-primary);
  background: rgba(245, 240, 232, 0.88);
  padding: var(--s-3) var(--s-4);
  border: 1px solid var(--border);
}
.map-fallback span { display: block; font-size: 14px; color: var(--text-muted); margin-top: 4px; font-family: var(--ff-sans); }
.map-link__cta {
  display: block !important;
  margin-top: var(--s-3) !important;
  font-size: 14px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  color: var(--accent) !important;
  font-family: var(--ff-sans) !important;
}

.location__pois { display: flex; flex-direction: column; gap: var(--s-3); }
.poi-group__title {
  font-family: var(--ff-sans);
  font-size: var(--fs-12);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: var(--s-2);
}
.poi-list { list-style: none; }
.poi-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: var(--fs-16);
}
.poi-name { color: var(--text-primary); }
.poi-dist { color: var(--text-muted); font-size: 14px; letter-spacing: 0.02em; }

/* ============ CONTACT ============ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
@media (min-width: 800px) {
  .contact__grid { grid-template-columns: 1fr 1.3fr; gap: var(--s-6); align-items: start; }
}
.contact__info { display: flex; flex-direction: column; gap: var(--s-4); }
.contact__owner .kicker { display: block; margin-bottom: 6px; }
.contact__name {
  font-family: var(--ff-serif);
  font-size: 30px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1;
}
.contact__phone {
  display: flex; flex-direction: column; gap: 4px;
  padding: var(--s-4) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.contact__phone:hover { color: var(--accent); }
.contact__phone-label {
  font-size: var(--fs-12);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
}
.contact__phone-num {
  font-family: var(--ff-serif);
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  line-height: 1;
}
.contact__hours { color: var(--text-muted); font-size: 14px; line-height: 1.55; }

.contact__form { display: flex; flex-direction: column; gap: var(--s-3); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: var(--fs-12);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
}
.field input, .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  font-size: var(--fs-16);
  color: var(--text-primary);
  outline: none;
  resize: vertical;
  transition: border-color 0.25s;
  font-family: var(--ff-sans);
}
.field input:focus, .field textarea:focus { border-color: var(--accent); }
.field__note { font-size: 12px; color: var(--text-soft); line-height: 1.5; margin-top: var(--s-2); }

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-dark);
  color: rgba(245, 240, 232, 0.7);
  padding: var(--s-6) 0;
  margin-top: var(--s-7);
}
.footer__line {
  display: flex; justify-content: space-between; gap: var(--s-3);
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 8px 0;
  flex-wrap: wrap;
}
.footer__line span:first-child { color: rgba(245, 240, 232, 0.9); }
.footer__line--meta { font-size: 13px; color: rgba(245, 240, 232, 0.5); padding-top: var(--s-3); margin-top: var(--s-2); border-top: 1px solid rgba(245, 240, 232, 0.1); }

/* ============ STICKY CTA MOBILE ============ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(245, 240, 232, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  display: flex; gap: 10px; align-items: center;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
  z-index: 40;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__price {
  display: flex; flex-direction: column; gap: 2px;
  margin-right: auto;
}
.sticky-cta__num {
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
}
.sticky-cta__sub { font-size: 11px; color: var(--text-muted); letter-spacing: 0.04em; }
@media (min-width: 1000px) {
  .sticky-cta { display: none; }
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============ PHOTOSWIPE OVERRIDES ============ */
.pswp { --pswp-bg: #1a1410; }
.pswp__bg { background: #1a1410; }
.pswp__icn { filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5)); }
.pswp__counter {
  font-family: var(--ff-serif);
  font-size: 16px;
  opacity: 0.85;
  letter-spacing: 0.04em;
}
.pswp__button { opacity: 0.7; transition: opacity 0.2s; }
.pswp__button:hover { opacity: 1; }

/* ============ LEAFLET MAP ============ */
#leaflet-map {
  width: 100%;
  height: 420px;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,0.08);
  z-index: 1;
}
#leaflet-map .pin {
  background: var(--accent, #B5654A);
  color: white;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
#leaflet-map .pin span {
  transform: rotate(45deg);
  font-size: 18px;
  line-height: 1;
}
.leaflet-popup-content {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.5;
}
.leaflet-popup-content strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: #2B2218;
}
.map-link__cta--below {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--accent, #B5654A);
  text-decoration: none;
  letter-spacing: 0.03em;
}
.map-link__cta--below:hover { text-decoration: underline; }

/* ============ FORM THANK YOU ============ */
.form-thanks {
  padding: 32px 24px;
  text-align: center;
  background: rgba(181, 101, 74, 0.06);
  border: 1px solid rgba(181, 101, 74, 0.15);
  border-radius: 4px;
}
.form-thanks h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: #2B2218;
  margin: 0 0 12px 0;
}
.form-thanks p {
  font-size: 15px;
  line-height: 1.7;
  color: #2B2218;
  margin: 0;
}
.form-thanks a { color: var(--accent, #B5654A); text-decoration: none; }
.form-thanks a:hover { text-decoration: underline; }

/* spec link (PDF download) */
.spec__link {
  color: var(--accent, #B5654A);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
}
.spec__link:hover { opacity: 0.8; }
