@font-face {
  font-family: Manrope;
  src: url("./assets/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("./assets/dm-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
}
:root {
  --paper: #f7f8fc;
  --white: #fff;
  --ink: #172441;
  --blue: #3459e6;
  --blue-hover: #2547c9;
  --muted: #65708a;
  --mist: #e9edff;
  --line: #e0e5ef;
  --radius: 20px;
  --display: Manrope, Arial, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
  --max: 1200px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open,
body.dialog-open {
  overflow: hidden;
}
button,
input,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button,
summary,
a,
input,
textarea {
  outline-offset: 5px;
}
:focus-visible {
  outline: 3px solid var(--blue);
}
::selection {
  background: #dce3ff;
  color: var(--ink);
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
}
svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
[hidden] {
  display: none !important;
}
.container {
  width: min(var(--max), calc(100% - 96px));
  margin-inline: auto;
}
.section {
  padding-block: 112px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}
.section-heading {
  font-size: clamp(32px, 3.9vw, 50px);
  line-height: 1.16;
  letter-spacing: -0.05em;
}
.section-intro {
  margin-top: 22px;
  max-width: 470px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: var(--blue);
  color: var(--white);
}
.button-primary:hover {
  background: var(--blue-hover);
}
.button-dark {
  background: var(--ink);
  color: var(--white);
}
.button-dark:hover {
  background: #283b63;
}
.button-light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}
.button-light:hover {
  background: var(--paper);
}
.button svg {
  width: 18px;
  height: 18px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
}
.text-link svg {
  width: 17px;
  height: 17px;
  transition: transform 0.2s;
}
.text-link:hover svg {
  transform: translateX(4px);
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 12px;
  background: var(--white);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
  backdrop-filter: blur(16px);
}
.site-header.scrolled {
  border-color: var(--line);
}
.header-inner {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 750;
  letter-spacing: -1.3px;
}
.brand-mark {
  width: 32px;
  height: 32px;
  fill: var(--blue);
  stroke: none;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav > a:not(.button) {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}
.site-nav > a:hover {
  color: var(--blue);
}
.site-nav .button {
  min-height: 43px;
  padding: 10px 17px;
  font-size: 12px;
  margin-left: 8px;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  align-items: center;
  justify-content: center;
}
.menu-toggle .close-icon {
  display: none;
}
.menu-toggle[aria-expanded="true"] .menu-icon {
  display: none;
}
.menu-toggle[aria-expanded="true"] .close-icon {
  display: block;
}
.hero {
  padding: 70px 0 64px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  gap: 38px;
  align-items: center;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding-block: 15px 25px;
}
.hero h1 {
  font-size: clamp(50px, 5.7vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.065em;
  margin-top: 23px;
  font-weight: 600;
}
.hero h1 span {
  color: var(--blue);
}
.hero-description {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 405px;
  margin-top: 25px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}
.hero-note {
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-note svg {
  width: 14px;
  height: 14px;
}
.showcase {
  position: relative;
  min-height: 530px;
  display: flex;
  align-items: center;
  isolation: isolate;
}
.showcase::before {
  content: "";
  position: absolute;
  inset: 4px -38px 34px 30px;
  background: var(--mist);
  border-radius: 160px 20px 20px 20px;
  z-index: -1;
}
.browser-mock {
  width: 100%;
  position: relative;
  margin: 0 0 55px;
  border: 1px solid #d5dbea;
  border-radius: 10px;
  overflow: hidden;
  background: #f7f3ed;
  box-shadow: 0 26px 55px -28px #28386666;
  transform: rotate(-3deg);
}
.browser-chrome {
  height: 29px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 11px;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
}
.browser-chrome i {
  width: 5px;
  height: 5px;
  background: #d4d8e2;
  border-radius: 50%;
}
.browser-chrome span {
  font-size: 8px;
  color: #8b91a1;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.sample-nav {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  color: #363328;
}
.sample-brand {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.5px;
}
.sample-nav small {
  font-size: 7px;
  word-spacing: 11px;
}
.sample-hero {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  min-height: 263px;
}
.sample-copy {
  padding: 26px 10px 26px 23px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.sample-copy > small {
  font-size: 6px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #6d685b;
}
.sample-copy h2 {
  font-family: Georgia, serif;
  font-size: 33px;
  line-height: 1.08;
  letter-spacing: -1.4px;
  font-weight: 400;
  color: #363328;
  margin-top: 12px;
}
.sample-copy p {
  font-size: 8px;
  color: #6d685b;
  line-height: 1.6;
  margin-top: 13px;
  max-width: 145px;
}
.sample-button {
  font-size: 7px;
  background: #665a42;
  color: #fff;
  padding: 8px 11px;
  margin-top: 17px;
}
.sample-photo {
  height: 263px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.sample-footer {
  padding: 12px 22px;
  font-size: 6px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #786f5f;
  display: flex;
  justify-content: space-between;
}
.phone-mock {
  position: absolute;
  width: 164px;
  right: -12px;
  bottom: 27px;
  border: 5px solid #fff;
  border-radius: 26px;
  background: #fcf6ef;
  box-shadow: 0 18px 46px -18px #1e2c5a66;
  transform: rotate(7deg);
  overflow: hidden;
}
.phone-top {
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fcf6ef;
}
.phone-top:before {
  content: "";
  width: 40px;
  height: 7px;
  border-radius: 20px;
  background: var(--ink);
}
.phone-content {
  padding: 8px 11px 13px;
  color: #763625;
  text-align: center;
}
.phone-brand {
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 700;
}
.phone-content h3 {
  font-family: Georgia, serif;
  font-size: 24px;
  line-height: 1.04;
  font-weight: 400;
  margin-top: 14px;
  letter-spacing: -0.7px;
}
.phone-content p {
  font-size: 6px;
  margin: 7px 0 10px;
}
.phone-content img {
  height: 106px;
  width: 100%;
  object-fit: cover;
  border-radius: 65px 65px 3px 3px;
}
.phone-content .sample-button {
  display: block;
  background: #763625;
  margin: 9px 0 0;
  border-radius: 3px;
  font-size: 6px;
  padding: 6px;
}
.showcase-label {
  position: absolute;
  left: 24px;
  bottom: 9px;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.showcase-label span {
  display: block;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0;
  margin-bottom: 2px;
}
.showcase-spark {
  position: absolute;
  right: 5px;
  top: 19px;
  color: var(--blue);
  width: 45px;
  height: 45px;
  stroke-width: 1.2;
}
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-block: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 12px;
  color: #495570;
}
.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
}
.benefits-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 70px;
}
.benefits-top .section-intro {
  margin: 0;
  max-width: 440px;
  justify-self: end;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  margin-top: 54px;
}
.benefit {
  border-top: 1px solid var(--line);
  padding-top: 27px;
}
.benefit-icon {
  color: var(--blue);
  width: 29px;
  height: 29px;
  margin-bottom: 19px;
}
.benefit h3 {
  font-size: 20px;
  letter-spacing: -0.6px;
}
.benefit p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 11px;
  max-width: 310px;
}
.work-section {
  background: var(--paper);
}
.section-topline {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 36px;
  margin-bottom: 42px;
}
.section-topline .eyebrow {
  margin-bottom: 18px;
}
.section-topline .section-heading {
  max-width: 600px;
}
.section-topline > p {
  max-width: 260px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}
.work-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
}
.work-card {
  min-width: 0;
}
.work-visual {
  display: block;
  position: relative;
  width: 100%;
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  min-height: 355px;
  padding: 30px 30px 0;
  transition: box-shadow 0.25s;
  background: #e2e5ed;
}
.work-visual:hover {
  box-shadow: 0 14px 30px -20px #17244155;
}
.work-visual:hover .work-preview {
  transform: translateY(-6px);
}
.work-visual.cafe {
  background: #ecdfd7;
}
.work-visual.studio {
  background: #e2e4dc;
}
.work-preview {
  border-radius: 5px 5px 0 0;
  background: #fdf9f3;
  box-shadow: 0 12px 34px #34201917;
  overflow: hidden;
  transition: transform 0.3s;
  min-height: 325px;
  color: #763625;
}
.work-preview-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.work-preview-nav strong {
  font-family: Georgia, serif;
  font-size: 22px;
}
.work-preview-nav small {
  font-size: 7px;
}
.cafe-preview-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 12px;
  padding: 8px 20px 22px;
}
.cafe-preview-body .preview-heading {
  font-family: Georgia, serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -1.5px;
}
.cafe-preview-body .preview-description {
  font-size: 9px;
  line-height: 1.7;
  max-width: 145px;
  margin-top: 14px;
}
.cafe-preview-body img {
  height: 231px;
  width: 100%;
  object-fit: cover;
  border-radius: 110px 110px 5px 5px;
}
.work-preview .sample-button {
  display: inline-block;
  background: #763625;
  margin-top: 15px;
}
.studio .work-preview {
  background: #f4f3ec;
  color: #374334;
}
.studio-preview-body {
  position: relative;
  min-height: 265px;
  background: #505a47;
}
.studio-preview-body img {
  width: 100%;
  height: 265px;
  object-fit: cover;
  filter: brightness(0.64);
}
.studio-preview-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 24px;
  text-align: center;
}
.studio-preview-text small {
  font-size: 7px;
  letter-spacing: 1.4px;
}
.studio-preview-text .preview-heading {
  font-family: Georgia, serif;
  font-size: 37px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.8px;
  margin-top: 14px;
  max-width: 280px;
}
.studio-preview-text > .preview-cta {
  font-size: 8px;
  border-bottom: 1px solid #ffffff80;
  padding-bottom: 4px;
  margin-top: 21px;
}
.work-open {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 3px 13px #17244120;
}
.work-caption {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 15px;
  padding: 19px 0 0;
}
.work-caption h3 {
  font-size: 16px;
  letter-spacing: -0.4px;
}
.work-caption p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}
.tag {
  display: inline-block;
  font-size: 10px;
  border: 1px solid #d5dbe7;
  border-radius: 30px;
  padding: 4px 10px;
  color: var(--muted);
  white-space: nowrap;
}
.work-disclaimer {
  font-size: 11px;
  color: var(--muted);
  margin-top: 24px;
}
.work-audience {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 44px;
  padding-top: 27px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}
