/* Gift4Employees — Luxury Corporate Gifting
   Design: Premium dark, champagne/gold accents
   Palette: Black #0A0A0A, Charcoal #161616, Champagne #C9A96E, Warm Gray #A09484
   Typography: Playfair Display (headings) + Inter (body)
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --black: #0A0A0A;
  --charcoal: #161616;
  --surface: #1C1C1C;
  --surface-2: #232323;
  --border: rgba(201,169,110,0.1);
  --border-light: rgba(201,169,110,0.18);
  --champagne: #C9A96E;
  --champagne-dark: #B08F52;
  --champagne-glow: rgba(201,169,110,0.08);
  --warm-gray: #A09484;
  --text: #E8E4DF;
  --text-muted: #8C857C;
  --text-dim: rgba(232,228,223,0.35);
  --white: #F5F2EE;
  --heading: 'Playfair Display', Georgia, serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 1080px;
  --radius: 4px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--text);
  background: var(--black);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--champagne); text-decoration: none; }
a:hover { color: var(--white); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ---- HEADER ---- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo {
  font-family: var(--heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}

.logo span { color: var(--champagne); }

.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }

.nav-links a {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--champagne) !important;
  color: var(--black) !important;
  padding: 8px 20px !important;
  border-radius: 2px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  font-size: 0.7rem !important;
}

.nav-cta:hover { background: var(--champagne-dark) !important; color: var(--black) !important; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle svg { width: 22px; height: 22px; stroke: var(--text); }

/* ---- HERO ---- */

.hero {
  padding: 0;
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.5) 60%, rgba(10,10,10,0.3) 100%);
}

.hero-content {
  position: relative;
  max-width: 520px;
  padding: 80px 0;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

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

.hero p {
  font-size: 1rem;
  color: var(--warm-gray);
  margin-bottom: 32px;
  font-weight: 300;
  line-height: 1.7;
}

/* Inner page hero */
.hero-sub {
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--border);
}

.hero-sub .hero-eyebrow { margin-bottom: 12px; }

.hero-sub h1 {
  font-family: var(--heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.hero-sub p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 480px;
  font-weight: 300;
}

/* ---- BUTTONS ---- */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--champagne);
  color: var(--black);
}

.btn-gold:hover { background: var(--champagne-dark); color: var(--black); }

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

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

.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- SECTIONS ---- */

section { padding: 80px 0; }
.section-surface { background: var(--charcoal); }

.section-title {
  font-family: var(--heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.section-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.7;
}

.section-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 12px;
}

/* ---- HOW IT WORKS ---- */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.step-card {
  padding: 36px 28px;
  background: var(--black);
}

.step-num {
  font-family: var(--heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--champagne);
  opacity: 0.3;
  margin-bottom: 16px;
  line-height: 1;
}

