/* style.css – Ferienvermietung Witt */

/* ── SELBST GEHOSTETE SCHRIFTEN ── */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/montserrat-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/montserrat-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/playfair-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/playfair-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --green:       #3f5e35;
  --green-dark:  #2a3f22;
  --green-hover: #4d7340;
  --sand:        #e0cfae;
  --sand-light:  #f5f0e6;
  --sand-mid:    #e8d9bc;
  --white:       #ffffff;
  --text:        #1e2b1c;
  --text-muted:  #697867;
  --border:      #d5cab4;
  --shadow:      0 4px 20px rgba(42,63,34,.10);
  --shadow-lg:   0 8px 40px rgba(42,63,34,.15);
  --radius:      10px;
  --radius-sm:   6px;
  --transition:  all .3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--green-dark);
  line-height: 1.25;
}
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
}
.btn-primary { background: var(--green); color: var(--white); border-color: var(--green); }
.btn-primary:hover {
  background: var(--green-hover); border-color: var(--green-hover);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(63,94,53,.3);
}
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.8); }
.btn-outline:hover { background: var(--white); color: var(--green); }
.btn-sand { background: var(--sand); color: var(--green-dark); border-color: var(--sand); }
.btn-sand:hover { background: var(--sand-mid); border-color: var(--sand-mid); transform: translateY(-2px); }
.btn-sm { padding: 9px 20px; font-size: .82rem; }

/* ── SECTION BASE ── */
.section { padding: 96px 0; }
.bg-sand  { background: var(--sand-light); }
.bg-white { background: var(--white); }

.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
  display: inline-block;
}
.section-title h2::after {
  content: ''; display: block;
  width: 60px; height: 3px;
  background: var(--green);
  margin: 14px auto 0; border-radius: 2px;
}
.section-title p { color: var(--text-muted); max-width: 620px; margin: 0 auto; font-size: 1.05rem; }

/* ── HEADER ── */
.header {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(213,202,180,.4);
  transition: var(--transition);
}
.header.scrolled { box-shadow: 0 2px 20px rgba(42,63,34,.12); }

.nav-container {
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 44px; width: auto; flex-shrink: 0; }
.logo-badge {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: #2d5db8;
  clip-path: polygon(
    50% 2%, 61% 17%, 78% 11%, 78% 29%, 96% 35%,
    85% 50%, 96% 65%, 78% 71%, 78% 89%, 61% 83%,
    50% 98%, 39% 83%, 22% 89%, 22% 71%, 4% 65%,
    15% 50%, 4% 35%, 22% 29%, 22% 11%, 39% 17%
  );
  color: #111;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: .95rem;
  letter-spacing: -.5px;
}
.logo-name { font-family: 'Montserrat',sans-serif; font-weight: 700; font-size: 1rem; color: var(--green-dark); line-height: 1.2; }
.logo-sub  { font-size: .72rem; font-weight: 400; color: var(--text-muted); letter-spacing: .5px; text-transform: uppercase; }

.navbar { display: flex; align-items: center; }
.navbar ul { display: flex; align-items: center; gap: 28px; }
.navbar a { font-size: .88rem; font-weight: 500; color: var(--text); position: relative; padding: 4px 0; }
.navbar a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--green); transition: width .3s; border-radius: 1px;
}
.navbar a:hover { color: var(--green); }
.navbar a:hover::after { width: 100%; }
.nav-cta { margin-left: 8px; }
.btn-nav,
.navbar .btn-nav { padding: 11px 28px; font-size: .84rem; background: var(--sand); color: var(--green-dark); border-color: var(--sand); border-radius: 50px; font-weight: 700; border-bottom: none !important; display: inline-block; }
.btn-nav:hover,
.navbar .btn-nav:hover { background: var(--sand-mid); border-color: var(--sand-mid); color: var(--green-dark); }

.nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; color: var(--green-dark); cursor: pointer; padding: 4px; }
.nav-close  { display: none; position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 1.4rem; color: var(--green-dark); cursor: pointer; }

/* ── HERO ── */
.hero {
  min-height: 78vh;
  max-height: 820px;
  background: linear-gradient(to bottom, rgba(25,38,22,.58) 0%, rgba(25,38,22,.38) 55%, rgba(25,38,22,.65) 100%),
              url('images/hero.png') center center / cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 100px 24px 80px;
  position: relative;
}
.hero-scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.65); font-size: .72rem; letter-spacing: 1px; text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll-hint i { font-size: 1.1rem; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
.hero-content { max-width: 720px; }
.hero-tag {
  display: inline-block;
  background: rgba(224,207,174,.2); border: 1px solid rgba(224,207,174,.45);
  color: var(--sand); font-size: .78rem; font-weight: 600;
  letter-spacing: 1.8px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 50px; margin-bottom: 24px;
}
.hero h1 { font-size: clamp(2.4rem, 6vw, 4rem); color: var(--white); margin-bottom: 20px; text-shadow: 0 2px 20px rgba(0,0,0,.2); }
.hero p  { font-size: 1.12rem; color: rgba(255,255,255,.88); margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── LEISTUNGEN (image cards) ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 28px; }
.service-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-img { height: 200px; overflow: hidden; background: var(--sand-light); }
.service-img img { width: 100%; height: 100%; object-fit: contain; padding: 12px; transition: transform .5s; }
.service-card:hover .service-img img { transform: scale(1.04); }
.service-body { padding: 24px; }
.service-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-body > p { font-size: .88rem; color: var(--text-muted); margin-bottom: 14px; line-height: 1.6; }
.img-credit {
  font-size: .72rem; color: var(--text-muted); padding: 6px 16px 0;
}
.service-body ul li {
  position: relative; padding-left: 22px;
  font-size: .86rem; color: var(--text); margin-bottom: 7px; line-height: 1.5;
}
.service-body ul li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--green); font-weight: 700; font-size: .9rem;
}

/* ── WARUM WITT (icon cards) ── */
.usp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 24px; }
.usp-card {
  padding: 32px 26px; border: 1px solid var(--border);
  border-radius: var(--radius); background: var(--white); transition: var(--transition);
}
.usp-card:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-4px); }
.usp-icon {
  width: 54px; height: 54px;
  background: var(--sand-light); border: 1px solid var(--sand-mid);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; color: var(--green); margin-bottom: 18px;
}
.usp-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.usp-card p  { font-size: .87rem; color: var(--text-muted); line-height: 1.65; }

/* ── ÜBER UNS ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-photo { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-credit {
  position: absolute; bottom: 8px; right: 10px;
  font-size: .68rem; color: rgba(255,255,255,.65);
  background: rgba(0,0,0,.3); padding: 2px 6px; border-radius: 3px;
}
.about-text h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); margin-bottom: 22px; }
.about-text p  { color: var(--text-muted); margin-bottom: 14px; font-size: .94rem; line-height: 1.85; }
.about-text strong { color: var(--text); }

.stats-bar {
  display: flex; margin-top: 36px;
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
}
.stat { flex: 1; text-align: center; padding: 22px 12px; border-right: 1px solid var(--border); background: var(--white); }
.stat:last-child { border-right: none; }
.stat-number { font-family: 'Playfair Display',serif; font-size: 1.9rem; font-weight: 700; color: var(--green); line-height: 1; margin-bottom: 4px; }
.stat-label  { font-size: .76rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .8px; }

/* ── RECHNUNGSMODUL ── */
.calc-layout { display: block; }

