/* ============================================================
   ARIADNE STUDIO WORKS — SHARED STYLES
   Hand-written replacement for the Tailwind CDN build, shared by
   index.html, about.html and contact.html.

   Fonts (Playfair Display, Hanken Grotesk, Geist, Material Symbols)
   are still loaded from Google Fonts via <link> in each page's head.

   Breakpoint: md = 768px. Colours/fonts are identical across the
   three pages; index uses a larger type scale + richer nav/footer,
   so a few things are page-scoped via the body class (.aw-index).
   ============================================================ */

:root {
  --aw-bg: #111414;
  --aw-primary: #ffdea5;
  --aw-primary-dim: #e9c176;
  --aw-on-surface: #e1e3e2;
  --aw-on-surface-variant: #d1c5b4;
  --aw-secondary: #c6c6cb;
  --aw-outline: #9a8f80;
  --aw-outline-variant: #4e4639;
  --aw-on-primary: #412d00;
  --aw-scl: #0c0f0f;   /* surface-container-lowest */
  --aw-sc-low: #191c1c;
  --aw-sc: #1d2020;

  --aw-display: "Playfair Display", Georgia, serif;
  --aw-body: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  --aw-label: "Geist", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

.aw-body {
  margin: 0;
  background: var(--aw-bg);
  color: var(--aw-on-surface);
  font-family: var(--aw-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  --aw-caps-ls: 0.15em; /* about/contact default; index overrides below */
}
.aw-body.aw-index { --aw-caps-ls: 0.1em; }

.aw-body ::selection { background: var(--aw-primary); color: var(--aw-on-primary); }

/* Element resets are wrapped in :where() so they carry zero specificity, the
   way Tailwind's Preflight did. Written plainly (.aw-body a { … }) they score
   (0,1,1) and silently beat every single-class rule below — killing link
   colours and every heading margin, including the `margin: 0 auto` that
   centres .aw-hero-lead / .aw-philosophy-body. */
:where(.aw-body) :where(img) { display: block; max-width: 100%; }
:where(.aw-body) :where(a) { color: inherit; text-decoration: none; }
:where(.aw-body) :where(h1, h2, h3, h4, p) { margin: 0; }
:where(.aw-body) :where(button) { font-family: inherit; background: none; border: none; padding: 0; cursor: pointer; color: inherit; }

/* index uses lighter icon weight */
.aw-index .material-symbols-outlined { font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24; }

/* ---------- Typography helpers ---------- */
.aw-serif-80 { font-family: var(--aw-display); font-size: 80px; line-height: 1.05; letter-spacing: -0.03em; font-weight: 700; }
.aw-serif-64 { font-family: var(--aw-display); font-size: 64px; line-height: 1.1;  letter-spacing: -0.02em; font-weight: 700; }
.aw-serif-48 { font-family: var(--aw-display); font-size: 48px; line-height: 1.15; letter-spacing: -0.02em; font-weight: 700; }
.aw-serif-40 { font-family: var(--aw-display); font-size: 40px; line-height: 1.15; font-weight: 600; }
.aw-serif-32 { font-family: var(--aw-display); font-size: 32px; line-height: 1.2;  font-weight: 600; }

.aw-caps {
  font-family: var(--aw-label);
  font-size: 12px;
  line-height: 1;
  letter-spacing: var(--aw-caps-ls, 0.15em);
  font-weight: 500;
}
.aw-body-lg { font-family: var(--aw-body); font-size: 18px; line-height: 1.7; font-weight: 400; }
.aw-body-sm { font-family: var(--aw-body); font-size: 14px; line-height: 1.5; font-weight: 400; }

.aw-italic { font-style: italic; }
.aw-uppercase { text-transform: uppercase; }
.aw-hidden { display: none; }
.aw-block { display: block; }
.aw-mb-4 { margin-bottom: 1rem; }
.aw-mb-5 { margin-bottom: 1.25rem; }

/* letter-spacing overrides */
.aw-ls-widest { letter-spacing: 0.1em; }
.aw-ls-025 { letter-spacing: 0.25em; }
.aw-ls-03  { letter-spacing: 0.3em; }
.aw-ls-035 { letter-spacing: 0.35em; }

/* colour helpers */
.aw-t-primary { color: var(--aw-primary); }
.aw-t-primary-dim { color: var(--aw-primary-dim); }
.aw-t-secondary { color: var(--aw-secondary); }
.aw-t-on-surface { color: var(--aw-on-surface); }
.aw-t-on-surface-variant { color: var(--aw-on-surface-variant); }
.aw-t-outline { color: var(--aw-outline); }
.aw-strong { color: var(--aw-primary-dim); font-weight: 600; }

/* ============================================================
   ANIMATIONS / EFFECTS
   ============================================================ */

/* Golden thread */
.aw-thread-wrap { position: absolute; inset: 0; pointer-events: none; z-index: 10; display: flex; justify-content: center; overflow: hidden; }
.aw-thread-svg { width: 100%; height: 100%; max-width: 1200px; }
.aw-thread-path { stroke-dasharray: 9999; stroke-dashoffset: 9999; }

.aw-thread-index { opacity: 0.55; filter: drop-shadow(0 0 6px rgba(233,193,118,0.3)); animation: aw-thread-pulse-index 5s ease-in-out infinite; }
@keyframes aw-thread-pulse-index {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(233,193,118,0.35)); }
  50%      { filter: drop-shadow(0 0 20px rgba(233,193,118,0.75)); }
}
.aw-thread-sub { opacity: 0.35; animation: aw-thread-pulse-sub 5s ease-in-out infinite; }
@keyframes aw-thread-pulse-sub {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(233,193,118,0.2)); }
  50%      { filter: drop-shadow(0 0 12px rgba(233,193,118,0.5)); }
}

