/*
Theme Name: Kasabi Ocean Global
Theme URI: https://kasabioceanglobal.com
Author: Kasabi Ocean Global LLC
Author URI: https://kasabioceanglobal.com
Description: Corporate theme for Kasabi Ocean Global LLC — eCommerce Growth Services
Version: 1.0
License: Private
Text Domain: kasabi
*/

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

:root {
  --ink:       #0D1117;
  --ink-soft:  #4A5568;
  --ink-faint: #A0AEC0;
  --paper:     #FAFAFA;
  --white:     #FFFFFF;
  --accent:    #1A56DB;
  --accent-l:  #EBF2FF;
  --rule:      #E2E8F0;
  --max:       1120px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; }

/* ── NAV ── */
#site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,250,250,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.site-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.15rem;
  color: var(--ink); letter-spacing: -.01em;
  text-decoration: none;
}
.site-logo span { color: var(--accent); }

#primary-menu {
  display: flex; gap: 2rem;
}
#primary-menu li a {
  text-decoration: none; color: var(--ink-soft);
  font-size: .875rem; font-weight: 500;
  transition: color .2s;
}
#primary-menu li a:hover { color: var(--accent); }

.nav-cta {
  background: var(--accent); color: #fff !important;
  padding: .45rem 1.1rem; border-radius: 6px;
  font-size: .875rem; font-weight: 500;
  text-decoration: none; transition: opacity .2s;
}
.nav-cta:hover { opacity: .88; }

