/* ============================================
   ARROWOOD STUDIO — MAIN STYLESHEET
   arrowood.studio
   ============================================ */

:root {
  --aw-midnight:    #1c1a16;
  --aw-obsidian:    #2e2b24;
  --aw-arrowood:    #8b7355;
  --aw-gold:        #c4a882;
  --aw-linen:       #e8e0d4;
  --aw-parchment:   #f4f0eb;
  --aw-white:       #faf8f5;
  --aw-muted:       rgba(28,26,22,0.45);
  --aw-border:      rgba(28,26,22,0.1);
  --aw-border-dark: rgba(232,224,212,0.12);

  --font-display:   'Playfair Display', Georgia, serif;
  --font-editorial: 'Cormorant Garamond', Georgia, serif;
  --font-body:      'Jost', system-ui, sans-serif;

  --nav-h: 80px;
  --max-w: 1180px;
  --section-pad: clamp(64px, 8vw, 120px);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  background: var(--aw-parchment);
  color: var(--aw-midnight);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* ============================================
   NAV
   ============================================ */
.aw-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 60px);
  z-index: 100;
  transition: background 0.4s, border-color 0.4s;
}

.aw-nav.scrolled {
  background: rgba(244,240,235,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--aw-border);
}

.aw-nav--dark {
  background: transparent;
}

.aw-nav--dark.scrolled {
  background: rgba(28,26,22,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--aw-border-dark);
}

.aw-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.aw-logo__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--aw-midnight);
  line-height: 1;
}

.aw-nav--dark .aw-logo__name { color: var(--aw-linen); }

.aw-logo__tag {
  font-size: 8px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--aw-arrowood);
  line-height: 1;
}

.aw-nav__links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.aw-nav__links a {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(28,26,22,0.5);
  transition: color 0.25s;
}

.aw-nav--dark .aw-nav__links a { color: rgba(232,224,212,0.45); }

.aw-nav__links a:hover,
.aw-nav--dark .aw-nav__links a:hover { color: var(--aw-arrowood); }

.aw-nav__cta {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 11px 26px;
  border: 1px solid rgba(28,26,22,0.25);
  color: var(--aw-midnight);
  transition: all 0.25s;
}

.aw-nav--dark .aw-nav__cta {
  border-color: rgba(232,224,212,0.25);
  color: var(--aw-linen);
}

.aw-nav__cta:hover {
  background: var(--aw-midnight);
  border-color: var(--aw-midnight);
  color: var(--aw-linen);
}

.aw-nav--dark .aw-nav__cta:hover {
  background: var(--aw-linen);
  border-color: var(--aw-linen);
  color: var(--aw-midnight);
}

.aw-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.aw-nav__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--aw-midnight);
  transition: all 0.3s;
}

.aw-nav--dark .aw-nav__hamburger span { background: var(--aw-linen); }

/* ============================================
   HERO
   ============================================ */
.aw-hero {
  min-height: 100vh;
  background: var(--aw-midnight);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--nav-h) clamp(24px,5vw,60px) 0;
}

.aw-hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.aw-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,185,154,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,185,154,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridDrift 30s linear infinite;
}

@keyframes gridDrift {
  0% { transform: translateY(0); }
  100% { transform: translateY(80px); }
}

.aw-hero__glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,115,85,0.12) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,100% { opacity: 0.7; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%,-50%) scale(1.08); }
}

.aw-hero__inner {
  position: relative;
  z-index: 10;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 100px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.aw-hero__eyebrow {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--aw-arrowood);
  margin-bottom: 28px;
  animation: fadeUp 0.9s ease both;
}

.aw-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 76px);
  font-weight: 400;
  line-height: 1.0;
  color: var(--aw-linen);
  margin-bottom: 28px;
  animation: fadeUp 0.9s 0.1s ease both;
}

.aw-hero__h1 em {
  font-style: italic;
  color: var(--aw-gold);
}

.aw-hero__sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(232,224,212,0.45);
  line-height: 1.9;
  max-width: 420px;
  margin-bottom: 44px;
  letter-spacing: 0.3px;
  animation: fadeUp 0.9s 0.2s ease both;
}

.aw-hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.3s ease both;
}

.aw-btn--gold {
  background: rgba(139,115,85,0.15);
  border: 1px solid rgba(196,168,130,0.4);
  color: var(--aw-gold);
  padding: 15px 36px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-block;
}

.aw-btn--gold:hover {
  background: rgba(139,115,85,0.3);
  border-color: var(--aw-gold);
  color: var(--aw-linen);
}

