:root {
  --purple-950: #1c063d;
  --purple-900: #2b0a5a;
  --purple-800: #3b1075;
  --purple-700: #4c0096;
  --purple-100: #eee7f8;
  --amber-500: #ffbc01;
  --amber-400: #ffd04b;
  --ink: #221a2b;
  --muted: #6e6676;
  --paper: #f8f7fb;
  --white: #fff;
  --line: #e7e2ed;
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow: 0 24px 70px rgba(31, 11, 57, .13);
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

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

a { color: inherit; }

button, input, textarea { font: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

::selection { color: var(--purple-950); background: var(--amber-400); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--purple-950);
  background: var(--amber-500);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  transition: background-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  background: rgba(28, 6, 61, .94);
  box-shadow: 0 10px 36px rgba(17, 4, 36, .22);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: block;
  width: clamp(220px, 21vw, 292px);
  padding: 7px 11px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 12px;
  box-shadow: 0 7px 25px rgba(16, 3, 35, .15);
}

.brand img { width: 100%; height: auto; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
}

.primary-nav a {
  position: relative;
  color: rgba(255, 255, 255, .84);
  font-size: .91rem;
  font-weight: 680;
  text-decoration: none;
  transition: color .2s ease;
}

.primary-nav > a:not(.nav-phone)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--amber-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible { color: var(--white); }

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after { transform: scaleX(1); }

.nav-phone {
  padding: 10px 16px;
  color: var(--purple-950) !important;
  background: var(--amber-500);
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 790px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-color: var(--purple-950);
  background-image:
    linear-gradient(90deg, rgba(25, 4, 54, .98) 0%, rgba(38, 8, 77, .91) 42%, rgba(35, 8, 65, .5) 68%, rgba(24, 7, 38, .16) 100%),
    url("../images/hero-network.webp");
  background-position: center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 58%, rgba(255, 176, 0, .11), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, .14), transparent 24%, transparent 76%, rgba(17, 4, 36, .3));
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 118px;
  padding-bottom: 92px;
}

.hero-copy { max-width: 700px; }

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--amber-500);
  font-size: .77rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow { display: flex; align-items: center; gap: 10px; }

.eyebrow span {
  width: 24px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(3.4rem, 6.8vw, 6rem);
  line-height: .95;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--amber-500);
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .79);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  font-size: .94rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  color: var(--purple-950);
  background: var(--amber-500);
  box-shadow: 0 12px 30px rgba(255, 176, 0, .2);
}

.button-primary:hover { background: var(--amber-400); }

.button-ghost {
  gap: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .33);
}

.button-ghost:hover { background: rgba(255, 255, 255, .14); }

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 700px;
  margin: 48px 0 0;
  padding: 25px 0 0;
  border-top: 1px solid rgba(255, 255, 255, .2);
  list-style: none;
}

.hero-points li {
  padding-right: 22px;
  color: rgba(255, 255, 255, .6);
  font-size: .76rem;
  line-height: 1.4;
}

.hero-points li + li {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, .18);
}

.hero-points strong,
.hero-points span { display: block; }

.hero-points strong {
  margin-bottom: 4px;
  color: var(--white);
  font-size: .85rem;
}

.hero-scroll {
  position: absolute;
  right: max(24px, calc((100vw - var(--container)) / 2));
  bottom: 29px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .66);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-scroll span {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
}

.hero-scroll span::after {
  content: "↓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--amber-500);
}

.intro-strip {
  color: var(--white);
  background: var(--purple-900);
  border-top: 4px solid var(--amber-500);
}

.intro-strip-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.intro-strip p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.intro-strip span {
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  background: var(--amber-500);
  border-radius: 50%;
}

.section { padding: 112px 0; }

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: end;
  margin-bottom: 56px;
}

.section-heading h2,
.craft-copy h2,
.process-intro h2,
.contact-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.35rem, 4.8vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
}

.services-section { background: var(--paper); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 390px;
  padding: 34px 32px;
  background: rgba(255, 255, 255, .58);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  position: relative;
  z-index: 1;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 58px;
  color: var(--purple-700);
  background: var(--purple-100);
  border-radius: 50%;
  font-size: .74rem;
  font-weight: 850;
}

.service-card h3 {
  margin: 0 0 14px;
  color: var(--purple-900);
  font-size: 1.35rem;
  letter-spacing: -.025em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: .93rem;
}

.service-card ul {
  margin: 23px 0 0;
  padding: 0;
  color: #544b5c;
  font-size: .79rem;
  list-style: none;
}

.service-card li { position: relative; padding: 6px 0 6px 17px; }

.service-card li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--amber-500);
  border-radius: 50%;
}

.service-card-accent {
  color: var(--white);
  background: var(--purple-900);
}

