/*
Theme Name: Hey Client
Theme URI: https://example.com
Description: Custom landing page theme for consulting client, Hey-style.
Version: 1.0.0
Author: Your Name
Text Domain: hey-client
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --bg:          #F7F6F2;
  --surface:     #FFFFFF;
  --tinted:      #F0EEE8;
  --dark:        #16160E;
  --dark-surface:#1E1E15;
  --text:        #18180F;
  --muted:       #6B6B5A;
  --border:      #E2E0D8;
  --accent:      #2D6A4F;      /* deep forest green — trustworthy, professional */
  --accent-light:#D8EDE4;
  --accent-hover:#245C43;

  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;

  --nav-h:       68px;
  --radius:      10px;
  --radius-lg:   18px;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --transition:  0.22s var(--ease);
  --max-w:       1080px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 17px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.15rem; font-weight: 600; font-family: var(--font-body); }

p { color: var(--muted); line-height: 1.75; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.container--narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section--tinted { background: var(--tinted); }

.section--dark {
  background: var(--dark);
  color: #F7F6F2;
}

.section--dark p { color: rgba(247,246,242,0.6); }
.section--dark h2 { color: #F7F6F2; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(247, 246, 242, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  transition: opacity var(--transition);
}

.site-logo:hover { opacity: 0.6; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 100px;
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.01em;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(0,0,0,0.05);
}

.site-nav a.active {
  color: var(--text);
  font-weight: 600;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,106,79,0.25);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.2);
}

.btn--ghost:hover {
  background: rgba(0,0,0,0.05);
}

.btn--large {
  padding: 14px 32px;
  font-size: 0.95rem;
}

.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   SECTION HEADER / TAG
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}

.section-header h2 { margin: 12px 0 16px; }
.section-header p { font-size: 1rem; }

.section-tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-tag--light {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================================
   HERO
   ============================================================ */
.section--hero {
  padding: 100px 0 80px;
  overflow: hidden;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section--hero .container--narrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max-w);
}

.section__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(45,106,79,0.07) 0%, transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(45,106,79,0.05) 0%, transparent 40%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-content h1 {
  margin-bottom: 20px;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 420px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero floating stat cards */
.hero-visual {
  position: relative;
  height: 320px;
}

.hero-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: float 6s ease-in-out infinite;
}

.hero-card--1 { top: 20px;  left: 10%;  animation-delay: 0s; }
.hero-card--2 { top: 110px; right: 5%;  animation-delay: 1.5s; }
.hero-card--3 { bottom: 30px; left: 20%; animation-delay: 3s; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

.hero-card__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-card__value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all var(--transition);
  animation: bounce 2s ease-in-out infinite;
}

.scroll-hint:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   SPLIT LAYOUT (About & Solutions)
   ============================================================ */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.split-layout--reverse .split-layout__visual { order: -1; }

.split-layout__text .section-tag { margin-bottom: 16px; }
.split-layout__text h2 { margin-bottom: 20px; }
.split-layout__text p { margin-bottom: 16px; }

/* About visual */
.about-visual {
  position: relative;
  height: 380px;
}

.about-visual__block {
  position: absolute;
  border-radius: var(--radius-lg);
}

.about-visual__block--1 {
  width: 80%;
  height: 75%;
  background: var(--accent-light);
  bottom: 0;
  right: 0;
}

.about-visual__block--2 {
  width: 65%;
  height: 65%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  top: 0;
  left: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}

.about-visual__badge {
  position: absolute;
  bottom: 24px;
  left: -12px;
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(45,106,79,0.3);
}

/* About stats */
.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}

.stat__label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

/* ============================================================
   CARDS (Student Jobs)
   ============================================================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.card__icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.card h3 { margin-bottom: 10px; color: var(--text); }
.card p  { font-size: 0.92rem; margin-bottom: 20px; }

.card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}

.card__link:hover { gap: 10px; }

/* ============================================================
   OFFERS LIST
   ============================================================ */
.offers-list {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}

.offer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 32px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
  gap: 16px;
}

.offer-row:last-child { border-bottom: none; }

.offer-row:hover {
  background: var(--tinted);
}

.offer-row__left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.offer-row__tag {
  padding: 3px 12px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.offer-row__title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.offer-row__right {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.offer-row__type {
  padding: 2px 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
}

.offer-row__arrow {
  font-size: 1rem;
  color: var(--accent);
  transition: transform var(--transition);
}

.offer-row:hover .offer-row__arrow { transform: translateX(4px); }

/* ============================================================
   SOLUTIONS
   ============================================================ */
.solutions-visual {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 40px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
}

.solutions-pill {
  padding: 10px 20px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
  cursor: default;
}

.solutions-pill:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: scale(1.04);
}

.solution-items { margin: 24px 0; }

.solution-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.solution-item__dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

.solution-item strong {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.solution-item p { margin: 0; font-size: 0.88rem; }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 56px;
}

.why-item {
  background: var(--surface);
  padding: 40px;
  transition: background var(--transition);
}

.why-item:hover { background: var(--tinted); }

.why-item__number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 16px;
  -webkit-text-stroke: 1.5px var(--accent);
}

.why-item h3 {
  color: var(--text);
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.why-item p { font-size: 0.9rem; }

/* Pull quote */
.pull-quote {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 32px;
  max-width: 680px;
  margin: 0 auto;
}

.pull-quote p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
}

.pull-quote footer {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.85rem;
}

.pull-quote__name { font-weight: 700; color: var(--text); }
.pull-quote__role { color: var(--muted); }

.pull-quote__name::after {
  content: '·';
  margin-left: 12px;
  color: var(--border);
}

/* ============================================================
   CONTACTS
   ============================================================ */
.contacts-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: rgba(247,246,242,0.7);
}

.contact-detail a:hover { color: #fff; }

.contact-detail__icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Contact form */
.contact-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(247,246,242,0.5);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #F7F6F2;
  outline: none;
  transition: border-color var(--transition);
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(247,246,242,0.3);
}

.form-group select option { background: var(--dark); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(45,106,79,0.7);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 28px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--muted);
  transition: color var(--transition);
}

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

/* ============================================================
   NAV MOBILE TOGGLE
   ============================================================ */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   ENTRANCE ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content { animation: fadeUp 0.7s var(--ease) both; }
.hero-visual  { animation: fadeUp 0.7s var(--ease) 0.15s both; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .section--hero .container--narrow {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-lead { max-width: 100%; }
  .hero-cta  { justify-content: center; }
  .hero-visual { height: 200px; }

  .hero-card--3 { display: none; }

  .split-layout,
  .contacts-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split-layout--reverse .split-layout__visual { order: 0; }

  .cards-grid { grid-template-columns: 1fr; }

  .why-grid { grid-template-columns: 1fr; }

  .about-visual { height: 260px; }

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

@media (max-width: 700px) {
  .site-nav {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px;
    gap: 4px;
  }

  .site-nav.is-open { display: flex; }
  .site-header { position: relative; }
  .nav-toggle { display: flex; }

  .section { padding: 64px 0; }

  .offer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .offer-row__right { gap: 10px; }
  .offer-row__arrow { display: none; }
}