.work-audience span:not(:first-child) {
  color: var(--ink);
}
.process-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}
.process-intro .eyebrow {
  margin-bottom: 20px;
}
.process-intro .text-link {
  margin-top: 30px;
  color: var(--blue);
}
.process-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.process-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 27px 0;
}
.process-step:first-child {
  padding-top: 0;
}
.step-number {
  font-size: 12px;
  color: var(--blue);
  font-weight: 600;
  margin-top: 4px;
}
.process-step h3 {
  font-size: 21px;
  letter-spacing: -0.6px;
}
.process-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 9px;
}
.pricing-section {
  background: var(--paper);
}
.pricing-intro {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 46px;
}
.pricing-intro .eyebrow {
  justify-content: center;
  margin-bottom: 18px;
}
.pricing-intro p {
  font-size: 16px;
  color: var(--muted);
  margin-top: 18px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 33px 28px 26px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border: 1.5px solid var(--blue);
  box-shadow: 0 12px 30px -24px var(--blue);
}
.price-badge {
  position: absolute;
  left: 22px;
  top: -13px;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.03em;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 5px;
}
.price-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.price-card h3 {
  font-size: 23px;
  letter-spacing: -0.8px;
  margin-top: 7px;
}
.price-description {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 11px;
  min-height: 45px;
}
.price-value {
  margin-top: 27px;
  padding-bottom: 23px;
  border-bottom: 1px solid var(--line);
}
.price-value > small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 4px;
}
.price-value strong {
  font-family: var(--display);
  font-size: 35px;
  letter-spacing: -1.5px;
  font-weight: 650;
}
.price-value > span {
  font-size: 11px;
  color: var(--muted);
  margin-left: 5px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 29px;
  display: grid;
  gap: 12px;
}
.feature-list li {
  display: flex;
  gap: 9px;
  align-items: start;
  font-size: 12px;
  color: #495570;
}
.feature-list svg {
  width: 16px;
  height: 16px;
  color: var(--blue);
  margin-top: 2px;
}
.price-card .button {
  width: 100%;
  margin-top: auto;
  font-size: 13px;
  justify-content: space-between;
}
.pricing-note {
  display: flex;
  justify-content: center;
  gap: 7px;
  align-items: start;
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  max-width: 720px;
  margin: 24px auto 0;
}
.pricing-note svg {
  width: 15px;
  height: 15px;
  margin-top: 2px;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  align-items: center;
  gap: 95px;
}
.local-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 435px;
  background: #e4e9ef;
}
.local-card > img {
  width: 100%;
  height: 435px;
  object-fit: cover;
}
.local-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 18px 20px;
  background: #fffffff2;
  backdrop-filter: blur(10px);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.local-caption svg {
  color: var(--blue);
}
.local-caption strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
}
.local-caption span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.about-copy .eyebrow {
  margin-bottom: 20px;
}
.about-copy > p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--muted);
  margin-top: 22px;
}
.signature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}
.monogram {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--mist);
  font-family: var(--display);
  color: var(--blue);
  font-size: 14px;
  font-weight: 650;
}
.signature strong {
  display: block;
  font-size: 14px;
}
.signature span {
  font-size: 12px;
  color: var(--muted);
}
.faq-section {
  padding-top: 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  border-top: 1px solid var(--line);
  padding-top: 80px;
}
.faq-intro .eyebrow {
  margin-bottom: 20px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  position: relative;
  list-style: none;
  padding: 22px 36px 22px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}