.service-card-accent:hover { background: var(--purple-800); }
.service-card-accent .service-number { color: var(--purple-950); background: var(--amber-500); }
.service-card-accent h3 { color: var(--white); }
.service-card-accent p,
.service-card-accent ul { color: rgba(255, 255, 255, .7); }

.craft-section { background: var(--white); }

.craft-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
}

.craft-photo {
  position: relative;
  min-height: 650px;
}

.craft-photo::before {
  content: "";
  position: absolute;
  top: -24px;
  left: -24px;
  width: 42%;
  height: 40%;
  background: var(--amber-500);
  border-radius: var(--radius-lg);
}

.craft-photo img {
  position: relative;
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.photo-note {
  position: absolute;
  right: -30px;
  bottom: 34px;
  min-width: 255px;
  padding: 20px 24px;
  color: var(--white);
  background: var(--purple-900);
  border-left: 5px solid var(--amber-500);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.photo-note strong,
.photo-note span { display: block; }

.photo-note strong { font-size: .93rem; }
.photo-note span { color: rgba(255, 255, 255, .68); font-size: .75rem; }

.craft-copy > p:not(.section-kicker) {
  margin: 24px 0 0;
  color: var(--muted);
}

.founder-card {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 0 18px;
  margin-top: 30px;
  padding: 22px;
  background: #f4f0f9;
  border: 1px solid #e5dcee;
  border-radius: var(--radius-sm);
}

.founder-mark {
  grid-row: 1 / span 2;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  color: var(--purple-950);
  background: var(--amber-500);
  border-radius: 50%;
  font-size: .88rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.founder-identity > span {
  display: block;
  margin-bottom: 3px;
  color: var(--purple-700);
  font-size: .65rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.founder-identity h3 {
  margin: 0;
  color: var(--purple-900);
  font-size: 1.18rem;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.founder-identity p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 700;
}

.founder-bio {
  grid-column: 2;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: .8rem;
  line-height: 1.6;
}

.craft-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.craft-values div {
  padding: 20px 0 0;
  border-top: 2px solid var(--amber-500);
}

.craft-values strong,
.craft-values span { display: block; }
.craft-values strong { color: var(--purple-900); font-size: .88rem; }
.craft-values span { margin-top: 5px; color: var(--muted); font-size: .78rem; }

.projects-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 12%, rgba(109, 58, 177, .36), transparent 29%),
    var(--purple-950);
}

.projects-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--amber-500);
}

.section-heading-light > p { color: rgba(255, 255, 255, .63); }

