@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  color-scheme: light;
  --ink: #151814;
  --ink-soft: #343a33;
  --paper: #f2eee7;
  --paper-strong: #fffdf8;
  --accent: #d8673f;
  --line: rgba(21, 24, 20, 0.18);
  --muted: #7b8178;
  --content: min(1380px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
}

body:has(.site-nav[data-open]) {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--paper-strong);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.site-header {
  width: var(--content);
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: var(--paper-strong);
  background: var(--ink);
  font-size: 0.92rem;
  letter-spacing: -0.08em;
}

.brand-name {
  font-size: 1.08rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a {
  transition: color 180ms ease;
}

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

.menu-button {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.store-link {
  display: flex;
  align-items: center;
  gap: 9px;
}

.store-link span {
  padding: 4px 7px;
  border: 1px solid currentColor;
  color: var(--accent);
  font-size: 0.64rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  width: var(--content);
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  padding: 70px 0 76px;
}

.hero-copy {
  padding-bottom: 10px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 26px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.eyebrow span {
  display: inline-block;
  width: 34px;
  height: 2px;
  background: var(--accent);
}

h1,
h2 {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  letter-spacing: -0.065em;
}

h1 {
  max-width: 800px;
  font-size: clamp(3.2rem, 5.2vw, 6.1rem);
  font-weight: 700;
  line-height: 0.94;
}

h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero-intro {
  max-width: 570px;
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.button-primary {
  color: var(--paper-strong);
  background: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--paper-strong);
  background: var(--ink);
}

.hero-visual {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: #b2b0a8;
  clip-path: polygon(9% 0, 100% 0, 100% 91%, 91% 100%, 0 100%, 0 9%);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 18, 14, 0.76) 100%);
}

.hero-visual img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.07);
}

.visual-caption {
  position: absolute;
  z-index: 1;
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--paper-strong);
}

.visual-caption span {
  color: var(--accent);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
}

.visual-caption p {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.42;
  text-align: right;
}