/* Parallax */
.aw-parallax { will-change: transform; transform-origin: center top; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.985);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* Float */
@keyframes aw-float-subtle { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }
.aw-float { animation: aw-float-subtle 3.8s ease-in-out infinite; }

/* Depth separator */
.aw-depth-divider { height: 1px; background: linear-gradient(to right, transparent, rgba(233,193,118,0.35), transparent); }

/* 3D card + spotlight */
.aw-portfolio-scene { perspective: 1400px; perspective-origin: 50% 30%; }
.aw-card-3d {
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.55s cubic-bezier(0.23, 1, 0.32, 1);
  transform: perspective(1200px) rotateX(0deg) rotateY(0deg) translateZ(0);
}
.aw-card-spotlight { position: relative; overflow: hidden; }
.aw-card-spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(233,193,118,0.07) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}
.aw-card-spotlight:hover::before { opacity: 1; }

/* Principle diamonds */
.aw-diamond {
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
  will-change: transform;
}
.aw-diamond:hover { transform: rotateX(-6deg) rotateY(6deg) scale(1.05); }

/* Obsidian gradient (about / contact) */
.aw-obsidian { background: radial-gradient(circle at center, #191c1c 0%, #0c0f0f 100%); }

/* Contact card hover (contact) */
.aw-contact-card { transition: border-color 0.4s ease, transform 0.4s cubic-bezier(0.23, 1, 0.32, 1); }
.aw-contact-card:hover { border-color: rgba(233,193,118,0.35); transform: translateY(-3px); }

/* ============================================================
   NAV — index (centred, tall brand)
   ============================================================ */
.aw-inav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(17,20,20,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(78,70,57,0.3);
}
.aw-inav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
}
.aw-inav-brand { font-family: var(--aw-display); font-size: 32px; font-weight: 600; letter-spacing: -0.05em; color: var(--aw-primary); transition: color 0.3s; }
.aw-inav-brand:hover { color: var(--aw-primary-dim); }
.aw-inav-links { display: none; align-items: center; gap: 3rem; }
.aw-inav-link { color: var(--aw-secondary); transition: color 0.5s; }
.aw-inav-link:hover { color: var(--aw-primary); }
.aw-inav-link.is-active { color: var(--aw-primary); border-bottom: 1px solid var(--aw-primary); padding-bottom: 0.125rem; }
.aw-nav-toggle { color: var(--aw-on-surface); padding: 0.5rem; }

/* ============================================================
   NAV — about / contact (h-16 bar)
   ============================================================ */
.aw-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  background: rgba(17,20,20,0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(78,70,57,0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  height: 4rem;
}
.aw-nav-brand { font-family: var(--aw-display); font-size: 18px; letter-spacing: -0.05em; color: var(--aw-primary); transition: color 0.3s; }
.aw-nav-brand:hover { color: var(--aw-primary-dim); }
.aw-nav-links { display: none; gap: 2rem; align-items: center; }
.aw-nav-link { color: var(--aw-secondary); transition: color 0.3s; }
.aw-nav-link:hover { color: var(--aw-primary); }
.aw-nav-link.is-active { color: var(--aw-primary); border-bottom: 1px solid var(--aw-primary); padding-bottom: 0.25rem; }

/* Mobile menu (shared) */
.aw-mobile-menu {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 40;
  background: rgba(17,20,20,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(78,70,57,0.4);
  flex-direction: column;
  padding: 1.5rem 2rem;
  gap: 1.25rem;
  display: none;
}
.aw-mobile-menu.open { display: flex; }
.aw-mobile-menu a { color: var(--aw-secondary); }
.aw-mobile-menu a.is-active { color: var(--aw-primary); }
.aw-mobile-menu--index { top: 72px; }
.aw-mobile-menu--sub { top: 4rem; }

@media (min-width: 768px) {
  .aw-inav-inner { padding-left: 4rem; padding-right: 4rem; }
  .aw-inav-links { display: flex; }
  .aw-nav { padding-left: 4rem; padding-right: 4rem; }
  .aw-nav-links { display: flex; }
  .aw-nav-toggle { display: none; }
  .aw-mobile-menu { display: none !important; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.aw-btn-outline {
  display: inline-block;
  border: 1px solid var(--aw-outline-variant);
  color: var(--aw-secondary);
  padding: 1rem 2.5rem;
  transition: color 0.3s, border-color 0.3s;
}
.aw-btn-outline:hover { border-color: var(--aw-primary); color: var(--aw-primary); }

.aw-btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--aw-secondary);
  color: var(--aw-secondary);
  padding: 0.875rem 2rem;
  align-self: flex-start;
  transition: color 0.3s, border-color 0.3s;
}
.aw-btn-explore:hover { border-color: var(--aw-primary); color: var(--aw-primary); }
.aw-btn-explore .material-symbols-outlined { font-size: 16px; transition: transform 0.3s; }
.aw-btn-explore:hover .material-symbols-outlined { transform: translateX(6px); }

.aw-btn-solid {
  display: inline-block;
  background: var(--aw-primary);
  color: var(--aw-on-primary);
  padding: 1.25rem 3rem;
  box-shadow: 0 0 30px rgba(233,193,118,0.2);
  transition: background-color 0.3s;
}
.aw-stack-10 > * + * { margin-top: 2.5rem; }
.aw-cta-actions { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.aw-btn-solid:hover { background: var(--aw-primary-dim); }

/* link with arrow */
.aw-arrow-link { display: inline-flex; align-items: center; gap: 1rem; color: var(--aw-primary); }
.aw-arrow-link .material-symbols-outlined { transition: transform 0.3s; }
.aw-arrow-link:hover .material-symbols-outlined { transform: translateX(8px); }

/* ============================================================
   LAYOUT
   ============================================================ */
.aw-main { position: relative; }
.aw-main--sub { padding-top: 4rem; }
.aw-wrap { max-width: 1200px; margin: 0 auto; }

/* ============================================================
   INDEX — HERO
   ============================================================ */
.aw-hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.aw-hero-bg { position: absolute; inset: 0; transform: scale(1.12); }
.aw-hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); opacity: 0.75; }
.aw-hero-veil-1 { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(17,20,20,0.3), transparent, var(--aw-bg)); }
.aw-hero-veil-2 { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to right, rgba(17,20,20,0.2), transparent, rgba(17,20,20,0.2)); }
.aw-hero-content { position: relative; z-index: 20; text-align: center; padding: 0 2rem; max-width: 56rem; margin: 0 auto; }
.aw-hero-eyebrow { display: block; margin-bottom: 2rem; }
.aw-hero-title { font-family: var(--aw-display); font-size: 64px; line-height: 1.08; letter-spacing: -0.02em; font-weight: 700; font-style: italic; color: var(--aw-primary); margin-bottom: 1.5rem; }
.aw-hero-lead { max-width: 32rem; margin: 0 auto; opacity: 0.8; color: var(--aw-secondary); line-height: 1.625; }
.aw-hero-cta { margin-top: 3.5rem; }
.aw-scroll-indicator { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 20; }
.aw-scroll-indicator .material-symbols-outlined { color: var(--aw-primary); opacity: 0.6; font-size: 1.875rem; }

