:root{
  --bg: #f6f7f9;
  --bg-2: #ffffff;

  --border: rgba(15,23,42,0.10);

  --text: rgba(15,23,42,0.92);
  --muted: rgba(15,23,42,0.70);
  --muted-2: rgba(15,23,42,0.55);

  --accent: #8b7d1f;
  --accent-2: #b6a33a;

  --shadow: 0 18px 50px rgba(15,23,42,0.12);
  --shadow-2: 0 10px 24px rgba(15,23,42,0.10);

  --radius: 16px;
  --radius-lg: 24px;
  --container: 1120px;

  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(182,163,58,0.12), transparent 60%),
    radial-gradient(700px 420px at 90% 10%, rgba(139,125,31,0.08), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  line-height: 1.6;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }
img{ max-width: 100%; height: auto; display: block; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff;
  color: #000;
  z-index: 9999;
  box-shadow: var(--shadow-2);
}
.skip-link:focus{ left: 12px; }

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(246,247,249,0.78);
  border-bottom: 1px solid var(--border);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 22px 0;
  gap: 18px;
}
.brand{ display:flex; align-items:center; }
.brand-logo{
  height: 62px;              /* BIGGER logo */
  width: auto;
  filter: drop-shadow(0 8px 18px rgba(15,23,42,0.12));
}

.nav{ display:flex; align-items:center; gap: 14px; }
.nav-menu{ display:flex; align-items:center; gap: 10px; }
.nav-link{
  font-size: 14px;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 12px;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.nav-link:hover{
  color: var(--text);
  background: rgba(15,23,42,0.05);
  text-decoration: none;
}
.nav-cta{
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.70);
}

.nav-toggle{
  display:none;
  border: 1px solid rgba(15,23,42,0.12);
  background: rgba(255,255,255,0.75);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
  cursor:pointer;
  box-shadow: var(--shadow-2);
}
.burger{
  display:block;
  width: 20px;
  height: 2px;
  background: var(--text);
  position: relative;
}
.burger::before,.burger::after{
  content:"";
  position:absolute;
  left:0;
  width: 20px;
  height: 2px;
  background: var(--text);
}
.burger::before{ top: -6px; }
.burger::after{ top: 6px; }

/* Hero: reduced height + minimal overlay (no strong gradient) */
.hero-photo{
  position: relative;
  height: clamp(460px, 62vh, 600px);  /* LOWER than fullscreen */
  overflow: hidden;
}
.hero-media{
  position:absolute;
  inset:0;
}
.hero-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

/*
.hero-overlay{
  position:absolute;
  inset:0;
  background: rgba(255,255,255,0.10);
}
*/

.hero-inner{
  position: relative;
  height: 100%;
  display:flex;
  align-items:flex-end;
  padding: 26px 0 50px;
}

.hero-content{
  max-width: 760px;
  border: 1px solid rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 22px 30px;
}

.eyebrow{
  color: rgba(15,23,42,0.70);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 10px;
}
.hero-title{
  font-size: clamp(20px, 3.6vw, 32px);
  letter-spacing: -0.02em;
/*   line-height: 1.06; */
  margin: 0 0 12px;
}
.hero-subtitle{
  color: rgba(15,23,42,0.72);
  font-size: 16px;
  margin: 0 0 16px;
  max-width: 65ch;
}

.hero-cta{ display:flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  text-decoration: none !important;
  transition: transform .12s ease, filter .2s ease, background .2s ease;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: linear-gradient(135deg, rgba(139,125,31,0.95), rgba(182,163,58,0.95));
  color: #0b0f14;
  border-color: rgba(15,23,42,0.08);
}
.btn-primary:hover{ filter: brightness(1.05); }
.btn-ghost{
  background: rgba(255,255,255,0.75);
  border-color: rgba(15,23,42,0.10);
  color: rgba(15,23,42,0.90);
}
.btn-ghost:hover{ background: rgba(255,255,255,0.88); }

.hero-stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.stat{
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.78);
  border-radius: 16px;
  padding: 12px 12px;
}
.stat-value{
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.stat-label{
  color: rgba(15,23,42,0.62);
  font-size: 13px;
}

/* Sections */
.section{ padding: 56px 0; }
.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.90));
  border-top: 1px solid rgba(15,23,42,0.06);
  border-bottom: 1px solid rgba(15,23,42,0.06);
}
.section-head{
  display:flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.section-head h2{
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.02em;
}
.section-head p{
  margin: 0;
  color: var(--muted);
  max-width: 82ch;
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.card{
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.82);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 8px 22px rgba(15,23,42,0.06);
}
.card h3{ margin: 0 0 8px; letter-spacing: -0.01em; }
.card p{ margin: 0; color: var(--muted); }

/* Split */
.split{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: start;
}
.feature{
  display:flex;
  gap: 12px;
  padding: 14px 14px;
/*   border: 1px solid rgba(15,23,42,0.10); */
/*   background: rgba(255,255,255,0.82); */
/*
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(15,23,42,0.05);
*/
  margin-bottom: 12px;
}
.feature:last-child{ margin-bottom: 0; }
.feature-icon{
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(182,163,58,0.18);
  border: 1px solid rgba(182,163,58,0.26);
  color: rgba(15,23,42,0.82);
  flex: 0 0 auto;
}
.feature h3{ margin: 0 0 4px; }
.feature p{ margin: 0; color: var(--muted); }

.quote{
  margin: 0 0 12px;
  border: 1px solid rgba(182,163,58,0.30);
  background: rgba(182,163,58,0.12);
  border-radius: var(--radius);
  padding: 16px;
}
.quote p{ margin: 0 0 10px; color: rgba(15,23,42,0.82); }
.quote footer{ color: rgba(15,23,42,0.62); font-size: 13px; }

.note{
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.82);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 8px 22px rgba(15,23,42,0.05);
}
.note-title{ font-weight: 800; margin-bottom: 6px; }
.note-text{ color: var(--muted); font-size: 14px; }