.aw-btn--ghost {
  border: 1px solid rgba(232,224,212,0.15);
  color: rgba(232,224,212,0.4);
  padding: 15px 36px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-block;
}

.aw-btn--ghost:hover {
  border-color: rgba(232,224,212,0.35);
  color: rgba(232,224,212,0.8);
}

.aw-hero__visual {
  animation: fadeUp 0.9s 0.2s ease both;
}

.aw-hero__stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-left: 1px solid rgba(232,224,212,0.08);
  padding-left: 48px;
}

.aw-stat__num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  color: var(--aw-gold);
  line-height: 1;
  display: block;
}

.aw-stat__label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(232,224,212,0.3);
  margin-top: 6px;
  display: block;
}

.aw-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10;
  animation: fadeUp 1.2s 0.6s ease both;
}

.aw-hero__scroll span {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(232,224,212,0.25);
}

.aw-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(196,168,130,0.5), transparent);
  animation: scrollAnim 2.5s ease-in-out infinite;
}

@keyframes scrollAnim {
  0%,100% { opacity: 0.3; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 0.9; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SECTION COMMONS
   ============================================ */
.aw-section { padding: var(--section-pad) clamp(24px,5vw,60px); }
.aw-container { max-width: var(--max-w); margin: 0 auto; }

.aw-section-label {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--aw-arrowood);
  margin-bottom: 18px;
  display: block;
}

.aw-section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--aw-midnight);
  margin-bottom: 20px;
}

.aw-section-title em { font-style: italic; color: var(--aw-arrowood); }

.aw-section-body {
  font-size: 14px;
  color: var(--aw-muted);
  max-width: 520px;
  line-height: 1.9;
  letter-spacing: 0.2px;
}

.aw-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
}

.aw-divider__line { flex: 1; height: 1px; background: var(--aw-border); }
.aw-divider__gem {
  width: 6px; height: 6px;
  border: 1px solid rgba(28,26,22,0.2);
  transform: rotate(45deg);
}

/* ============================================
   SERVICES
   ============================================ */
.aw-services { background: var(--aw-parchment); }

.aw-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
  border: 1px solid var(--aw-border);
}

.aw-service {
  padding: 48px 40px;
  background: var(--aw-white);
  border-right: 1px solid var(--aw-border);
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.aw-service:last-child { border-right: none; }

.aw-service::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--aw-arrowood);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.aw-service:hover::before { transform: scaleX(1); }
.aw-service:hover { background: #f9f6f1; }

.aw-service__num {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(28,26,22,0.2);
  margin-bottom: 32px;
  display: block;
}

.aw-service__icon {
  margin-bottom: 24px;
  opacity: 0.6;
}

.aw-service__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--aw-midnight);
  margin-bottom: 16px;
  line-height: 1.2;
}

.aw-service__desc {
  font-size: 13px;
  color: var(--aw-muted);
  line-height: 1.85;
  letter-spacing: 0.2px;
}

.aw-service__price {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--aw-border);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--aw-arrowood);
}

/* ============================================
   WORK / PORTFOLIO
   ============================================ */
.aw-work { background: var(--aw-midnight); }
.aw-work .aw-section-title { color: var(--aw-linen); }
.aw-work .aw-section-label { color: var(--aw-arrowood); }
.aw-work .aw-section-body { color: rgba(232,224,212,0.4); }

.aw-work__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 32px;
}

.aw-work__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.aw-project {
  position: relative;
  overflow: hidden;
  background: var(--aw-obsidian);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.aw-project:first-child {
  grid-column: span 2;
  aspect-ratio: 16/7;
}

.aw-project__bg {
  width: 100%; height: 100%;
  transition: transform 0.7s ease;
}

.aw-project:hover .aw-project__bg { transform: scale(1.04); }

.aw-project__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,26,22,0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 40px;
}

.aw-project__tag {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--aw-arrowood);
  margin-bottom: 10px;
}

.aw-project__title {
  font-family: var(--font-display);
  font-size: clamp(20px,2.5vw,32px);
  font-weight: 400;
  color: var(--aw-linen);
  line-height: 1.1;
}

.aw-project__arrow {
  position: absolute;
  top: 36px; right: 40px;
  width: 40px; height: 40px;
  border: 1px solid rgba(232,224,212,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s;
}

.aw-project:hover .aw-project__arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   PROCESS
   ============================================ */
.aw-process { background: var(--aw-white); }

.aw-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  border: 1px solid var(--aw-border);
}