.featured-projects {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.project-card {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.project-copy {
  position: relative;
  z-index: 2;
  max-width: 58%;
  padding: 42px;
}

.project-label {
  margin: 0 0 12px;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0;
  font-size: clamp(2.15rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.project-card p:not(.project-label) {
  margin: 20px 0 0;
  font-size: .91rem;
}

.project-card a {
  display: inline-flex;
  gap: 7px;
  margin-top: 25px;
  font-size: .82rem;
  font-weight: 850;
  text-decoration: none;
}

.project-card a:hover { text-decoration: underline; }

.project-card > img {
  position: absolute;
  right: -5%;
  bottom: -8%;
  width: 60%;
  height: 76%;
  object-fit: contain;
}

.project-mystani {
  color: var(--white);
  background: linear-gradient(140deg, #6840bc, #3c187f);
}

.project-mystani .project-label,
.project-mystani a { color: var(--amber-400); }

.project-aris {
  color: var(--ink);
  background: #f3eff8;
}

.project-aris .project-label,
.project-aris a { color: var(--purple-700); }

.smartie-callout {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 34px;
  align-items: center;
  max-width: 920px;
  margin: 74px auto 0;
  padding: 28px 40px 28px 24px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
}

.smartie-callout img {
  width: 148px;
  max-height: 190px;
  margin: -53px auto -24px;
  object-fit: contain;
}

.smartie-callout .section-kicker { margin-bottom: 7px; }

.smartie-callout h3 {
  margin: 0;
  font-size: 1.65rem;
  letter-spacing: -.025em;
}

.smartie-callout p:last-child {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, .66);
  font-size: .9rem;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 68px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  border-left: 1px solid rgba(255, 255, 255, .13);
}

.project-list a {
  min-height: 175px;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, .13);
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  text-decoration: none;
  transition: background-color .2s ease;
}

.project-list a:hover { background: rgba(255, 255, 255, .07); }

.project-list span,
.project-list strong,
.project-list small { display: block; }

.project-list span {
  margin-bottom: 35px;
  color: var(--amber-500);
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.project-list strong { font-size: .94rem; }
.project-list small { margin-top: 4px; color: rgba(255, 255, 255, .5); font-size: .72rem; }

.process-section { background: var(--paper); }

.process-intro {
  display: grid;
  grid-template-columns: .45fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 66px;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: .45fr 1fr;
  gap: 50px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.process-list > li > span {
  color: var(--purple-700);
  font-size: .76rem;
  font-weight: 850;
}

.process-list h3 {
  margin: 0 0 6px;
  color: var(--purple-900);
  font-size: 1.3rem;
  letter-spacing: -.025em;
}

.process-list p { max-width: 670px; margin: 0; color: var(--muted); font-size: .91rem; }

.store-section {
  padding: 0 0 112px;
  background: var(--paper);
}

.store-card {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  min-height: 570px;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.store-image { min-height: 570px; }

.store-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 39%;
}

.store-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 78px);
}

.store-copy h2 {
  margin: 0;
  color: var(--purple-900);
  font-size: clamp(2.15rem, 4vw, 3.75rem);
  line-height: 1.04;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.store-copy > p:not(.section-kicker) {
  margin: 23px 0 0;
  color: var(--muted);
}

.store-address {
  display: grid;
  gap: 5px;
  margin: 32px 0 28px;
  padding: 19px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.store-address span {
  color: var(--purple-700);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.store-address strong {
  color: var(--ink);
  font-size: .92rem;
  line-height: 1.5;
}

.button-dark {
  align-self: flex-start;
  gap: 8px;
  color: var(--white);
  background: var(--purple-900);
}

.button-dark:hover { background: var(--purple-700); }

.contact-section {
  padding-top: 20px;
  background: var(--paper);
}

.contact-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(45px, 7vw, 100px);
  padding: clamp(38px, 6vw, 78px);
  color: var(--white);
  background:
    radial-gradient(circle at 10% 90%, rgba(109, 58, 177, .35), transparent 38%),
    var(--purple-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-copy > p:not(.section-kicker) {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .66);
}

.contact-copy address {
  display: grid;
  gap: 15px;
  margin-top: 44px;
  font-style: normal;
}

.contact-copy address a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  text-decoration: none;
}

.contact-copy address a:hover strong { color: var(--amber-400); }

.contact-copy address span {
  color: rgba(255, 255, 255, .45);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-copy address strong {
  text-align: right;
  font-size: .86rem;
  transition: color .2s ease;
}

.contact-form {
  padding: clamp(28px, 4vw, 44px);
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 17px;
  color: #4c4255;
  font-size: .76rem;
  font-weight: 800;
}

.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: #faf9fc;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input { height: 50px; padding: 0 14px; }
.contact-form textarea { min-height: 132px; padding: 12px 14px; resize: vertical; }

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--purple-700);
  box-shadow: 0 0 0 4px rgba(76, 0, 150, .11);
}

.contact-form .button { width: 100%; margin-top: 4px; }

.form-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: .68rem;
  text-align: center;
}

.site-footer {
  padding: 75px 0 26px;
  color: var(--white);
  background: var(--purple-950);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 58px;
}

.footer-brand img {
  width: 255px;
  height: auto;
  padding: 8px 10px;
  background: rgba(255, 255, 255, .94);
  border-radius: 10px;
}
.footer-brand p { max-width: 320px; margin: 18px 0 0; color: rgba(255, 255, 255, .55); font-size: .84rem; }

.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.footer-links div { display: grid; align-content: start; gap: 8px; }
.footer-links span { margin-bottom: 8px; color: var(--amber-500); font-size: .68rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.footer-links a { width: fit-content; color: rgba(255, 255, 255, .68); font-size: .8rem; text-decoration: none; }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 23px;
  color: rgba(255, 255, 255, .43);
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .72rem;
}

.footer-bottom p { margin: 0; }
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-owner strong { color: rgba(255, 255, 255, .75); font-weight: 750; }

.mobile-actions { display: none; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--amber-500);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }

  .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 390px);
    height: 100dvh;
    padding: 110px 32px 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--purple-950);
    box-shadow: -20px 0 70px rgba(0, 0, 0, .3);
    transform: translateX(105%);
    transition: transform .25s ease;
  }

  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav a { padding: 17px 0; font-size: 1rem; border-bottom: 1px solid rgba(255, 255, 255, .12); }
  .primary-nav .nav-phone { margin-top: 25px; padding: 14px 18px; text-align: center; border: 0; }
  .nav-toggle { position: relative; z-index: 2; }

  .hero { min-height: 760px; }
  .hero-copy { max-width: 620px; }
  .hero h1 { font-size: clamp(3.4rem, 9vw, 5.4rem); }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .craft-grid { grid-template-columns: 1fr; }
  .craft-photo { min-height: 540px; max-width: 780px; }
  .craft-photo img { height: 540px; }
  .craft-copy { max-width: 760px; }

  .store-card { grid-template-columns: 1fr; }
  .store-image { min-height: 440px; }

  .featured-projects { grid-template-columns: 1fr; }
  .project-card { min-height: 430px; }
  .project-card > img { width: 48%; }

  .project-list { grid-template-columns: repeat(2, 1fr); }

  .contact-panel { grid-template-columns: 1fr; }
  .contact-copy { max-width: 700px; }
}

