/* ==========================================================================
   llen labs — design tokens & component styles
   ========================================================================== */

:root {
  --ll-bg:         rgb(250, 250, 247);
  --ll-text:       rgb(28,  26,  23);
  --ll-secondary:  rgb(90,  82,  73);
  --ll-label:      rgb(122, 113, 102);
  --ll-accent:     rgb(155, 106, 59);
  --ll-divider:    rgb(154, 147, 136);
  --ll-font:       'Instrument Sans', system-ui, sans-serif;
}

/* ==========================================================================
   Base
   ========================================================================== */

html,
body {
  background-color: var(--ll-bg);
  color: var(--ll-text);
  font-family: var(--ll-font);
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

/* ==========================================================================
   Page shell
   ========================================================================== */

.ll-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 64px;
  box-sizing: border-box;
}

@media (max-width: 767.98px) {
  .ll-page { padding: 40px 24px; }
}

@media (max-width: 575.98px) {
  .ll-page { padding: 32px 20px; }
}

.ll-content {
  width: 100%;
  max-width: 1152px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

@media (max-width: 767.98px) {
  .ll-content { gap: 36px; }
}

@media (max-width: 575.98px) {
  .ll-content { gap: 28px; }
}

/* ==========================================================================
   Logo
   ========================================================================== */

.ll-logo {
  display: block;
  height: 76px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 575.98px) {
  .ll-logo { height: 52px; }
}

/* ==========================================================================
   Hero quote
   ========================================================================== */

.ll-hero {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(24px, 4vw, 38px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--ll-text);
  text-align: center;
  max-width: 800px;
  margin: 0;
}

/* ==========================================================================
   Divider (short horizontal rule)
   ========================================================================== */

.ll-divider {
  width: 60px;
  height: 1px;
  background-color: var(--ll-divider);
  border: none;
  margin: 0;
}

/* ==========================================================================
   Section label — "What we do"
   ========================================================================== */

.ll-section-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ll-label);
  text-align: center;
  margin: 0;
}

/* ==========================================================================
   Services grid
   ========================================================================== */

.ll-services {
  width: 100%;
}

.ll-service {
  text-align: left;
}

.ll-service-num {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ll-accent);
  margin-bottom: 10px;
}

.ll-service-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ll-text);
  margin-bottom: 8px;
}

.ll-service-desc {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ll-secondary);
  margin: 0;
}

/* ==========================================================================
   Email row
   ========================================================================== */

.ll-email-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.ll-rule {
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--ll-divider);
  flex-shrink: 0;
}

.ll-email {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.24em;
  color: var(--ll-secondary);
  text-decoration: none;
}

.ll-email:hover {
  color: var(--ll-text);
}

/* ==========================================================================
   Language toggle
   ========================================================================== */

.ll-lang-toggle {
  position: fixed;
  top: 1.5rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 100;
}

.ll-lang-btn {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--ll-font);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--ll-label);
  cursor: pointer;
}

.ll-lang-btn:hover,
.ll-lang-btn[aria-pressed="true"] {
  color: var(--ll-text);
}

.ll-lang-sep {
  font-size: 10px;
  color: var(--ll-divider);
  user-select: none;
}
