:root {
  --green: #23351f;
  --offwhite: #f8f3ed;

  --ink: #23351f;
  --paper: #f8f3ed;
  --paper-deep: #e9e2d7;
  --surface: #faf8f3;
  --muted: #77736c;
  --line: rgba(23, 22, 20, 0.16);
  --accent: #7d9975;
  --accent-soft: #e6e0fb;
  --white: #ffffff;

  --display: Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(70px, 8.2vw, 108px);
  line-height: 1.1;
  margin-bottom: 38px;
}

h1 span, h2 span {
  display: block;
  color: var(--accent);
  font-style: italic;
}

h2 {
  font-size: clamp(54px, 4.5vw, 92px);
  line-height: 1;
  margin-bottom: 38px;
}

h2 em {
  color: var(--accent);
  font-weight: 400;
}

h3 {
  font-size: 21px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.accent { color: var(--accent); }
.muted { color: var(--muted); }

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

.site-header {
  height: 80px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: fixed;
  width:100%;
  z-index: 10;
  background: var(--surface);
}
#top { padding-top: 80px; }

.wordmark {
  font-family: var(--sans);
  font-size: 31px;
  letter-spacing: -0.03em;
  display: flex;
}
.wordmark span { display: none; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-header nav {
  display: flex;
  gap: 32px;
  font-size: 13px;
}

.language-control {
  position: relative;
  flex: 0 0 auto;
}

.language-control::after {
  content: "⌄";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-58%);
  pointer-events: none;
  font-size: 12px;
}

.language-control select {
  min-height: 38px;
  padding: 0 30px 0 11px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: 500 12px/1 var(--sans);
  cursor: pointer;
  appearance: none;
}

.language-control select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.site-header nav a,
.site-footer a { transition: opacity 0.2s ease; }

.site-header nav a:hover,
.site-footer a:hover { opacity: 0.55; }

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

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

.button-small {
  min-height: 42px;
  font-size: 12px;
}

.button-dark,
.button-primary {
  background: var(--ink);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.text-link {
  font-size: 13px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  font-weight: 600;
}

.section-label { color: var(--muted); }

.hero {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 6vw;
  padding: 70px 4vw 90px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-copy {
  align-self: center;
  max-width: 920px;
}

.hero-intro {
  max-width: 660px;
  font-size: 18px;
  line-height: 1.65;
  color: #3f3d38;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.hero-art {
  position: relative;
  min-height: 680px;
  height: 44vw;
  align-self: center;
}

.art-frame {
  position: absolute;
  /*background:
    linear-gradient(135deg, rgba(255,255,255,0.15), transparent 50%),
    linear-gradient(45deg, #817e78, #b6b0a6);*/
  overflow: hidden;
}
.art-frame,
.browser-photo,
.phone-photo,
.post-image,
.pay-image {
    background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*
.art-frame::after,
.browser-photo::after,
.phone-photo::after,
.post-image::after,
.pay-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.22)),
    linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.13) 36%, transparent 58%);
}*/