.aw-step {
  padding: 48px 36px;
  border-right: 1px solid var(--aw-border);
  position: relative;
}

.aw-step:last-child { border-right: none; }

.aw-step::after {
  content: attr(data-num);
  position: absolute;
  top: 40px; right: 32px;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 400;
  color: rgba(28,26,22,0.04);
  line-height: 1;
}

.aw-step__num {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--aw-arrowood);
  margin-bottom: 24px;
  display: block;
}

.aw-step__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--aw-midnight);
  margin-bottom: 16px;
  line-height: 1.2;
}

.aw-step__desc {
  font-size: 13px;
  color: var(--aw-muted);
  line-height: 1.85;
}

/* ============================================
   ABOUT
   ============================================ */
.aw-about { background: var(--aw-parchment); }

.aw-about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.aw-about__visual {
  position: relative;
}

.aw-about__frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--aw-midnight);
  position: relative;
  overflow: hidden;
}

.aw-about__frame::before {
  content: '';
  position: absolute;
  top: 24px; left: 24px; right: -24px; bottom: -24px;
  border: 1px solid rgba(28,26,22,0.12);
  z-index: -1;
}

.aw-about__frame-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.aw-founders-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--aw-arrowood);
  padding: 20px 24px;
  text-align: center;
}

.aw-founders-badge__name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  color: var(--aw-linen);
  display: block;
  letter-spacing: 1px;
}

.aw-founders-badge__title {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(232,224,212,0.6);
  margin-top: 4px;
  display: block;
}

.aw-about__quote {
  font-family: var(--font-editorial);
  font-size: clamp(20px,2vw,26px);
  font-style: italic;
  font-weight: 300;
  color: var(--aw-midnight);
  line-height: 1.55;
  margin: 32px 0;
  padding-left: 24px;
  border-left: 2px solid var(--aw-arrowood);
}

.aw-about__text {
  font-size: 14px;
  color: var(--aw-muted);
  line-height: 1.9;
  margin-bottom: 20px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.aw-testimonials { background: var(--aw-midnight); }
.aw-testimonials .aw-section-title { color: var(--aw-linen); }

.aw-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}

.aw-testi {
  background: var(--aw-obsidian);
  padding: 40px 36px;
  border: 1px solid rgba(232,224,212,0.05);
  position: relative;
}

.aw-testi__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.aw-testi__star {
  width: 10px; height: 10px;
  background: var(--aw-arrowood);
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}

.aw-testi__quote {
  font-family: var(--font-editorial);
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  color: rgba(232,224,212,0.75);
  line-height: 1.65;
  margin-bottom: 28px;
}

.aw-testi__author {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--aw-arrowood);
  display: block;
}

.aw-testi__role {
  font-size: 11px;
  color: rgba(232,224,212,0.25);
  margin-top: 4px;
  display: block;
  letter-spacing: 1px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.aw-cta {
  background: var(--aw-arrowood);
  padding: var(--section-pad) clamp(24px,5vw,60px);
  text-align: center;
}

.aw-cta__label {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(232,224,212,0.55);
  margin-bottom: 20px;
  display: block;
}

.aw-cta__title {
  font-family: var(--font-display);
  font-size: clamp(36px,5vw,64px);
  font-weight: 400;
  color: var(--aw-linen);
  line-height: 1.05;
  margin-bottom: 16px;
}

.aw-cta__title em { font-style: italic; color: rgba(244,240,235,0.7); }

.aw-cta__sub {
  font-size: 14px;
  color: rgba(232,224,212,0.55);
  margin-bottom: 44px;
  letter-spacing: 0.5px;
}

.aw-btn--light {
  background: var(--aw-linen);
  color: var(--aw-midnight);
  padding: 16px 48px;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.3s;
}

.aw-btn--light:hover {
  background: var(--aw-parchment);
}

.aw-cta__note {
  display: block;
  margin-top: 20px;
  font-size: 11px;
  color: rgba(232,224,212,0.35);
  letter-spacing: 1px;
}

/* ============================================
   CONTACT
   ============================================ */
.aw-contact { background: var(--aw-white); }

.aw-contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.aw-contact__info-item {
  margin-bottom: 32px;
}

.aw-contact__info-label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--aw-arrowood);
  margin-bottom: 8px;
  display: block;
}

.aw-contact__info-val {
  font-size: 15px;
  color: var(--aw-midnight);
  font-weight: 300;
}