/* ============================================================
   INDEX — PHILOSOPHY
   ============================================================ */
.aw-philosophy { position: relative; padding: 10rem 2rem; background: var(--aw-bg); }
.aw-philosophy-inner { max-width: 1200px; margin: 0 auto; }
.aw-philosophy-col { text-align: center; max-width: 50rem; margin: 0 auto; }
.aw-pill { display: inline-block; padding: 0.375rem 1.25rem; margin-bottom: 2.5rem; border: 1px solid rgba(78,70,57,0.6); }
.aw-philosophy-title { font-family: var(--aw-display); font-size: 40px; line-height: 1.15; font-weight: 600; color: var(--aw-on-surface); margin-bottom: 2.5rem; }
.aw-philosophy-title em { color: var(--aw-primary); }
.aw-philosophy-body { color: var(--aw-secondary); line-height: 1.625; max-width: 42rem; margin: 0 auto; }
.aw-divider-24 { width: 6rem; margin: 0 auto 2.5rem; }
.aw-divider-20 { width: 5rem; margin: 1.5rem auto 0; }

/* ============================================================
   INDEX — PORTFOLIO
   ============================================================ */
.aw-portfolio { position: relative; padding: 8rem 2rem; }
.aw-portfolio-inner { max-width: 1200px; margin: 0 auto; }
.aw-portfolio-head { text-align: center; margin-bottom: 6rem; }
.aw-portfolio-list { display: flex; flex-direction: column; gap: 1.5rem; }