/* ── HERO ── */
.hero {
  max-width: var(--max); margin: 0 auto;
  padding: 6rem 2rem 5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-tag {
  display: inline-block;
  font-size: .75rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent);
  background: var(--accent-l); padding: .3rem .75rem;
  border-radius: 4px; margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.2;
  color: var(--ink); margin-bottom: 1.25rem;
}
.hero p {
  font-size: 1.05rem; color: var(--ink-soft);
  max-width: 48ch; margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent); color: #fff;
  padding: .7rem 1.6rem; border-radius: 7px;
  font-weight: 500; text-decoration: none;
  transition: opacity .2s; display: inline-block;
}
.btn-primary:hover { opacity: .88; }
.btn-ghost {
  border: 1.5px solid var(--rule); color: var(--ink);
  padding: .7rem 1.6rem; border-radius: 7px;
  font-weight: 500; text-decoration: none;
  transition: border-color .2s; display: inline-block;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.hero-visual {
  background: var(--white);
  border: 1px solid var(--rule); border-radius: 14px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-card {
  background: var(--paper); border: 1px solid var(--rule);
  border-radius: 10px; padding: 1.25rem;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem; font-weight: 700;
  color: var(--ink); line-height: 1;
}
.stat-label { font-size: .8rem; color: var(--ink-faint); margin-top: .3rem; }
.stat-accent { color: var(--accent); }

/* ── SHARED SECTION STYLES ── */
.site-divider { border: none; border-top: 1px solid var(--rule); }

.section { padding: 5rem 2rem; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-tag {
  font-size: .75rem; font-weight: 600; letter-spacing: .09em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: .75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; line-height: 1.25;
  margin-bottom: 1rem;
}
.section-lead {
  font-size: 1.05rem; color: var(--ink-soft);
  max-width: 60ch; margin-bottom: 3rem;
}

/* ── SERVICES ── */
.services-bg { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.service-card {
  border: 1px solid var(--rule); border-radius: 12px;
  padding: 1.75rem; background: var(--paper);
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.service-icon {
  width: 44px; height: 44px;
  background: var(--accent-l); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.service-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.8; }
.service-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: .5rem; }
.service-card p { font-size: .9rem; color: var(--ink-soft); line-height: 1.6; }

/* ── PROCESS ── */
.process-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 2rem;
}
.process-step { position: relative; padding-left: 3.5rem; }
.step-num {
  position: absolute; left: 0; top: 0;
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--rule);
  line-height: 1;
}
.process-step h3 { font-size: 1rem; font-weight: 600; margin-bottom: .4rem; }
.process-step p { font-size: .9rem; color: var(--ink-soft); }

/* ── CLIENT ACQUISITION ── */
.clients-bg { background: var(--white); }
.clients-channels { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.channel-pill {
  background: var(--accent-l); color: var(--accent);
  border-radius: 100px; padding: .5rem 1.25rem;
  font-size: .875rem; font-weight: 500;
}
.clients-desc {
  font-size: 1rem; color: var(--ink-soft);
  max-width: 70ch; margin-top: 1.5rem; line-height: 1.8;
}

/* ── ABOUT ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.about-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; margin-bottom: 1rem;
}
.about-info p { color: var(--ink-soft); margin-bottom: 1rem; font-size: 1rem; }
.reg-card {
  background: var(--white); border: 1px solid var(--rule);
  border-radius: 12px; padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.reg-card h3 {
  font-size: .75rem; font-weight: 600; letter-spacing: .09em;
  text-transform: uppercase; color: var(--ink-faint); margin-bottom: 1.25rem;
}
.reg-row {
  display: flex; justify-content: space-between;
  padding: .75rem 0; border-bottom: 1px solid var(--rule); font-size: .9rem;
}
.reg-row:last-child { border-bottom: none; }
.reg-key { color: var(--ink-soft); }
.reg-val { font-weight: 500; text-align: right; }

/* ── CONTACT ── */
.contact-bg { background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; margin-bottom: 1rem;
}
.contact-info p { color: var(--ink-soft); margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex; align-items: center; gap: 1rem;
}
.contact-item-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--accent-l); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.contact-item-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 1.8; }
.contact-item-label { font-size: .75rem; color: var(--ink-faint); margin-bottom: .15rem; }
.contact-item-value { font-size: .95rem; font-weight: 500; }
.contact-item-value a { text-decoration: none; color: var(--ink); transition: color .2s; }
.contact-item-value a:hover { color: var(--accent); }

/* Contact form card */
.contact-form-card {
  background: var(--paper); border: 1px solid var(--rule);
  border-radius: 14px; padding: 2rem;
}
.contact-form-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: .8rem; font-weight: 500;
  color: var(--ink-soft); margin-bottom: .4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: .65rem .9rem;
  border: 1.5px solid var(--rule); border-radius: 7px;
  font-family: inherit; font-size: .9rem; color: var(--ink);
  background: var(--white);
  transition: border-color .2s; outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  background: var(--accent); color: #fff;
  padding: .75rem 1.5rem; border-radius: 7px;
  font-size: .95rem; font-weight: 500; font-family: inherit;
  border: none; cursor: pointer; width: 100%;
  transition: opacity .2s;
}
.form-submit:hover { opacity: .88; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--ink); color: var(--white);
  text-align: center; padding: 5rem 2rem;
}
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; margin-bottom: .75rem;
}
.cta-band p { color: var(--ink-faint); margin-bottom: 2rem; font-size: 1rem; }
.btn-white {
  background: var(--white); color: var(--ink);
  padding: .75rem 1.75rem; border-radius: 7px;
  font-weight: 600; text-decoration: none;
  display: inline-block; transition: opacity .2s;
}
.btn-white:hover { opacity: .88; }

/* ── FOOTER ── */
#site-footer {
  background: var(--ink); color: var(--ink-faint);
  padding: 3rem 2rem 2rem;
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.1rem; color: #fff;
  display: block; margin-bottom: 1rem;
}
.footer-brand .footer-logo span { color: var(--accent); }
.footer-brand p { font-size: .875rem; line-height: 1.7; max-width: 36ch; }
.footer-col h4 {
  font-size: .75rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: #fff; margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul li a {
  font-size: .875rem; text-decoration: none; color: var(--ink-faint);
  transition: color .2s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-col .footer-contact-item {
  display: flex; flex-direction: column; gap: .15rem; margin-bottom: .75rem;
}
.footer-contact-item span:first-child { font-size: .75rem; color: #4A5568; }
.footer-contact-item a, .footer-contact-item span:last-child {
  font-size: .875rem; color: var(--ink-faint); text-decoration: none;
}
.footer-contact-item a:hover { color: #fff; }
.footer-bottom {
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem;
}
.footer-copy { font-size: .8rem; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 2.5rem; padding: 3.5rem 1.25rem 3rem; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  #primary-menu { display: none; }
  .section { padding: 3.5rem 1.25rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}
