/* ============================================================
   Alpha Advancement Strategies — Main Stylesheet
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary:    #C36934;
  --color-primary-dk: #B55A3C;
  --color-text:       #333333;
  --color-text-light: #555555;
  --color-bg:         #ffffff;
  --color-bg-light:   #f7f7f7;
  --color-border:     #e0e0e0;
  --font-main:        'Lato', sans-serif;
  --max-width:        1080px;
  --radius:           8px;
  --shadow:           0 2px 12px rgba(0,0,0,0.08);
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--color-primary-dk); }

img { max-width: 100%; height: auto; display: block; }

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

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  border: none;
  text-align: center;
}
.btn-primary {
  background: var(--color-primary-dk);
  color: #fff;
  border: 2px solid var(--color-primary-dk);
}
.btn-primary:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-1px);
}

/* ---- Section Divider ---- */
.section-divider {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  border: none;
  border-top: 1px solid var(--color-border);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.logo-link { flex-shrink: 0; }
.logo { height: 52px; width: auto; }

.main-nav { flex: 1; }
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
}
.main-nav a {
  color: var(--color-text);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.nav-cta { font-size: 14px; padding: 10px 22px; flex-shrink: 0; }

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 80px 0 72px;
  text-align: center;
  background: #fff;
}

.hero-content { max-width: 900px; }

.hero h1 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1.25;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--color-text-light);
  margin-bottom: 36px;
  font-weight: 400;
}

/* ============================================================
   DECISION WHEEL SECTION
   ============================================================ */
.decision-wheel-section {
  padding: 72px 0;
  background: #fff;
}

.decision-wheel-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.decision-wheel-text {
  flex: 1;
  min-width: 0;
}

.decision-wheel-text h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
}

.decision-wheel-sub {
  font-size: 18px;
  color: var(--color-text-light);
  line-height: 1.6;
}

.decision-wheel-image {
  flex: 0 0 400px;
  max-width: 400px;
}

.decision-wheel-image img {
  width: 100%;
  border-radius: 50%;
}

/* ============================================================
   ABOUT BOX SECTION
   ============================================================ */
.about-box-section {
  padding: 60px 0;
  background: #fff;
}

.about-box {
  background: var(--color-bg-light);
  border-radius: var(--radius);
  padding: 48px 52px;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.about-box p {
  font-size: 17px;
  color: var(--color-text);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-box p:last-child { margin-bottom: 0; }

/* ============================================================
   DECISIONS SECTION
   ============================================================ */
.decisions-section {
  padding: 72px 0;
  background: #fff;
}

.section-title {
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 900;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.3;
}

.decisions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.decision-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 20px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.decision-icon {
  margin-bottom: 14px;
}
.decision-icon a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--color-bg-light);
  border-radius: 50%;
  transition: background 0.2s;
}
.decision-icon a:hover { background: #ffe8d6; }
.decision-icon i {
  font-size: 26px;
  color: var(--color-primary);
}

.decision-card-title {
  font-size: 18px;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 6px;
}

.decision-card-lead {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.decision-card-body p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 8px;
  text-align: left;
}
.decision-card-body p:last-child { margin-bottom: 0; }

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section {
  padding: 72px 0;
  background: #fff;
}

.process-box {
  background: var(--color-bg-light);
  border-radius: var(--radius);
  padding: 48px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  box-shadow: var(--shadow);
  max-width: 100%;
}

.process-step {
  text-align: center;
}

.process-icon {
  margin-bottom: 14px;
}
.process-icon i {
  font-size: 32px;
  color: var(--color-primary);
}

.process-step h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.65;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 72px 0 80px;
  background: #fff;
}

.cta-inner {
  text-align: center;
}

.cta-inner h2 {
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 32px;
  line-height: 1.3;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--color-border);
  padding: 48px 0 36px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.footer-logo img {
  height: 80px;
  width: auto;
}

.footer-info p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.8;
}
.footer-info p strong {
  color: var(--color-text);
  font-weight: 700;
}
.footer-info a {
  color: var(--color-primary);
  font-size: 14px;
}
.footer-info a:hover { text-decoration: underline; }

.footer-links {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 14px;
  color: var(--color-primary);
}
.footer-links .sep {
  color: var(--color-border);
  font-size: 14px;
}

.copyright {
  margin-top: 10px;
  font-size: 13px;
  color: #999;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .decisions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .decision-wheel-inner {
    flex-direction: column;
    gap: 40px;
  }
  .decision-wheel-image {
    flex: 0 0 auto;
    max-width: 320px;
    margin: 0 auto;
  }
  .process-box {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 32px;
    align-items: center;
    text-align: center;
  }
  .footer-links { justify-content: center; }
}