.aw-pcard { border: 1px solid rgba(78,70,57,0.4); position: relative; overflow: hidden; }
.aw-pcard--lowest { background: var(--aw-scl); }
.aw-pcard--low { background: var(--aw-sc-low); }
.aw-pcard-inner { position: relative; z-index: 10; padding: 2.5rem 2.5rem 3rem; }
.aw-pcard-top { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 2.5rem; }
.aw-pcard-icon { width: 72px; height: 72px; border-radius: 22%; overflow: hidden; flex-shrink: 0; box-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.aw-pcard-icon img { width: 100%; height: 100%; object-fit: cover; }
.aw-pcard-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: end; }
.aw-pcard-title { font-family: var(--aw-display); font-size: 40px; line-height: 1.15; font-weight: 600; color: var(--aw-on-surface); margin-bottom: 1.25rem; }
.aw-pcard-body { color: var(--aw-on-surface-variant); line-height: 1.625; }
.aw-pcard-side { display: flex; }
.aw-pcard-side--stack { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
.aw-blog-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--aw-on-surface-variant); align-self: flex-start; opacity: 0.7; transition: color 0.3s, opacity 0.3s; }
.aw-blog-link:hover { color: var(--aw-primary); opacity: 1; }
.aw-blog-link .material-symbols-outlined { font-size: 15px; }

/* ============================================================
   INDEX — PRINCIPLES
   ============================================================ */
.aw-principles { position: relative; padding: 12rem 2rem; background: var(--aw-scl); border-top: 1px solid rgba(78,70,57,0.25); border-bottom: 1px solid rgba(78,70,57,0.25); }
.aw-principles-grid-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; opacity: 0.04; }
.aw-principles-grid-bg svg { width: 100%; height: 100%; }
.aw-principles-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.aw-principles-head { text-align: center; margin-bottom: 5rem; }
.aw-principles-cols { display: grid; grid-template-columns: 1fr; gap: 4rem; }
.aw-principle { text-align: center; }
.aw-diamond {
  width: 4rem;
  height: 4rem;
  border: 1px solid var(--aw-outline-variant);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 3rem;
}
.aw-principle:hover .aw-diamond { border-color: var(--aw-primary); }
.aw-diamond .material-symbols-outlined { color: var(--aw-primary); transform: rotate(-45deg); font-size: 1.875rem; }
.aw-principle-title { color: var(--aw-primary); margin-bottom: 1.25rem; }
.aw-principle-body { color: var(--aw-secondary); line-height: 1.625; }

/* ============================================================
   INDEX — FINAL CTA
   ============================================================ */
.aw-icta { position: relative; padding: 15rem 2rem; overflow: hidden; }
.aw-icta-bg { position: absolute; inset: 0; z-index: 0; }
.aw-icta-bg-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.65); z-index: 10; }
.aw-icta-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }
.aw-icta-content { position: relative; z-index: 20; max-width: 48rem; margin: 0 auto; text-align: center; }
.aw-icta-eyebrow { display: block; margin-bottom: 2rem; }
.aw-icta-title { font-family: var(--aw-display); font-size: 64px; line-height: 1.1; letter-spacing: -0.02em; font-weight: 700; font-style: italic; color: var(--aw-on-surface); margin-bottom: 3.5rem; }