.intro-strip {
  min-height: 92px;
  padding: 0 max(32px, calc((100vw - 1380px) / 2));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 20px;
  color: var(--paper-strong);
  background: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro-strip p:nth-child(2) {
  text-align: center;
}

.intro-strip p:last-child {
  text-align: right;
}

.services-preview {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  align-items: end;
  padding: 112px 0;
}

.section-kicker {
  color: var(--accent);
}

.services-preview h2 {
  max-width: 850px;
  font-size: clamp(2.35rem, 4.2vw, 4.8rem);
  line-height: 1.02;
}

.section-summary {
  max-width: 520px;
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.service-list {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 390px;
  padding: 36px 34px 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-right: 1px solid var(--line);
}

.service-card:last-child {
  border-right: 0;
}

.service-number {
  color: var(--accent);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.service-card h3,
.process-list h3,
.principle-grid h3 {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.service-card p {
  max-width: 360px;
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.service-line {
  position: absolute;
  right: -18%;
  bottom: 45px;
  width: 72%;
  height: 8px;
  background: var(--accent);
  transform: rotate(-28deg) translateY(120px);
  transition: transform 320ms ease;
}

.service-card:hover .service-line {
  transform: rotate(-28deg) translateY(0);
}

.approach {
  margin-top: 120px;
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1.1fr);
  min-height: 800px;
  color: var(--paper-strong);
  background: var(--ink);
}

.approach-image {
  min-height: 800px;
  overflow: hidden;
}

.approach-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.08);
}

.approach-copy {
  padding: clamp(70px, 9vw, 138px) clamp(42px, 8vw, 130px);
}

.approach-copy h2 {
  max-width: 760px;
  font-size: clamp(2.6rem, 4.7vw, 5.4rem);
  line-height: 0.98;
}

.approach-intro {
  max-width: 610px;
  margin: 34px 0 0;
  color: rgba(255, 253, 248, 0.66);
  font-size: 1.08rem;
}

.process-list {
  max-width: 720px;
  margin: 64px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list li > span {
  padding-top: 4px;
  color: var(--accent);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.process-list h3 {
  font-size: 1.24rem;
}

.process-list p {
  margin: 6px 0 0;
  color: rgba(255, 253, 248, 0.58);
  font-size: 0.92rem;
}

.principles {
  width: var(--content);
  margin: 0 auto;
  padding: 122px 0 138px;
}

.principles-heading {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 40px;
  align-items: start;
}

.principles-heading h2 {
  max-width: 860px;
  font-size: clamp(2.55rem, 4.5vw, 5.1rem);
  line-height: 0.98;
}

.principle-grid {
  margin-top: 82px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.principle-grid article {
  min-height: 270px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.22);
}

.principle-grid article > span {
  margin-bottom: auto;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.principle-grid h3 {
  font-size: 1.38rem;
}

.principle-grid p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.store-callout {
  width: var(--content);
  margin: 0 auto 112px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
  color: var(--paper-strong);
  background:
    linear-gradient(115deg, rgba(216, 103, 63, 0.18), transparent 48%),
    var(--ink);
}

.store-callout h2 {
  max-width: 760px;
  font-size: clamp(2.4rem, 4.2vw, 4.8rem);
  line-height: 1;
}

.store-cta {
  width: 250px;
  min-height: 68px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.36);
  font-weight: 700;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.store-cta span:last-child {
  color: var(--accent);
  font-size: 1.3rem;
}

.store-cta:hover,
.store-cta:focus-visible {
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
}

.store-cta:hover span:last-child,
.store-cta:focus-visible span:last-child {
  color: var(--ink);
}

.site-footer {
  width: var(--content);
  margin: 0 auto;
  padding: 40px 0 34px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 36px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.footer-meta p {
  margin: 0 0 4px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.site-footer nav {
  display: flex;
  gap: 24px;
  font-size: 0.86rem;
  font-weight: 700;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible,
.photo-credit a:hover,
.photo-credit a:focus-visible {
  color: var(--accent);
}

.photo-credit {
  grid-column: 2 / -1;
  margin: -18px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: right;
}

.photo-credit a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.store-page {
  color: var(--paper-strong);
  background: var(--ink);
}

.header-dark {
  position: relative;
  z-index: 2;
  border-color: rgba(255, 255, 255, 0.18);
}

.brand-mark-light {
  color: var(--ink);
  background: var(--paper-strong);
}

.back-home {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
}

.back-home span {
  color: var(--accent);
  font-size: 1.1rem;
  transition: transform 180ms ease;
}

.back-home:hover span {
  transform: translateX(-4px);
}

.store-main {
  overflow: hidden;
}

.store-hero {
  position: relative;
  width: var(--content);
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: clamp(70px, 10vh, 130px) 0 44px;
  display: grid;
  grid-template-rows: 1fr auto auto;
}

.store-grid {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  opacity: 0.16;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 88%);
}

.store-copy {
  position: relative;
  z-index: 1;
}

.eyebrow-light {
  color: rgba(255, 253, 248, 0.66);
}

.store-copy h1 {
  max-width: 1100px;
  font-size: clamp(4.5rem, 10vw, 10.5rem);
  line-height: 0.84;
}

.store-copy > p:last-child {
  max-width: 560px;
  margin: 38px 0 0;
  color: rgba(255, 253, 248, 0.65);
  font-size: 1.08rem;
}

.coming-soon-banner {
  position: relative;
  z-index: 1;
  width: 110vw;
  margin: 54px 0 54px -5vw;
  padding: 18px 0;
  display: flex;
  justify-content: center;
  gap: 56px;
  overflow: hidden;
  color: var(--ink);
  background: var(--accent);
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(1.35rem, 2.3vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.coming-soon-banner span {
  flex: 0 0 auto;
}

.coming-soon-banner span::before {
  content: "/";
  margin-right: 56px;
  color: rgba(21, 24, 20, 0.42);
}

.store-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 253, 248, 0.5);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  :root {
    --content: min(100% - 40px, 760px);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 54px;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 500px;
    height: 500px;
  }

  .services-preview {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-list,
  .principle-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 310px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

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

  .approach-image {
    min-height: 580px;
    height: 68vw;
  }

  .principles-heading {
    grid-template-columns: 1fr;
  }

  .store-callout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .footer-meta {
    grid-column: 1;
  }

  .site-footer nav {
    grid-row: 1;
    grid-column: 2;
  }

  .photo-credit {
    grid-column: 1 / -1;
    margin: 0;
    text-align: left;
  }
}

@media (max-width: 680px) {
  :root {
    --content: calc(100vw - 32px);
  }

  .site-header {
    min-height: 76px;
  }

  .brand-name {
    display: none;
  }

  .menu-button {
    position: relative;
    z-index: 11;
    width: 46px;
    height: 46px;
    padding: 0;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
  }

  .menu-button > span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 10;
    inset: 0;
    padding: 120px 32px 44px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    color: var(--paper-strong);
    background: var(--ink);
    font-family: "Manrope", Arial, sans-serif;
    font-size: clamp(2.4rem, 12vw, 4rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.05em;
  }

  .site-nav[data-open] {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  }

  .site-nav .store-link {
    justify-content: space-between;
  }

  .site-nav .store-link span {
    display: inline-block;
    color: var(--accent);
    font-size: 0.64rem;
    letter-spacing: 0.08em;
  }

  body:has(.site-nav[data-open]) .brand {
    position: relative;
    z-index: 11;
    color: var(--paper-strong);
  }

  body:has(.site-nav[data-open]) .brand-mark {
    color: var(--ink);
    background: var(--paper-strong);
  }

  body:has(.site-nav[data-open]) .menu-button {
    border-color: rgba(255, 255, 255, 0.28);
  }

  body:has(.site-nav[data-open]) .menu-button > span:not(.sr-only) {
    background: var(--paper-strong);
  }

  .hero {
    min-height: auto;
    padding: 48px 0 52px;
  }

  h1 {
    font-size: clamp(3.15rem, 15vw, 4.6rem);
  }

  .hero-intro {
    margin-top: 24px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 430px;
    height: 430px;
  }

  .visual-caption {
    right: 24px;
    bottom: 28px;
    left: 24px;
  }

  .intro-strip {
    min-height: auto;
    padding-block: 24px;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .intro-strip p {
    margin: 0;
    text-align: left !important;
  }

  .intro-strip p:nth-child(2) {
    display: none;
  }

  .services-preview {
    padding: 78px 0;
  }

  .service-card {
    min-height: 290px;
    padding: 28px 24px 34px;
  }

  .approach {
    margin-top: 80px;
  }

  .approach-image {
    min-height: 460px;
    height: 112vw;
  }

  .approach-copy {
    padding: 72px 16px 80px;
  }

  .process-list {
    margin-top: 48px;
  }

  .principles {
    padding: 84px 0 92px;
  }

  .principle-grid {
    margin-top: 46px;
  }

  .principle-grid article {
    min-height: 240px;
    padding: 26px;
  }

  .store-callout {
    margin-bottom: 82px;
    padding: 48px 24px;
  }

  .store-cta {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 30px;
  }

  .site-footer nav {
    grid-row: auto;
    grid-column: auto;
  }

  .footer-meta,
  .photo-credit {
    grid-column: auto;
  }

  .header-dark .brand-name {
    display: inline;
    font-size: 0.86rem;
  }

  .back-home {
    font-size: 0.78rem;
  }

  .store-hero {
    min-height: calc(100vh - 76px);
    padding-top: 64px;
  }

  .store-copy h1 {
    font-size: clamp(4.2rem, 22vw, 6.7rem);
  }

  .coming-soon-banner {
    gap: 28px;
  }

  .coming-soon-banner span::before {
    margin-right: 28px;
  }

  .coming-soon-banner span:nth-child(3) {
    display: none;
  }

  .store-bottom {
    flex-direction: column;
    gap: 6px;
  }

  .store-bottom p {
    margin: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
