
:root{
  --bg:#ffffff;
  --text:#1c241a;
  --muted:#4b5a45;
  --card:#f6f7f4;
  --border: rgba(28,36,26,.12);

  /* logo-inspired greens */
  --accent:#5a8a2a;
  --accent2:#2f6b2d;
  --accentSoft: rgba(90,138,42,.12);

  --shadow: 0 10px 28px rgba(0,0,0,.08);
  --radius: 16px;
  --max: 1100px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}

a{color:var(--accent2); text-decoration:none}
a:hover{text-decoration:underline}

.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.small{font-size:.95rem; color:var(--muted)}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--accentSoft);
  color:var(--accent2);
  border:1px solid rgba(47,107,45,.18);
  padding:8px 12px;
  border-radius:999px;
  font-weight:600;
  font-size:.92rem;
}

.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.88);
  backdrop-filter:saturate(160%) blur(10px);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
  min-height:44px;
}
.brand img{
  height:44px; width:auto; display:block;
}
.menu{
  display:flex; gap:14px; align-items:center;
}
.menu a{
  padding:10px 10px;
  border-radius:10px;
  color:var(--text);
  font-weight:600;
}
.menu a.active, .menu a:hover{
  background:rgba(28,36,26,.06);
  text-decoration:none;
}
.hamburger{
  display:none;
  border:1px solid var(--border);
  background:#fff;
  border-radius:12px;
  padding:10px 12px;
  font-weight:700;
}
.mobilePanel{
  display:none;
  padding:10px 0 14px;
}
.mobilePanel a{
  display:block;
  padding:10px 12px;
  border-radius:12px;
  color:var(--text);
  font-weight:700;
}
.mobilePanel a.active, .mobilePanel a:hover{ background:rgba(28,36,26,.06); text-decoration:none }

.hero{
  padding:34px 0 18px;
  background:
    radial-gradient(1200px 480px at 10% 0%, rgba(90,138,42,.18), rgba(255,255,255,0)),
    radial-gradient(900px 360px at 90% 10%, rgba(47,107,45,.12), rgba(255,255,255,0));
  border-bottom:1px solid var(--border);
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:stretch;
}
.hero h1{
  margin:10px 0 8px;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height:1.15;
}
.lede{color:var(--muted); font-size:1.06rem; margin:0}
.ctaRow{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
  padding:18px;
}
.heroPhoto{
  border-radius:var(--radius);
  border:1px solid var(--border);
  overflow:hidden;
  box-shadow: var(--shadow);
  min-height:240px;
  background:#ddd center/cover no-repeat;
}
.heroPhoto img{width:100%; height:100%; object-fit:cover; display:block}

.section{padding:26px 0}
.grid2{display:grid; grid-template-columns: 1fr 1fr; gap:16px}
.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}

h2{margin:0 0 10px; font-size:1.35rem}
h3{margin:0 0 8px; font-size:1.12rem}
ul.clean{margin:10px 0 0; padding-left:18px}
ul.clean li{margin:6px 0}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  border:1px solid var(--border);
  background:#fff;
  border-radius:12px;
  padding:11px 14px;
  font-weight:800;
  color:var(--text);
  cursor:pointer;
}
.btn:hover{background:rgba(28,36,26,.05); text-decoration:none}
.btn.primary{
  background:var(--accent);
  border-color: rgba(0,0,0,.04);
  color:white;
}
.btn.primary:hover{background:var(--accent2)}
.btn.ghost{
  background:transparent;
}

.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:10px;
}
.gallery img{
  width:100%;
  aspect-ratio: 1 / 1;
  object-fit:cover;
  border-radius:14px;
  border:1px solid var(--border);
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

.footer{
  border-top:1px solid var(--border);
  padding:22px 0;
  color:var(--muted);
}
.footerGrid{
  display:flex; gap:18px; flex-wrap:wrap; justify-content:space-between; align-items:flex-start;
}
.footer strong{color:var(--text)}

.formGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
label{display:block; font-weight:800; font-size:.95rem; margin:0 0 6px}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  font-size:1rem;
}
textarea{min-height:110px; resize:vertical}
.formActions{display:flex; gap:12px; flex-wrap:wrap; margin-top:12px}

.notice{
  border-left:4px solid var(--accent);
  background: rgba(90,138,42,.10);
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(90,138,42,.18);
  color:var(--muted);
}

.rate{
  display:flex; justify-content:space-between; gap:10px;
  padding:10px 0; border-top:1px dashed rgba(0,0,0,.10);
}
.rate:first-child{border-top:0; padding-top:0}
.rate b{white-space:nowrap}

@media (max-width: 860px){
  .heroGrid{grid-template-columns: 1fr; }
  .grid3{grid-template-columns: 1fr}
  .gallery{grid-template-columns: 1fr 1fr}
}
@media (max-width: 720px){
  .menu{display:none}
  .hamburger{display:inline-flex}
  .mobilePanel{display:block}
  .grid2{grid-template-columns:1fr}
  .formGrid{grid-template-columns:1fr}
  .brand img{height:38px}
}
/* GNNQ page layout */
.gnnqLayout{
  display:grid;
  grid-template-columns: 64px 1fr;
  gap:16px;
  align-items: stretch;
}

.gnnqSideTitle{
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: 900;
  letter-spacing: .5px;
  font-size: 28px;
  color: #1f3d1f;
  opacity: .85;
  padding: 10px 0;
  user-select: none;
}

.gnnqHeader{
  display:flex;
  gap:14px;
  align-items:flex-start;
}

.gnnqLogo{
  width:88px;
  height:auto;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  padding:8px;
}

.gnnqCounterRow{
  margin-top:8px;
  display:flex;
  justify-content: space-between;
  gap:12px;
  align-items:center;
}

.dropzone{
  border:2px dashed var(--border);
  border-radius:14px;
  padding:14px;
  background:#fff;
}

.dropzone.dragover{
  border-color:#1f6f43;
  background:#f2fbf5;
}

/* Better on small screens */
@media (max-width: 760px){
  .gnnqLayout{
    grid-template-columns: 1fr;
  }
  .gnnqSideTitle{
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 22px;
    padding: 0;
  }
}