.calc-controls {
  background: var(--sand-light); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px; position: sticky; top: 90px;
}
.calc-controls h3 { font-size: 1rem; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.ctrl-group { margin-bottom: 16px; }
.ctrl-label { display: block; font-size: .8rem; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.ctrl-input {
  width: 100%; padding: 9px 12px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Montserrat',sans-serif; font-size: .88rem;
  background: var(--white); color: var(--text); transition: border-color .2s;
}
.ctrl-input:focus { outline: none; border-color: var(--green); }
.ctrl-row { display: flex; gap: 8px; }
.ctrl-row .ctrl-input { flex: 1; }

.ctrl-range-wrap { display: flex; align-items: center; gap: 10px; }
.ctrl-range {
  flex: 1; -webkit-appearance: none; height: 4px;
  background: var(--sand-mid); border-radius: 2px; cursor: pointer;
}
.ctrl-range::-webkit-slider-thumb {
  -webkit-appearance: none; width: 18px; height: 18px;
  border-radius: 50%; background: var(--green); cursor: pointer;
  border: 2px solid var(--white); box-shadow: 0 1px 4px rgba(0,0,0,.15);
}
.ctrl-range-val { font-size: 1rem; font-weight: 700; color: var(--green); min-width: 22px; text-align: center; }
.ctrl-range-labels { display: flex; justify-content: space-between; font-size: .72rem; color: var(--text-muted); margin-top: 2px; }

.ctrl-checkbox-row { display: flex; align-items: center; gap: 8px; }
.ctrl-checkbox-row input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--green); cursor: pointer; }
.ctrl-checkbox-row label { font-size: .82rem; font-weight: 600; cursor: pointer; }
.hund-amount-wrap { display: none; margin-top: 8px; }
.hund-amount-wrap.visible { display: block; }
.ctrl-divider { border: none; border-top: 1px solid var(--border); margin: 14px 0; }

.calc-info-box {
  margin-top: 14px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden; font-size: .82rem;
}
.calc-info-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 12px; border-bottom: 1px solid var(--border); color: var(--text-muted);
}
.calc-info-row:last-child { border-bottom: none; }
.calc-info-row span:last-child { font-weight: 700; color: var(--green-dark); }

/* booking column toggle */
.invoice-table.no-booking .booking-col { display: none; }

/* Invoice output */
.invoice-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.invoice-header-box {
  background: var(--green-dark); color: var(--white);
  padding: 20px 24px; border-radius: var(--radius) var(--radius) 0 0;
  min-width: 820px;
}
.inv-company { font-size: .78rem; opacity: .7; margin-bottom: 6px; }
.inv-title   { font-family: 'Playfair Display',serif; font-size: 1.25rem; font-weight: 600; margin-bottom: 4px; }
.inv-meta    { font-size: .8rem; opacity: .75; }

