*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --cream:       #F7F4EE;
  --warm-white:  #FDFCF9;
  --ink:         #1A1814;
  --ink-muted:   #5A5650;
  --ink-faint:   #9A958E;
  --gold:        #B8965A;
  --gold-light:  #D4AE72;
  --gold-pale:   #F0E6D0;
  --border:      rgba(26,24,20,0.12);
  --border-mid:  rgba(26,24,20,0.22);
  --serif: Tahoma;
  --sans:  Tahoma;
}
body {
  font-family: var(--sans);
  background: var(--warm-white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
table {
  border: 1px solid black;
  border-collapse: collapse;
}
td, th {
  border: 1px solid black;
  padding: 5px;

  word-break: break-word;
}
.inlist { list-style-position:inside; }
ol li::marker {
  font-weight: bold;
}
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,252,249,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 15px solid black;
}
.pd10{ padding:10px; }
.dbtn{
  padding:20px !important;
  font-size:20px !important;
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.site-name {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}
.site-name span {
  color: var(--gold);
}
nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
nav a {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
nav a:hover {
  color: var(--ink);
  background: var(--cream);
}
nav a.active {
  color: #7F1D1D;
}
.nav-cta {
  font-size: 0.8rem;
  font-weight: 500 !important;
  color: var(--warm-white) !important;
  background: var(--ink) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 40px !important;
  letter-spacing: 0.06em !important;
  transition: background 0.2s !important;
  text-decoration:none;
}
.nav-cta:hover {
  background: var(--gold) !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem 1.5rem;
  animation: slideDown 0.25s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--ink); }
.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: 7rem 2rem 6rem;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,90,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,150,90,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.9s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-pale);
  background: rgba(240,230,208,0.5);
  padding: 0.35rem 1rem;
  border-radius: 40px;
  margin-bottom: 2rem;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--ink-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--warm-white);
  background: var(--ink);
  padding: 0.85rem 2.2rem;
  border-radius: 40px;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-2px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--ink-muted);
  transition: color 0.2s;
}
.btn-secondary:hover { color: var(--ink); }
.btn-secondary::after {
  content: '→';
  font-size: 1rem;
  transition: transform 0.2s;
}
.btn-secondary:hover::after { transform: translateX(4px); }
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-mid), transparent);
  margin: 0;
}
.stats-bar {
  background: var(--ink);
  color: var(--warm-white);
  padding: 2.2rem 2rem;
}
.stats-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.stat-item {
  padding: 0.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}
.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 15px 0;
}
.section-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.5rem;
  max-width: 700px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-body {
  font-size: 1rem;
  color: var(--ink-muted);
  line-height: 1.9;
  margin-bottom: 2rem;
  letter-spacing:2px;
}
.section-body ul { list-style-position:inside; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.visual-block {
  aspect-ratio: 4/3;
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}
.visual-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 28px,
    rgba(184,150,90,0.06) 28px,
    rgba(184,150,90,0.06) 29px
  );
}
.visual-block .visual-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--ink-faint);
  font-style: italic;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  border-color: var(--gold-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,24,20,0.07);
}
.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}
.card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.card p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.7;
  font-weight: 300;
}
.pull-quote {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 2.5rem 3rem;
  margin: 4rem 0;
}
.pull-quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 1rem;
}
.pull-quote cite {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-style: normal;
}
.band {
  background: var(--cream);
  padding: 5rem 2rem;
}
.band-inner {
  max-width: 1160px;
  margin: 0 auto;
}
footer {
  background: var(--ink);
  color: #FFFFFF;
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2.5rem;
}
.footer-brand .site-name {
  color: #FFFFFF;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
  font-weight:bold;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  font-weight: 300;
  max-width: 280px;
}
.footer-col h4, .fsech {
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 1.2rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 300;
}
.footer-col ul li a:hover {
  text-decoration:underline;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: #FFFFFF;
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}
.outer {
  display: flex;
  flex-wrap: wrap;
}
.outer .inner {
  width: 33.333%;
}
.bdrall{ border:1px black solid; }
.bdrtbl{
  border-top:1px black solid;
  border-bottom:1px black solid;
  border-left:1px black solid;
}
.bdrrbl{
  border-right:1px black solid;
  border-bottom:1px black solid;
  border-left:1px black solid;
}
.bdrbl{
  border-bottom:1px black solid;
  border-left:1px black solid;
}
@media (max-width: 1200px) {
  .nav-inner { padding: 0 10px; }
  .section { padding: 15px 10px; }
}
@media (max-width: 1050px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { padding: 1rem 1.25rem 1.5rem; }
  .hero { padding: 5rem 1.25rem 4rem; }
  .band { padding: 3.5rem 1.25rem; }
  /*.footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }*/
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:last-child { border-bottom: none; }
  .pull-quote { padding: 1.75rem; }
  footer { padding: 3rem 1.25rem 1.5rem; }
}
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.reverse { direction: ltr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width:100%; }
}
@media (max-width: 576px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-col h4, .footer-col ul li, .fsech { text-align:center; }
  .dbtn{
    padding:15px !important;
    font-size:15px !important;
  }
}