/* ============================================================
   INDEX — FOOTER
   ============================================================ */
.aw-ifooter { background: var(--aw-scl); border-top: 1px solid rgba(78,70,57,0.3); }
.aw-ifooter-inner { display: flex; flex-direction: column; justify-content: space-between; align-items: center; padding: 4rem 2rem; width: 100%; max-width: 1200px; margin: 0 auto; gap: 2rem; }
.aw-ifooter-brand-col { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.aw-ifooter-brand { font-family: var(--aw-display); font-size: 32px; color: var(--aw-primary); transition: color 0.3s; }
.aw-ifooter-brand:hover { color: var(--aw-primary-dim); }
.aw-ifooter-copy { color: var(--aw-on-surface-variant); opacity: 0.6; }
.aw-ifooter-cols { display: flex; gap: 3rem; }
.aw-ifooter-linkcol { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; }
.aw-flink { color: var(--aw-on-surface-variant); transition: color 0.5s; }
.aw-flink:hover { color: var(--aw-primary); }
.aw-ifooter-social { display: flex; gap: 1.5rem; }
.aw-ifooter-social .material-symbols-outlined { color: var(--aw-secondary); cursor: pointer; transition: color 0.3s; }
.aw-ifooter-social .material-symbols-outlined:hover { color: var(--aw-primary); }

/* ============================================================
   ABOUT / CONTACT — shared section chrome
   ============================================================ */
.aw-subhero { position: relative; height: 85vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.aw-subhero-bg { position: absolute; inset: 0; z-index: 0; }
.aw-subhero-bg img { width: 100%; height: 100%; object-fit: cover; }
.aw-subhero-bg-fade { position: absolute; inset: 0; background: linear-gradient(to top, var(--aw-bg), rgba(17,20,20,0.2), transparent); }
.aw-subhero-content { position: relative; z-index: 20; text-align: center; max-width: 48rem; padding: 0 2rem; }
.aw-subhero-eyebrow { display: block; margin-bottom: 1.5rem; }
.aw-subhero-title { font-family: var(--aw-display); font-size: 48px; line-height: 1.15; letter-spacing: -0.02em; font-weight: 700; color: var(--aw-on-surface); margin-bottom: 1.5rem; }
.aw-subhero-lead { color: var(--aw-secondary); }

.aw-section { position: relative; padding: 8rem 2rem; }
.aw-section-narrow { max-width: 42rem; margin: 0 auto; text-align: center; }
.aw-section-obsidian { position: relative; padding: 8rem 2rem; border-top: 1px solid rgba(78,70,57,0.3); border-bottom: 1px solid rgba(78,70,57,0.3); }
.aw-hairline { height: 1px; width: 8rem; background: var(--aw-primary); margin: 0 auto; opacity: 0.3; }

/* ABOUT — legend / thread / why */
.aw-legend-title { font-family: var(--aw-display); font-style: italic; font-size: 32px; line-height: 1.2; font-weight: 600; color: var(--aw-primary-dim); }
.aw-legend-body { font-family: var(--aw-body); font-size: 32px; line-height: 1.625; color: var(--aw-on-surface); }
.aw-two-col { display: grid; grid-template-columns: 1fr; gap: 6rem; align-items: center; max-width: 1200px; margin: 0 auto; }
.aw-thread-frame { position: relative; }
.aw-thread-frame-border { position: absolute; inset: -0.5rem; border: 1px solid var(--aw-outline-variant); opacity: 0.2; transition: opacity 0.7s; }
.aw-thread-frame:hover .aw-thread-frame-border { opacity: 0.4; }
.aw-thread-frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; filter: grayscale(1); transition: filter 1s; }
.aw-thread-frame:hover img { filter: grayscale(0); }
.aw-heading-32 { font-family: var(--aw-display); font-size: 32px; line-height: 1.2; font-weight: 600; color: var(--aw-on-surface); }
.aw-stack-8 > * + * { margin-top: 2rem; }
.aw-why-inner { max-width: 1200px; margin: 0 auto; }
.aw-why-head { margin-bottom: 4rem; }
.aw-why-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.aw-why-item { border-left: 1px solid rgba(233,193,118,0.3); padding: 1rem 0 1rem 2rem; }
.aw-why-item > * + * { margin-top: 1rem; }

/* CTA (about / contact) */
.aw-subcta { position: relative; padding: 12rem 2rem; text-align: center; overflow: hidden; }
.aw-subcta-bg { position: absolute; inset: 0; z-index: 0; }
.aw-subcta-bg-overlay { position: absolute; inset: 0; z-index: 10; }
.aw-subcta-bg img { width: 100%; height: 100%; object-fit: cover; }
.aw-subcta-content { position: relative; z-index: 20; max-width: 42rem; margin: 0 auto; }
.aw-subcta-title { font-family: var(--aw-display); font-size: 48px; line-height: 1.15; letter-spacing: -0.02em; font-weight: 700; color: var(--aw-on-surface); }

/* CONTACT — inquiries + support cards */
.aw-inq-mail { display: inline-flex; align-items: center; gap: 0.75rem; }
.aw-inq-mail .material-symbols-outlined { color: var(--aw-primary); font-size: 20px; }
.aw-inq-mail span:last-child { color: var(--aw-primary); transition: color 0.3s; }
.aw-inq-mail:hover span:last-child { color: var(--aw-primary-dim); }
.aw-support-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.aw-support-card { border: 1px solid rgba(78,70,57,0.4); padding: 2.5rem; }
.aw-support-card > * + * { margin-top: 1.5rem; }
.aw-support-card--lowest { background: var(--aw-scl); }
.aw-support-card--low { background: var(--aw-sc-low); }
.aw-support-icon { width: 3.5rem; height: 3.5rem; border-radius: 22%; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.aw-support-icon img { width: 100%; height: 100%; object-fit: cover; }
.aw-support-card-titles > * + * { margin-top: 0.5rem; }
.aw-support-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--aw-primary); }
.aw-support-link .material-symbols-outlined { font-size: 15px; }
.aw-support-link .aw-arrow { font-size: 14px; transition: transform 0.3s; }
.aw-support-link:hover .aw-arrow { transform: translateX(4px); }

