:root {
  --green: #1b4235;
  --accent: #edd3c5;
  --bg: #ece7e3;
  --muted: #b88364;
  --white: #fff;
  --black: #1a1a1a;
}

/* Reset */
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
}
body {
  font-family: Poppins, system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
  background: var(--bg);
  color: var(--black);
  padding-top: 56px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: var(--green);
  color: var(--white);
  z-index: 9999;
}
.navbar .nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}
.navbar .logo img {
  width: 28px;
  height: 28px;
}
.navbar .menu {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar .menu a {
  color: var(--white);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;
}
.navbar .menu a:hover {
  background: rgba(255, 255, 255, 0.13);
}
.navbar .hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}
.navbar .hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 4px 0;
}

/* Mobile Navbar */
@media (max-width:900px) {
  .navbar .hamburger { display: inline-flex; }
  .navbar .menu {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--green);
    flex-direction: column;
    padding: 12px 0;
    overflow: auto;
    z-index: 9998;
    transform: translateY(-100%);
    transition: transform .3s ease;
  }
  .navbar .menu.open { transform: translateY(0); }
  .navbar .menu a {
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
  }
  body.no-scroll { overflow: hidden; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 64vh;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1b4235 0%, #0f2f25 40%, #1b4235 100%);
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  width: 60vmax;
  height: 60vmax;
  filter: blur(40px);
  opacity: .7;
  border-radius: 50%;
}
.hero::before {
  left: -20vmax;
  top: -10vmax;
  background: radial-gradient(closest-side, rgba(237,211,197,0.35), rgba(237,211,197,0.12) 60%, transparent 70%);
  animation: blobA 18s ease-in-out infinite alternate;
}
.hero::after {
  right: -18vmax;
  bottom: -12vmax;
  background: radial-gradient(closest-side, rgba(184,131,100,0.28), rgba(184,131,100,0.1) 60%, transparent 70%);
  filter: blur(36px);
  opacity: .6;
  animation: blobB 22s ease-in-out infinite alternate;
}
@keyframes blobA {0%{transform:translate3d(0,0,0) rotate(0deg)}100%{transform:translate3d(8vmax,4vmax,0) rotate(12deg)}}
@keyframes blobB {0%{transform:translate3d(0,0,0) rotate(0deg)}100%{transform:translate3d(-6vmax,-3vmax,0) rotate(-10deg)}}
.hero-overlay { position: relative; z-index: 1; pointer-events: auto; text-align: center; color: var(--white); padding: 28px; }
.hero-overlay h1 { font-size: clamp(26px,6vw,52px); margin: 0 0 8px; text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.hero-overlay p { margin: 0 0 12px; opacity: .92; text-shadow: 0 1px 12px rgba(0,0,0,.3); }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 24px; }
.glass { background: rgba(255,255,255,0.66); border-radius: 16px; backdrop-filter: saturate(150%) blur(6px); -webkit-backdrop-filter: saturate(150%) blur(6px); }

/* Feature / Media */
.feature, .media { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; align-items: center; }
.feature.reverse { grid-template-columns: .8fr 1.2fr; }
.feature img, .media img { width: 100%; height: 220px; object-fit: cover; border-radius: 12px; box-shadow: 0 8px 28px rgba(0,0,0,0.08); }
@media(max-width:900px){ .feature, .feature.reverse, .media { grid-template-columns: 1fr; } }

/* Values Cards */
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.value-card { background: var(--white); border-radius: 16px; box-shadow: 0 8px 28px rgba(0,0,0,0.08); padding: 18px; transition: transform .3s ease, box-shadow .3s ease; }
.value-card:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(0,0,0,0.13); }
@media(max-width:900px){ .values{grid-template-columns:1fr;} }

/* Strip Gallery */
.strip { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.strip .tile { flex: 0 0 auto; width: 260px; height: 180px; border-radius: 16px; object-fit: cover; scroll-snap-align: center; box-shadow: 0 8px 28px rgba(0,0,0,0.08); transition: transform .3s ease; }
.strip .tile:hover { transform: scale(1.03); }
@media(max-width:900px){ .strip .tile{width:200px;height:140px;} }

/* Dome Gallery */
.dome { perspective: 1000px; overflow: hidden; }
.dome .ring { position: relative; width: 100%; height: 260px; transform-style: preserve-3d; }
.dome .ring .tile { position: absolute; top: 0; left: 50%; transform-origin: center center -380px; border-radius: 16px; width: 260px; height: 180px; object-fit: cover; box-shadow: 0 8px 28px rgba(0,0,0,0.08); }
@media(max-width:900px){ .dome .ring{height:200px;} .dome .ring .tile{width:200px;height:140px;transform-origin:center center -300px;} .dome{display:none;} .grid-gallery{display:grid;} }

/* Grid Gallery for mobile */
.grid-gallery{display:none; grid-template-columns:repeat(3,1fr); gap:12px;}
.grid-gallery img{width:100%; height:140px; object-fit:cover; border-radius:12px; box-shadow:0 8px 28px rgba(0,0,0,0.08);}

/* Buttons */
.btn { display: inline-block; background: var(--green); color: var(--white); border: 0; border-radius: 16px; padding: 10px 16px; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,0,0,0.15); }
.btn-outline { background: var(--white); color: var(--green); border: 2px solid var(--green); }

/* Footer */
.footer { padding: 24px 0; background: var(--green); color: var(--white); }
.footer .actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 12px 0; }
.footer .social { display: flex; gap: 12px; margin: 10px 0; }
.footer a { text-decoration: none; color: var(--white); }
.footer .btn { background: var(--white); color: var(--green); }
.footer .btn:hover { box-shadow: 0 10px 24px rgba(0,0,0,0.21); }

/* Responsive tweaks */
@media(max-width:900px){ .container{padding:16px;} .hero{min-height:52vh;} .hero-overlay{padding:20px;} }
@media(max-width:600px){ .btn{display:block;width:100%;} }
