/* solarbaked.com — site.css */

:root {
  --sun: #ffb000;
  --sun-deep: #f47b20;
  --crust: #9b4f18;
  --toast: #d9822b;
  --cream: #fff4dc;
  --flour: #fffaf0;
  --chocolate: #3a2116;
  --charcoal: #17120d;
  --ink: #24170f;
  --muted: #735b48;
  --line: rgba(58, 33, 22, 0.15);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(58, 33, 22, 0.18);
  --shadow-soft: 0 14px 36px rgba(58, 33, 22, 0.12);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 176, 0, 0.22), transparent 34rem),
    radial-gradient(circle at 85% 8%, rgba(244, 123, 32, 0.16), transparent 28rem),
    linear-gradient(180deg, #fffaf0 0%, #fff4dc 48%, #fffaf0 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(58, 33, 22, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 33, 22, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  z-index: -1;
}

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

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

p {
  margin: 0 0 1rem;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 240, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  letter-spacing: -0.04em;
  font-size: clamp(1.45rem, 2vw, 2rem);
  color: var(--chocolate);
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 32% 26%, #ffe7a0 0 13%, transparent 14%),
    linear-gradient(135deg, var(--sun), var(--sun-deep));
  box-shadow: 0 10px 24px rgba(244, 123, 32, 0.32);
  font-weight: 950;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(36, 23, 15, 0.78);
  font-size: 0.94rem;
  font-weight: 800;
  transition: 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--chocolate);
  background: rgba(255, 176, 0, 0.17);
}

.nav-links .nav-cta,
.nav-cta {
  background: var(--chocolate);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(58, 33, 22, 0.18);
}

.nav-links .nav-cta:hover,
.nav-cta:hover {
  background: #000;
  color: var(--white);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 86px 0;
  background:
    linear-gradient(90deg, rgba(23, 18, 13, 0.82), rgba(23, 18, 13, 0.45), rgba(23, 18, 13, 0.12)),
    var(--hero-image, linear-gradient(135deg, #f47b20, #ffb000));
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(23, 18, 13, 0.66));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero-copy {
  max-width: 800px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow.dark {
  border-color: var(--line);
  background: rgba(255, 176, 0, 0.14);
  color: var(--crust);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(3.3rem, 8vw, 7.7rem);
  line-height: 0.88;
  letter-spacing: -0.085em;
  max-width: 960px;
}

.hero h1 span,
.page-hero h1 span {
  color: var(--sun);
}

.hero .lede {
  max-width: 690px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.16rem, 2.1vw, 1.55rem);
  line-height: 1.45;
  font-weight: 650;
}

.hero-actions,
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 950;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: 180ms ease;
}

.button.primary,
.btn.primary {
  color: var(--chocolate);
  background: linear-gradient(135deg, var(--sun), #ffe28a);
  box-shadow: 0 16px 34px rgba(255, 176, 0, 0.32);
}

.button.secondary,
.btn.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.button.dark,
.btn.dark {
  color: var(--white);
  background: var(--chocolate);
}

.button.light,
.btn.light {
  color: var(--chocolate);
  background: var(--white);
  border-color: var(--line);
}

.button:hover,
.btn:hover {
  transform: translateY(-2px);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 44px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-size: 0.92rem;
  font-weight: 850;
}

.section {
  padding: 92px 0;
}

.section.tight {
  padding: 58px 0;
}

.section.dark {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 176, 0, 0.18), transparent 30rem),
    linear-gradient(135deg, #24170f, #120d09);
}

.section.sun {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.55), transparent 28rem),
    linear-gradient(135deg, var(--sun), var(--sun-deep));
}

.section-header {
  width: min(850px, 100%);
  margin-bottom: 34px;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.kicker {
  margin: 0 0 10px;
  color: var(--sun-deep);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.dark .kicker {
  color: var(--sun);
}

.section h2,
.page-content h2 {
  margin: 0;
  color: var(--chocolate);
  font-size: clamp(2.35rem, 5vw, 5.15rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.dark h2,
.dark .section h2 {
  color: var(--white);
}

.section-header p,
.big-copy {
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.65;
  font-weight: 600;
}

.dark .section-header p,
.dark .big-copy {
  color: rgba(255, 255, 255, 0.76);
}

.grid {
  display: grid;
  gap: 22px;
}

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

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.card.pad {
  padding: 30px;
}

.card.dark-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.card-body {
  padding: 26px;
}

.card h3 {
  margin: 0 0 10px;
  color: var(--chocolate);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.dark-card h3,
.dark .card h3 {
  color: var(--white);
}

.card p {
  color: var(--muted);
  font-weight: 560;
}

.dark .card p,
.dark-card p {
  color: rgba(255, 255, 255, 0.72);
}

.card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  color: var(--sun-deep);
  font-weight: 950;
}

.card-link::after {
  content: "→";
  margin-left: 8px;
  transition: 180ms ease;
}

.card-link:hover::after {
  transform: translateX(4px);
}

.feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.feature-media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--cream);
}

.feature-media img {
  width: 100%;
  height: min(560px, 58vw);
  min-height: 360px;
  object-fit: cover;
}

.feature-copy {
  padding: clamp(10px, 3vw, 34px);
}

.feature-copy h2 {
  margin: 0 0 18px;
  color: var(--chocolate);
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.feature-copy p {
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 580;
}

.list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding: 14px 16px 14px 44px;
  border-radius: 18px;
  background: rgba(255, 176, 0, 0.12);
  border: 1px solid rgba(155, 79, 24, 0.12);
  font-weight: 800;
}

.list li::before {
  content: "☀";
  position: absolute;
  left: 16px;
  top: 13px;
  color: var(--sun-deep);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.stat strong {
  display: block;
  color: var(--chocolate);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 850;
}

.recipe-strip {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 18px;
}

.recipe-tile {
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--chocolate);
  box-shadow: var(--shadow-soft);
}

.recipe-tile.large {
  min-height: 420px;
}

.recipe-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recipe-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(23, 18, 13, 0.76));
}