.credits,
.browser-photo,
.phone-photo,
.post-image,
.pay-image {
  color: rgba(255,255,255,0.82);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.art-frame span {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
}

.art-frame-main {
  inset: 0 5vw 0 0;
  border-radius: 3px 3px;
}

.art-note {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 55px;
  width: 245px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.art-note strong {
  display: block;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.05;
}

.art-note p {
  margin: 9px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.statement {
  padding: 120px 8vw;
  display: grid;
  grid-template-columns: 1fr 2.6fr;
  gap: 6vw;
}

.statement-copy p {
  font-size: 18px;
}

.portfolio-section {
  background: var(--ink);
  color: var(--white);
  padding: 125px 5vw;
}

.section-intro {
  display: grid;
  grid-template-columns: 0.7fr 1.9fr 1fr;
  gap: 5vw;
  align-items: start;
}

.section-intro h2 { margin: 0; }

.section-intro p:last-child {
  color: #aaa6a0;
  font-size: 15px;
  max-width: 420px;
}

.portfolio-showcase {
  position: relative;
  min-height: 690px;
  margin: 90px auto 70px;
  max-width: 1220px;
}
.portfolio-showcase .credits {
  position: absolute;
  margin-top:15px;
}

.browser-mockup {
  width: 82%;
  background: #f8f5ef;
  color: var(--ink);
  border: 1px solid #34322e;
  box-shadow: 0 35px 90px rgba(0,0,0,0.28);
}

.browser-bar {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 16px;
  border-bottom: 1px solid #dad5cc;
  background: #fff;
}

.browser-bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cac6bf;
}

.browser-bar > div {
  margin: auto;
  font-size: 10px;
  color: #88837c;
}

.browser-content { padding: 22px; }

.browser-photo,
.phone-photo,
.post-image,
.pay-image {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  overflow: hidden;
}

.browser-photo.large { display:none; }

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

.browser-grid .browser-photo { min-height: 400px; }

.phone-mockup {
  position: absolute;
  right: 1%;
  bottom: -15px;
  width: 250px;
  padding: 11px;
  border-radius: 34px;
  background: #111;
  box-shadow: 0 30px 75px rgba(0,0,0,0.35);
}

.phone-screen {
  background: #f7f4ee;
  color: var(--ink);
  border-radius: 25px;
  overflow: hidden;
}

.phone-title {
  height: 48px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  font-family: var(--display);
  font-size: 19px;
}

.phone-photo { height: 320px; }

.phone-meta {
  padding: 16px;
  display: flex;
  flex-direction: column;
}

.phone-meta strong {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
}

.phone-meta span {
  color: var(--muted);
  font-size: 11px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #3a3834;
}

.feature-row article {
  padding: 12px 4vw 10px 0;
  border-right: 1px solid #3a3834;
}

.feature-row article:not(:first-child) { padding-left: 4vw; }
.feature-row article:last-child { border-right: 0; }

.feature-row h3 {
  margin-top: 15px;
  font-family: var(--display);
  font-weight: 400;
  font-size: 29px;
}

.feature-row p {
  color: #a9a59e;
  font-size: 13px;
  max-width: 330px;
}

.automation-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 8vw;
  padding: 55px 7vw;
}

.automation-copy {
  position: sticky;
  top: 80px;
  align-self: start;
}

.automation-copy h2 { margin: 48px 0 35px; }

.automation-copy > p:last-child {
  max-width: 530px;
  font-size: 17px;
}

.automation-list { border-top: 1px solid var(--line); }

.automation-list article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 35px 0 20px;
  border-bottom: 1px solid var(--line);
}

.automation-number {
  color: var(--accent);
  font-size: clamp(10px, 10vw, 40px);
  text-align: center;
  display: inline-block;
}
.automation-list .automation-number {
  margin-top: -14px;
}

.automation-list h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 5px;
}

.automation-list p {
  max-width: 520px;
  color: var(--muted);
  font-size: 14px;
}

.publish-section {
  background: var(--paper-deep);
  padding: 130px 7vw;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 8vw;
  align-items: center;
}

.publish-visual {
  position: relative;
  min-height: 575px;
}
.publish-visual .credits {
  width: 66%;
  color: var(--muted);
  text-align: right;
  position: absolute;
  top: 0;
  padding-right: 3px;
}

.post-card {
  position: absolute;
  left: 0;
  top: 20px;
  width: 66%;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 25px 60px rgba(40,35,28,0.11);
}

.post-image { height: 580px; }

.post-copy { padding: 22px; }