.step-card h3 {
  font-family: var(--heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.step-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

/* ---- FEATURES ---- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.feature-card {
  padding: 32px 24px;
  background: var(--charcoal);
}

.feature-icon {
  width: 20px; height: 20px;
  margin-bottom: 18px;
  color: var(--champagne);
  stroke-width: 1.5;
}

.feature-card h3 {
  font-family: var(--heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.feature-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

/* ---- IMAGE SECTION ---- */

.img-section {
  position: relative;
  height: 360px;
  overflow: hidden;
}

.img-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.img-section .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.img-section .overlay h2 {
  font-family: var(--heading);
  font-size: 2rem;
  color: var(--white);
  font-weight: 600;
  max-width: 480px;
}

.img-section .overlay h2 em {
  font-style: italic;
  color: var(--champagne);
}

/* ---- STATS ---- */

.stats-band {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item h3 {
  font-family: var(--heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--champagne);
}

.stat-item p {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ---- TESTIMONIALS ---- */

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.testimonial-card {
  background: var(--black);
  padding: 32px 24px;
}

.testimonial-card .stars {
  color: var(--champagne);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-card blockquote {
  font-family: var(--heading);
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
  font-weight: 400;
}

.testimonial-card cite {
  font-size: 0.7rem;
  font-style: normal;
  color: var(--text-dim);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---- PRICING ---- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  align-items: stretch;
}

.price-card {
  padding: 36px 28px;
  background: var(--black);
}

.price-card.featured {
  background: var(--charcoal);
  position: relative;
}

.price-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--champagne);
}

.price-label {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--champagne);
  margin-bottom: 4px;
}

.price-card h3 {
  font-family: var(--heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.price-amount {
  font-family: var(--heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.price-amount span { font-size: 0.8rem; font-weight: 400; color: var(--text-muted); font-family: var(--body); }

.price-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.price-features { list-style: none; margin-bottom: 28px; }

.price-features li {
  font-size: 0.8rem;
  color: var(--text);
  font-weight: 300;
  padding: 5px 0 5px 20px;
  position: relative;
}

.price-features li::before {
  content: '\2713';
  position: absolute;
  left: 0; top: 5px;
  color: var(--champagne);
  font-size: 0.75rem;
}

.price-card .btn { width: 100%; text-align: center; }

/* ---- BLOG ---- */

.blog-hero {
  padding: 56px 0 44px;
  border-bottom: 1px solid var(--border);
}

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

.blog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.blog-card:hover { border-color: var(--border-light); }

.blog-card-img {
  height: 160px;
  background: var(--surface);
  overflow: hidden;
}

.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition: transform 0.3s;
}

.blog-card:hover .blog-card-img img { transform: scale(1.03); }

.blog-card-body { padding: 24px; }

.blog-meta {
  font-size: 0.65rem;
  color: var(--text-dim);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.blog-card h3 {
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.35;
}

.blog-card h3 a { color: inherit; }
.blog-card h3 a:hover { color: var(--champagne); }
.blog-card p { font-size: 0.8rem; color: var(--text-muted); font-weight: 300; }

/* Blog post */

.post-hero {
  padding: 56px 0 44px;
  border-bottom: 1px solid var(--border);
}

.post-hero .hero-eyebrow { margin-bottom: 12px; }

.post-hero h1 {
  font-family: var(--heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  max-width: 640px;
}

.post-hero .post-meta { color: var(--text-dim); font-size: 0.78rem; margin-top: 12px; font-weight: 400; }

.post-body { max-width: 660px; padding: 44px 0 72px; }

.post-body h2 {
  font-family: var(--heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 36px;
  margin-bottom: 14px;
}

.post-body p { margin-bottom: 16px; color: var(--text); font-weight: 300; line-height: 1.75; }
.post-body ul, .post-body ol { margin-bottom: 16px; padding-left: 20px; }
.post-body li { margin-bottom: 6px; color: var(--text); font-weight: 300; }

.post-body blockquote {
  border-left: 2px solid var(--champagne);
  padding-left: 20px;
  margin: 28px 0;
  color: var(--text-muted);
  font-family: var(--heading);
  font-style: italic;
}

/* ---- CTA ---- */

.cta-banner {
  padding: 64px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative;
}

.cta-banner .hero-eyebrow { margin-bottom: 12px; }

.cta-banner h2 {
  font-family: var(--heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.cta-banner p { color: var(--text-muted); font-weight: 300; margin-bottom: 28px; }

/* ---- CONTACT ---- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 300;
  border: 1px solid var(--border-light);
  border-radius: 2px;
  background: var(--charcoal);
  color: var(--white);
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }

.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--champagne); }

.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select { appearance: none; }

.contact-info h3 {
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  margin-top: 24px;
}

.contact-info h3:first-child { margin-top: 0; }
.contact-info p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 4px; font-weight: 300; }

/* ---- TEAM ---- */

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }

.team-member {
  text-align: center;
  padding: 32px 20px;
  background: var(--black);
}

.team-avatar {
  width: 56px; height: 56px;
  border-radius: 2px;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--black);
  background: var(--champagne);
}

.team-member h4 { font-family: var(--heading); font-size: 0.9rem; font-weight: 600; color: var(--white); }
.team-member p { font-size: 0.7rem; color: var(--text-dim); font-weight: 400; margin-top: 2px; text-transform: uppercase; letter-spacing: 0.04em; }

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

.faq-list { max-width: 660px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 18px 0; }

.faq-item summary {
  font-size: 0.88rem; font-weight: 400; color: var(--white);
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}

.faq-item summary::after { content: '+'; font-size: 1rem; color: var(--champagne); }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { font-size: 0.82rem; color: var(--text-muted); margin-top: 10px; line-height: 1.65; font-weight: 300; }

/* ---- FOOTER ---- */

.site-footer {
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  padding: 44px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-brand .logo { margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 0.75rem; line-height: 1.7; max-width: 240px; font-weight: 300; }

.footer-col h4 {
  color: var(--text-muted);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.footer-col ul { list-style: none; }
.footer-col a { color: var(--text-dim); font-size: 0.78rem; display: block; padding: 3px 0; transition: color 0.2s; font-weight: 300; }
.footer-col a:hover { color: var(--champagne); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  font-size: 0.68rem;
  display: flex;
  justify-content: space-between;
  font-weight: 300;
}

.footer-bottom a { color: var(--text-dim); }

/* ---- LEGAL ---- */

.legal-body { max-width: 660px; padding: 56px 0 72px; }
.legal-body h1 { font-family: var(--heading); font-size: 1.6rem; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.legal-updated { font-size: 0.75rem; color: var(--text-dim); margin-bottom: 28px; }
.legal-body h2 { font-family: var(--heading); font-size: 1rem; font-weight: 600; color: var(--white); margin-top: 28px; margin-bottom: 10px; }
.legal-body p, .legal-body li { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 10px; line-height: 1.7; font-weight: 300; }
.legal-body ul { padding-left: 18px; margin-bottom: 14px; }

/* ---- 404 ---- */

.error-page { text-align: center; padding: 120px 24px; }

.error-page h1 {
  font-family: var(--heading);
  font-size: 5rem;
  font-weight: 700;
  color: var(--surface-2);
  line-height: 1;
}

.error-page p { font-size: 1rem; color: var(--text-muted); margin: 12px 0 28px; font-weight: 300; }

/* ---- RESPONSIVE ---- */

@media (max-width: 900px) {
  .features-grid, .pricing-grid, .steps-grid, .testimonials { grid-template-columns: 1fr; }
  .hero .container { display: block; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.2rem; }
  .img-section { height: 240px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 60px; left: 0; right: 0;
    background: var(--charcoal);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px; gap: 12px; z-index: 50;
  }
  .nav-toggle { display: block; }
  .hero { min-height: 400px; }
  .hero h1 { font-size: 1.9rem; }
  section { padding: 48px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