.faq-list details:first-child summary {
  padding-top: 0;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary:after {
  content: "+";
  position: absolute;
  right: 3px;
  font-size: 22px;
  color: var(--blue);
  font-weight: 400;
  top: 17px;
}
.faq-list details:first-child summary:after {
  top: -5px;
}
.faq-list details[open] summary:after {
  content: "−";
}
.faq-list details p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  padding: 0 25px 23px 0;
}
.contact-section {
  padding: 0 0 80px;
}
.contact-panel {
  position: relative;
  background: var(--blue);
  color: var(--white);
  border-radius: 16px;
  padding: 65px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  overflow: hidden;
}
.contact-panel .eyebrow {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #dce3ff;
  margin-bottom: 20px;
}
.contact-panel .eyebrow:before {
  background: #becbff;
}
.contact-panel h2 {
  font-size: clamp(32px, 4vw, 51px);
  line-height: 1.13;
  letter-spacing: -0.05em;
  max-width: 610px;
}
.contact-panel p {
  color: #e0e6ff;
  font-size: 14px;
  margin-top: 20px;
  max-width: 450px;
}
.contact-action {
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: center;
}
.contact-action .button {
  border: 0;
  min-height: 56px;
  gap: 25px;
}
.contact-action > span {
  font-size: 11px;
  color: #dce3ff;
}
.site-footer {
  padding: 0 0 27px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 35px;
  padding-bottom: 37px;
}
.footer-top .brand {
  font-size: 23px;
}
.footer-top .brand-mark {
  width: 29px;
  height: 29px;
}
.footer-description {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}
.footer-links {
  display: flex;
  gap: 26px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 10px;
}
.footer-bottom a:hover,
.footer-links a:hover {
  color: var(--blue);
}
.site-dialog {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0;
  width: min(600px, calc(100% - 32px));
  max-height: calc(100dvh - 48px);
  color: var(--ink);
  box-shadow: 0 24px 100px #17244130;
}
.site-dialog::backdrop {
  background: #101b3a80;
  backdrop-filter: blur(5px);
}
.dialog-inner {
  padding: 40px;
}
.dialog-close {
  position: absolute;
  right: 15px;
  top: 15px;
  border: 0;
  background: var(--paper);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.dialog-close svg {
  width: 18px;
  height: 18px;
}
.site-dialog h2 {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -1px;
  padding-right: 25px;
}
.site-dialog p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 15px;
}
.contact-form {
  display: grid;
  gap: 17px;
  margin-top: 25px;
}
.form-field {
  display: grid;
  gap: 6px;
}
.form-field label {
  font-size: 12px;
  font-weight: 500;
}
.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #cdd4e3;
  border-radius: 7px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
}
.form-field textarea {
  min-height: 105px;
  resize: vertical;
}
.contact-form .button {
  width: 100%;
  margin-top: 2px;
}
.form-note {
  font-size: 11px !important;
  margin-top: 0 !important;
}
.demo-dialog {
  width: min(900px, calc(100% - 32px));
}
.demo-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  margin-top: 23px;
  border-radius: 8px;
}
.demo-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 19px;
}
.demo-dialog .button {
  margin-top: 23px;
}
@media (min-width: 1500px) {
  .hero {
    padding-block: 95px 80px;
  }
  .hero h1 {
    font-size: 80px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }
  .hero-grid {
    gap: 25px;
    grid-template-columns: 1fr 1fr;
  }
  .hero h1 {
    font-size: 61px;
  }
  .hero-actions {
    gap: 17px;
    flex-wrap: wrap;
  }
  .showcase {
    min-height: 510px;
  }
  .sample-copy h2 {
    font-size: 28px;
  }
  .sample-photo {
    height: 250px;
  }
  .sample-hero {
    min-height: 250px;
  }
  .phone-mock {
    right: -5px;
    width: 147px;
    bottom: 20px;
  }
  .sample-nav {
    padding-inline: 17px;
  }
  .sample-nav small {
    word-spacing: 5px;
  }
  .sample-copy {
    padding-left: 17px;
  }
  .process-grid,
  .faq-grid {
    gap: 65px;
  }
  .about-grid {
    gap: 55px;
  }
  .work-visual {
    padding: 23px 23px 0;
    min-height: 325px;
  }
  .work-preview {
    min-height: 302px;
  }
  .cafe-preview-body .preview-heading {
    font-size: 32px;
  }
  .cafe-preview-body img {
    height: 220px;
  }
  .studio-preview-body,
  .studio-preview-body img {
    min-height: 242px;
    height: 242px;
  }
  .price-card {
    padding-inline: 21px;
  }
  .price-value strong {
    font-size: 31px;
  }
  .contact-panel {
    padding: 50px 40px;
    gap: 25px;
  }
  .contact-panel h2 {
    font-size: 43px;
  }
  .site-nav {
    gap: 23px;
  }
}
@media (max-width: 820px) {
  .container {
    width: calc(100% - 48px);
  }
  .section {
    padding-block: 78px;
  }
  .header-inner {
    height: 75px;
  }
  .site-nav {
    gap: 20px;
  }
  .site-nav > a:not(.button) {
    font-size: 12px;
  }
  .site-nav .button {
    font-size: 11px;
    margin-left: 0;
    padding-inline: 12px;
  }
  .brand {
    font-size: 24px;
  }
  .hero {
    padding-top: 45px;
    padding-bottom: 44px;
  }
  .hero-grid {
    gap: 16px;
  }
  .hero h1 {
    font-size: 50px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero .eyebrow {
    font-size: 10px;
    letter-spacing: 0.08em;
  }
  .hero-actions .button {
    font-size: 12px;
    padding: 13px 16px;
    gap: 14px;
  }
  .hero-actions .text-link {
    font-size: 12px;
  }
  .showcase {
    min-height: 440px;
  }
  .showcase:before {
    inset: 10px -22px 34px 10px;
    border-top-left-radius: 110px;
  }
  .browser-mock {
    margin-bottom: 55px;
  }
  .sample-brand {
    font-size: 13px;
  }
  .sample-nav small {
    font-size: 5px;
    word-spacing: 3px;
  }
  .sample-nav {
    height: 40px;
  }
  .sample-copy h2 {
    font-size: 23px;
    letter-spacing: -0.8px;
  }
  .sample-copy p {
    font-size: 6px;
  }
  .sample-copy > small {
    font-size: 5px;
    letter-spacing: 0.7px;
  }
  .sample-photo {
    height: 210px;
  }
  .sample-hero {
    min-height: 210px;
  }
  .sample-copy {
    padding: 15px 8px 15px 14px;
  }
  .sample-button {
    font-size: 6px;
    padding: 6px 8px;
  }
  .sample-footer {
    font-size: 5px;
    padding-inline: 14px;
    letter-spacing: 0.7px;
  }
  .phone-mock {
    width: 127px;
    bottom: 15px;
    right: -7px;
    border-width: 4px;
  }
  .phone-content {
    padding: 4px 9px 10px;
  }
  .phone-content h3 {
    font-size: 21px;
    margin-top: 9px;
  }
  .phone-content img {
    height: 82px;
  }
  .phone-brand {
    font-size: 14px;
  }
  .showcase-label {
    left: 6px;
    font-size: 8px;
    bottom: 6px;
    max-width: 145px;
  }
  .showcase-label span {
    font-size: 11px;
  }
  .showcase-spark {
    width: 32px;
    top: 17px;
    right: 3px;
  }
  .trust-item {
    font-size: 10px;
    gap: 8px;
  }
  .trust-inner {
    gap: 18px;
    padding-block: 20px;
  }
  .trust-item svg {
    width: 17px;
  }
  .benefits-top {
    gap: 35px;
  }
  .benefits-top .section-intro {
    font-size: 15px;
  }
  .benefits-grid {
    gap: 25px;
    margin-top: 40px;
  }
  .benefit h3 {
    font-size: 18px;
  }
  .benefit p {
    font-size: 13px;
  }
  .section-topline {
    gap: 30px;
  }
  .section-topline > p {
    max-width: 200px;
    font-size: 13px;
  }
  .work-grid {
    gap: 20px;
    grid-template-columns: 1fr 1fr;
  }
  .work-visual {
    padding: 18px 18px 0;
    min-height: 270px;
  }
  .work-preview {
    min-height: 252px;
  }
  .work-preview-nav {
    padding: 13px 14px;
  }
  .work-preview-nav strong {
    font-size: 18px;
  }
  .work-preview-nav small {
    font-size: 5px;
  }
  .cafe-preview-body {
    padding: 8px 13px 15px;
    gap: 8px;
  }
  .cafe-preview-body .preview-heading {
    font-size: 25px;
    letter-spacing: -0.8px;
  }
  .cafe-preview-body .preview-description {
    font-size: 7px;
    margin-top: 10px;
  }
  .cafe-preview-body img {
    height: 180px;
  }
  .work-preview .sample-button {
    font-size: 5px;
  }
  .studio-preview-body,
  .studio-preview-body img {
    min-height: 203px;
    height: 203px;
  }
  .studio-preview-text {
    padding: 17px;
  }
  .studio-preview-text .preview-heading {
    font-size: 27px;
  }
  .studio-preview-text small {
    font-size: 6px;
  }
  .work-caption {
    gap: 9px;
  }
  .work-caption h3 {
    font-size: 14px;
  }
  .work-caption .tag {
    font-size: 8px;
    padding: 4px 7px;
  }
  .work-caption p {
    font-size: 10px;
  }
  .process-grid,
  .faq-grid {
    gap: 40px;
  }
  .process-step {
    gap: 8px;
    grid-template-columns: 34px 1fr;
  }
  .process-step h3 {
    font-size: 19px;
  }
  .process-step p {
    font-size: 13px;
  }
  .pricing-grid {
    gap: 13px;
  }
  .price-card {
    padding: 27px 17px 19px;
  }
  .price-card h3 {
    font-size: 19px;
  }
  .price-description {
    font-size: 12px;
    min-height: 62px;
  }
  .price-value strong {
    font-size: 26px;
  }
  .price-value > span {
    display: block;
    margin: 3px 0 0;
  }
  .feature-list li {
    font-size: 11px;
    gap: 6px;
  }
  .feature-list svg {
    width: 14px;
  }
  .price-card .button {
    font-size: 11px;
    padding: 12px 10px;
    gap: 7px;
  }
  .about-grid {
    gap: 35px;
    grid-template-columns: 1fr 1fr;
  }
  .local-card {
    min-height: 400px;
  }
  .local-card > img {
    height: 400px;
  }
  .local-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 13px;
  }
  .local-caption strong {
    font-size: 11px;
  }
  .local-caption span {
    font-size: 10px;
  }
  .about-copy > p {
    font-size: 14px;
  }
  .faq-section {
    padding-top: 0;
  }
  .faq-grid {
    padding-top: 60px;
  }
  .contact-section {
    padding-bottom: 60px;
  }
  .contact-panel {
    grid-template-columns: 1fr;
    padding: 43px;
    gap: 30px;
  }
  .contact-panel h2 {
    font-size: 44px;
  }
  .contact-action {
    align-items: flex-start;
  }
  .contact-action > span {
    padding-left: 2px;
  }
  .footer-links {
    gap: 18px;
  }
}
@media (max-width: 640px) {
  html {
    scroll-padding-top: 85px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .section {
    padding-block: 64px;
  }
  .header-inner {
    height: 72px;
  }
  .brand {
    font-size: 25px;
  }
  .menu-toggle {
    display: flex;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 15px 20px #1724410d;
    border-top: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav > a:not(.button) {
    font-size: 16px;
    padding: 13px 6px;
  }
  .site-nav .button {
    font-size: 14px;
    margin-top: 15px;
    min-height: 48px;
  }
  .hero {
    padding-top: 31px;
    padding-bottom: 32px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .hero-copy {
    padding: 8px 0 0;
  }
  .hero h1 {
    font-size: clamp(49px, 12.5vw, 72px);
    line-height: 1.08;
    margin-top: 20px;
  }
  .hero .eyebrow {
    font-size: 10px;
    letter-spacing: 0.1em;
  }
  .hero-description {
    font-size: 15px;
    max-width: 365px;
    margin-top: 21px;
    line-height: 1.75;
  }
  .hero-actions {
    gap: 20px;
    margin-top: 25px;
    flex-wrap: nowrap;
  }
  .hero-actions .button {
    font-size: 12px;
    gap: 13px;
    padding-inline: 15px;
  }
  .hero-actions .text-link {
    font-size: 12px;
    gap: 7px;
  }
  .hero-note {
    font-size: 10px;
    margin-top: 13px;
  }
  .showcase {
    min-height: 425px;
    margin: 20px 10px 0 4px;
  }
  .showcase:before {
    inset: 10px -20px 28px 22px;
    border-top-left-radius: 130px;
  }
  .browser-mock {
    margin-bottom: 47px;
    max-width: 470px;
  }
  .sample-nav {
    height: 43px;
    padding-inline: 18px;
  }
  .sample-brand {
    font-size: 15px;
  }
  .sample-nav small {
    font-size: 6px;
    word-spacing: 7px;
  }
  .sample-copy {
    padding: 20px 9px 20px 18px;
  }
  .sample-copy h2 {
    font-size: 29px;
    letter-spacing: -1px;
  }
  .sample-copy p {
    font-size: 7px;
    max-width: 130px;
  }
  .sample-copy > small {
    font-size: 5px;
    letter-spacing: 1px;
  }
  .sample-photo {
    height: 219px;
  }
  .sample-hero {
    min-height: 219px;
  }
  .sample-button {
    font-size: 6px;
    margin-top: 13px;
  }
  .sample-footer {
    padding: 11px 18px;
    font-size: 5px;
  }
  .phone-mock {
    width: 134px;
    bottom: 9px;
    right: -8px;
  }
  .phone-content h3 {
    font-size: 23px;
  }
  .phone-content img {
    height: 87px;
  }
  .showcase-label {
    bottom: 2px;
    left: 8px;
    font-size: 8px;
    max-width: 200px;
  }
  .showcase-label span {
    font-size: 11px;
  }
  .showcase-spark {
    right: 3px;
    top: 11px;
  }
  .trust-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 13px;
    padding-block: 21px;
  }
  .trust-item {
    font-size: 12px;
    gap: 11px;
  }
  .trust-item svg {
    width: 17px;
    height: 17px;
  }
  .benefits-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .benefits-top .section-intro {
    justify-self: start;
    max-width: 100%;
    font-size: 15px;
  }
  .section-heading {
    font-size: 34px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 32px;
  }
  .benefit {
    position: relative;
    padding: 23px 0 0 48px;
  }
  .benefit-icon {
    position: absolute;
    left: 0;
    top: 23px;
    width: 26px;
    height: 26px;
  }
  .benefit h3 {
    font-size: 19px;
  }
  .benefit p {
    max-width: 100%;
    font-size: 14px;
    margin-top: 8px;
  }
  .section-topline {
    display: block;
    margin-bottom: 29px;
  }
  .section-topline > p {
    max-width: 100%;
    margin-top: 19px;
    font-size: 14px;
  }
  .section-topline .eyebrow {
    margin-bottom: 17px;
  }
  .work-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .work-visual {
    padding: 25px 25px 0;
    min-height: 320px;
  }
  .work-preview {
    min-height: 295px;
  }
  .work-preview-nav {
    padding: 16px 18px;
  }
  .work-preview-nav strong {
    font-size: 22px;
  }
  .work-preview-nav small {
    font-size: 6px;
  }
  .cafe-preview-body {
    padding: 7px 18px 18px;
    gap: 12px;
  }
  .cafe-preview-body .preview-heading {
    font-size: 33px;
  }
  .cafe-preview-body .preview-description {
    font-size: 8px;
  }
  .cafe-preview-body img {
    height: 216px;
  }
  .work-preview .sample-button {
    font-size: 6px;
  }
  .studio-preview-body,
  .studio-preview-body img {
    min-height: 241px;
    height: 241px;
  }
  .studio-preview-text .preview-heading {
    font-size: 35px;
  }
  .studio-preview-text small {
    font-size: 7px;
  }
  .work-caption h3 {
    font-size: 15px;
  }
  .work-caption p {
    font-size: 11px;
  }
  .work-caption .tag {
    font-size: 9px;
  }
  .work-disclaimer {
    font-size: 10px;
  }
  .work-audience {
    margin-top: 30px;
    padding-top: 22px;
    gap: 10px 18px;
    font-size: 11px;
  }
  .work-audience span:first-child {
    flex-basis: 100%;
  }
  .process-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .section-intro {
    font-size: 15px;
    margin-top: 18px;
  }
  .process-intro .text-link {
    margin-top: 21px;
  }
  .process-step {
    grid-template-columns: 35px 1fr;
    gap: 15px;
    padding-block: 24px;
  }
  .process-step p {
    font-size: 14px;
  }
  .pricing-intro {
    text-align: left;
    margin-bottom: 36px;
  }
  .pricing-intro .eyebrow {
    justify-content: flex-start;
  }
  .pricing-intro p {
    font-size: 15px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .price-card {
    padding: 27px;
  }
  .price-card h3 {
    font-size: 24px;
  }
  .price-description {
    font-size: 14px;
    min-height: 0;
    max-width: 100%;
  }
  .price-value {
    margin-top: 21px;
    padding-bottom: 19px;
  }
  .price-value strong {
    font-size: 36px;
  }
  .price-value > span {
    display: inline;
    font-size: 12px;
    margin-left: 5px;
  }
  .feature-list {
    margin-block: 21px 25px;
    gap: 12px;
  }
  .feature-list li {
    font-size: 13px;
    gap: 10px;
  }
  .feature-list svg {
    width: 17px;
    height: 17px;
  }
  .price-card .button {
    font-size: 13px;
    padding: 14px 18px;
  }
  .pricing-note {
    text-align: left;
    font-size: 11px;
    margin-top: 22px;
  }
  .pricing-note svg {
    flex-shrink: 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 31px;
  }
  .local-card {
    min-height: 320px;
  }
  .local-card > img {
    height: 320px;
    object-position: center 55%;
  }
  .local-caption {
    padding: 16px;
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
  .local-caption strong {
    font-size: 13px;
  }
  .local-caption span {
    font-size: 11px;
  }
  .about-copy > p {
    font-size: 15px;
    margin-top: 19px;
  }
  .faq-section {
    padding-top: 0;
  }
  .faq-grid {
    padding-top: 48px;
    gap: 30px;
  }
  .faq-list summary {
    font-size: 14px;
  }
  .faq-list details p {
    font-size: 13px;
  }
  .contact-section {
    padding-bottom: 43px;
  }
  .contact-panel {
    padding: 32px 25px;
    border-radius: 12px;
    gap: 27px;
  }
  .contact-panel h2 {
    font-size: 36px;
  }
  .contact-panel p {
    font-size: 13px;
    margin-top: 18px;
  }
  .contact-panel .eyebrow {
    font-size: 9px;
    margin-bottom: 18px;
  }
  .contact-action .button {
    font-size: 13px;
    min-height: 52px;
    padding-inline: 18px;
  }
  .contact-action > span {
    font-size: 10px;
  }
  .footer-top {
    flex-direction: column;
    gap: 23px;
    padding-bottom: 26px;
  }
  .footer-links {
    gap: 4px 22px;
    flex-wrap: wrap;
    font-size: 12px;
  }
  .footer-bottom {
    font-size: 10px;
    flex-direction: column;
    gap: 0;
    padding-top: 12px;
  }
  /* Tippziele: auf dem Handy sind die Fusszeilen-Links sonst nur 16-19px hoch. */
  .footer-links a,
  .footer-bottom a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
  .dialog-inner {
    padding: 35px 23px 25px;
  }
  .site-dialog h2 {
    font-size: 26px;
  }
  .demo-image {
    height: 220px;
  }
}
@media (max-width: 370px) {
  .container {
    width: calc(100% - 32px);
  }
  .hero-actions {
    gap: 14px;
  }
  .hero-actions .button {
    font-size: 11px;
    padding-inline: 12px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .hero h1 {
    font-size: 47px;
  }
  .showcase {
    min-height: 390px;
  }
  .sample-copy h2 {
    font-size: 25px;
  }
  .sample-photo {
    height: 196px;
  }
  .sample-hero {
    min-height: 196px;
  }
  .phone-mock {
    width: 119px;
    bottom: 7px;
  }
  .phone-content h3 {
    font-size: 20px;
  }
  .phone-content img {
    height: 74px;
  }
  .showcase-label {
    max-width: 160px;
  }
  .work-visual {
    padding: 19px 19px 0;
    min-height: 291px;
  }
  .work-preview {
    min-height: 272px;
  }
  .cafe-preview-body .preview-heading {
    font-size: 29px;
  }
  .cafe-preview-body img {
    height: 197px;
  }
  .studio-preview-body,
  .studio-preview-body img {
    height: 218px;
    min-height: 218px;
  }
  .studio-preview-text .preview-heading {
    font-size: 30px;
  }
  .contact-panel {
    padding: 29px 21px;
  }
  .contact-panel h2 {
    font-size: 33px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
  .button:hover,
  .work-visual:hover .work-preview {
    transform: none;
  }
}

.preview-heading,
.preview-description {
  display: block;
}
