/* uchon.life – static rebuild. Palette & type taken from the original Wix site. */
:root {
  --teal: #2a7c6f;
  --teal-hover: #2c8d7e;
  --teal-light: #bfd7d2;
  --card-border: #ceefe8;
  --bg: #fffefc;          /* header / footer / page */
  --bg-section: #fffdf8;  /* home sections */
  --text: #000;
  --price: #cd2109;
  /* Wix used Avenir Light (body) and Brandon Grotesque Light (headings) – both licensed
     to Wix only. Free look-alikes: Nunito Sans (Avenir) and Jost (Brandon/Futura-style). */
  --f-body: "Nunito Sans", "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --f-head: "Jost", "Josefin Sans", "Futura", "Century Gothic", sans-serif;
  --f-syne: "Syne", sans-serif;
  --f-questrial: "Questrial", sans-serif;
  --wrap: 940px;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--teal);
  font-family: var(--f-body); font-weight: 300; font-size: 16px; line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
a:hover { color: var(--teal-hover); }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--teal); color: #fff; padding: 8px 14px; z-index: 100; }
.skip-link:focus { left: 8px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- header ---------- */
.site-header { background: var(--bg); height: 240px; display: flex; flex-direction: column; align-items: center; }
.site-header .logo { margin-top: 74px; display: block; }
.site-header .logo img { width: 112px; height: auto; }
.nav-toggle { display: none; }
.site-nav ul { list-style: none; display: flex; gap: 0; margin: 0; padding: 0; margin-top: 83px; }
.site-nav a { display: block; padding: 4px 10px; font-size: 15px; text-decoration: none; color: var(--teal); letter-spacing: .01em; }
.site-nav a:hover { color: var(--teal-hover); text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 1px; }

/* ---------- generic ---------- */
.section-title { font-family: var(--f-head); font-weight: 300; font-size: 46px; line-height: 1.2; letter-spacing: .01em; text-transform: uppercase; color: var(--teal); margin: 0; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.btn { display: inline-block; font-family: var(--f-body); font-weight: 300; }
.full-img { width: 100%; object-fit: cover; }
.band.scientist { object-position: 67% 22%; }

/* ---------- home: hero ---------- */
.hero { position: relative; height: 740px; overflow: hidden; }
.hero picture, .hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-text { position: relative; z-index: 1; text-align: center; color: #fff; padding-top: 150px; }
.hero h1 { font-family: var(--f-head); font-weight: 300; font-size: 78px; line-height: 1.14; letter-spacing: .02em; margin: 0 auto; max-width: 560px; text-transform: uppercase; }
.hero p { font-family: var(--f-head); font-weight: 500; font-size: 26px; margin: 26px 0 0; text-shadow: 0 1px 3px rgba(0,0,0,.45); }

.about { background: var(--bg-section); text-align: center; padding: 120px 20px 32px; }
.about p { max-width: 780px; margin: 42px auto 0; font-size: 22px; line-height: 1.7; }
.band { height: 565px; }
.products-intro { background: var(--bg-section); text-align: center; padding: 128px 20px 120px; }
.products-intro p { margin: 14px 0 0; font-size: 18px; }
.products-banner { position: relative; height: 437px; color: #fff; text-align: center; overflow: hidden; }
.products-banner picture, .products-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.products-banner .inner { position: relative; padding-top: 180px; }
.products-banner h3 { font-family: var(--f-head); font-weight: 300; font-size: 33px; margin: 0; text-shadow: 0 1px 4px rgba(0,0,0,.35); }
.products-banner p { font-size: 18px; margin: 22px 0 0; }
.btn-ghost { margin-top: 22px; border: 1px solid #fff; border-radius: 30px; color: #fff; text-decoration: none; width: 232px; line-height: 42px; font-size: 16px; }
.btn-ghost:hover { background: rgba(255,255,255,.18); color: #fff; }

/* ---------- contact block (home + contact page) ---------- */
.contact { background: var(--bg-section); padding: 60px 20px 110px; }
.contact.page { background: var(--bg); padding-top: 60px; padding-bottom: 180px; }
.contact-grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 460px; gap: 60px; }
.contact-info { text-align: center; max-width: 360px; }
.contact-info .section-title { margin-top: 12px; }
.contact-info p { margin: 36px 0 0; font-size: 16px; }
.contact-info p + p { margin-top: 30px; }
.contact-info a { text-decoration: none; }
form.contact-form { display: grid; grid-template-columns: 1fr 1fr; column-gap: 10px; row-gap: 8px; }
.contact.page form.contact-form { row-gap: 26px; }
.field { display: flex; flex-direction: column; grid-column: span 2; }
.field.half { grid-column: span 1; }
.field label { font-size: 15px; padding-left: 5px; color: var(--teal); }
.field input, .field textarea {
  font: inherit; font-size: 16px; color: var(--text); background: transparent; border: 0;
  border-bottom: 1px solid var(--teal); border-radius: 0; padding: 10px 5px 6px; outline: none;
}
.field input:focus, .field textarea:focus { border-bottom-width: 2px; padding-bottom: 5px; }
.field textarea { height: 190px; resize: vertical; }
.field input:user-invalid, .field textarea:user-invalid { border-bottom-color: var(--price); }
.hp { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }
.form-actions { grid-column: span 2; }
.cf-turnstile { margin: 10px 0 12px; }
.btn-submit { width: 100%; height: 47px; background: var(--teal); color: #fff; border: 0; font-family: var(--f-body); font-weight: 300; font-size: 18px; cursor: pointer; margin-top: 4px; }
.btn-submit:hover { background: var(--teal-hover); }
.btn-submit[disabled] { opacity: .6; cursor: wait; }
.form-status { grid-column: span 2; margin: 0; font-size: 16px; min-height: 1.6em; }
.form-status.error { color: var(--price); }
/* no-JS fallback messages, shown via #fragment after the redirect */
.form-msg { display: none; }
.form-msg:target { display: block; }

/* ---------- post cards ---------- */
.post-list { max-width: var(--wrap); margin: 0 auto; display: grid; gap: 32px; }
.card { display: grid; grid-template-columns: 452px 1fr; border: 1px solid var(--card-border); min-height: 340px; background: var(--bg); text-decoration: none; color: var(--teal); }
.card-img { overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 26px 36px 30px; display: flex; flex-direction: column; min-width: 0; }
.card h2, .card h3 { font-weight: 400; margin: 0; overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.card p { margin: 14px 0 0; overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.card:hover h2, .card:hover h3 { color: var(--teal-hover); }
/* home variant: Syne title + Questrial excerpt (as configured on Wix) */
.home-posts { background: var(--bg); padding: 40px 20px 40px; }
.card.home h3 { font-family: var(--f-syne); font-size: 28px; line-height: 35px; }
.card.home p { font-family: var(--f-questrial); font-size: 16px; line-height: 24px; }
/* blog variant */
.card.blog h2 { font-family: var(--f-head); font-weight: 300; font-size: 29px; line-height: 40px; margin-top: 14px; }
.card.blog p { font-size: 17px; line-height: 24px; }
.card.blog hr { margin: auto 0 0; border: 0; border-top: 1px solid var(--card-border); width: 100%; }
.meta { display: flex; align-items: center; gap: 10px; font-size: 12px; line-height: 1.4; }
.avatar { width: 32px; height: 32px; border-radius: 50%; background: #c7c7c7; flex: none; display: grid; place-items: center; overflow: hidden; }
.avatar svg { width: 32px; height: 32px; }
.meta .when span + span::before { content: "\00b7"; margin: 0 6px; }

/* ---------- blog pages ---------- */
.blog-main { padding: 34px 20px 60px; }
.cat-nav { max-width: var(--wrap); margin: 0 auto 38px; display: flex; gap: 40px; font-size: 15px; }
.cat-nav a { text-decoration: none; }
.cat-nav a[aria-current="page"] { color: var(--teal-hover); text-decoration: underline; text-underline-offset: 5px; }

.post { max-width: var(--wrap); margin: 0 auto; border: 1px solid var(--card-border); padding: 58px 99px 60px; }
.post .meta { font-size: 14px; }
.post h1 { font-family: var(--f-head); font-weight: 300; font-size: 42px; line-height: 1.33; margin: 24px 0 44px; color: var(--teal); }
.prose { font-size: 18px; line-height: 1.52; }
.prose p { margin: 0 0 27px; }
.prose h2 { font-family: var(--f-body); font-size: 18px; font-weight: 700; margin: 34px 0 27px; line-height: 1.5; }
.prose figure { margin: 0 0 32px; }
.prose figure img { margin: 0 auto; max-width: 100%; max-height: 460px; width: auto; }
.table-wrap { overflow-x: auto; margin: 0 0 36px; }
.prose table { border-collapse: collapse; width: 100%; font-size: 15px; line-height: 1.45; }
.prose th, .prose td { border: 1px solid #d8d8d8; padding: 9px 10px; text-align: left; vertical-align: top; }
.prose th { font-weight: 700; }
.prose td { font-weight: 300; }
.post-footer { border-top: 1px solid var(--card-border); margin-top: 20px; padding-top: 22px; display: flex; gap: 10px; flex-wrap: wrap; }
.tag { border: 1px solid var(--teal); padding: 3px 12px; font-size: 13px; text-decoration: none; }
.recent { max-width: var(--wrap); margin: 30px auto 0; }
.recent-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 18px; }
.recent-head h2 { font-family: var(--f-body); font-weight: 400; font-size: 20px; margin: 0; }
.recent-head a { font-size: 15px; text-decoration: none; }
.recent-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.mini { border: 1px solid var(--card-border); text-decoration: none; display: block; }
.mini img { width: 100%; aspect-ratio: 290 / 163; object-fit: cover; }
.mini h3 { font-family: var(--f-head); font-weight: 300; font-size: 19px; line-height: 1.4; margin: 20px 24px 28px; overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }

/* ---------- products page ---------- */
.product { max-width: 940px; margin: 0 auto; padding: 38px 20px 100px; }
.product h1 { font-family: var(--f-body); font-style: italic; font-weight: 300; font-size: 56px; line-height: 1.2; color: var(--text); margin: 0 0 42px 16px; text-transform: uppercase; }
.product-grid { display: grid; grid-template-columns: 460px 1fr; gap: 38px; color: var(--text); }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px 6px; align-content: start; }
.gallery .big { grid-column: span 2; height: 150px; object-fit: contain; width: 100%; }
.gallery .big:first-child { object-fit: cover; }
.gallery .small { height: 96px; object-fit: contain; width: 100%; padding: 6px; }
.price { text-align: center; font-family: Arial, Helvetica, sans-serif; font-style: italic; font-weight: 700; color: var(--price); margin: 36px 0 0 30px; line-height: 1.25; }
.price span { display: block; font-size: 32px; }
.price strong { display: block; font-size: 46px; }
.product-text { font-size: 20px; line-height: 1.58; }
.product-text p { margin: 0 0 32px; }
.product-text ol { margin: 0; padding: 0; list-style: none; }
.product-text ul { margin: 0; padding-left: 32px; list-style: disc; }
.related { max-width: var(--wrap); margin: 0 auto; padding: 60px 20px 40px; }

/* ---------- about page ---------- */
.about-page { text-align: center; padding: 60px 20px 36px; }
.about-page p { max-width: 780px; margin: 42px auto 0; font-size: 17px; line-height: 1.66; }

/* ---------- footer ---------- */
.site-footer { background: var(--bg); text-align: center; padding: 38px 20px 34px; font-size: 16px; }
.site-footer a { text-decoration: none; }
.site-footer p { margin: 0; }
.site-footer p + p { margin-top: 44px; font-size: 14px; }

/* ---------- 404 ---------- */
.notfound { text-align: center; padding: 60px 20px 160px; }
.notfound p { font-size: 18px; }

/* ================= responsive ================= */
@media (max-width: 1100px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-info { max-width: none; }
}
@media (max-width: 980px) {
  .card { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .gallery { max-width: 460px; margin: 0 auto; }
  .post { padding: 40px 32px; }
  .recent-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 750px) {
  body { font-size: 16px; }
  .site-header { height: auto; flex-direction: row; justify-content: space-between; align-items: center; padding: 30px 24px 30px 24px; position: relative; }
  .site-header .logo { margin: 0; }
  .site-header .logo img { width: 76px; }
  .nav-toggle { display: block; background: none; border: 0; padding: 6px; cursor: pointer; color: var(--teal); }
  .nav-toggle span { display: block; width: 26px; height: 2px; background: currentColor; margin: 6px 0; }
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); z-index: 50; border-bottom: 1px solid var(--card-border); box-shadow: 0 8px 18px rgba(0,0,0,.06); }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; margin: 0; padding: 12px 0 18px; text-align: center; }
  .site-nav a { font-size: 20px; padding: 10px; }
  .no-js .site-nav { display: block; position: static; box-shadow: none; border: 0; }
  .no-js .site-header { flex-wrap: wrap; }

  .section-title { font-size: 30px; }
  .hero { height: auto; overflow: visible; }
  .hero picture, .hero img { position: static; height: 275px; }
  .hero-text { color: #2b2b2b; padding: 18px 20px 26px; background: #fff; }
  .hero h1 { font-size: 40px; max-width: 300px; font-weight: 300; }
  .hero p { font-size: 15px; font-weight: 600; margin-top: 10px; text-shadow: none; }
  .band { height: 275px; }
  .about { padding: 56px 16px 60px; }
  .about p { font-size: 22px; line-height: 1.8; margin-top: 22px; }
  .products-intro { padding: 70px 20px 70px; }
  .products-banner { height: 380px; }
  .products-banner .inner { padding: 120px 20px 0; }
  .products-banner h3 { font-size: 26px; }
  .contact, .contact.page { padding: 60px 28px 60px; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .contact-info p { margin-top: 22px; }
  .contact-info p + p { margin-top: 18px; }
  form.contact-form { row-gap: 26px; }
  .field.half { grid-column: span 2; }
  .field label { font-size: 18px; }
  .field input { padding-top: 40px; }
  .field textarea { height: 140px; }
  .home-posts { padding: 40px 0; }
  .post-list { gap: 38px; }
  .card { grid-template-columns: 1fr; min-height: 0; }
  .card-img img { aspect-ratio: 363 / 272; height: auto; }
  .card-body { padding: 36px 28px 60px; }
  .card.home h3 { font-size: 22px; line-height: 30px; }
  .card.home p { font-size: 16px; line-height: 28px; letter-spacing: .03em; }
  .card.blog h2 { font-size: 24px; line-height: 32px; }
  .blog-main { padding: 20px 0 40px; }
  .cat-nav { padding: 0 20px; }
  .post { border: 0; padding: 20px 20px 30px; }
  .post h1 { font-size: 30px; margin-bottom: 28px; }
  .prose { font-size: 17px; }
  .recent { padding: 0 20px; }
  .recent-grid { grid-template-columns: 1fr; }
  .product h1 { font-size: 40px; margin-left: 0; }
  .product-text { font-size: 18px; }
  .price { margin-left: 0; }
  .about-page p { font-size: 17px; }
}
