/*
Theme Name: Akaar
Theme URI: https://akaar.design
Author: akaar studio
Description: Official akaar brand theme — structure only. All content lives in the block editor.
Version: 2.0.0
Text Domain: akaar
*/

/* ═══════════════════════════════════════════
   BRAND TOKENS
═══════════════════════════════════════════ */
:root {
  --akaar-black: #111009;
  --espresso:    #221E18;
  --char:        #2A2620;
  --peat:        #A09076;
  --flint:       #B4A894;
  --dune:        #C4B294;
  --raw-linen:   #D4B89A;
  --chalk:       #EDE6DA;
  --ivory:       #F5F0E8;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', -apple-system, sans-serif;

  --hairline:        rgba(213,184,154,0.12);
  --hairline-strong: rgba(213,184,154,0.22);
  --max-w: 1400px;
}

/* ═══════════════════════════════════════════
   RESET
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--akaar-black);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--peat); color: var(--akaar-black); }

/* Kill WordPress block editor default padding on front-end */
.wp-site-blocks,
.entry-content > *,
.wp-block-group__inner-container { margin-block-start: 0 !important; margin-block-end: 0 !important; }
.editor-styles-wrapper { background: var(--akaar-black) !important; }
.is-root-container { padding: 0 !important; }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.ak-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 1.75rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(17,16,9,0.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--hairline);
  transition: padding 0.3s ease;
}
.ak-nav__brand {
  font-family: var(--serif); font-size: 26px; letter-spacing: -0.01em;
  color: var(--ivory); text-decoration: none; line-height: 1;
}
.ak-nav__links { display: flex; gap: 2.5rem; list-style: none; }
.ak-nav__link a {
  font-family: var(--sans); font-size: 12px; color: var(--raw-linen);
  text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase;
  position: relative; padding: 4px 0; transition: color 0.3s ease;
}
.ak-nav__link a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--peat);
  transition: width 0.4s cubic-bezier(0.65,0,0.35,1);
}
.ak-nav__link a:hover,
.ak-nav__link.current-menu-item a { color: var(--ivory); }
.ak-nav__link a:hover::after,
.ak-nav__link.current-menu-item a::after { width: 100%; }
.ak-nav__cta {
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--akaar-black); background: var(--ivory);
  padding: 10px 18px; border-radius: 999px; text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease; display: inline-block;
}
.ak-nav__cta:hover { background: var(--peat); color: var(--ivory); transform: translateY(-1px); }

/* Mobile nav toggle */
.ak-nav__toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 4px;
}
.ak-nav__toggle span {
  display: block; width: 22px; height: 1px; background: var(--ivory);
  margin: 5px 0; transition: all 0.3s ease;
}
.ak-nav.open .ak-nav__toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.ak-nav.open .ak-nav__toggle span:nth-child(2) { opacity: 0; }
.ak-nav.open .ak-nav__toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   LAYOUT WRAPPERS
   These are the CSS classes your HTML blocks
   in the editor will reference.
═══════════════════════════════════════════ */

/* Page header area (all inner pages) */
.ak-page-header {
  padding: 180px 3rem 6rem;
  border-bottom: 1px solid var(--hairline);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Generic section wrapper */
.ak-section { padding: 8rem 3rem; max-width: var(--max-w); margin: 0 auto; }
.ak-section--sm { padding: 6rem 3rem; max-width: var(--max-w); margin: 0 auto; }
.ak-section--full { padding: 8rem 3rem; }           /* full-bleed bg sections */
.ak-section--full .ak-inner { max-width: var(--max-w); margin: 0 auto; }

/* Divider */
.ak-divider { border: none; border-top: 1px solid var(--hairline); }

/* ═══════════════════════════════════════════
   TYPOGRAPHY CLASSES
   (applied via "Additional CSS class" in blocks)
═══════════════════════════════════════════ */
.ak-eyebrow {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--peat); display: flex; align-items: center; gap: 12px;
  margin-bottom: 1.5rem; font-family: var(--sans);
}
.ak-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--peat); }

