/* ==========================================================================
   Solis Goods LLC — Shared Stylesheet
   Everyday essentials, thoughtfully designed.
   ========================================================================== */

:root {
  --bg: #ffffff;
  --bg-soft: #f7f5f1;
  --bg-dark: #16150f;
  --ink: #16150f;
  --ink-2: #3c3931;
  --muted: #6e6960;
  --muted-2: #918b80;
  --line: #e8e4dc;
  --line-2: #d8d3c8;
  --accent: #b9762f;
  --accent-dark: #9c6325;
  --accent-soft: #f3e7d7;

  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 22px;
  --max: 1180px;

  --shadow-sm: 0 1px 2px rgba(22, 21, 15, 0.05);
  --shadow: 0 14px 34px -18px rgba(22, 21, 15, 0.28);

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, "Noto Sans", sans-serif;
}

/* ------------------------------------------------------------------ Reset */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1.15;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

::selection {
  background: var(--accent-soft);
  color: var(--ink);
}

/* -------------------------------------------------------------- Utilities */

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 104px 0;
}

.section--soft {
  background: var(--bg-soft);
}

.section--tight {
  padding: 72px 0;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(28px, 3.4vw, 40px);
  max-width: 720px;
}

.section-lead {
  margin-top: 18px;
  max-width: 640px;
  color: var(--muted);
  font-size: 17px;
}

.section-head {
  margin-bottom: 56px;
}

.section-head--center {
  text-align: center;
}

.section-head--center .section-title,
.section-head--center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

/* ---------------------------------------------------------------- Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 550;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease,
    border-color 0.18s ease, transform 0.18s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--ink);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-dark);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line-2);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: var(--ink);
}

.btn--block {
  width: 100%;
}

/* ----------------------------------------------------------------- Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.brand__mark {
  width: 26px;
  height: 26px;
  flex: none;
}

.brand__sub {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: -4px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav__links a {
  font-size: 15px;
  color: var(--ink-2);
  transition: color 0.16s ease;
}

.nav__links a:hover {
  color: var(--accent);
}

.nav__cta {
  display: inline-flex;
}

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  cursor: pointer;
}

.nav__toggle span {
  position: relative;
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
}

.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
}

.nav__toggle span::before {
  top: -5px;
}

.nav__toggle span::after {
  top: 5px;
}

/* ------------------------------------------------------------------- Hero */

.hero {
  padding: 88px 0 96px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 78%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 64px;
  align-items: center;
}

.hero__title {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.hero__title em {
  font-style: normal;
  color: var(--accent);
}

.hero__lead {
  margin-top: 22px;
  max-width: 560px;
  font-size: 18px;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

.hero__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 550;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}

/* ---------------------------------------------------------------- Marque */

.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.trust__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 26px 0;
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-2);
}

.trust__item svg {
  flex: none;
  color: var(--accent);
}

/* -------------------------------------------------------------- Products */

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
}

.product:hover {
  border-color: var(--line-2);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.product__media {
  position: relative;
  background: var(--bg-soft);
}

.product__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.product__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px;
}

.product__name {
  font-size: 18px;
  letter-spacing: -0.02em;
}

.product__desc {
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--muted);
}

.product__specs {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--line-2);
  display: grid;
  gap: 7px;
}

.product__specs li {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}

.product__specs b {
  flex: none;
  width: 68px;
  font-weight: 550;
  color: var(--ink-2);
}

.product__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.product__price {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.product__price small {
  display: block;
  font-size: 11.5px;
  font-weight: 450;
  letter-spacing: 0;
  color: var(--muted-2);
}

.product__cta {
  font-size: 14px;
  font-weight: 550;
  color: var(--accent-dark);
  border-bottom: 1px solid var(--accent-soft);
  padding-bottom: 2px;
  transition: border-color 0.18s ease;
}

.product__cta:hover {
  border-bottom-color: var(--accent-dark);
}

.products__note {
  margin-top: 34px;
  text-align: center;
  font-size: 13.5px;
  color: var(--muted-2);
}

/* ------------------------------------------------------------- Standards */

.standards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.standard {
  padding: 34px 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.standard__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  margin-bottom: 22px;
}

.standard h3 {
  font-size: 18px;
}

.standard p {
  margin-top: 12px;
  font-size: 14.5px;
  color: var(--muted);
}

/* ----------------------------------------------------------------- About */

.about__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 68px;
  align-items: start;
}

.about__title {
  font-size: clamp(28px, 3.4vw, 40px);
}

.about__body p + p {
  margin-top: 18px;
}

.about__body p {
  color: var(--muted);
  font-size: 16.5px;
}

.about__body p:first-child {
  color: var(--ink-2);
  font-size: 18px;
}

.about__facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 40px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.about__fact {
  background: var(--bg);
  padding: 20px 22px;
}