.post-copy span {
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.post-copy h3 {
  margin: 8px 0 3px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
}

.post-copy p {
  font-size: 12px;
  color: var(--muted);
}

.channel-stack {
  position: absolute;
  right: 0;
  top: 115px;
  width: 44%;
  z-index: 2;
}

.channel-stack div {
  margin-bottom: 10px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 12px 35px rgba(40,35,28,0.07);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
}

.channel-stack span {
  font-size: 10px;
  color: var(--accent);
}

.channel-stack .channel-name {
  color: inherit;
  font-size: inherit;
}

.publish-lines {
  position: absolute;
  inset: 0;
}

.publish-lines div {
  position: absolute;
  height: 1px;
  width: 24%;
  background: var(--accent);
  opacity: 0.25;
  left: 59%;
}

.publish-lines div:nth-child(1) { top: 171px; }
.publish-lines div:nth-child(2) { top: 225px; }
.publish-lines div:nth-child(3) { top: 279px; }

.publish-copy h2 { margin: 48px 0 32px; }

.publish-copy > p:not(.section-label) {
  max-width: 560px;
  font-size: 17px;
}

.publish-points {
  margin-top: 45px;
  border-top: 1px solid var(--line);
}

.publish-points > div {
  padding: 15px 0;
  display: grid;
  grid-template-columns: 21px 90px 1fr;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.publish-points span { color: var(--muted); }

.publish-socials {
  text-align: center;
  margin-top: 35px;
  color: var(--muted);
}

.pay-section {
  background: var(--accent);
  color: var(--white);
  padding: 130px 8vw;
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  gap: 9vw;
  align-items: center;
}
.pay-section .credits { color: var(--muted); text-align: right; }

.pay-section .section-label { color: rgba(255,255,255,0.66); }
.pay-copy h2 { margin: 48px 0 35px; }
.pay-copy h2 em { color: var(--paper-deep); }

.pay-copy > p:last-child {
  max-width: 590px;
  font-size: 17px;
  color: rgba(255,255,255,0.82);
}

.pay-card {
  background: var(--surface);
  color: var(--ink);
  padding: 12px;
  transform: rotate(1.5deg);
  box-shadow: 22px 22px 0 rgba(0,0,0,0.13);
}

.pay-image { height: 440px; }

.pay-details { padding: 24px; }

.pay-details small {
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.pay-details h3 {
  margin: 10px 0 3px;
  font-family: var(--display);
  font-size: 31px;
  font-weight: 400;
}

.pay-details p {
  font-size: 12px;
  color: var(--muted);
}

.pay-footer {
  margin-top: 22px;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

.pay-footer strong {
  font-family: var(--display);
  font-size: 29px;
  font-weight: 400;
}

.pay-footer button {
  border: 0;
  background: var(--ink);
  color: var(--white);
  padding: 12px 17px;
  cursor: pointer;
}

.pricing-section {
  padding: 130px 8vw;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1vw;
}

.pricing-copy h2 { margin: 48px 0 25px; }

.pricing-copy > p:last-child {
  max-width: 620px;
  font-size: 17px;
}

.pricing-note {
  align-self: center;
}

.pricing-note p {
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 16px;
}

.pricing-note strong {
  display: block;
  margin-top: 10px;
  font-size: 23px;
}

.eu-section {
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 650px;
}

.eu-section .hero-art {
  display: grid;
  place-items: center;
}
.eu-section .art-frame-main {
  inset: 0 0 0 5vw;
}

.eu-mark {
  display: grid;
  place-items: center;
  border-right: 1px solid #393733;
  font-family: var(--display);
  font-size: clamp(180px, 25vw, 420px);
  line-height: 0.7;
  color: var(--paper);
  opacity: 0.1;
  overflow: hidden;
}

.eu-copy {
  padding: 55px 7vw;
  align-self: center;
}

.eu-copy .section-label { color: #9c9891; }
.eu-copy h2 { margin: 48px 0 35px; }

.eu-copy > p:not(.section-label) {
  max-width: 610px;
  color: #aaa69f;
  font-size: 17px;
}

.eu-points {
  margin-top: 38px;
}

.eu-points span {
  padding: 9px 12px;
  border: 1px solid #45423e;
  font-size: 10px;
  letter-spacing: 0.11em;
  display: block;
  margin-bottom: 18px;
}

.final-cta {
  padding: 150px 20px;
  text-align: center;
  background: var(--surface);
}

.final-cta h2 {
  max-width: 1100px;
  margin: 50px auto 35px;
  font-size: clamp(30px, 9vw, 110px);
}

.final-cta > p:not(.section-label) {
  max-width: 680px;
  margin: 0 auto 38px;
  color: var(--muted);
  font-size: 16px;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 60px 5vw 30px;
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  gap: 30px;
}

.site-footer p {
  color: #99958e;
  font-size: 13px;
}

.site-footer > div {
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 12px;
}

.site-footer > small {
  grid-column: 1 / -1;
  padding-top: 25px;
  border-top: 1px solid #383632;
  color: #77736c;
}

.d-none { display: none; }

@media (max-width: 1000px) {
  #top { padding-top: 0; }
  .site-header { position: relative; }
  .site-header nav { display: none; }
  .header-actions { gap: 0; }

  .hero,
  .statement,
  .section-intro,
  .automation-section,
  .publish-section,
  .pay-section,
  .pricing-section,
  .eu-section {
    grid-template-columns: 1fr;
  }
  .section-label { font-size: 10px; }

  .hero-art { min-height: 600px; }
  .section-intro { gap: 20px; }
  .portfolio-showcase { min-height: 640px; }
  .browser-mockup { width: 90%; }
  .automation-copy { position: static; }


  .eu-mark {
    min-height: 130px;
    border-right: 0;
    font-size: 90px;
    margin-bottom: -40px;
  }
}

@media (max-width: 700px) {
  .site-header { padding: 0 20px; }
  .button-small { display: none; }
  .d-sm-none { display: none; }
  .d-sm-block { display: block; }


  h1 { font-size: clamp(30px, 11vw, 60px); margin-bottom: 25px; }
  h2 { font-size: clamp(50px, 15vw, 74px); margin-bottom: 25px; }

  .hero {
    min-height: 0;
    padding: 58px 20px 20px;
    border:none;
  }

  .hero-actions { align-items: flex-start; flex-direction: column; margin-top: 0; }

  .hero-art {
    min-height: 445px;
    margin-top: 15px;
  }

  .art-frame-main {
    inset: 0;
  }
  .art-frame span { right: 9px; top: 5px; }

  .art-note {
    right: 10px;
    bottom: 15px;
    width: 220px;
  }

  .statement,
  .portfolio-section,
  .automation-section,
  .publish-section,
  .pay-section,
  .pricing-section {
    padding: 30px 22px;
  }

  .statement { gap: 28px; }
  .statement-copy p { margin-left: 0; }

  .portfolio-showcase {
    min-height: 510px;
    margin: 55px 0 45px;
  }

  .browser-mockup { width: 100%; }
  .browser-grid .browser-photo { min-height: 240px; }
  .browser-photo.large { display:block; height: 400px; }

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

  .browser-grid div:nth-child(3),
  .browser-grid div:nth-child(4),
  .browser-grid div:nth-child(5),
  .browser-grid div:nth-child(6) { display: none; }

  .phone-mockup { width: 180px; }
  .phone-photo { height: 220px; }

  .feature-row { grid-template-columns: 1fr; }

  .feature-row article,
  .feature-row article:not(:first-child) {
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid #3a3834;
  }

  .feature-row h3 { margin-top: 0; }

  .automation-list article {
    grid-template-columns: 45px 1fr;
    padding: 25px 0 0px;
  }

  .pay-copy h2 { margin: 38px 0 25px; }
  .pay-details { padding: 12px 0 0 0; }

  .publish-visual { min-height: 500px; }
  .post-card { width: 85%; }
  .publish-visual .credits { width: 85%; bottom:auto; top: 23px; color: rgba(255,255,255,0.82); }
  .post-image { height: 380px; }

  .channel-stack {
    top: 135px;
    width: 160px;
  }

  .eu-section .art-frame-main { inset: 0 5vw 0 5vw; }
  .eu-copy { padding: 38px 24px; }
  .eu-copy h2 { margin: 38px 0 25px; }

  .publish-lines { display: none; }
  .pay-card { transform: none; }

  .final-cta { padding: 100px 20px; }

  .site-footer { grid-template-columns: 1fr; gap: 10px; }
  .site-footer > div { justify-self: start; }
}

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