.recipe-tile div {
  position: relative;
  z-index: 2;
  padding: 24px;
  color: var(--white);
}

.recipe-tile h3 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.recipe-tile p {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.page-hero {
  padding: 92px 0 76px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(23, 18, 13, 0.86), rgba(23, 18, 13, 0.48)),
    var(--hero-image, linear-gradient(135deg, #9b4f18, #f47b20));
  background-size: cover;
  background-position: center;
}

.page-hero .container {
  display: grid;
  gap: 18px;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  font-weight: 650;
}

.page-content {
  padding: 70px 0 92px;
}

.page-content h2 {
  margin-top: 48px;
  margin-bottom: 18px;
}

.page-content h3 {
  margin: 34px 0 12px;
  color: var(--chocolate);
  font-size: clamp(1.45rem, 2.6vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.page-content p,
.page-content li {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 560;
}

.page-content a {
  color: var(--sun-deep);
  font-weight: 850;
  border-bottom: 1px solid rgba(244, 123, 32, 0.36);
}

.callout {
  margin: 34px 0;
  padding: clamp(26px, 4vw, 44px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(255, 176, 0, 0.28), transparent 20rem),
    var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.callout h2,
.callout h3 {
  margin-top: 0;
}

.cta-band {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: clamp(42px, 7vw, 78px);
  border-radius: 42px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 224, 138, 0.34), transparent 22rem),
    linear-gradient(135deg, #3a2116, #17120d);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  max-width: 820px;
  margin: 0;
  color: var(--white);
}

.cta-band p {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
  font-weight: 620;
}

.footer {
  color: rgba(255, 255, 255, 0.76);
  background: #120d09;
  padding: 54px 0 34px;
}

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

.footer h3,
.footer h4 {
  margin: 0 0 12px;
  color: var(--white);
  letter-spacing: -0.025em;
}

.footer p {
  color: rgba(255, 255, 255, 0.67);
}

.footer a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.footer a:hover {
  color: var(--sun);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
}

.notice {
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255, 176, 0, 0.12);
  border: 1px solid rgba(255, 176, 0, 0.22);
  color: var(--crust);
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--chocolate);
  background: rgba(255, 176, 0, 0.13);
  font-weight: 950;
}

td {
  color: var(--muted);
  font-weight: 600;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq details {
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.faq summary {
  cursor: pointer;
  color: var(--chocolate);
  font-size: 1.12rem;
  font-weight: 950;
}

.faq details p {
  margin: 14px 0 0;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 7px;
  color: var(--chocolate);
  font-weight: 900;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.form textarea {
  min-height: 150px;
  resize: vertical;
}

@media (max-width: 980px) {
  .navbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    min-height: 680px;
    padding: 72px 0;
  }

  .feature,
  .grid.two,
  .grid.three,
  .grid.four,
  .footer-grid,
  .recipe-strip {
    grid-template-columns: 1fr;
  }

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

  .recipe-tile,
  .recipe-tile.large {
    min-height: 330px;
  }
}

@media (max-width: 640px) {
  .container,
  .navbar,
  .hero-inner {
    width: min(100% - 28px, var(--max));
  }

  .brand {
    font-size: 1.35rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .nav-links {
    width: 100%;
    gap: 6px;
  }

  .nav-links a {
    padding: 9px 10px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 620px;
    background-position: center;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(3.05rem, 17vw, 4.9rem);
  }

  .hero-actions,
  .actions {
    flex-direction: column;
  }

  .button,
  .btn {
    width: 100%;
  }

  .section {
    padding: 68px 0;
  }

  .card.pad,
  .card-body,
  .callout {
    padding: 22px;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .feature-media img {
    min-height: 280px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
