/* ==========================================================================
   SimayTex — Tasarım Sistemi
   Palet:  Tinte #1E332C · Leinen #F2ECDE · Moos #5C6B3F · Rost #A6522E · Kohle #2A2A26
   Typo:   Fraunces (Display) / Public Sans (Text) / IBM Plex Mono (Label)
   Signatur: gestrichelte "Naht"-Trennlinie zwischen Abschnitten
   ========================================================================== */


:root{
  --ink:#1E332C;
  --linen:#F2ECDE;
  --linen-2:#EAE2D0;
  --moss:#5C6B3F;
  --moss-dark:#465030;
  --rust:#A6522E;
  --charcoal:#2A2A26;
  --line:#CFC6AE;
  --radius:2px;
  --max:1100px;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--linen);
  color:var(--charcoal);
  font-family:system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  font-size:17px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3{
  font-family:Georgia,'Times New Roman',serif;
  font-weight:600;
  color:var(--ink);
  line-height:1.15;
  margin:0 0 .5em;
}
h1{font-size:clamp(2.1rem,4vw,3.1rem); font-weight:500;}
h2{font-size:clamp(1.5rem,2.6vw,2rem);}
h3{font-size:1.15rem;}
p{margin:0 0 1em;}
a{color:var(--moss-dark); text-decoration-thickness:1px; text-underline-offset:3px;}
a:hover{color:var(--rust);}
a:focus-visible, button:focus-visible{outline:2px solid var(--rust); outline-offset:3px;}

.eyebrow{
  font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;
  font-size:.72rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--rust);
  display:block;
  margin-bottom:.6em;
}

.wrap{max-width:var(--max); margin:0 auto; padding:0 24px;}

/* ---------- Header / Nav ---------- */
header.site{
  background:var(--ink);
  color:var(--linen);
  position:sticky; top:0; z-index:10;
  border-bottom:1px solid rgba(242,236,222,.12);
}
.nav-row{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 24px; max-width:var(--max); margin:0 auto;
  flex-wrap:wrap; gap:12px;
}
.brand{
  font-family:Georgia,'Times New Roman',serif; font-size:1.25rem; color:var(--linen);
  text-decoration:none; letter-spacing:.01em;
}
.brand strong{color:var(--rust); font-weight:600;}
nav.primary ul{
  list-style:none; display:flex; gap:22px; margin:0; padding:0; flex-wrap:wrap;
}
nav.primary a{
  color:var(--linen); text-decoration:none; font-size:.94rem; font-weight:500;
  padding:6px 2px; border-bottom:2px solid transparent;
}
nav.primary a:hover, nav.primary a[aria-current="page"]{
  border-bottom-color:var(--rust); color:#fff;
}
.lang-switch{display:flex; gap:8px; font-family:'IBM Plex Mono',monospace; font-size:.78rem;}
.lang-switch a{color:var(--linen-2); text-decoration:none;}
.lang-switch a[aria-current="true"]{color:var(--rust); font-weight:700;}