.aw-form { display: flex; flex-direction: column; gap: 20px; }

.aw-form__group { display: flex; flex-direction: column; gap: 8px; }

.aw-form__label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--aw-muted);
}

.aw-form__input,
.aw-form__select,
.aw-form__textarea {
  background: var(--aw-parchment);
  border: 1px solid var(--aw-border);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--aw-midnight);
  transition: border-color 0.25s;
  width: 100%;
  outline: none;
  appearance: none;
  border-radius: 0;
}

.aw-form__input:focus,
.aw-form__select:focus,
.aw-form__textarea:focus {
  border-color: var(--aw-arrowood);
}

.aw-form__textarea { min-height: 120px; resize: vertical; }

.aw-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.aw-form__submit {
  background: var(--aw-midnight);
  color: var(--aw-linen);
  border: none;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  align-self: flex-start;
}

.aw-form__submit:hover {
  background: var(--aw-arrowood);
}

/* ============================================
   FOOTER
   ============================================ */
.aw-footer {
  background: var(--aw-midnight);
  padding: 60px clamp(24px,5vw,60px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid var(--aw-border-dark);
}

.aw-footer__logo {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(232,224,212,0.4);
  font-weight: 400;
}

.aw-footer__links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.aw-footer__links a {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(232,224,212,0.25);
  transition: color 0.25s;
}

.aw-footer__links a:hover { color: var(--aw-arrowood); }

.aw-footer__copy {
  font-size: 11px;
  color: rgba(232,224,212,0.2);
  letter-spacing: 1px;
}

/* ============================================
   MOBILE NAV MENU
   ============================================ */
.aw-mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--aw-midnight);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}

.aw-mobile-menu.open { transform: translateX(0); }

.aw-mobile-menu a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--aw-linen);
  letter-spacing: 2px;
  transition: color 0.25s;
}

.aw-mobile-menu a:hover { color: var(--aw-arrowood); }

.aw-mobile-close {
  position: absolute;
  top: 28px; right: 28px;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px; height: 32px;
}

.aw-mobile-close::before,
.aw-mobile-close::after {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 1px;
  background: var(--aw-linen);
}

.aw-mobile-close::before { transform: rotate(45deg); }
.aw-mobile-close::after { transform: rotate(-45deg); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .aw-hero__inner { grid-template-columns: 1fr; gap: 60px; }
  .aw-hero__stats { flex-direction: row; border-left: none; border-top: 1px solid rgba(232,224,212,0.08); padding-left: 0; padding-top: 40px; }
  .aw-services__grid { grid-template-columns: 1fr 1fr; }
  .aw-service:nth-child(2) { border-right: none; }
  .aw-service:nth-child(3) { border-top: 1px solid var(--aw-border); grid-column: span 2; border-right: none; }
  .aw-process__steps { grid-template-columns: 1fr 1fr; }
  .aw-step:nth-child(2) { border-right: none; }
  .aw-step:nth-child(3) { border-top: 1px solid var(--aw-border); }
  .aw-testi-grid { grid-template-columns: 1fr; }
  .aw-about__inner { grid-template-columns: 1fr; gap: 60px; }
  .aw-contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .aw-work__grid { grid-template-columns: 1fr; }
  .aw-project:first-child { grid-column: span 1; aspect-ratio: 4/3; }
}

@media (max-width: 768px) {
  .aw-nav__links, .aw-nav__cta { display: none; }
  .aw-nav__hamburger { display: flex; }
  .aw-services__grid, .aw-process__steps { grid-template-columns: 1fr; }
  .aw-service { border-right: none; border-bottom: 1px solid var(--aw-border); }
  .aw-service:last-child { border-bottom: none; }
  .aw-step { border-right: none; border-bottom: 1px solid var(--aw-border); }
  .aw-step:last-child { border-bottom: none; }
  .aw-work__header { flex-direction: column; align-items: flex-start; }
  .aw-footer { flex-direction: column; text-align: center; }
  .aw-form__row { grid-template-columns: 1fr; }
  .aw-hero__stats { flex-direction: column; }
}

/* ============================================
   WORDPRESS STANDARD ELEMENTS
   ============================================ */
.wp-block-image img { max-width: 100%; height: auto; }
.aligncenter { display: block; margin: 0 auto; }
.alignwide { max-width: var(--max-w); margin: 0 auto; }
.screen-reader-text { position: absolute; left: -9999em; }

/* Admin bar offset */
.admin-bar .aw-nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .aw-nav { top: 46px; }
}