.ak-page-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(72px, 11vw, 180px);
  line-height: 0.92; letter-spacing: -0.03em; color: var(--ivory);
}
.ak-page-title em { font-style: italic; color: var(--peat); }

.ak-hero-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(56px, 9.5vw, 156px);
  line-height: 0.95; letter-spacing: -0.025em; color: var(--ivory);
  animation: ak-slideUp 1.1s cubic-bezier(0.2,0.8,0.2,1) 0.35s both;
}
.ak-hero-title em { font-style: italic; color: var(--peat); font-weight: 400; }

.ak-hero-eyebrow {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--peat); display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2.5rem; font-family: var(--sans);
  animation: ak-slideUp 0.9s ease 0.2s both;
}
.ak-hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--peat); }

.ak-section-heading {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05; letter-spacing: -0.02em; color: var(--ivory);
  max-width: 900px; margin-bottom: 4rem;
}
.ak-section-heading em { font-style: italic; color: var(--peat); }

.ak-body-lead {
  font-family: var(--serif); font-size: clamp(28px, 4vw, 48px);
  font-weight: 300; line-height: 1.3; color: var(--ivory);
  letter-spacing: -0.015em; max-width: 1000px;
}
.ak-body-lead em { font-style: italic; color: var(--peat); }

.ak-body-large { font-size: 17px; line-height: 1.75; color: var(--raw-linen); }
.ak-body-large:first-child { font-family: var(--serif); font-size: 26px; line-height: 1.4; color: var(--ivory); }

.ak-page-intro { font-size: 18px; line-height: 1.65; color: var(--raw-linen); max-width: 580px; margin-top: 2rem; }

/* ═══════════════════════════════════════════
   HERO (home page)
═══════════════════════════════════════════ */
.ak-hero {
  min-height: 100vh; padding: 0 3rem; padding-top: 120px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.ak-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.85 0 0 0 0 0.78 0 0 0 0 0.65 0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  pointer-events: none; opacity: 0.5; z-index: 0;
}
.ak-hero__inner { position: relative; z-index: 1; max-width: var(--max-w); margin: 0 auto; width: 100%; }
.ak-hero__meta {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; align-items: end;
  border-top: 1px solid var(--hairline); padding-top: 2rem; margin-top: 2rem;
  animation: ak-slideUp 1.1s ease 0.7s both;
}
.ak-hero__desc { font-size: 16px; line-height: 1.7; color: var(--raw-linen); max-width: 480px; grid-column: span 2; }
.ak-hero__corner { text-align: right; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--flint); line-height: 1.8; }
.ak-hero__corner span { color: var(--peat); }
.ak-scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--flint);
  z-index: 1; font-family: var(--sans); animation: ak-pulse 2.5s ease-in-out infinite;
}

/* ═══════════════════════════════════════════
   INDUSTRIES GRID
═══════════════════════════════════════════ */
.ak-industries-bg { background: var(--espresso); padding: 8rem 3rem 6rem; border-top: 1px solid var(--hairline); }
.ak-industries-bg .ak-inner { max-width: var(--max-w); margin: 0 auto; }
.ak-industries-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline); max-width: var(--max-w); margin: 0 auto;
}
.ak-industry-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  transition: background 0.4s ease;
}
.ak-industry-card:nth-child(4n) { border-right: none; }
.ak-industry-card:hover { background: var(--char); }
.ak-industry-card__num { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--peat); margin-bottom: 1.5rem; }
.ak-industry-card__name { font-family: var(--serif); font-size: 28px; line-height: 1.1; color: var(--ivory); margin-bottom: 1rem; font-weight: 400; }
.ak-industry-card__desc { font-size: 13px; line-height: 1.6; color: var(--raw-linen); }