@media (max-width: 700px) {
  body { padding-bottom: 62px; font-size: 16px; }

  .container { width: min(calc(100% - 28px), var(--container)); }
  .header-inner { min-height: 72px; }
  .brand { width: 202px; padding: 6px 8px; }

  .hero {
    min-height: 820px;
    align-items: end;
    background-image:
      linear-gradient(180deg, rgba(25, 4, 54, .4) 0%, rgba(28, 6, 61, .66) 36%, rgba(28, 6, 61, .98) 65%, rgba(28, 6, 61, 1) 100%),
      url("../images/hero-network-mobile.webp");
    background-position: center top;
  }

  .hero-inner { padding-top: 210px; padding-bottom: 78px; }
  .eyebrow { font-size: .66rem; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  .hero-lead { margin-top: 22px; font-size: 1rem; }
  .hero-actions { display: grid; margin-top: 28px; }
  .button { width: 100%; }
  .hero-points { grid-template-columns: 1fr; margin-top: 34px; padding-top: 15px; }
  .hero-points li { padding: 9px 0; }
  .hero-points li + li { padding-left: 0; border-left: 0; }
  .hero-points span { display: none; }
  .hero-scroll { display: none; }

  .intro-strip-inner { min-height: 74px; justify-content: flex-start; overflow-x: auto; scrollbar-width: none; }
  .intro-strip-inner::-webkit-scrollbar { display: none; }
  .intro-strip p { flex: 0 0 auto; }

  .section { padding: 82px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 38px; }
  .section-heading h2,
  .craft-copy h2,
  .process-intro h2,
  .contact-copy h2 { font-size: clamp(2.2rem, 11vw, 3.2rem); }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; padding: 28px 24px 30px; }
  .service-number { margin-bottom: 34px; }

  .craft-photo { min-height: 440px; margin-left: 10px; }
  .craft-photo::before { top: -12px; left: -12px; }
  .craft-photo img { height: 440px; }
  .photo-note { right: 12px; bottom: 18px; min-width: 220px; }
  .founder-card { grid-template-columns: 54px 1fr; padding: 18px; }
  .founder-mark { width: 54px; height: 54px; }
  .founder-bio { grid-column: 1 / -1; margin-top: 16px; }
  .craft-values { grid-template-columns: 1fr; }

  .project-card { min-height: 570px; }
  .project-copy { max-width: 100%; padding: 30px 26px; }
  .project-card > img { right: 3%; bottom: -7%; width: 84%; height: 60%; }
  .project-aris > img { width: 76%; }

  .smartie-callout { grid-template-columns: 100px 1fr; gap: 15px; margin-top: 55px; padding: 22px 20px 22px 12px; }
  .smartie-callout img { width: 92px; max-height: 130px; margin: -34px auto -10px; }
  .smartie-callout h3 { font-size: 1.28rem; }
  .smartie-callout p:last-child { font-size: .8rem; }

  .project-list { grid-template-columns: 1fr; margin-top: 48px; }
  .project-list a { min-height: 142px; }
  .project-list span { margin-bottom: 24px; }

  .process-intro,
  .process-list li { grid-template-columns: 1fr; gap: 14px; }
  .process-intro { margin-bottom: 38px; }
  .process-list li { padding: 24px 0; }

  .store-section { padding-bottom: 82px; }
  .store-card { width: calc(100% + 28px); min-height: auto; margin-left: -14px; border-radius: 0; }
  .store-image { min-height: 330px; }
  .store-copy { padding: 44px 24px 50px; }
  .store-copy h2 { font-size: clamp(2.2rem, 11vw, 3.2rem); }
  .button-dark { width: 100%; }

  .contact-section { padding-top: 0; }
  .contact-panel { width: calc(100% + 28px); margin-left: -14px; padding: 50px 22px; border-radius: 0; }
  .contact-copy address a { display: grid; gap: 3px; }
  .contact-copy address strong { text-align: left; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 26px 20px; }

  .site-footer { padding-top: 58px; }
  .footer-main { grid-template-columns: 1fr; gap: 45px; }
  .footer-links { gap: 20px; }
  .footer-bottom { display: grid; }

  .mobile-actions {
    position: fixed;
    z-index: 950;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: var(--purple-950);
    border-top: 1px solid rgba(255, 255, 255, .15);
  }

  .mobile-actions a {
    padding: 17px 10px;
    color: var(--white);
    font-size: .82rem;
    font-weight: 850;
    text-align: center;
    text-decoration: none;
  }

  .mobile-actions a:last-child { color: var(--purple-950); background: var(--amber-500); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