/* Long quote */
.long-quote{
/*
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.86);
  border-radius: var(--radius-lg);
*/
  padding: 18px;
/*   box-shadow: 0 10px 26px rgba(15,23,42,0.06); */
}
.long-quote p{ margin: 0 0 12px; color: var(--muted); }
.long-quote p:last-child{ margin-bottom: 0; }
.long-quote-foot{
  color: rgba(15,23,42,0.55) !important;
  font-size: 13px;
}

/* Quote grid */
.quote-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.quote-card{
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.84);
  border-radius: var(--radius-lg);
  padding: 18px;
  margin: 0;
  box-shadow: 0 10px 26px rgba(15,23,42,0.06);
}
.quote-card blockquote{
  margin: 0 0 10px;
  font-size: 16px;
  color: rgba(15,23,42,0.82);
  letter-spacing: -0.01em;
}
.quote-card figcaption{ color: rgba(15,23,42,0.60); font-size: 13px; }

/* List grid */
.list-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.list-item{
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.82);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--muted);
  box-shadow: 0 8px 22px rgba(15,23,42,0.05);
}
.list-item::before{
  content:"";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(139,125,31,0.95);
  display:inline-block;
  margin-right: 10px;
  vertical-align: middle;
  box-shadow: 0 0 0 4px rgba(182,163,58,0.16);
}

/* Contact */
.contact-card{
  display:flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.86);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: 0 10px 26px rgba(15,23,42,0.06);
}
.contact-lines{ color: var(--muted); }
.contact-lines a{ color: rgba(15,23,42,0.90); }
.contact-actions{ display:flex; gap: 10px; align-items: center; flex-wrap: wrap; }

/* Footer (no address) */
.site-footer{
  padding: 24px 0 18px;
  border-top: 1px solid rgba(15,23,42,0.08);
  background: rgba(255,255,255,0.75);
}
.footer-inner{
  display:flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-left{ display:flex; gap: 12px; align-items: center; }
.footer-logo{ height: 42px; width:auto; } /* slightly bigger in footer too */
.footer-mini{ line-height: 1.2; }
.footer-right{
  display:flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-right a{
  color: rgba(15,23,42,0.70);
  padding: 8px 10px;
  text-decoration: underline;
/*

  border-radius: 12px;
*/
/*
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.88);
*/
}
.footer-right a:hover{ color: rgba(15,23,42,0.92); text-decoration: none; }

.footer-bottom{
  display:flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
  color: rgba(15,23,42,0.55);
  font-size: 13px;
}
.muted{ color: rgba(15,23,42,0.55); }

/* Responsive */
@media (max-width: 980px){
  .cards{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .quote-grid{ grid-template-columns: 1fr; }
  .list-grid{ grid-template-columns: 1fr; }

  .hero-stats{ grid-template-columns: 1fr; }

  .nav-toggle{ display:inline-flex; }
  .nav-menu{
    display:none;
    position:absolute;
    right: 20px;
    top: 78px;
    width: min(360px, calc(100vw - 40px));
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid rgba(15,23,42,0.12);
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-2);
  }
  .nav-menu.is-open{ display:flex; }
  .nav-link{ padding: 12px 12px; }
}




/* Olive quote graphics (like screenshot) */
.quote-graphic{
  display: grid;
  gap: 64px;
  padding: 6px 0;
}

.qg-item{
  text-align: center;
  color: var(--accent); /* olive */
}

.qg-line{
  height: 1px;
  width: min(820px, 84%);
  margin: 0 auto;
  background: rgba(139,125,31,0.85);
}

.qg-text{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: clamp(30px, 4.2vw, 60px);
  line-height: 1.06;
  margin: 22px 0 18px;
}

.qg-author{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-weight: 600;
  font-size: 19px;
  opacity: 0.9;
  margin-bottom: 22px;
}

/* Contact without frame */
.contact-plain{
  display:flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 0;               /* no card padding */
  background: transparent;  /* no card bg */
  border: 0;                /* no frame */
  box-shadow: none;         /* no shadow */
}

.contact-lines{
  color: var(--muted);
}

.contact-lines a{
  color: rgba(15,23,42,0.90);
}

/* Mobile spacing tweaks for quote graphics */
@media (max-width: 980px){
  .quote-graphic{ gap: 44px; }
  .qg-author{ font-size: 18px; }
}



.legal {padding-top: 50px; padding-bottom: 50px;	
}



.section-head p {font-weight: 600;}


/* Right-column image (replaces the Market context block) */
.side-image{
/*   border-radius: var(--radius); */
  overflow: hidden;
/*
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.82);
  box-shadow: 0 10px 26px rgba(15,23,42,0.06);
*/
}

.side-image img{
  width: 100%;
  height: 320px;        /* adjust if you want taller/shorter */
  object-fit: cover;
  display: block;
}