/* ═══════════════════════════════════════════
   APPROACH (staircase columns)
═══════════════════════════════════════════ */
.ak-approach-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3rem; margin-top: 4rem; }
.ak-approach-col:nth-child(2) { padding-top: 6rem; }
.ak-approach-col:nth-child(3) { padding-top: 12rem; }
.ak-approach__num { font-family: var(--serif); font-style: italic; font-size: 64px; color: var(--peat); line-height: 1; margin-bottom: 1.5rem; font-weight: 300; }
.ak-approach__title { font-family: var(--serif); font-size: 30px; line-height: 1.15; color: var(--ivory); margin-bottom: 1.25rem; font-weight: 400; }
.ak-approach__desc { font-size: 14px; color: var(--raw-linen); line-height: 1.7; }

/* ═══════════════════════════════════════════
   MANIFESTO
═══════════════════════════════════════════ */
.ak-manifesto-bg { background: var(--char); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); padding: 10rem 3rem; }
.ak-manifesto-bg .ak-inner { max-width: 1100px; margin: 0 auto; }
.ak-manifesto__quote { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(32px,4vw,52px); line-height: 1.25; color: var(--ivory); letter-spacing: -0.015em; }
.ak-manifesto__quote span { color: var(--peat); }
.ak-manifesto__attr { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--hairline); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--flint); font-family: var(--sans); }

/* ═══════════════════════════════════════════
   CTA BLOCK
═══════════════════════════════════════════ */
.ak-cta-block { padding: 10rem 3rem; text-align: center; background: var(--akaar-black); }
.ak-cta-block__heading { font-family: var(--serif); font-weight: 300; font-size: clamp(48px,8vw,120px); line-height: 1; letter-spacing: -0.025em; color: var(--ivory); margin-bottom: 3rem; }
.ak-cta-block__heading em { font-style: italic; color: var(--peat); }
.ak-btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 32px; background: var(--ivory); color: var(--akaar-black);
  border: none; border-radius: 999px; font-family: var(--sans);
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer; text-decoration: none; transition: all 0.3s ease;
}
.ak-btn:hover { background: var(--peat); color: var(--ivory); transform: translateY(-2px); }

/* ═══════════════════════════════════════════
   SERVICES — TIERS
═══════════════════════════════════════════ */
.ak-tiers { padding: 6rem 3rem; max-width: var(--max-w); margin: 0 auto; }
.ak-tier {
  display: grid; grid-template-columns: 80px 1fr 1.4fr 1fr;
  gap: 2rem; padding: 4rem 0; border-bottom: 1px solid var(--hairline);
  align-items: start; transition: all 0.3s ease;
}
.ak-tier:hover { background: var(--espresso); padding-left: 2rem; padding-right: 2rem; margin-left: -2rem; margin-right: -2rem; }
.ak-tier__num { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--peat); padding-top: 4px; }
.ak-tier__name { font-family: var(--serif); font-size: 56px; line-height: 1; color: var(--ivory); margin-bottom: 0.75rem; font-weight: 400; }
.ak-tier__tagline { font-size: 13px; color: var(--peat); letter-spacing: 0.08em; text-transform: uppercase; }
.ak-tier__desc { font-size: 14px; color: var(--raw-linen); line-height: 1.7; padding-top: 0.5rem; }
.ak-tier__desc ul { list-style: none; margin-top: 1rem; }
.ak-tier__desc li { padding: 6px 0 6px 18px; font-size: 13px; color: var(--flint); border-bottom: 1px solid var(--hairline); position: relative; }
.ak-tier__desc li::before { content: '─'; position: absolute; left: 0; color: var(--peat); }
.ak-tier__pricing { text-align: right; padding-top: 0.5rem; }
.ak-tier__price { font-family: var(--serif); font-size: 32px; color: var(--ivory); line-height: 1.1; font-weight: 400; }
.ak-tier__price-label { font-size: 11px; color: var(--flint); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }
.ak-tier__price-secondary { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--hairline); font-family: var(--serif); font-size: 22px; color: var(--raw-linen); font-weight: 400; }
.ak-tier__price-secondary-label { font-size: 10px; color: var(--flint); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }

/* ═══════════════════════════════════════════
   SERVICES — ONBOARDING
═══════════════════════════════════════════ */
.ak-onboarding-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 4rem; }
.ak-onboarding-card { padding: 3rem; border: 1px solid var(--hairline); border-radius: 4px; background: var(--espresso); transition: border-color 0.4s ease; }
.ak-onboarding-card:hover { border-color: var(--peat); }
.ak-onboarding-card__label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--peat); margin-bottom: 1.5rem; font-family: var(--sans); }
.ak-onboarding-card__title { font-family: var(--serif); font-size: 36px; color: var(--ivory); line-height: 1.1; margin-bottom: 1.5rem; font-weight: 400; }
.ak-onboarding-card__desc { color: var(--raw-linen); font-size: 14px; line-height: 1.7; }
.ak-onboarding-card__price { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--hairline); font-family: var(--serif); font-style: italic; color: var(--flint); font-size: 16px; }
.ak-onboarding-card__price strong { color: var(--ivory); font-style: normal; font-weight: 400; }

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.ak-about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; border-top: 1px solid var(--hairline); padding: 6rem 3rem; max-width: var(--max-w); margin: 0 auto; }
.ak-about-sticky { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--peat); padding-top: 8px; position: sticky; top: 120px; align-self: start; font-family: var(--sans); }
.ak-about-body p { font-size: 17px; line-height: 1.75; color: var(--raw-linen); margin-bottom: 1.75rem; }
.ak-about-body p:first-child { font-family: var(--serif); font-size: 26px; line-height: 1.4; color: var(--ivory); font-weight: 400; }

.ak-principles { padding: 8rem 3rem; max-width: var(--max-w); margin: 0 auto; border-top: 1px solid var(--hairline); }
.ak-principle { display: grid; grid-template-columns: 80px 1fr 2fr; gap: 3rem; padding: 3rem 0; border-top: 1px solid var(--hairline); align-items: start; transition: all 0.3s ease; }
.ak-principle:last-child { border-bottom: 1px solid var(--hairline); }
.ak-principle:hover { background: var(--espresso); padding-left: 2rem; margin-left: -2rem; padding-right: 2rem; margin-right: -2rem; }
.ak-principle__num { font-family: var(--serif); font-style: italic; color: var(--peat); font-size: 16px; padding-top: 6px; }
.ak-principle__name { font-family: var(--serif); font-size: 36px; color: var(--ivory); line-height: 1.1; font-weight: 400; }
.ak-principle__desc { font-size: 15px; line-height: 1.7; color: var(--raw-linen); padding-top: 12px; }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.ak-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; padding: 6rem 3rem; max-width: var(--max-w); margin: 0 auto; }
.ak-contact-form-col { border-right: 1px solid var(--hairline); padding-right: 4rem; }
.ak-contact-info-col { padding-top: 4rem; }
.ak-form-title { font-family: var(--serif); font-size: 44px; color: var(--ivory); line-height: 1.1; margin-bottom: 2rem; font-weight: 400; }
.ak-form-title em { font-style: italic; color: var(--peat); }
.ak-form { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 3rem; }
.ak-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.ak-field { display: flex; flex-direction: column; gap: 8px; }
.ak-field label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--peat); font-family: var(--sans); }
.ak-field input,
.ak-field textarea,
.ak-field select {
  background: transparent; border: none; border-bottom: 1px solid var(--hairline-strong);
  padding: 10px 0; color: var(--ivory); font-family: var(--sans); font-size: 15px;
  transition: border-color 0.3s ease; font-weight: 300; width: 100%;
}
.ak-field input:focus,
.ak-field textarea:focus,
.ak-field select:focus { outline: none; border-bottom-color: var(--peat); }
.ak-field select option { background: var(--akaar-black); color: var(--ivory); }
.ak-field textarea { resize: vertical; min-height: 100px; }
.ak-form-submit {
  margin-top: 1rem; padding: 16px 28px; background: var(--ivory); color: var(--akaar-black);
  border: none; border-radius: 999px; font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer;
  align-self: flex-start; display: inline-flex; align-items: center; gap: 14px;
  transition: all 0.3s ease;
}
.ak-form-submit:hover { background: var(--peat); color: var(--ivory); transform: translateY(-2px); }
.ak-info-row { padding: 2rem 0; border-top: 1px solid var(--hairline); }
.ak-info-row:last-child { border-bottom: 1px solid var(--hairline); }
.ak-info-label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--peat); margin-bottom: 8px; font-family: var(--sans); }
.ak-info-value { font-family: var(--serif); font-size: 24px; color: var(--ivory); line-height: 1.3; font-weight: 400; }
.ak-info-value-sub { font-size: 13px; color: var(--raw-linen); margin-top: 4px; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.ak-footer { padding: 5rem 3rem 3rem; border-top: 1px solid var(--hairline); background: var(--espresso); }
.ak-footer__inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.ak-footer__mark { font-family: var(--serif); font-size: 56px; line-height: 1; color: var(--ivory); margin-bottom: 1.5rem; font-weight: 400; display: block; text-decoration: none; }
.ak-footer__tagline { font-family: var(--serif); font-style: italic; color: var(--peat); font-size: 16px; max-width: 280px; }
.ak-footer__col h4 { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--peat); margin-bottom: 1.5rem; font-weight: 400; font-family: var(--sans); }
.ak-footer__col ul { list-style: none; }
.ak-footer__col li { padding: 6px 0; font-size: 13px; }
.ak-footer__col li a { color: var(--raw-linen); text-decoration: none; transition: color 0.3s ease; }
.ak-footer__col li a:hover { color: var(--ivory); }
.ak-footer__col li:not(:has(a)) { color: var(--raw-linen); }
.ak-footer__bottom { max-width: var(--max-w); margin: 4rem auto 0; padding-top: 2rem; border-top: 1px solid var(--hairline); display: flex; justify-content: space-between; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--flint); font-family: var(--sans); }