@media (max-width: 680px) {
  .main-nav, .nav-cta { display: none; }
  .mobile-menu-toggle { display: flex; }

  .main-nav.open {
    display: flex;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    padding: 20px 24px 28px;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  }
  .main-nav.open ul {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .main-nav.open + .nav-cta {
    display: block;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 998;
  }

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

  .about-box {
    padding: 32px 24px;
  }

  .hero { padding: 56px 0 52px; }
  .hero h1 { font-size: 24px; }
}

/* ============================================================
   INNER PAGES
   ============================================================ */
.inner-page-hero {
  padding: 60px 0 40px;
  text-align: center;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}

.inner-page-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.inner-page-sub {
  font-size: 18px;
  color: var(--color-text-light);
  max-width: 640px;
  margin: 0 auto;
}

.inner-page-content {
  padding: 60px 0 80px;
}

.inner-content-narrow {
  max-width: 860px;
}

/* ---- Contact Page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 24px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 15px;
  color: var(--color-text);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(195, 105, 52, 0.12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info-wrap {
  padding-top: 4px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-item i {
  font-size: 20px;
  color: var(--color-primary);
  margin-top: 2px;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
}

.contact-info-item a {
  color: var(--color-primary);
}
.contact-info-item a:hover { text-decoration: underline; }

@media (max-width: 680px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================================
   ABOUT PAGE — PROFILE LAYOUT
   ============================================================ */
.about-profile {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1060px;
  margin: 0 auto;
}

/* Photo column */
.about-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: sticky;
  top: 90px;
}

.about-photo-wrap {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--color-primary);
  box-shadow: 0 6px 24px rgba(195, 105, 52, 0.2);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.about-headshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-photo-name {
  font-size: 20px;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 4px;
}

.about-photo-title {
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 20px;
}

.about-cta {
  width: 100%;
  max-width: 220px;
}

/* Bio column */
.about-bio-col {
  padding-top: 4px;
}

.about-bio-box {
  background: var(--color-bg-light);
  border-radius: var(--radius);
  padding: 36px 40px;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.about-bio-box p {
  font-size: 17px;
  color: var(--color-text);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-bio-box p:last-child { margin-bottom: 0; }

/* Process mini */
.about-process-mini {
  background: var(--color-bg-light);
  border-radius: var(--radius);
  padding: 36px 40px;
  box-shadow: var(--shadow);
}

.about-process-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 28px;
}

.about-process-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-process-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.about-process-step .process-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 0;
}

.about-process-step .process-icon i {
  font-size: 20px;
}

.about-process-step h3 {
  font-size: 17px;
  font-weight: 900;
  color: var(--color-text);
  margin-bottom: 4px;
}

.about-process-step p {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ============================================================
   OFFICE SPACE PAGE
   ============================================================ */

/* Hero Banner */
.office-hero {
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, #5a7a3a 0%, #3d6b2e 40%, #8b6e4e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.office-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}
.office-hero-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 700px;
}
.office-hero-overlay h1 {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.office-hero-overlay p {
  font-size: 20px;
  font-weight: 400;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* Section Titles */
.office-section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 12px;
}
.office-section-sub {
  font-size: 16px;
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: 32px;
}

/* Rent Spaces */
.office-rent-section {
  padding: 56px 0 48px;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}
.rent-options {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 28px;
}
.rent-option {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 36px;
  text-align: center;
  min-width: 160px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.rent-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.rent-option i {
  font-size: 28px;
  color: var(--color-primary);
  margin-bottom: 12px;
  display: block;
}
.rent-option h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text);
}

/* Our Spaces Gallery */
.office-spaces-section {
  padding: 56px 0;
  background: var(--color-bg-light);
}
.spaces-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.space-thumb {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.space-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, #e8e0d8, #d4ccc4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--color-text-light);
}
.space-placeholder i {
  font-size: 32px;
  color: var(--color-primary);
  opacity: 0.7;
}
.space-placeholder span {
  font-size: 13px;
  font-weight: 600;
}

/* Amenities */
.office-amenities-section {
  padding: 56px 0;
  background: #fff;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 40px;
  max-width: 800px;
  margin: 0 auto;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}
.amenity-item i {
  font-size: 20px;
  color: var(--color-primary);
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}
.amenity-item span {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
}

/* Parking */
.office-parking-section {
  padding: 56px 0 64px;
  background: #fff;
  border-top: 1px solid var(--color-border);
}
.parking-info {
  max-width: 700px;
  margin: 0 auto;
}
.parking-placeholder {
  background: linear-gradient(145deg, #c4bfb8, #a8a29e);
  border-radius: var(--radius);
  padding: 48px 32px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow);
}
.parking-placeholder i {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}
.parking-placeholder p {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.parking-placeholder ul {
  list-style: none;
  font-size: 14px;
  line-height: 2;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* Office Space Responsive */
@media (max-width: 900px) {
  .spaces-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .rent-options {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .rent-option {
    width: 100%;
    max-width: 260px;
  }
}

@media (max-width: 680px) {
  .office-hero {
    height: 300px;
  }
  .spaces-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .about-profile {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-photo-col {
    position: static;
  }
  .about-photo-wrap {
    width: 200px;
    height: 200px;
  }
  .about-bio-box,
  .about-process-mini {
    padding: 28px 24px;
  }
}