.about__fact dt {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.about__fact dd {
  margin: 6px 0 0;
  font-size: 15px;
  color: var(--ink-2);
}

/* ------------------------------------------------------------------- FAQ */

.faq {
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq__item {
  border-bottom: 1px solid var(--line);
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 4px;
  background: none;
  border: 0;
  text-align: left;
  font-size: 17px;
  font-weight: 550;
  letter-spacing: -0.02em;
  cursor: pointer;
}

.faq__icon {
  position: relative;
  flex: none;
  width: 14px;
  height: 14px;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 1.5px;
  background: var(--muted);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.faq__icon::after {
  transform: rotate(90deg);
}

.faq__item.is-open .faq__icon::after {
  transform: rotate(0deg);
  opacity: 0;
}

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.26s ease;
}

.faq__item.is-open .faq__a {
  grid-template-rows: 1fr;
}

.faq__a > div {
  overflow: hidden;
}

.faq__a p {
  padding: 0 40px 26px 4px;
  font-size: 15.5px;
  color: var(--muted);
}

.faq__a a {
  color: var(--accent-dark);
  border-bottom: 1px solid var(--accent-soft);
}

/* --------------------------------------------------------------- Contact */

.contact__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.contact__list {
  margin-top: 32px;
  display: grid;
  gap: 22px;
}

.contact__row {
  display: flex;
  gap: 14px;
}

.contact__row svg {
  flex: none;
  margin-top: 3px;
  color: var(--accent);
}

.contact__row dt {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.contact__row dd {
  margin: 5px 0 0;
  font-size: 15.5px;
  color: var(--ink-2);
  line-height: 1.55;
}

.contact__row a {
  border-bottom: 1px solid var(--line-2);
}

.contact__row a:hover {
  border-bottom-color: var(--accent);
  color: var(--accent-dark);
}

.form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}

.form__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 550;
  color: var(--ink-2);
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 15px;
  transition: border-color 0.16s ease, background-color 0.16s ease;
}

.field textarea {
  resize: vertical;
  min-height: 132px;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  background: var(--bg);
  border-color: var(--accent);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted-2);
}

.form__note {
  margin-top: 16px;
  font-size: 12.5px;
  color: var(--muted-2);
  line-height: 1.6;
}

.form__status {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 14px;
}

.form__status.is-visible {
  display: block;
}

/* ---------------------------------------------------------------- Footer */

.site-footer {
  background: var(--bg-dark);
  color: #cfcbc2;
  padding: 76px 0 0;
  font-size: 14.5px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 56px;
}

.footer__brand .brand {
  color: #fff;
}

.footer__brand .brand__sub {
  color: #8b867c;
}

.footer__about {
  margin-top: 18px;
  max-width: 320px;
  color: #9c978d;
  font-size: 14px;
  line-height: 1.7;
}

.footer h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__links {
  display: grid;
  gap: 12px;
}

.footer__links a {
  color: #9c978d;
  transition: color 0.16s ease;
}

.footer__links a:hover {
  color: #fff;
}

.footer__contact {
  display: grid;
  gap: 14px;
  color: #9c978d;
  font-size: 14px;
  line-height: 1.6;
}

.footer__contact span {
  display: block;
  color: #6f6a61;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer__contact a:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 26px 0 34px;
}

.footer__compliance {
  font-size: 13px;
  color: #8b867c;
  line-height: 1.7;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
  margin-top: 18px;
}

.footer__legal a {
  color: #cfcbc2;
  font-size: 13.5px;
}

.footer__legal a:hover {
  color: #fff;
}

.footer__legal em {
  font-style: normal;
  color: #4f4b44;
}

.footer__copy {
  margin-top: 22px;
  font-size: 13px;
  color: #6f6a61;
}

/* ------------------------------------------------------- Legal (policy) */

.page-head {
  padding: 72px 0 44px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

.page-head h1 {
  font-size: clamp(30px, 4vw, 44px);
}

.page-head p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15.5px;
}

.legal {
  padding: 64px 0 96px;
}

.legal__inner {
  max-width: 760px;
}

.legal h2 {
  font-size: 20px;
  margin: 44px 0 12px;
}

.legal h2:first-child {
  margin-top: 0;
}

.legal h3 {
  font-size: 16.5px;
  margin: 26px 0 8px;
}

.legal p {
  color: var(--muted);
  font-size: 15.5px;
}

.legal p + p {
  margin-top: 14px;
}

.legal ul {
  margin: 14px 0 0;
  display: grid;
  gap: 10px;
}

.legal ul li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 15.5px;
}

.legal ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.legal a {
  color: var(--accent-dark);
  border-bottom: 1px solid var(--accent-soft);
}

.legal__meta {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}

.legal__note {
  margin-top: 44px;
  padding: 20px 22px;
  border-left: 3px solid var(--accent);
  background: var(--bg-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.legal__note p {
  font-size: 14.5px;
}

/* ------------------------------------------------------------ Responsive */

@media (max-width: 1000px) {
  .hero__grid,
  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .products,
  .standards {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__media img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 820px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .site-header.is-open .nav__links {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 20px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .nav__links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .section {
    padding: 76px 0;
  }

  .trust__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .products,
  .standards,
  .form__row,
  .about__facts,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 56px 0 72px;
  }

  .section {
    padding: 64px 0;
  }

  .form {
    padding: 24px;
  }

  .section-head {
    margin-bottom: 40px;
  }
}