/* ═══════════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════════ */
@keyframes ak-slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ak-pulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, 0); }
  50%       { opacity: 0.9; transform: translate(-50%, -4px); }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .ak-nav { padding: 1.25rem 1.5rem; }
  .ak-nav__links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--espresso); padding: 1.5rem; gap: 1.5rem; border-bottom: 1px solid var(--hairline); }
  .ak-nav.open .ak-nav__links { display: flex; }
  .ak-nav__toggle { display: block; }
  .ak-hero { padding: 100px 1.5rem 0; }
  .ak-hero__meta { grid-template-columns: 1fr; }
  .ak-hero__desc { grid-column: span 1; }
  .ak-hero__corner { text-align: left; }
  .ak-industries-grid { grid-template-columns: 1fr 1fr; }
  .ak-industry-card:nth-child(2n) { border-right: none; }
  .ak-approach-grid { grid-template-columns: 1fr; }
  .ak-approach-col:nth-child(2), .ak-approach-col:nth-child(3) { padding-top: 0; }
  .ak-tiers { padding: 4rem 1.5rem; }
  .ak-tier { grid-template-columns: 1fr; gap: 1rem; }
  .ak-tier__pricing { text-align: left; }
  .ak-onboarding-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ak-about-grid, .ak-contact-grid { grid-template-columns: 1fr; gap: 3rem; padding-left: 1.5rem; padding-right: 1.5rem; }
  .ak-about-sticky { position: static; }
  .ak-contact-form-col { border-right: none; padding-right: 0; padding-bottom: 3rem; border-bottom: 1px solid var(--hairline); }
  .ak-contact-info-col { padding-top: 0; }
  .ak-principle { grid-template-columns: 1fr; gap: 1rem; }
  .ak-footer__inner { grid-template-columns: 1fr 1fr; }
  .ak-form-row { grid-template-columns: 1fr; }
  .ak-page-header, .ak-section, .ak-section--sm { padding-left: 1.5rem; padding-right: 1.5rem; }
  .ak-industries-bg, .ak-manifesto-bg { padding-left: 1.5rem; padding-right: 1.5rem; }
  .ak-principles { padding-left: 1.5rem; padding-right: 1.5rem; }
  .ak-footer { padding-left: 1.5rem; padding-right: 1.5rem; }
}
