/* Uro Zen – shared redesign styles (2026) */
:root{
  --bg: #fbfaf7;
  --surface: #ffffff;
  --surface-2: #f4f1ea;
  --ink: #14161a;
  --ink-2: #3b414a;
  --muted: #6a7381;
  --line: rgba(20,22,26,.12);
  --shadow: 0 22px 60px rgba(17,24,39,.10);
  --shadow-2: 0 10px 30px rgba(17,24,39,.08);

  --accent: #1f6f78;     /* deep teal */
  --accent-2:#d86b4a;    /* terracotta */
  --accent-3:#2b2f3a;    /* graphite */
  --accent-soft: rgba(31,111,120,.10);
  --accent-soft-2: rgba(216,107,74,.12);

  --radius: 18px;
  --radius-lg: 28px;

  --container: 1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(900px 420px at 10% -10%, rgba(31,111,120,.18), transparent 55%),
    radial-gradient(860px 380px at 95% 0%, rgba(216,107,74,.16), transparent 55%),
    radial-gradient(760px 420px at 70% 110%, rgba(47,75,255,.08), transparent 60%),
    var(--bg);
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; border-radius: 16px; }

.page{ min-height:100vh; display:flex; flex-direction:column; }

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

/* Top tag */
.top-tag{
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: rgba(255,255,255,.65);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.top-tag .container{
  display:flex;
  align-items:center;
  justify-content:center;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Header */
.site-header{
  position: sticky;
  top:0;
  z-index: 30;
  background: rgba(251,250,247,.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .container{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 0;
}
.brand-mark{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .04em;
  color: #fff;
  background:
    radial-gradient(circle at 20% 15%, rgba(255,255,255,.55), transparent 55%),
    linear-gradient(145deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 1px rgba(255,255,255,.7), 0 14px 35px rgba(31,111,120,.22);
  flex: 0 0 auto;
}
.brand-name{
  display:flex;
  flex-direction:column;
  line-height: 1.1;
  min-width:0;
}
.brand-name strong{
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-3);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.brand-name span{
  font-size: 12px;
  color: var(--muted);
}
.header-actions{
  display:flex;
  gap: 10px;
  align-items:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 650;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.8);
  color: var(--ink);
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  box-shadow: 0 10px 26px rgba(17,24,39,.06);
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(17,24,39,.10);
  border-color: rgba(31,111,120,.28);
}
.btn:active{ transform: translateY(0); }
.btn-primary{
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), #1f7f6d);
  color:#fff;
  box-shadow: 0 18px 42px rgba(31,111,120,.18);
}
.btn-primary:hover{
  border-color: transparent;
  background: linear-gradient(135deg, #1a5f66, #1b6f5f);
}
.btn-ghost{
  background: transparent;
  box-shadow:none;
}

/* Hero */
.hero{
  padding: 26px 0 8px;
}
.hero-grid{
  display:grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, .9fr);
  gap: 18px;
  align-items: stretch;
}
.hero-card{
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-main{
  padding: 28px 26px 26px;
  position: relative;
}
.kicker{
  font-size: 12px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}
h1,h2,h3{
  font-family: "Cormorant Garamond", ui-serif, Georgia, "Times New Roman", serif;
  letter-spacing: .01em;
}
h1{
  font-size: 38px;
  line-height: 1.15;
  margin:0 0 14px;
  color: var(--accent-3);
}
.lead{
  font-size: 15px;
  color: var(--ink-2);
  max-width: 64ch;
  margin: 0 0 18px;
}
.hero-pills{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin: 14px 0 18px;
  padding:0;
  list-style:none;
}
.pill{
  font-size: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  color: var(--ink-2);
}
.pill strong{ color: var(--ink); }
.hero-cta{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  align-items:center;
  margin-top: 12px;
}
.hero-note{
  font-size: 12px;
  color: var(--muted);
}

.hero-side{
  padding: 16px;
  display:flex;
  flex-direction:column;
  gap: 12px;
  background:
    radial-gradient(700px 240px at 20% 0%, rgba(31,111,120,.14), transparent 55%),
    radial-gradient(520px 240px at 90% 30%, rgba(216,107,74,.12), transparent 55%),
    rgba(255,255,255,.72);
}
.media{
  border-radius: 22px;
  border: 1px solid var(--line);
  overflow:hidden;
  background: var(--surface);
  box-shadow: var(--shadow-2);
}
.media img{
  border-radius: 0;
  width:100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.side-card{
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.78);
  padding: 14px 14px 12px;
}
.side-card h3{
  margin: 0 0 6px;
  font-size: 18px;
  color: var(--accent-3);
}
.side-card p{
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--ink-2);
}
.side-list{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
}

/* Sections */
.section{
  padding: 26px 0;
}
.section-header{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}
.section-title{
  margin:0;
  font-size: 30px;
  color: var(--accent-3);
}
.section-sub{
  margin: 0;
  max-width: 70ch;
  color: var(--muted);
  font-size: 14px;
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-2);
  padding: 16px 16px 14px;
}
.card .meta{
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 6px;
}
.card h3{
  margin: 0 0 6px;
  font-size: 20px;
  color: var(--accent-3);
}
.card p{
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
}

.split{
  display:grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 14px;
  align-items:start;
}
.callout{
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31,111,120,.22);
  background: linear-gradient(180deg, rgba(31,111,120,.08), rgba(255,255,255,.85));
  padding: 16px 16px 14px;
}
.callout strong{ color: var(--accent-3); }
.callout p{ margin:0; color: var(--ink-2); font-size: 14px; }

/* Details/accordion */
details{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow-2);
  padding: 14px 14px 12px;
}
details + details{ margin-top: 10px; }
summary{
  cursor:pointer;
  list-style:none;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 750;
  color: var(--accent-3);
  font-size: 15px;
}
summary::-webkit-details-marker{ display:none; }
summary .hint{
  font-weight: 650;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}
details .answer{
  margin-top: 10px;
  color: var(--ink-2);
  font-size: 14px;
}

/* Legal / content pages */
.content{
  padding: 20px 0 30px;
}
.paper{
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 22px 22px 20px;
}
.paper h1{
  font-size: 34px;
  margin: 0 0 14px;
}
.paper h2{
  font-size: 22px;
  margin: 22px 0 8px;
  color: var(--accent-3);
}
.paper p, .paper li{
  color: var(--ink-2);
  font-size: 14px;
}
.paper a{
  color: var(--accent);
  border-bottom: 1px solid rgba(31,111,120,.35);
}
.paper a:hover{ border-bottom-color: rgba(31,111,120,.65); }

/* Footer */
.site-footer{
  margin-top:auto;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(10px);
}
.site-footer .container{
  padding-top: 18px;
  padding-bottom: 18px;
}
.footer-top{
  display:flex;
  flex-wrap:wrap;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap: 10px 14px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 650;
}
.footer-links a{
  border-bottom: 1px solid transparent;
}
.footer-links a:hover{
  border-bottom-color: rgba(216,107,74,.55);
}
.footer-disclosures{
  padding-top: 12px;
  color: var(--muted);
  font-size: 11px;
}
.footer-disclosures p{ margin: 6px 0; }
.footer-bottom{
  padding-top: 10px;
  color: rgba(20,22,26,.55);
  font-size: 11px;
  text-align:center;
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split{ grid-template-columns: 1fr; }
}
@media (max-width: 640px){
  h1{ font-size: 28px; }
  .paper h1{ font-size: 28px; }
  .section-title{ font-size: 24px; }
  .grid-3{ grid-template-columns: 1fr; }
  .btn{ padding: 10px 14px; }
}