.invoice-table { width: 100%; border-collapse: collapse; font-size: .8rem; min-width: 820px; }
.invoice-table th {
  background: var(--sand-mid); color: var(--green-dark); font-weight: 700;
  font-size: .72rem; text-transform: uppercase; letter-spacing: .4px;
  padding: 10px 10px; text-align: left; white-space: nowrap;
  border-bottom: 2px solid var(--border);
}
.invoice-table th.num,
.invoice-table td.num { text-align: right; }
.invoice-table tbody tr { border-bottom: 1px solid var(--border); }
.invoice-table tbody tr:nth-child(even) { background: var(--sand-light); }
.invoice-table td { padding: 9px 10px; color: var(--text); white-space: nowrap; }
.invoice-table td.neg { color: #8b4040; }
.invoice-table td.auszahlung-col { color: var(--green-dark); font-weight: 600; }
.invoice-table tfoot tr { background: var(--sand-mid); border-top: 2px solid var(--green); }
.invoice-table tfoot td { padding: 11px 10px; font-weight: 700; font-size: .82rem; }
.invoice-table tfoot td.neg { color: #8b4040; }
.invoice-table tfoot td.auszahlung-col { background: var(--green); color: var(--white); }

.invoice-actions { display: flex; gap: 12px; margin-top: 18px; align-items: center; }
.invoice-note {
  margin-top: 16px; padding: 14px 18px;
  background: var(--sand-light); border-left: 3px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .86rem; color: var(--text-muted); font-style: italic;
}

/* ── KONTAKT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; align-items: start; }
.contact-info h3 { font-size: 1.5rem; margin-bottom: 24px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--sand); border: 1px solid var(--sand-mid); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--green); font-size: .95rem;
}
.contact-detail h4 { font-family: 'Montserrat',sans-serif; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); margin-bottom: 3px; }
.contact-detail p, .contact-detail a { font-size: .93rem; color: var(--text); }
.contact-detail a:hover { color: var(--green); }
.guest-note {
  margin-top: 24px; padding: 14px 18px;
  background: var(--sand-mid); border-left: 3px solid var(--green); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .84rem; color: var(--text);
}
.guest-note a { color: var(--green); font-weight: 600; }
.guest-note a:hover { text-decoration: underline; }

.contact-form-box { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.contact-form-box h3 { font-size: 1.4rem; margin-bottom: 22px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; margin-bottom: 5px; color: var(--text); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 10px 13px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Montserrat',sans-serif; font-size: .9rem;
  color: var(--text); background: var(--white); transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── FOOTER ── */
.footer { background: var(--green-dark); color: var(--white); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer .logo-name { color: var(--white); }
.footer .logo-sub  { color: rgba(255,255,255,.45); }
.footer-brand p { margin-top: 14px; font-size: .86rem; color: rgba(255,255,255,.6); line-height: 1.7; }

.footer-logo-img { height: 40px; width: auto; flex-shrink: 0; }
.footer-guest-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 18px;
  padding: 9px 18px; border-radius: 50px;
  background: rgba(224,207,174,.12); border: 1px solid rgba(224,207,174,.3);
  color: var(--sand); font-size: .82rem; font-weight: 600; transition: var(--transition);
}
.footer-guest-link:hover { background: rgba(224,207,174,.22); color: var(--white); }
.footer h4 {
  color: var(--white); font-family: 'Montserrat',sans-serif; font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
  padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer ul li { margin-bottom: 8px; font-size: .86rem; color: rgba(255,255,255,.6); }
.footer ul li a { color: rgba(255,255,255,.6); }
.footer ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem; color: rgba(255,255,255,.45); flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--white); }

/* ── MOBILE NAV ── */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-close  { display: block; }
  .navbar {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--white); box-shadow: -4px 0 20px rgba(0,0,0,.1);
    padding: 76px 28px 28px; transition: right .3s ease; z-index: 999;
    flex-direction: column; align-items: flex-start;
  }
  .navbar.open { right: 0; }
  .navbar ul { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  .navbar ul li { width: 100%; }
  .navbar ul li a { display: block; padding: 12px 0; font-size: .98rem; border-bottom: 1px solid var(--border); }
  .nav-cta { margin-left: 0; margin-top: 20px; }
  .btn-nav { display: inline-block; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .calc-layout { grid-template-columns: 1fr; }
  .calc-controls { position: static; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-photo { aspect-ratio: 16/9; max-height: 380px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .usp-grid { grid-template-columns: 1fr; }
  .stats-bar { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
  .hero-buttons { flex-direction: column; align-items: center; }
}

/* ── PRINT ── */
@media print {
  .header, .hero, #leistungen, #warum-wir, #ueber-uns,
  #kontakt, .footer, .calc-controls, .invoice-actions,
  .section-title { display: none !important; }
  .section { padding: 0 !important; }
  .calc-layout  { display: block !important; }
  .invoice-wrap { overflow: visible !important; border: none !important; }
  .invoice-table    { min-width: 0 !important; font-size: 10pt !important; }
  .invoice-header-box { min-width: 0 !important; }
  .invoice-note { margin-top: 16pt; }
  body { font-size: 10pt; }
}