/* ============================================================
   ABOUT / CONTACT — FOOTER
   ============================================================ */
.aw-footer { width: 100%; background: var(--aw-scl); border-top: 1px solid rgba(78,70,57,0.4); }
.aw-footer-inner { display: flex; flex-direction: column; justify-content: space-between; align-items: center; padding: 3rem 2rem; max-width: 1200px; margin: 0 auto; gap: 2rem; }
.aw-footer-brand { font-family: var(--aw-display); font-size: 20px; color: var(--aw-primary); transition: color 0.3s; }
.aw-footer-brand:hover { color: var(--aw-primary-dim); }
.aw-footer-right { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.aw-footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.aw-footer-copy { color: var(--aw-on-surface-variant); opacity: 0.6; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 768px) {
  .aw-philosophy, .aw-portfolio, .aw-principles, .aw-section, .aw-section-obsidian { padding-left: 4rem; padding-right: 4rem; }
  .aw-philosophy { padding-top: 10rem; padding-bottom: 10rem; }
  .aw-hero-content, .aw-icta-content { padding-left: 4rem; padding-right: 4rem; }

  .aw-hero-title { font-size: 80px; line-height: 1.08; letter-spacing: -0.03em; }
  .aw-philosophy-title { font-size: 44px; }
  .aw-icta-title { font-size: 80px; line-height: 1.05; letter-spacing: -0.03em; }

  .aw-pcard-inner { padding: 3rem 3.5rem 3.5rem; }
  .aw-pcard-grid { grid-template-columns: repeat(12, 1fr); }
  .aw-pcard-main { grid-column: span 9; }
  .aw-pcard-side { grid-column: span 3; justify-content: flex-end; }
  .aw-pcard-side--stack { align-items: flex-end; }

  .aw-principles-cols { grid-template-columns: repeat(3, 1fr); }
  .aw-ifooter-inner { flex-direction: row; padding-left: 4rem; padding-right: 4rem; }
  .aw-ifooter-brand-col { align-items: flex-start; }
  .aw-ifooter-linkcol { align-items: flex-start; }

  .aw-subhero-title { font-size: 64px; }
  .aw-subcta-title { font-size: 64px; }
  .aw-two-col { grid-template-columns: 1fr 1fr; }
  .aw-why-grid { grid-template-columns: repeat(3, 1fr); }
  .aw-support-grid { grid-template-columns: repeat(3, 1fr); }

  .aw-footer-inner { flex-direction: row; padding-left: 4rem; padding-right: 4rem; }
  .aw-footer-right { flex-direction: row; }
}
