/* Elaren Group Ltd. — one-page site
   Theme: Sunlit Orchard (warm gold / cream / orchard green) */

@font-face { font-family: 'Bitter'; font-weight: 400; font-style: normal; src: url('fonts/Bitter-400.woff2') format('woff2'); font-display: swap; }
@font-face { font-family: 'Bitter'; font-weight: 600; font-style: normal; src: url('fonts/Bitter-600.woff2') format('woff2'); font-display: swap; }
@font-face { font-family: 'Bitter'; font-weight: 700; font-style: normal; src: url('fonts/Bitter-700.woff2') format('woff2'); font-display: swap; }
@font-face { font-family: 'Karla'; font-weight: 400; font-style: normal; src: url('fonts/Karla-400.woff2') format('woff2'); font-display: swap; }
@font-face { font-family: 'Karla'; font-weight: 500; font-style: normal; src: url('fonts/Karla-500.woff2') format('woff2'); font-display: swap; }
@font-face { font-family: 'Karla'; font-weight: 600; font-style: normal; src: url('fonts/Karla-600.woff2') format('woff2'); font-display: swap; }

:root {
  --ink: #2c2013;
  --paper: #fffaf0;
  --paper-raised: #fff2d8;
  --sun: #f5a524;
  --sun-deep: #d9820a;
  --leaf: #2f7a4f;
  --leaf-deep: #245f3d;
  --rule: #f1dfb0;
  --muted: #8a6b3a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Karla', sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

a { color: inherit; }
img { max-width: 100%; min-width: 0; display: block; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

/* header */
header.site {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 250, 240, .92);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid var(--rule);
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.wordmark {
  font-family: 'Bitter', serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
  text-decoration: none;
}
nav.primary {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav.primary a {
  font-family: 'Karla', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
  transition: color .15s ease, border-color .15s ease;
}
nav.primary a:hover,
nav.primary a:focus-visible {
  color: var(--ink);
  border-color: var(--sun);
}
.nav-toggle { display: none; }

.btn {
  display: inline-block;
  font-family: 'Karla', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: .02em;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--leaf);
  color: #fff;
  background: var(--leaf);
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}
.btn:hover, .btn:focus-visible {
  background: var(--leaf-deep);
  border-color: var(--leaf-deep);
  transform: translateY(-1px);
}
.btn.ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn.ghost:hover, .btn.ghost:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

/* hero */
.hero {
  position: relative;
  padding: 88px 0 84px;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -160px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(245,165,36,.35) 0%, rgba(245,165,36,.12) 45%, rgba(245,165,36,0) 72%);
  pointer-events: none;
}
.hero .wrap { position: relative; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 48px;
  align-items: center;
}
.hero-inner > * { min-width: 0; }
.eyebrow {
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--sun-deep);
  margin: 0 0 18px;
}
h1 {
  font-family: 'Bitter', serif;
  font-weight: 700;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  max-width: 16ch;
  text-wrap: balance;
}
.hero .lede {
  font-size: 18px;
  line-height: 1.65;
  color: #5a4626;
  max-width: 52ch;
  margin: 0 0 34px;
}
.hero .actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-photos {
  position: relative;
  height: 380px;
}
.hero-photo {
  position: absolute;
  width: 64%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 18px;
  border: 6px solid #fff;
  box-shadow: 0 20px 40px rgba(60, 40, 10, .22);
}
.hero-photo--a {
  top: 0;
  left: 4%;
  transform: rotate(-5deg);
  z-index: 1;
}
.hero-photo--b {
  bottom: 0;
  right: 0;
  transform: rotate(5deg);
  z-index: 2;
}

/* sections */
section {
  padding: 72px 0;
  border-bottom: 1px solid var(--rule);
}
section:last-of-type { border-bottom: none; }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
h2 {
  font-family: 'Bitter', serif;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 30px);
  margin: 0;
  letter-spacing: -0.005em;
}
.section-note {
  font-size: 14px;
  color: var(--muted);
  max-width: 34ch;
  margin: 0;
}

/* products */
.product-group-label {
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--sun-deep);
  margin: 36px 0 16px;
}
.product-group-label--first { margin-top: 0; }

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 8px;
}
.cards.cards-4 {
  grid-template-columns: repeat(4, 1fr);
}
.card {
  min-width: 0;
  background: var(--paper-raised);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 20px 20px 26px;
}
.card-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid #fff;
  box-shadow: 0 8px 18px rgba(60, 40, 10, .18);
  margin-bottom: 16px;
}
.card h3 {
  font-family: 'Bitter', serif;
  font-weight: 600;
  font-size: 19px;
  margin: 0 0 10px;
}
.card p {
  font-size: 15px;
  line-height: 1.6;
  color: #5a4626;
  margin: 0;
}

/* partner */
.partner-badge {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--paper-raised);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 32px 40px;
  flex-wrap: wrap;
}
.partner-logo {
  height: 68px;
  width: auto;
  flex-shrink: 0;
}
.partner-badge p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #5a4626;
  max-width: 52ch;
}

/* contact */
.contact-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  background: var(--paper-raised);
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 34px 36px;
}
.contact-info p {
  margin: 0 0 6px;
  font-size: 15.5px;
}
.contact-info .email {
  font-family: 'Bitter', serif;
  font-weight: 600;
  font-size: 24px;
  text-decoration: none;
  color: var(--leaf-deep);
  border-bottom: 2px solid var(--sun);
}
.contact-info .location {
  color: var(--muted);
  font-size: 14px;
  margin-top: 14px;
}

/* footer */
footer.site {
  padding: 28px 0 40px;
}
footer.site .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photos { height: 300px; max-width: 420px; margin: 0 auto; }
  .cards.cards-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  nav.primary { display: none; }
  .hero { padding: 60px 0 52px; }
  section { padding: 52px 0; }
  .cards, .cards.cards-4 { grid-template-columns: 1fr; }
  .contact-block { align-items: flex-start; padding: 26px 24px; }
}
