@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,700;9..144,900&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --background: 42 35% 96%;
  --foreground: 155 30% 12%;
  --card: 42 40% 99%;
  --primary: 158 42% 22%;
  --primary-foreground: 42 40% 97%;
  --secondary: 28 55% 92%;
  --muted: 42 25% 90%;
  --muted-foreground: 155 14% 35%;
  --accent: 18 78% 52%;
  --accent-foreground: 42 40% 98%;
  --border: 42 20% 84%;
  --shadow-soft: 0 4px 20px -8px hsl(155 30% 12% / 0.15);
  --shadow-elegant: 0 20px 60px -20px hsl(158 42% 22% / 0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(100% - 2rem, 1320px); margin-inline: auto; }
.narrow { width: min(100% - 2rem, 980px); margin-inline: auto; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: hsl(var(--background) / 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid hsl(var(--border));
}
.header-inner { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.logo { width: 42px; height: 42px; border-radius: 999px; display: grid; place-items: center; background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); font-family: Fraunces, serif; font-weight: 900; box-shadow: var(--shadow-soft); }
.brand-title { font-family: Fraunces, serif; font-size: 1.2rem; font-weight: 800; line-height: 1; }
.brand-subtitle { font-size: .72rem; color: hsl(var(--muted-foreground)); text-transform: uppercase; letter-spacing: .08em; }
.nav { display: flex; align-items: center; gap: .2rem; }
.nav a { text-decoration: none; font-weight: 700; font-size: .92rem; padding: .62rem .85rem; border-radius: .5rem; color: hsl(var(--foreground) / .78); }
.nav a:hover, .nav a[aria-current="page"] { background: hsl(var(--secondary)); color: hsl(var(--primary)); }
.nav .donate-link { background: hsl(var(--accent)); color: hsl(var(--accent-foreground)); margin-left: .35rem; }
.mobile-note { display: none; }
.hero { min-height: 82vh; position: relative; display: grid; align-items: center; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, hsl(158 45% 14% / .88), hsl(158 42% 22% / .72) 55%, hsl(18 60% 35% / .56)); }
.hero-content { position: relative; z-index: 1; padding-block: 5rem; max-width: 820px; color: hsl(var(--primary-foreground)); }
.eyebrow { display: inline-block; font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: hsl(var(--accent-foreground)); background: hsl(var(--accent) / .92); padding: .42rem .72rem; border-radius: 999px; margin-bottom: 1.5rem; }
h1, h2, h3 { font-family: Fraunces, ui-serif, Georgia, serif; line-height: 1.02; letter-spacing: 0; margin: 0; }
h1 { font-size: clamp(3rem, 8vw, 7.5rem); font-weight: 900; }
h2 { font-size: clamp(2.2rem, 4.5vw, 4.7rem); font-weight: 900; }
h3 { font-size: 1.55rem; font-weight: 800; }
.accent { color: hsl(var(--accent)); }
.hero p { font-size: clamp(1.05rem, 2vw, 1.28rem); max-width: 720px; color: hsl(var(--primary-foreground) / .9); margin: 1.7rem 0 0; }
.actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 3.2rem; padding: .8rem 1.35rem; border-radius: .5rem; border: 2px solid transparent; text-decoration: none; font-weight: 800; cursor: pointer; font: inherit; }
.button-primary { background: linear-gradient(135deg, hsl(var(--accent)), hsl(14 72% 46%)); color: hsl(var(--accent-foreground)); box-shadow: var(--shadow-elegant); }
.button-outline { border-color: hsl(var(--primary-foreground) / .75); color: hsl(var(--primary-foreground)); }
.button-outline-dark { border-color: hsl(var(--border)); color: hsl(var(--primary)); background: hsl(var(--card)); }
.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section-muted { background: hsl(var(--secondary) / .6); border-block: 1px solid hsl(var(--border)); }
.section-title { max-width: 760px; margin-bottom: 2.4rem; }
.kicker { color: hsl(var(--accent)); font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; margin-bottom: .7rem; }
.card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.1rem; }
.card { background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: .75rem; padding: 1.45rem; box-shadow: var(--shadow-soft); }
.card a { color: hsl(var(--primary)); font-weight: 800; text-decoration: none; }
.icon { width: 48px; height: 48px; border-radius: .65rem; display: grid; place-items: center; background: hsl(var(--secondary)); color: hsl(var(--primary)); font-size: 1.4rem; margin-bottom: 1rem; }
.quote { max-width: 920px; margin: 0 auto; text-align: center; font-family: Fraunces, serif; font-size: clamp(2rem, 4vw, 4rem); line-height: 1.12; }
.quote-source { margin-top: 1.3rem; text-align: center; color: hsl(var(--muted-foreground)); text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; }
.cta-band { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); border-radius: 1rem; padding: clamp(2rem, 5vw, 4rem); box-shadow: var(--shadow-elegant); }
.cta-band p { color: hsl(var(--primary-foreground) / .84); font-size: 1.1rem; max-width: 700px; }
.page-header { padding-block: clamp(4rem, 8vw, 7rem); background: linear-gradient(135deg, hsl(var(--secondary)), hsl(var(--background))); border-bottom: 1px solid hsl(var(--border)); }
.page-header p { max-width: 820px; font-size: 1.18rem; color: hsl(var(--muted-foreground)); }
.two-column { display: grid; grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.prose { font-size: 1.1rem; color: hsl(var(--foreground) / .86); }
.prose a { color: hsl(var(--primary)); font-weight: 800; text-underline-offset: .22em; }
.portrait { border-radius: 1rem; overflow: hidden; box-shadow: var(--shadow-elegant); }
.pull { border-left: 5px solid hsl(var(--accent)); padding-left: 1.4rem; margin: 2rem 0; font-family: Fraunces, serif; font-size: 1.65rem; line-height: 1.18; color: hsl(var(--foreground)); }
.platform-list { display: grid; gap: 5rem; }
.platform-item { display: grid; grid-template-columns: 260px 1fr; gap: 2.5rem; scroll-margin-top: 100px; }
.number { font-family: Fraunces, serif; font-size: 5rem; font-weight: 900; color: hsl(var(--accent) / .34); line-height: 1; }
.tagline { color: hsl(var(--accent)); font-weight: 900; margin-top: .4rem; }
.check-list { padding: 0; margin: 1.5rem 0 0; list-style: none; display: grid; gap: .75rem; }
.check-list li { display: flex; gap: .7rem; align-items: start; }
.check-list li::before { content: ''; width: .5rem; height: .5rem; border-radius: 999px; background: hsl(var(--accent)); margin-top: .62rem; flex: 0 0 auto; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.form-card { background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: 1rem; padding: clamp(1.5rem, 4vw, 3rem); box-shadow: var(--shadow-soft); }
label { font-weight: 800; display: block; margin-bottom: .35rem; }
input, textarea, select { width: 100%; border: 1px solid hsl(var(--border)); border-radius: .5rem; min-height: 2.8rem; padding: .7rem .85rem; font: inherit; background: hsl(var(--background)); color: hsl(var(--foreground)); }
textarea { min-height: 8rem; resize: vertical; }
.full { grid-column: 1 / -1; }
.amounts { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; margin: .6rem 0 1rem; }
.amount { border: 2px solid hsl(var(--border)); background: hsl(var(--background)); border-radius: .65rem; padding: 1rem; text-align: center; font-family: Fraunces, serif; font-weight: 900; font-size: 1.35rem; }
.amount.featured { border-color: hsl(var(--accent)); background: hsl(var(--accent)); color: hsl(var(--accent-foreground)); }
.helper { background: hsl(var(--secondary) / .7); color: hsl(var(--muted-foreground)); padding: 1rem; border-radius: .65rem; font-size: .9rem; }
.ways { display: grid; gap: .9rem; }
.contact-list { display: grid; gap: 1.25rem; }
.site-footer { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 2rem; padding-block: 3.3rem; }
.site-footer a { color: hsl(var(--primary-foreground) / .82); text-decoration: none; }
.site-footer a:hover { color: hsl(var(--accent)); }
.footer-bottom { border-top: 1px solid hsl(var(--primary-foreground) / .16); padding-block: 1rem; display: flex; justify-content: space-between; gap: 1rem; color: hsl(var(--primary-foreground) / .64); font-size: .78rem; }
.nav-toggle { display: none; background: transparent; border: 1px solid hsl(var(--border)); border-radius: .5rem; width: 44px; height: 44px; padding: 0; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: hsl(var(--foreground)); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .header-inner { flex-wrap: wrap; row-gap: .5rem; }
  .nav-toggle { display: flex; }
  .nav { order: 3; width: 100%; flex-direction: column; align-items: stretch; gap: .15rem; padding-top: .5rem; border-top: 1px solid hsl(var(--border)); display: none; }
  .nav.open { display: flex; }
  .nav a { padding: .85rem 1rem; border-radius: .5rem; font-size: 1rem; }
  .nav .donate-link { margin-left: 0; margin-top: .35rem; text-align: center; }
  .mobile-note { display: none; }
  .card-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-column, .platform-item { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .brand-subtitle { display: none; }
  .hero { min-height: 78vh; }
  .card-grid, .footer-grid, .form-grid, .amounts { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

/* Platform page enhancements */
.jump-nav { position: sticky; top: 78px; z-index: 40; background: hsl(var(--background) / .92); backdrop-filter: blur(12px); border-bottom: 1px solid hsl(var(--border)); }
.jump-nav-inner { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; padding-block: .75rem; font-size: .88rem; }
.jump-nav-label { color: hsl(var(--muted-foreground)); margin-right: .35rem; }
.jump-chip { text-decoration: none; padding: .35rem .8rem; border: 1px solid hsl(var(--border)); border-radius: 999px; color: hsl(var(--foreground) / .8); font-weight: 600; }
.jump-chip:hover { border-color: hsl(var(--accent)); color: hsl(var(--accent)); }
.tldr { background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: 1rem; padding: 1.4rem 1.5rem; box-shadow: var(--shadow-soft); display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.6rem; }
.tldr-label { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: hsl(var(--accent)); margin-bottom: .45rem; }
.tldr p { margin: 0; line-height: 1.55; }
.read-more-toggle { background: none; border: none; padding: 0; margin-top: 1.4rem; color: hsl(var(--primary)); font-weight: 800; font: inherit; cursor: pointer; display: inline-flex; align-items: center; gap: .35rem; }
.read-more-toggle::after { content: '▾'; transition: transform .2s; font-size: .85em; }
.read-more-toggle[aria-expanded="true"]::after { transform: rotate(180deg); }
.full-case { display: none; margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid hsl(var(--border)); }
.full-case.open { display: block; }
.full-case p { margin: 0 0 1.1rem; }
@media (max-width: 700px) {
  .tldr { grid-template-columns: 1fr; gap: 1rem; }
}

/* ===== Tax calculator page ===== */
.tax-hero { padding-block: clamp(3rem,6vw,5rem); background: linear-gradient(135deg, hsl(var(--secondary)), hsl(var(--background))); border-bottom: 1px solid hsl(var(--border)); }
.tax-tool-wrap { padding-block: clamp(2rem,5vw,4rem); }
.tax-card { background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: 1rem; padding: clamp(1.5rem,3vw,2.2rem); box-shadow: var(--shadow-elegant); margin-top: -3rem; position: relative; }
.tax-card-label { font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; color: hsl(var(--muted-foreground)); margin-bottom: 1rem; }
.tax-form { display: grid; grid-template-columns: 1fr 2fr 1fr auto; gap: .8rem; align-items: end; }
.tax-field label { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; color: hsl(var(--muted-foreground)); margin-bottom: .4rem; display: block; }
.tax-field input { font-size: 1.1rem; font-weight: 600; }
.tax-field-submit button { min-width: 9rem; height: 2.95rem; min-height: 2.95rem; }
.tax-street-wrap { position: relative; }
.tax-suggest { position: absolute; z-index: 30; top: calc(100% + .25rem); left: 0; right: 0; max-height: 18rem; overflow-y: auto; margin: 0; padding: 0; list-style: none; background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: .65rem; box-shadow: var(--shadow-elegant); }
.tax-suggest li button { display: block; width: 100%; text-align: left; padding: .65rem .9rem; background: transparent; border: 0; cursor: pointer; font: inherit; color: hsl(var(--foreground)); text-transform: uppercase; letter-spacing: .04em; font-weight: 600; }
.tax-suggest li button:hover { background: hsl(var(--secondary)); }
.tax-status { margin-top: 1rem; padding: .9rem 1rem; border-radius: .65rem; font-size: .95rem; }
.tax-status-err { background: hsl(0 70% 95%); border: 1px solid hsl(0 60% 80%); color: hsl(0 60% 30%); }
.tax-multi { margin-top: 1rem; padding: 1rem; border: 1px solid hsl(var(--border)); border-radius: .65rem; background: hsl(var(--muted) / .5); }
.tax-multi-head { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: hsl(var(--muted-foreground)); padding-bottom: .6rem; }
.tax-multi ul { list-style: none; padding: 0; margin: 0; }
.tax-multi li button { display: flex; width: 100%; justify-content: space-between; align-items: center; padding: .7rem .85rem; background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: .5rem; margin-top: .35rem; cursor: pointer; font: inherit; color: hsl(var(--foreground)); }
.tax-multi li button span { color: hsl(var(--muted-foreground)); font-variant-numeric: tabular-nums; }
.tax-multi li button:hover { border-color: hsl(var(--accent)); }
.tax-results { margin-top: 2.5rem; display: grid; gap: 1.8rem; animation: taxFade .45s ease; }
@keyframes taxFade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.tax-prop { background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: 1rem; padding: 1.6rem 1.8rem; display: grid; grid-template-columns: 1.5fr 1fr; gap: 1rem; align-items: end; }
.tax-prop-label { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; color: hsl(var(--accent)); }
.tax-prop-addr { font-family: Fraunces, serif; font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 800; margin: .3rem 0 0; }
.tax-prop-meta { color: hsl(var(--muted-foreground)); margin-top: .25rem; font-size: .95rem; }
.tax-prop-av { text-align: right; }
.tax-prop-av-num { font-family: Fraunces, serif; font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; font-variant-numeric: tabular-nums; }
.tax-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.tax-stat { background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: .85rem; padding: 1.3rem 1.4rem; }
.tax-stat-highlight { background: linear-gradient(135deg, hsl(var(--accent)/.08), hsl(var(--accent)/.02)); border-color: hsl(var(--accent) / .6); }
.tax-stat-label { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; color: hsl(var(--muted-foreground)); }
.tax-stat-value { font-family: Fraunces, serif; font-size: clamp(1.5rem,3vw,2.1rem); font-weight: 900; font-variant-numeric: tabular-nums; margin-top: .35rem; }
.tax-stat-highlight .tax-stat-value { color: hsl(var(--accent)); }
.tax-stat-sub { font-size: .82rem; color: hsl(var(--muted-foreground)); margin-top: .25rem; }
.tax-share { background: hsl(var(--accent) / .08); border: 1px solid hsl(var(--accent) / .4); border-radius: .85rem; padding: 1.2rem 1.4rem; display: flex; gap: 1rem; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.tax-share strong { color: hsl(var(--foreground)); }
.tax-table-wrap { background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: .85rem; overflow: hidden; }
.tax-table-head { background: hsl(var(--secondary) / .8); padding: 1rem 1.4rem; font-weight: 800; border-bottom: 1px solid hsl(var(--border)); }
.tax-table { width: 100%; border-collapse: collapse; }
.tax-table th, .tax-table td { padding: .9rem 1.4rem; text-align: left; border-bottom: 1px solid hsl(var(--border)); font-size: .95rem; }
.tax-table th { font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; color: hsl(var(--muted-foreground)); font-weight: 800; background: hsl(var(--background)); }
.tax-table tbody tr:last-child td { border-bottom: 0; }
.tax-table tbody tr:hover { background: hsl(var(--muted) / .4); }
.tax-table .t-y { font-family: Fraunces, serif; font-weight: 800; font-size: 1.1rem; font-variant-numeric: tabular-nums; }
.tax-chart { background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: .85rem; padding: 1.6rem 1.8rem; }
.tax-bars { display: flex; align-items: end; gap: .8rem; }
.tax-bar { flex: 1; display: flex; flex-direction: column; align-items: center; gap: .55rem; }
.tax-bar-num { font-size: .8rem; color: hsl(var(--muted-foreground)); font-variant-numeric: tabular-nums; }
.tax-bar-track { width: 100%; height: 200px; background: hsl(var(--muted)); border-radius: .45rem; overflow: hidden; position: relative; }
.tax-bar-fill { position: absolute; inset-inline: 0; bottom: 0; background: linear-gradient(to top, hsl(var(--accent)), hsl(14 72% 46%)); border-radius: .45rem .45rem 0 0; transition: height .6s cubic-bezier(.4,0,.2,1); }
.tax-bar-fill.tax-bar-base { background: hsl(var(--primary)); }
.tax-bar-year { font-family: Fraunces, serif; font-weight: 800; font-size: 1rem; font-variant-numeric: tabular-nums; }
.tax-disclaimer { background: hsl(var(--muted) / .5); border: 1px solid hsl(var(--border)); border-radius: .65rem; padding: 1.1rem 1.3rem; font-size: .88rem; color: hsl(var(--muted-foreground)); line-height: 1.6; }
.tax-disclaimer strong { color: hsl(var(--foreground)); }
.tax-tips { margin-top: 2.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.tax-tip { display: flex; gap: 1rem; padding: 1.1rem 1.3rem; background: hsl(var(--card)); border: 1px solid hsl(var(--border)); border-radius: .75rem; color: hsl(var(--muted-foreground)); }
.tax-tip-n { font-family: Fraunces, serif; font-weight: 900; font-size: 1.4rem; color: hsl(var(--accent)); }
.tax-cta { margin-top: 4rem; padding: clamp(2rem, 5vw, 3.5rem); background: linear-gradient(135deg, hsl(var(--secondary)), hsl(var(--background))); border: 1px solid hsl(var(--border)); border-radius: 1rem; text-align: center; }
.tax-cta .actions { justify-content: center; }

/* Home + platform tax teasers */
.tax-teaser { background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(158 45% 14%) 100%); color: hsl(var(--primary-foreground)); border-radius: 1rem; padding: clamp(2rem, 4vw, 3rem); display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: center; box-shadow: var(--shadow-elegant); }
.tax-teaser .kicker { color: hsl(var(--accent)); }
.tax-teaser h2 { color: hsl(var(--primary-foreground)); font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.tax-teaser p { color: hsl(var(--primary-foreground) / .82); margin: 1rem 0 1.6rem; font-size: 1.05rem; }
.tax-teaser-vis { background: hsl(var(--accent) / .12); border: 1px solid hsl(var(--accent) / .35); border-radius: .85rem; padding: 1.5rem; text-align: center; }
.tax-teaser-vis .big { font-family: Fraunces, serif; font-weight: 900; font-size: clamp(2.4rem,5vw,3.6rem); color: hsl(var(--accent)); line-height: 1; }
.tax-teaser-vis .small { color: hsl(var(--primary-foreground)/.78); font-size: .85rem; margin-top: .5rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }

.platform-tax-callout { background: hsl(var(--accent) / .08); border: 2px solid hsl(var(--accent)); border-radius: 1rem; padding: 1.6rem 1.8rem; margin: 1.8rem 0; }
.platform-tax-callout strong { color: hsl(var(--accent)); }
.platform-tax-callout a { display: inline-flex; align-items: center; gap: .4rem; margin-top: .8rem; padding: .7rem 1.2rem; background: hsl(var(--accent)); color: hsl(var(--accent-foreground)); border-radius: .5rem; font-weight: 800; text-decoration: none; }

@media (max-width: 900px){
  .tax-form { grid-template-columns: 1fr 1fr; }
  .tax-field-street { grid-column: 1 / -1; }
  .tax-field-submit { grid-column: 1 / -1; }
  .tax-field-submit button { width: 100%; }
  .tax-stats { grid-template-columns: 1fr; }
  .tax-prop { grid-template-columns: 1fr; }
  .tax-prop-av { text-align: left; }
  .tax-tips { grid-template-columns: 1fr; }
  .tax-teaser { grid-template-columns: 1fr; }
  .tax-table th, .tax-table td { padding: .65rem .85rem; font-size: .85rem; }
}