/* ---------- Hero ---------- */
.hero{
  background:var(--ink);
  color:var(--linen);
  padding:64px 0 0;
}
.hero-inner{max-width:var(--max); margin:0 auto; padding:0 24px 90px;}
.hero p.lead{font-size:1.15rem; max-width:640px; color:#DCD4BF;}
.hero h1{color:#fff;}

/* ---------- Stitch divider (signature element) ---------- */
.stitch{
  display:none;
}

/* ---------- Section ---------- */
section{padding:56px 0;}
section.tight{padding:36px 0;}
.section-head{max-width:680px; margin-bottom:34px;}

/* ---------- Cards ---------- */
.grid{display:grid; gap:22px; grid-template-columns:repeat(3,1fr);}
@media (max-width:820px){.grid{grid-template-columns:1fr;}}
.card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  padding:26px 24px; position:relative;
}
.badge{
  width:38px; height:38px; border-radius:50%;
  background:var(--moss); color:#fff; font-family:'Fraunces',serif; font-weight:600;
  display:flex; align-items:center; justify-content:center; margin-bottom:14px; font-size:1.05rem;
}
.card p{margin-bottom:.6em; color:#4A4A44;}
.card a.more{font-family:'IBM Plex Mono',monospace; font-size:.78rem; text-transform:uppercase; letter-spacing:.06em;}

/* ---------- Lists ---------- */
ul.check{list-style:none; padding:0; margin:0;}
ul.check li{padding-left:1.5em; position:relative; margin-bottom:.55em;}
ul.check li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:#1f6a43;
  font-weight:800;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-block; padding:12px 22px; border-radius:var(--radius);
  font-weight:600; text-decoration:none; font-size:.95rem;
  border:1px solid transparent; transition:transform .12s ease;
}
.btn-primary{background:var(--rust); color:#fff;}
.btn-primary:hover{background:#8C4425; color:#fff;}
.btn-ghost{border-color:var(--ink); color:var(--ink);}
.btn-ghost:hover{background:var(--ink); color:#fff;}
.btn-row{display:flex; gap:14px; flex-wrap:wrap; margin-top:8px;}

/* ---------- Panel (contact / CTA) ---------- */
.panel{
  background:var(--ink); color:var(--linen); border-radius:var(--radius);
  padding:44px 40px;
}
.panel h2{color:#fff;}
.panel a{color:#F0C9A8;}

/* ---------- Table (Impressum/Datenschutz data) ---------- */
table.data{width:100%; border-collapse:collapse; margin:1em 0;}
table.data th, table.data td{
  text-align:left; padding:10px 12px; border-bottom:1px solid var(--line); vertical-align:top;
}
table.data th{width:220px; font-weight:600; color:var(--ink);}

/* ---------- Callout (fill-in / editorial note) ---------- */
.callout{
  background:#FBF2E4; border:1px dashed var(--rust); border-radius:var(--radius);
  padding:16px 18px; font-size:.92rem; color:#5B4326; margin:1em 0;
}
.callout strong{color:var(--rust);}

/* ---------- Form ---------- */
form.contact{display:grid; gap:16px; max-width:560px;}
form.contact label{font-weight:600; font-size:.9rem; display:block; margin-bottom:6px;}
form.contact input, form.contact textarea, form.contact select{
  width:100%; padding:11px 12px; border:1px solid var(--line); border-radius:var(--radius);
  font-family:inherit; font-size:.98rem; background:#fff;
}
form.contact textarea{min-height:130px; resize:vertical;}
form.contact button{justify-self:start;}

/* ---------- Footer ---------- */
footer.site{background:var(--ink); color:#C8C0AC; padding:46px 0 26px; margin-top:60px;}
footer.site h3{color:var(--linen); font-size:1rem; margin-bottom:.7em;}
.footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:32px;}
@media (max-width:700px){.footer-grid{grid-template-columns:1fr;}}
footer.site ul{list-style:none; padding:0; margin:0;}
footer.site li{margin-bottom:.5em;}
footer.site a{color:#C8C0AC; text-decoration:none;}
footer.site a:hover{color:#fff;}
.footer-bottom{
  border-top:1px solid rgba(242,236,222,.14); margin-top:32px; padding-top:18px;
  font-size:.82rem; display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px;
}

@media (prefers-reduced-motion: reduce){ html{scroll-behavior:auto;} }

.honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important;}
@media (max-width:760px){.wrap[style*="grid-template-columns"]{grid-template-columns:1fr!important;gap:28px!important;}}

.seo-support{background:#f7f7f5;border-top:1px solid #e7e7e2}.seo-support .wrap{padding-top:54px;padding-bottom:54px}.support-block{max-width:820px;margin:0 auto 34px}.support-block:last-child{margin-bottom:0}.support-block h2{margin-bottom:12px}.support-block p{max-width:760px}.support-block a{font-weight:600}


/* ---------- Accessibility & readability improvements ---------- */
body{
  min-width:320px;
  overflow-x:hidden;
}
main{display:block;}
p,li,td,th{overflow-wrap:anywhere;}
nav.primary{min-width:0;}
nav.primary ul{align-items:center;}
@media (max-width:760px){
  .nav-row{align-items:flex-start;padding:13px 16px;}
  nav.primary{width:100%;order:3;overflow-x:auto;-webkit-overflow-scrolling:touch;}
  nav.primary ul{flex-wrap:nowrap;gap:16px;min-width:max-content;padding-bottom:2px;}
  nav.primary a{font-size:.9rem;white-space:nowrap;}
  .lang-switch{margin-left:auto;}
  .hero{padding-top:42px;}
  .hero-inner{padding:0 18px 64px;}
  .hero p.lead{font-size:1.05rem;}
  section{padding:42px 0;}
  .panel{padding:30px 22px;}
  table.data{display:block;overflow-x:auto;white-space:normal;}
}
@media (max-width:420px){
  body{font-size:16px;}
  h1{font-size:2rem;}
  .btn{width:100%;text-align:center;}
}
.callout{color:#4a351f;}
footer.site{color:#ddd6c6;}
footer.site a{color:#ddd6c6;}
footer.site a:hover,footer.site a:focus-visible{color:#fff;}

/* V11 readability and accessibility */
:root{
  --text:#242424;
  --muted:#555;
  --surface:#ffffff;
  --surface-soft:#f6f5ef;
  --green-dark:#173d2b;
  --green:#1f5a3a;
  --green-light:#eaf3ed;
  --cream:#f4f0e5;
}
body{
  color:var(--text);
  background:#fff;
  line-height:1.65;
}
p,li,dd,dt{color:var(--text);}
a{color:#155b3a;}
a:hover{color:#0d3f28;}
.hero,.section-dark,.green-section{
  color:#fff;
}
.hero p,.section-dark p,.green-section p,
.hero li,.section-dark li,.green-section li{
  color:#f4f7f5;
}
.hero a,.section-dark a,.green-section a{
  color:#fff;
}
.hero .muted,.section-dark .muted,.green-section .muted{
  color:#e8eee9;
}
.card,.panel,.content-card{
  background:#fff;
  color:var(--text);
}
.card p,.panel p,.content-card p,
.card li,.panel li,.content-card li{
  color:#333;
}
.eyebrow{
  color:#165b3a;
  font-weight:700;
}
button,.btn,.cta{
  color:#fff;
  background:#174d32;
}
button:hover,.btn:hover,.cta:hover{
  background:#103b26;
}
input,textarea,select{
  color:#222;
  background:#fff;
  border:1px solid #777;
}
input::placeholder,textarea::placeholder{
  color:#555;
  opacity:1;
}
:focus-visible{
  outline:3px solid #d5a800;
  outline-offset:3px;
}
footer.site{
  background:#173d2b;
  color:#f2f5f3;
}
footer.site p,footer.site li,footer.site small{
  color:#f2f5f3;
}
footer.site a{
  color:#fff;
  text-decoration:underline;
  text-underline-offset:2px;
}
@media(max-width:760px){
  .hero-inner{padding-left:20px;padding-right:20px;}
  .hero h1{line-height:1.12;}
  .hero p{line-height:1.65;}
  .card,.panel,.content-card{padding:24px 20px;}
  nav.primary ul{gap:14px;}
}

/* V12: light/cream section readability */
.section-light,
.section-cream,
.surface-cream,
.cream,
.bg-cream,
.band-light,
.band-cream,
section.light,
section.cream{
  color:#20251f;
}
.section-light p,.section-light li,
.section-cream p,.section-cream li,
.surface-cream p,.surface-cream li,
.cream p,.cream li,
.bg-cream p,.bg-cream li,
.band-light p,.band-light li,
.band-cream p,.band-cream li,
section.light p,section.light li,
section.cream p,section.cream li{
  color:#30352f;
}
.section-light h1,.section-light h2,.section-light h3,
.section-cream h1,.section-cream h2,.section-cream h3,
.surface-cream h1,.surface-cream h2,.surface-cream h3,
.cream h1,.cream h2,.cream h3,
.bg-cream h1,.bg-cream h2,.bg-cream h3,
.band-light h1,.band-light h2,.band-light h3,
.band-cream h1,.band-cream h2,.band-cream h3,
section.light h1,section.light h2,section.light h3,
section.cream h1,section.cream h2,section.cream h3{
  color:#173d2b;
}
.section-light a,.section-cream a,.surface-cream a,
.cream a,.bg-cream a,.band-light a,.band-cream a,
section.light a,section.cream a{
  color:#145a38;
  text-decoration-thickness:1.5px;
}
.section-light a:hover,.section-cream a:hover,.surface-cream a:hover,
.cream a:hover,.bg-cream a:hover,.band-light a:hover,.band-cream a:hover,
section.light a:hover,section.cream a:hover{
  color:#0d3d27;
}
.section-light .eyebrow,.section-cream .eyebrow,
.surface-cream .eyebrow,.cream .eyebrow,
.bg-cream .eyebrow,.band-light .eyebrow,.band-cream .eyebrow,
section.light .eyebrow,section.cream .eyebrow{
  color:#145a38;
}

/* Generic light surfaces: never use low-contrast white body copy */
.light-bg,.light-section,.soft-bg,.paper-bg{
  color:#20251f;
}
.light-bg p,.light-bg li,.light-section p,.light-section li,
.soft-bg p,.soft-bg li,.paper-bg p,.paper-bg li{
  color:#30352f;
}

/* V13 clean visual system */
.hero{
  background:#173d2b;
  color:#fff;
}
.hero-inner{
  padding-bottom:72px;
}
.hero p.lead{
  color:#f3f5f1;
}
section:not(.hero){
  background:#f4f0e5;
}
section[style*="background:#fff"]{
  background:#fff !important;
}
.seo-support{
  background:#f7f6f1;
}
.section-head h2,
section h2,
section h3{
  color:#173d2b;
}
section p, section li{
  color:#30352f;
}
section .eyebrow{
  color:#1f6a43;
}
.card{
  background:#fff;
}
.btn-primary{
  background:#d56b3c;
  color:#fff;
}
.btn-primary:hover{
  background:#b9542b;
}
.btn-ghost{
  color:#173d2b;
  border-color:#173d2b;
}
.btn-ghost:hover{
  background:#173d2b;
  color:#fff;
}

/* Final visual fix: continuous page, no separators or decorative marks */
hr,
.stitch,
.section-divider,
.dashed-divider {
  display:none !important;
  border:0 !important;
}
ul.check,
ul.check li {
  list-style:none !important;
}
ul.check li::before {
  content:none !important;
  display:none !important;
}
ul.check li {
  padding-left:0 !important;
}

/* Readable contrast */
.hero {
  background:#173d2b !important;
  color:#fff !important;
}
.hero h1,.hero h2,.hero h3,.hero p,.hero li {
  color:#fff !important;
}
section:not(.hero) {
  color:#242824;
}
section:not(.hero) p,
section:not(.hero) li {
  color:#30352f;
}
section:not(.hero) h1,
section:not(.hero) h2,
section:not(.hero) h3 {
  color:#173d2b;
}
section:not(.hero) a {
  color:#155b3a;
}

/* V14M: buttons always use readable white text */
.btn,
.btn-primary,
.btn-ghost,
button,
input[type="submit"],
input[type="button"],
.cta,
a.btn,
a.button,
a.cta {
  color:#fff !important;
  -webkit-text-fill-color:#fff !important;
  text-decoration:none !important;
}
.btn:hover,
.btn-primary:hover,
.btn-ghost:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.cta:hover,
a.btn:hover,
a.button:hover,
a.cta:hover {
  color:#fff !important;
  -webkit-text-fill-color:#fff !important;
}

/* Mobile menu */
.mobile-menu-toggle{
  display:none;
  border:0;
  background:#173d2b;
  color:#fff !important;
  font-size:1rem;
  font-weight:700;
  padding:10px 14px;
  border-radius:6px;
  cursor:pointer;
}
.mobile-menu-toggle span{color:#fff !important;}
@media (max-width:760px){
  .mobile-menu-toggle{display:inline-flex;align-items:center;gap:8px;}
  nav.primary.mobile-nav{
    display:none;
    width:100%;
    order:4;
  }
  nav.primary.mobile-nav.is-open{display:block;}
  nav.primary.mobile-nav ul{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    min-width:0;
    width:100%;
    padding:8px 0 4px;
  }
  nav.primary.mobile-nav li{width:100%;}
  nav.primary.mobile-nav a{
    display:block;
    width:100%;
    padding:10px 0;
    white-space:normal;
  }
}

/* V15: mobile readability and menu stability */
@media (max-width:760px){
  .mobile-menu-toggle{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    min-height:44px;
    min-width:88px;
    padding:10px 16px;
    color:#fff !important;
    background:#173d2b !important;
    border:1px solid #173d2b;
  }
  nav.primary.mobile-nav{
    width:100%;
  }
  nav.primary.mobile-nav.is-open{
    display:block !important;
  }
  nav.primary.mobile-nav a{
    color:#173d2b !important;
    background:transparent;
  }
}

/* V17 mobile navigation */
.mobile-menu-toggle{display:none !important;}
@media (max-width:760px){
 .mobile-menu-toggle{
  display:inline-flex !important;align-items:center;justify-content:center;
  min-width:88px;min-height:44px;padding:10px 16px;margin:8px 0;
  color:#fff !important;background:#173d2b !important;border:1px solid #173d2b;
  border-radius:6px;font-weight:700;cursor:pointer;
 }
 nav.primary.mobile-nav{display:none !important;width:100%;order:5;}
 nav.primary.mobile-nav.is-open{display:block !important;}
 nav.primary.mobile-nav ul{display:flex !important;flex-direction:column !important;
  align-items:stretch !important;width:100%;min-width:0 !important;gap:0 !important;
  margin:0;padding:6px 0 12px;}
 nav.primary.mobile-nav li{display:block;width:100%;}
 nav.primary.mobile-nav a{display:block;width:100%;padding:11px 4px;
  white-space:normal !important;color:#173d2b !important;}
}

/* International SEO context is semantic metadata only and does not alter the layout. */
.seo-international-context{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}

/* V21: balanced top layout and cleaner hierarchy */
header.site-header, header.site, .site-header{
  position:relative;
  z-index:20;
}
.hero{
  padding-top:clamp(34px,5vw,72px);
}
.hero h1{
  max-width:900px;
  margin-top:0;
  margin-bottom:18px;
}
.hero .lead{
  max-width:760px;
  margin:0 auto 28px;
}
.hero .actions,
.hero .cta-row,
.hero .button-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  justify-content:center;
}
.section-head{
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
}
.section-head h2{
  margin-top:8px;
  margin-bottom:12px;
}
.section-head p{
  max-width:760px;
}
@media(max-width:760px){
  .hero{
    padding-top:28px;
    padding-bottom:42px;
  }
  .hero h1{
    font-size:clamp(2rem,8vw,3rem);
    line-height:1.12;
    margin-bottom:14px;
  }
  .hero .lead{
    margin-bottom:22px;
  }
  .hero .actions,
  .hero .cta-row,
  .hero .button-row{
    flex-direction:column;
    align-items:stretch;
    width:100%;
  }
  .hero .actions .btn,
  .hero .cta-row .btn,
  .hero .button-row .btn{
    width:100%;
    text-align:center;
  }
  .section-head{
    padding-left:4px;
    padding-right:4px;
  }
}

/* V22 mobile typography, spacing and navigation */
@media (max-width:760px){
  body{
    overflow-x:hidden;
    font-size:16px;
    line-height:1.62;
  }
  header.site-header, header.site, .site-header{
    padding-left:16px;
    padding-right:16px;
  }
  .mobile-menu-toggle{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    min-width:92px;
    min-height:44px;
    padding:10px 18px;
    margin:8px 0 10px;
    color:#fff !important;
    background:#173d2b !important;
    border:1px solid #173d2b;
    border-radius:7px;
    font-size:16px;
    line-height:1;
    font-weight:700;
  }
  nav.primary.mobile-nav{
    display:none !important;
    width:100%;
    margin:0;
    padding:0 0 8px;
    background:#fff;
  }
  nav.primary.mobile-nav.is-open{
    display:block !important;
  }
  nav.primary.mobile-nav ul{
    display:flex !important;
    flex-direction:column !important;
    gap:0 !important;
    width:100%;
    margin:0;
    padding:4px 0 8px;
  }
  nav.primary.mobile-nav li{
    width:100%;
    margin:0;
    padding:0;
  }
  nav.primary.mobile-nav a{
    display:block;
    width:100%;
    min-height:44px;
    padding:11px 8px;
    color:#173d2b !important;
    font-size:16px;
    line-height:1.35;
    white-space:normal !important;
  }
  .hero{
    padding:30px 18px 42px;
  }
  .hero h1{
    max-width:100%;
    font-size:clamp(2rem,9vw,2.65rem);
    line-height:1.1;
    margin:0 0 16px;
  }
  .hero .lead{
    max-width:100%;
    font-size:17px;
    line-height:1.6;
    margin:0 0 22px;
  }
  .hero .actions,
  .hero .cta-row,
  .hero .button-row{
    width:100%;
    gap:10px;
  }
  .hero .btn,
  .hero .cta,
  .hero a.button{
    width:100%;
    min-height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:12px 16px;
  }
  .wrap{
    width:100%;
    max-width:100%;
    padding-left:18px;
    padding-right:18px;
  }
  section{
    padding-top:42px;
    padding-bottom:42px;
  }
  .section-head h2{
    font-size:clamp(1.55rem,6.5vw,2.15rem);
    line-height:1.18;
  }
  .section-head p{
    font-size:16px;
    line-height:1.62;
  }
  .card{
    width:100%;
    margin-bottom:14px;
  }
  .card h3{
    line-height:1.25;
  }
  footer.site{
    padding-left:18px;
    padding-right:18px;
  }
}

/* V23: mobile nav is the ONLY navigation visible below 760px */
@media (max-width:760px){
  header .desktop-nav,
  header .main-nav,
  header nav:not(.mobile-nav){
    display:none !important;
    visibility:hidden !important;
    height:0 !important;
    overflow:hidden !important;
  }
  .mobile-menu-toggle{
    position:relative;
    z-index:1002;
    display:inline-flex !important;
    margin:10px 0 14px;
  }
  nav.primary.mobile-nav{
    display:none !important;
    position:relative;
    z-index:1001;
    clear:both;
    width:100% !important;
    max-height:0;
    overflow:hidden;
    visibility:hidden;
    opacity:0;
    margin:0 !important;
    padding:0 !important;
  }
  nav.primary.mobile-nav.is-open{
    display:block !important;
    max-height:500px;
    overflow:visible;
    visibility:visible;
    opacity:1;
    padding:4px 0 12px !important;
  }
  nav.primary.mobile-nav ul{
    display:flex !important;
    flex-direction:column !important;
    width:100% !important;
    margin:0 !important;
    padding:0 !important;
    list-style:none !important;
  }
  nav.primary.mobile-nav li{
    display:block !important;
    width:100% !important;
    margin:0 !important;
  }
  nav.primary.mobile-nav a{
    display:block !important;
    width:100% !important;
    min-height:44px;
    padding:11px 10px !important;
    box-sizing:border-box;
    white-space:normal !important;
  }
}

/* V24 German homepage hierarchy */
.home-hero, .hero{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}
.hero .eyebrow{
  margin-bottom:10px;
}
.hero h1{
  margin-top:0 !important;
  margin-bottom:16px !important;
}
.hero .lead{
  margin-top:0 !important;
  margin-bottom:24px !important;
}
.hero .actions,
.hero .cta-row,
.hero .button-row{
  margin-top:0 !important;
  margin-bottom:0 !important;
}
@media(max-width:760px){
  .hero{
    padding-top:26px !important;
    padding-bottom:38px !important;
  }
  .hero .eyebrow{
    font-size:14px;
    line-height:1.4;
  }
  .hero h1{
    font-size:clamp(2rem,8.5vw,2.55rem) !important;
    line-height:1.1 !important;
    max-width:100%;
  }
  .hero .lead{
    font-size:16px !important;
    line-height:1.6 !important;
    max-width:100%;
  }
}

/* V25: German homepage heading hierarchy and spacing */
.hero{
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.hero h1{
  order:2;
  margin:8px auto 16px !important;
  max-width:900px;
}
.hero .eyebrow{
  order:1;
  margin:0 auto 8px !important;
}
.hero .lead{
  order:3;
  max-width:780px;
  margin:0 auto 24px !important;
}
.hero .actions,.hero .cta-row,.hero .button-row{
  order:4;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
}
@media(max-width:760px){
  .hero{
    padding:24px 18px 38px !important;
  }
  .hero h1{
    font-size:clamp(2rem,8.5vw,2.6rem) !important;
    line-height:1.1 !important;
    margin:8px auto 14px !important;
  }
  .hero .lead{
    font-size:16px !important;
    line-height:1.58 !important;
    margin-bottom:20px !important;
  }
  .hero .actions,.hero .cta-row,.hero .button-row{
    width:100%;
    flex-direction:column;
    gap:10px;
  }
  .hero .actions > *, .hero .cta-row > *, .hero .button-row > *{
    width:100%;
  }
}

/* V26 professional layout */
body{overflow-x:hidden}
.wrap,.container,.content-wrap{width:min(1180px,calc(100% - 48px));margin-inline:auto}
.hero{width:100%;box-sizing:border-box;padding:72px 24px 64px!important;text-align:center;display:flex;flex-direction:column;align-items:center}
.hero h1{max-width:900px;margin:10px auto 18px!important;line-height:1.08!important}
.hero .lead{max-width:820px;margin:0 auto 28px!important;line-height:1.65!important}
.hero .actions,.hero .cta-row,.hero .button-row{display:flex;justify-content:center;align-items:center;gap:12px;flex-wrap:wrap}
.section-head{max-width:820px;margin-inline:auto}
.section-head h2{margin-top:10px!important;line-height:1.16!important}
.section-head p{line-height:1.65!important}
@media(max-width:760px){
 .wrap,.container,.content-wrap{width:calc(100% - 36px)}
 .hero{padding:30px 18px 44px!important}
 .hero h1{font-size:clamp(2rem,8.5vw,2.6rem)!important;line-height:1.1!important}
 .hero .lead{font-size:16px!important}
 header .desktop-nav,header .main-nav,header nav:not(.mobile-nav){display:none!important}
 .mobile-menu-toggle{display:inline-flex!important;align-items:center;justify-content:center;min-width:96px;min-height:44px;padding:11px 18px;margin:10px 0 12px;color:#fff!important;background:#173d2b!important;border:0;border-radius:7px;font-weight:700;cursor:pointer}
 nav.primary.mobile-nav{display:none!important;width:100%!important;max-height:0;overflow:hidden;visibility:hidden;opacity:0}
 nav.primary.mobile-nav.is-open{display:block!important;max-height:520px;visibility:visible;opacity:1}
 nav.primary.mobile-nav ul{display:flex!important;flex-direction:column!important;width:100%!important;gap:0!important;padding:0!important;margin:0!important;list-style:none!important}
 nav.primary.mobile-nav li{width:100%!important}
 nav.primary.mobile-nav a{display:block!important;width:100%!important;min-height:44px;padding:11px 10px!important;box-sizing:border-box;color:#173d2b!important}
 .hero .actions,.hero .cta-row,.hero .button-row{flex-direction:column;width:100%;gap:10px}
 .hero .actions>*,.hero .cta-row>*,.hero .button-row>*{width:100%}
 section{padding-top:42px;padding-bottom:42px}
}

/* V27 homepage: desktop navigation beside logo, clean centered hero */
.site .nav-row{max-width:1180px;min-height:76px;padding:0 24px;display:flex;align-items:center;gap:28px;flex-wrap:nowrap}
.site .brand{flex:0 0 auto;font-size:1.55rem;line-height:1}
.desktop-nav{display:flex;align-items:center;flex:1 1 auto}
.desktop-nav ul{display:flex;align-items:center;justify-content:center;gap:30px;list-style:none;margin:0;padding:0;width:100%}
.desktop-nav a,.desktop-lang a{color:var(--linen);text-decoration:none;font-weight:600;font-size:15px;white-space:nowrap}
.desktop-lang{display:flex;gap:10px;flex:0 0 auto}
.mobile-lang{display:none}
.hero{padding:70px 0 62px!important}
.hero-inner{max-width:920px!important;margin:0 auto!important;padding:0 24px 12px!important;text-align:center}
.hero .eyebrow{display:block;margin:0 auto 12px!important;text-align:center}
.hero h1{max-width:900px;margin:0 auto 18px!important;text-align:center}
.hero .lead{max-width:780px;margin:0 auto 26px!important;text-align:center}
.hero .btn-row{justify-content:center;align-items:center;gap:12px;margin:0 auto!important}
.hero .btn{min-height:48px;display:inline-flex;align-items:center;justify-content:center;text-align:center}
@media(max-width:760px){
 .site .nav-row{min-height:68px;padding:0 18px;gap:12px}
 .site .brand{font-size:1.35rem;margin-right:auto}
 .desktop-nav,.desktop-lang{display:none!important}
 .mobile-menu-toggle{display:inline-flex!important;align-items:center;justify-content:center;min-width:82px;min-height:44px;margin:0!important;padding:10px 16px!important}
 .mobile-nav{display:none!important;width:100%!important;box-sizing:border-box;padding:8px 18px 16px!important;background:var(--ink)}
 .mobile-nav.is-open{display:block!important;max-height:none!important;visibility:visible!important;opacity:1!important}
 .mobile-nav ul{display:flex!important;flex-direction:column!important;gap:0!important;width:100%!important;margin:0!important;padding:0!important;list-style:none!important}
 .mobile-nav li{width:100%!important}
 .mobile-nav a{display:block!important;width:100%!important;min-height:46px;padding:12px 6px!important;color:var(--linen)!important;border-bottom:1px solid rgba(242,236,222,.12);text-decoration:none}
 .mobile-lang{display:flex;gap:18px;padding:14px 6px 2px}
 .mobile-lang a{border:0!important;width:auto!important;min-height:auto!important;padding:0!important}
 .hero{padding:34px 0 42px!important}
 .hero-inner{padding:0 18px!important}
 .hero h1{font-size:clamp(2rem,8.5vw,2.65rem)!important;line-height:1.1!important}
 .hero .lead{font-size:16px!important;line-height:1.6!important}
 .hero .btn-row{width:100%;flex-direction:column;gap:10px}
 .hero .btn-row .btn{width:100%}
}

/* V28: clear visual hierarchy, one dominant homepage heading */
.home-intro-title{
  font-size:clamp(1.45rem,2.1vw,1.85rem)!important;
  line-height:1.25!important;
  font-weight:600!important;
  max-width:760px;
  margin-left:auto!important;
  margin-right:auto!important;
}
.hero + section{padding-top:52px!important;}
@media(max-width:760px){
  .home-intro-title{font-size:1.4rem!important;line-height:1.28!important;}
  .hero + section{padding-top:38px!important;}
}

/* V29: only the hero H1 is visually dominant on the German homepage */
.home-intro-title{
  display:block;
  max-width:760px;
  margin:0 auto 22px!important;
  font-size:1.12rem!important;
  line-height:1.55!important;
  font-weight:500!important;
  text-align:center;
}

/* V30 reference-mockup homepage */
.utility-bar{background:#063b28;color:#f4f1e8;font-size:13px}
.nav-container{width:min(1180px,calc(100% - 48px));margin:auto}
.utility-inner{min-height:42px;display:flex;align-items:center;gap:34px}
.utility-inner span{white-space:nowrap}
.utility-lang{margin-left:auto}.utility-lang a{color:inherit;text-decoration:none}
.main-nav-wrap{background:#fff}
.main-nav-row{min-height:78px;display:flex;align-items:center;gap:34px}
.brand{font-family:Georgia,serif;font-size:30px;font-weight:700;color:#173d2b;text-decoration:none;margin-right:auto}
.brand span{color:#ed6b2b}
.desktop-nav{display:flex}
.desktop-nav ul{display:flex;gap:34px;list-style:none;margin:0;padding:0}
.desktop-nav a{color:#173d2b;text-decoration:none;font-weight:600;padding:29px 0;display:block;white-space:nowrap}
.desktop-nav a.active{border-bottom:3px solid #ed6b2b}
.nav-cta{background:#ed6b2b;color:#fff;text-decoration:none;font-weight:700;padding:13px 19px;border-radius:4px;white-space:nowrap}
.mobile-menu-toggle,.mobile-nav{display:none}
.mock-hero{min-height:500px;background:#06452f;position:relative;overflow:hidden;display:flex;align-items:center}
.hero-copy{width:min(560px,52%);margin-left:max(24px,calc((100% - 1180px)/2));position:relative;z-index:2;color:#fff;padding:72px 0}
.hero-copy .eyebrow{color:#64c49b;font-size:12px;letter-spacing:2px;font-weight:800}
.hero-copy h1{font-family:Georgia,serif;font-size:clamp(42px,4.6vw,64px);line-height:1.03;margin:20px 0 22px;color:#fff}
.hero-copy>p{font-size:17px;line-height:1.65;max-width:550px;color:#f5f4ef}
.hero-actions{display:flex;gap:13px;margin-top:28px;flex-wrap:wrap}
.hero-actions .btn,.dark-cta .btn{min-height:48px;display:inline-flex;align-items:center;justify-content:center;gap:16px;padding:0 22px;text-decoration:none;font-weight:700;border-radius:4px}
.btn-primary{background:#f36b21;color:#fff!important;border:1px solid #f36b21}
.btn-outline{background:transparent;color:#fff!important;border:1px solid rgba(255,255,255,.8)}
.textile-art{position:absolute;right:-2%;bottom:-2%;width:51%;height:100%;background:radial-gradient(circle at 45% 45%,rgba(56,121,83,.7),transparent 58%)}
.cloth{position:absolute;right:7%;width:76%;height:15%;border-radius:80px 25px 35px 65px;box-shadow:0 13px 18px rgba(0,0,0,.28),inset 0 -9px 15px rgba(0,0,0,.18);transform:rotate(-2deg)}
.c1{bottom:2%;background:linear-gradient(#6d695c,#403f37)}
.c2{bottom:14%;background:linear-gradient(#9a917d,#625c4e);transform:rotate(2deg)}
.c3{bottom:26%;background:linear-gradient(#c4b6a0,#817764)}
.c4{bottom:38%;background:linear-gradient(#7c7564,#4d4a3f);transform:rotate(-1deg)}
.c5{bottom:50%;background:linear-gradient(#d4c9b5,#a49a86)}
.c6{bottom:62%;background:linear-gradient(#b7ad9b,#81796b);transform:rotate(2deg)}
.c7{bottom:74%;background:linear-gradient(#ded2c0,#aaa08e);transform:rotate(-2deg)}
.benefits{display:grid;grid-template-columns:repeat(4,1fr);padding:38px max(24px,calc((100% - 1180px)/2));background:#fbfaf6}
.benefits>div{padding:0 30px;text-align:center;border-right:1px solid #dedbd3}
.benefits>div:last-child{border-right:0}
.benefit-icon,.service-icon{font-size:31px;color:#0a5a3e;margin-bottom:10px}
.benefits h3{margin:0 0 9px;color:#173d2b}.benefits p{margin:0;font-size:13px;line-height:1.55;color:#6a6b65}
.intro-section{padding:70px 24px 78px;text-align:center;background:#fff}
.intro-section>.eyebrow{display:block;color:#0a5a3e;font-size:12px;letter-spacing:2px;font-weight:800}
.intro-section h2{font-family:Georgia,serif;color:#173d2b;font-size:38px;line-height:1.18;margin:12px auto 12px;max-width:850px}
.intro-section>p{max-width:700px;margin:0 auto 36px;color:#6b6b66;line-height:1.65}
.service-grid{width:min(1100px,100%);margin:auto;display:grid;grid-template-columns:repeat(4,1fr);gap:14px;text-align:center}
.service-card{padding:28px 20px;border:1px solid #e7e5df;border-radius:8px;box-shadow:0 4px 14px rgba(25,55,40,.05)}
.service-card h3{color:#173d2b;margin:0 0 8px}.service-card p{font-size:13px;line-height:1.55;color:#666}
.dark-cta{background:#06452f;color:#fff;padding:38px max(24px,calc((100% - 1180px)/2));display:flex;align-items:center;justify-content:space-between;gap:30px}
.dark-cta h2{font-family:Georgia,serif;margin:0 0 8px;font-size:27px;max-width:600px}.dark-cta p{margin:0;color:#d7e3dc}
.site-footer{background:#fff;padding:38px max(24px,calc((100% - 1180px)/2)) 18px;color:#173d2b}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr;gap:60px}.footer-grid h3{margin:0 0 12px}.footer-grid p{max-width:360px;color:#69706b;line-height:1.55}.footer-grid a{display:block;color:#53645c;text-decoration:none;margin:7px 0}
.footer-bottom{border-top:1px solid #e4e1da;margin-top:30px;padding-top:14px;font-size:12px;color:#77807b;display:flex;justify-content:space-between}
@media(max-width:760px){
 .utility-inner{width:calc(100% - 32px);gap:10px;justify-content:space-between;font-size:11px}.utility-inner>span:nth-child(2),.utility-inner>span:nth-child(3),.utility-inner>span:nth-child(4){display:none}
 .nav-container{width:calc(100% - 32px)}.main-nav-row{min-height:66px;gap:10px}.brand{font-size:25px}
 .desktop-nav,.nav-cta{display:none!important}.mobile-menu-toggle{display:inline-flex!important;margin-left:auto;min-height:42px;padding:9px 15px;border:0;border-radius:5px;background:#06452f;color:#fff;font-weight:700}
 .mobile-nav{display:none;background:#06452f;padding:8px 16px 14px}.mobile-nav.is-open{display:flex;flex-direction:column}.mobile-nav a{color:#fff;text-decoration:none;padding:12px 4px;border-bottom:1px solid rgba(255,255,255,.12)}
 .mock-hero{min-height:auto;display:block}.hero-copy{width:auto;margin:0;padding:48px 20px 40px;text-align:center}.hero-copy h1{font-size:40px;line-height:1.05}.hero-copy>p{font-size:16px}.hero-actions{flex-direction:column}.hero-actions .btn{width:100%}
 .textile-art{position:relative;right:auto;bottom:auto;width:100%;height:210px}.cloth{right:5%;width:90%}
 .benefits{grid-template-columns:1fr 1fr;padding:28px 10px}.benefits>div{padding:15px 12px;border-right:1px solid #dedbd3;border-bottom:1px solid #dedbd3}.benefits>div:nth-child(2n){border-right:0}.benefits>div:nth-last-child(-n+2){border-bottom:0}
 .intro-section{padding:48px 18px 55px}.intro-section h2{font-size:30px}.service-grid{grid-template-columns:1fr 1fr;gap:10px}.service-card{padding:22px 12px}
 .dark-cta{padding:34px 20px;display:block;text-align:center}.dark-cta h2{font-size:25px}.dark-cta .btn{margin-top:22px;width:100%}
 .footer-grid{grid-template-columns:1fr;gap:25px}.footer-bottom{display:block;line-height:1.6}.footer-bottom span{display:block;margin-top:8px}
}

/* V31: image-free homepage hero, shared DE/EN */
.mock-hero{justify-content:center;background:#06452f}
.mock-hero .hero-copy{width:min(900px,calc(100% - 48px));margin:0 auto!important;text-align:center}
.mock-hero .hero-copy>p{margin-left:auto;margin-right:auto}
.mock-hero .hero-actions{justify-content:center}
.textile-art{display:none!important}
@media(max-width:760px){
 .mock-hero .hero-copy{width:calc(100% - 36px);padding:48px 0 42px}
 .mock-hero .hero-actions{width:100%}
}

/* V32: navigation position only */
@media(min-width:761px){
  .site .main-nav-row{
    display:flex!important;
    align-items:center!important;
    justify-content:flex-start!important;
    gap:30px!important;
  }
  .site .brand{
    margin-right:10px!important;
    flex:0 0 auto!important;
  }
  .site .desktop-nav{
    display:flex!important;
    align-items:center!important;
    flex:0 1 auto!important;
    margin:0!important;
  }
  .site .desktop-nav ul{
    display:flex!important;
    align-items:center!important;
    justify-content:flex-start!important;
    gap:30px!important;
    width:auto!important;
    margin:0!important;
    padding:0!important;
  }
  .site .desktop-nav a{
    padding:29px 0!important;
  }
  .site .nav-cta{
    margin-left:auto!important;
  }
}
@media(max-width:760px){
  .site .desktop-nav,.site .nav-cta{display:none!important}
  .site .mobile-menu-toggle{display:inline-flex!important}
}

/* V33: only the requested brand descriptor */
@media(min-width:761px){
 .site .brand-group{display:flex;align-items:center;gap:18px;flex:0 0 auto}
 .site .brand-group .brand{margin-right:0!important}
 .site .brand-title{color:var(--linen);font-family:Georgia,serif;font-size:1.15rem;font-weight:600;white-space:nowrap}
}
@media(max-width:760px){
 .site .brand-group{display:flex;align-items:center;gap:10px;margin-right:auto}
 .site .brand-group .brand{margin-right:0!important}
 .site .brand-title{color:var(--linen);font-size:.92rem;font-weight:600;white-space:nowrap}
}

/* V34: SimayTex corporate green */
:root{
  --simay-green:#06452f;
  --simay-green-dark:#043b29;
  --simay-green-light:#0a5a3e;
}
.site .main-nav-wrap,
.site .utility-bar{
  background:var(--simay-green)!important;
}
.mock-hero{
  background:var(--simay-green)!important;
}
.dark-cta{
  background:var(--simay-green)!important;
}
.site .desktop-nav a,
.site .brand-title{
  color:#fff!important;
}
.site .mobile-nav{
  background:var(--simay-green)!important;
}

/* V35: robust mobile navigation */
@media (max-width:760px){
  html,body{width:100%;max-width:100%;overflow-x:hidden!important}
  .site{width:100%;position:relative;z-index:1000}
  .site .main-nav-wrap{width:100%;position:relative}
  .site .main-nav-row{
    width:100%!important;
    box-sizing:border-box;
    min-height:68px!important;
    padding:0 16px!important;
    display:flex!important;
    align-items:center!important;
    gap:10px!important;
  }
  .site .brand-group{
    display:flex!important;
    align-items:center!important;
    min-width:0;
    margin-right:auto!important;
  }
  .site .brand-group .brand{
    flex:0 0 auto!important;
    margin:0!important;
    font-size:24px!important;
  }
  .site .brand-title{
    font-size:12px!important;
    overflow:hidden;
    text-overflow:ellipsis;
  }
  .site .desktop-nav,.site .nav-cta,.site .desktop-lang{display:none!important}
  .site .mobile-menu-toggle{
    display:inline-flex!important;
    flex:0 0 auto!important;
    width:auto!important;
    min-width:78px!important;
    min-height:42px!important;
    margin:0!important;
    padding:9px 15px!important;
    align-items:center!important;
    justify-content:center!important;
    background:#06452f!important;
    color:#fff!important;
    border:1px solid rgba(255,255,255,.35)!important;
    border-radius:5px!important;
    font-size:14px!important;
    font-weight:700!important;
    line-height:1!important;
    cursor:pointer;
  }
  .site .mobile-nav{
    display:none!important;
    position:absolute!important;
    left:0!important;
    top:100%!important;
    width:100%!important;
    box-sizing:border-box!important;
    padding:6px 16px 14px!important;
    background:#06452f!important;
    border-top:1px solid rgba(255,255,255,.18)!important;
    z-index:2000!important;
  }
  .site .mobile-nav.is-open{
    display:flex!important;
    flex-direction:column!important;
    visibility:visible!important;
    opacity:1!important;
    max-height:none!important;
    overflow:visible!important;
  }
  .site .mobile-nav a{
    display:block!important;
    width:100%!important;
    box-sizing:border-box!important;
    min-height:45px!important;
    padding:12px 5px!important;
    color:#fff!important;
    text-decoration:none!important;
    border-bottom:1px solid rgba(255,255,255,.14)!important;
    font-size:15px!important;
  }
  .mock-hero{min-height:auto!important}
  .hero-copy{
    width:100%!important;
    box-sizing:border-box!important;
    margin:0!important;
    padding:44px 18px 38px!important;
  }
  .hero-copy h1{
    font-size:clamp(32px,9vw,42px)!important;
    line-height:1.08!important;
    overflow-wrap:normal!important;
  }
  .hero-copy>p{font-size:16px!important;line-height:1.6!important}
  .hero-actions{width:100%!important;flex-direction:column!important}
  .hero-actions .btn{width:100%!important;box-sizing:border-box!important}
  .benefits{grid-template-columns:1fr 1fr!important}
  .service-grid{grid-template-columns:1fr 1fr!important}
}

@media (max-width:390px){
  .site .brand-title{display:none!important}
  .site .brand-group .brand{font-size:23px!important}
  .site .main-nav-row{padding:0 12px!important}
  .hero-copy{padding-left:14px!important;padding-right:14px!important}
  .hero-copy h1{font-size:31px!important}
  .benefits{grid-template-columns:1fr!important}
  .service-grid{grid-template-columns:1fr!important}
}

/* V36 MOBILE ONLY: clean, readable, non-overlapping navigation */
@media screen and (max-width:900px){
  .site .utility-bar{display:none!important}

  .site .main-nav-wrap{
    width:100%!important;
    position:relative!important;
    background:#06452f!important;
    z-index:9999!important;
  }

  .site .main-nav-row{
    width:100%!important;
    max-width:none!important;
    height:68px!important;
    min-height:68px!important;
    margin:0!important;
    padding:0 16px!important;
    box-sizing:border-box!important;
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
    gap:12px!important;
  }

  .site .brand-group{
    display:flex!important;
    align-items:center!important;
    flex:1 1 auto!important;
    min-width:0!important;
    margin:0!important;
    gap:9px!important;
  }

  .site .brand-group .brand,
  .site .main-nav-row > .brand{
    display:inline-block!important;
    flex:0 0 auto!important;
    margin:0!important;
    padding:0!important;
    color:#fff!important;
    font-size:24px!important;
    line-height:1!important;
    white-space:nowrap!important;
  }

  .site .brand-title{
    display:inline-block!important;
    flex:0 1 auto!important;
    min-width:0!important;
    margin:0!important;
    padding:0!important;
    color:#fff!important;
    font-size:12px!important;
    line-height:1.2!important;
    white-space:nowrap!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
  }

  .site .desktop-nav,
  .site .nav-cta,
  .site .desktop-lang{
    display:none!important;
    visibility:hidden!important;
  }

  .site .mobile-menu-toggle{
    display:flex!important;
    position:relative!important;
    flex:0 0 auto!important;
    width:86px!important;
    height:42px!important;
    min-width:86px!important;
    min-height:42px!important;
    margin:0!important;
    padding:0!important;
    box-sizing:border-box!important;
    align-items:center!important;
    justify-content:center!important;
    background:#f36b21!important;
    color:#fff!important;
    border:0!important;
    border-radius:5px!important;
    font-family:inherit!important;
    font-size:14px!important;
    font-weight:700!important;
    line-height:1!important;
    text-align:center!important;
    z-index:10001!important;
  }

  .site .mobile-nav{
    display:none!important;
    position:absolute!important;
    left:0!important;
    right:0!important;
    top:68px!important;
    width:100%!important;
    max-width:none!important;
    height:auto!important;
    max-height:none!important;
    margin:0!important;
    padding:8px 16px 14px!important;
    box-sizing:border-box!important;
    background:#06452f!important;
    border-top:1px solid rgba(255,255,255,.2)!important;
    box-shadow:0 8px 18px rgba(0,0,0,.18)!important;
    z-index:10000!important;
  }

  .site .mobile-nav.is-open{
    display:flex!important;
    flex-direction:column!important;
    align-items:stretch!important;
    justify-content:flex-start!important;
    visibility:visible!important;
    opacity:1!important;
    overflow:visible!important;
  }

  .site .mobile-nav a{
    display:flex!important;
    align-items:center!important;
    width:100%!important;
    height:46px!important;
    min-height:46px!important;
    margin:0!important;
    padding:0 4px!important;
    box-sizing:border-box!important;
    color:#fff!important;
    background:transparent!important;
    border:0!important;
    border-bottom:1px solid rgba(255,255,255,.16)!important;
    text-decoration:none!important;
    font-family:inherit!important;
    font-size:16px!important;
    font-weight:600!important;
    line-height:1.2!important;
    white-space:nowrap!important;
  }

  .site .mobile-nav a:last-child{border-bottom:0!important}

  .site .mock-hero,
  .site .hero{
    width:100%!important;
    margin:0!important;
    box-sizing:border-box!important;
  }
}

@media screen and (max-width:390px){
  .site .main-nav-row{padding:0 12px!important}
  .site .brand-group .brand,
  .site .main-nav-row > .brand{font-size:22px!important}
  .site .brand-title{font-size:11px!important}
  .site .mobile-menu-toggle{width:80px!important;min-width:80px!important}
}

/* V38: MENU ONLY. Keep all existing page design/content unchanged. */
@media screen and (max-width:900px){
  .site .desktop-nav,
  .site .nav-cta{display:none!important}

  .site .mobile-menu-toggle{
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    position:relative!important;
    z-index:10002!important;
    width:82px!important;
    min-width:82px!important;
    height:42px!important;
    margin:0!important;
    padding:0!important;
    box-sizing:border-box!important;
    background:#f36b21!important;
    color:#fff!important;
    border:0!important;
    border-radius:5px!important;
    font-size:14px!important;
    font-weight:700!important;
    line-height:1!important;
    cursor:pointer!important;
  }

  .site .mobile-nav{
    display:none!important;
  }

  .site .mobile-nav.is-open{
    display:flex!important;
    flex-direction:column!important;
    position:absolute!important;
    top:68px!important;
    left:0!important;
    right:0!important;
    width:100%!important;
    margin:0!important;
    padding:8px 16px 14px!important;
    box-sizing:border-box!important;
    background:#06452f!important;
    z-index:10001!important;
    box-shadow:0 8px 18px rgba(0,0,0,.18)!important;
  }

  .site .mobile-nav a{
    display:flex!important;
    align-items:center!important;
    width:100%!important;
    min-height:46px!important;
    margin:0!important;
    padding:0 4px!important;
    box-sizing:border-box!important;
    color:#fff!important;
    text-decoration:none!important;
    border-bottom:1px solid rgba(255,255,255,.16)!important;
    font-size:16px!important;
    font-weight:600!important;
    line-height:1.2!important;
    white-space:nowrap!important;
  }
}
