:root{
  --bg:#0b0f14;
  --panel:#0f1620;
  --panel2:#101a26;
  --text:#e8eef7;
  --muted:#b8c6da;
  --border:#203042;
  --accent:#6ee7ff;
  --accent2:#a78bfa;
  --danger:#ff6b6b;
  --ok:#34d399;
  --link:#8be9ff;
  --linkVisited:#b9a6ff;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:radial-gradient(1200px 600px at 20% 0%, rgba(110,231,255,.10), transparent 55%),
             radial-gradient(900px 500px at 100% 30%, rgba(167,139,250,.10), transparent 55%),
             var(--bg);
  color:var(--text);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
  line-height:1.5;
}

a{color:var(--link);text-decoration:none}
a:hover{text-decoration:underline}
a:visited{color:var(--linkVisited)}

.container{max-width:1100px;margin:0 auto;padding:0 16px}
.section{padding:28px 0}
header{
  position:sticky;top:0;z-index:50;
  backdrop-filter:saturate(160%) blur(10px);
  background:rgba(11,15,20,.65);
  border-bottom:1px solid var(--border);
}
.nav{display:flex;align-items:center;justify-content:space-between;gap:12px; padding:12px 0}
.brand{display:flex;align-items:center;gap:10px;font-weight:700;color:var(--text)}
.logo{width:14px;height:14px;border-radius:6px;background:linear-gradient(135deg,var(--accent),var(--accent2))}
.navlinks{display:flex;gap:10px;flex-wrap:wrap}
.navlinks a{
  padding:8px 10px;border:1px solid transparent;border-radius:12px;
  color:var(--muted);
}
.navlinks a:hover{border-color:var(--border);color:var(--text);text-decoration:none;background:rgba(255,255,255,.03)}

.grid{display:grid;grid-template-columns:repeat(12,1fr);gap:14px}
.col-12{grid-column:span 12}
.col-7{grid-column:span 7}
.col-5{grid-column:span 5}
@media (max-width:900px){
  .col-7,.col-5{grid-column:span 12}
}

.card{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
}
.kicker{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
}
.small{font-size:14px;color:var(--muted)}
.hr{height:1px;background:var(--border);margin:12px 0}

label{display:block;margin:10px 0 6px;font-weight:600;color:var(--text)}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  background:rgba(16,26,38,.75);
  border:1px solid var(--border);
  border-radius:14px;
  color:var(--text);
  outline:none;
}
textarea{min-height:120px;resize:vertical}
input::placeholder, textarea::placeholder{color:rgba(184,198,218,.65)}
input:focus, select:focus, textarea:focus{border-color:rgba(110,231,255,.6);box-shadow:0 0 0 3px rgba(110,231,255,.12)}

.inline{display:flex;gap:10px;flex-wrap:wrap}
.inline > *{flex:1 1 220px}

button, .btn{
  appearance:none;
  border:1px solid rgba(110,231,255,.35);
  background:linear-gradient(135deg, rgba(110,231,255,.15), rgba(167,139,250,.12));
  color:var(--text);
  padding:10px 14px;
  border-radius:14px;
  cursor:pointer;
  font-weight:700;
}
button:hover, .btn:hover{filter:brightness(1.08)}
button:disabled{opacity:.55;cursor:not-allowed}

.notice{
  padding:12px 12px;border-radius:14px;border:1px solid var(--border);
  background:rgba(16,26,38,.6);
}
.notice.ok{border-color:rgba(52,211,153,.35)}
.notice.bad{border-color:rgba(255,107,107,.35)}
code{background:rgba(255,255,255,.06);padding:2px 6px;border-radius:8px;border:1px solid rgba(255,255,255,.10)}

.table{width:100%;border-collapse:collapse}
.table th,.table td{border-bottom:1px solid var(--border);padding:10px;vertical-align:top;text-align:left}
.table th{color:var(--muted);font-weight:700}

footer{border-top:1px solid var(--border);padding:18px 0;color:var(--muted);font-size:13px}


/* === DYH Cinematic upgrades === */
:root{
  --bg: #0b0f17;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --link: rgba(170, 210, 255, 1);
  --link2: rgba(210, 235, 255, 1);
  --accent: rgba(255, 80, 80, 1);
}
body{ background: radial-gradient(1200px 600px at 20% 0%, rgba(90,120,255,.18), transparent 60%),
              radial-gradient(900px 500px at 80% 20%, rgba(255,80,80,.12), transparent 55%),
              var(--bg);
      color: var(--text); }
a{ color: var(--link); }
a:hover{ color: var(--link2); }
.navbar, header, footer{ backdrop-filter: blur(10px); }
.hero{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
}
.hero-media{
  min-height: 360px;
  background-size: cover;
  background-position: center;
  position:relative;
}
.hero-media::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(11,15,23,.90) 0%, rgba(11,15,23,.35) 55%, rgba(11,15,23,.05) 100%);
}
.hero-copy{
  padding: 26px;
}
.hero-copy h1{ font-size: clamp(32px, 4vw, 48px); margin: 0 0 10px; }
.hero-copy p{ color: var(--muted); font-size: 1.05rem; line-height: 1.6; }
.pills{ display:flex; flex-wrap:wrap; gap:10px; margin-top:14px; }
.pill{
  padding:8px 12px; border-radius: 999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: var(--muted);
  font-size: .92rem;
}
.section-title{ margin: 42px 0 14px; font-size: 1.35rem; }
.card-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.card{
  grid-column: span 6;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}
.card:hover{ transform: translateY(-2px); border-color: rgba(210,235,255,.35); background: rgba(255,255,255,.07); }
@media (max-width: 900px){ .card{ grid-column: span 12; } }
.card-img{ height: 210px; background-size: cover; background-position:center; }
.card-body{ padding: 16px 16px 18px; }
.card-body h3{ margin: 0 0 8px; }
.card-body p{ margin: 0; color: var(--muted); line-height: 1.55; }
.cta-row{ display:flex; gap: 10px; flex-wrap:wrap; margin-top: 14px; }
.btn2{
  display:inline-block; padding: 10px 14px; border-radius: 12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text); text-decoration:none;
}
.btn2:hover{ border-color: rgba(210,235,255,.45); }
.btn-accent{ border-color: rgba(255,80,80,.35); }



/* ===== Visual upgrades: gallery band + section image grids ===== */
.media-gallery-band { padding: 28px 0; }
.media-gallery-band .band-header { display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin-bottom:14px; }
.media-gallery-band .band-header h2 { margin:0; }
.media-gallery-band .band-header p { margin:0; opacity:.85; max-width: 680px; }
.band-scroll { display:flex; gap:14px; overflow:auto; padding-bottom:8px; scroll-snap-type:x mandatory; }
.band-card { flex:0 0 auto; width:220px; border-radius:16px; overflow:hidden; position:relative; text-decoration:none; scroll-snap-align:start; }
.band-card img { width:100%; height:140px; object-fit:cover; display:block; filter:contrast(1.05) saturate(1.05); }
.band-caption { position:absolute; left:10px; bottom:10px; padding:6px 10px; border-radius:999px; font-size:12px; backdrop-filter: blur(10px); background: rgba(0,0,0,.45); color:#fff; }

.section-image-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:12px; margin-top:12px; }
.section-image-grid img { width:100%; height:200px; object-fit:cover; border-radius:16px; display:block; }
.flowers-grid { display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:12px; margin-top:14px; }
.flowers-tile img { width:100%; height:160px; object-fit:cover; border-radius:16px; display:block; }
@media (max-width: 900px) {
  .flowers-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .section-image-grid img { height:170px; }
  .flowers-tile img { height:150px; }
}
