:root {
  --paper: #f5f1e9;
  --paper-2: #ebe5da;
  --white: #fffdf9;
  --ink: #14231f;
  --ink-2: #20332e;
  --muted: #65706b;
  --line: rgba(20, 35, 31, 0.14);
  --gold: #c7a163;
  --gold-light: #e2c793;
  --sage: #9eac9e;
  --danger: #93493e;
  --sans: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --radius: 8px;
  --shadow: 0 30px 80px rgba(28, 36, 31, 0.14);
  --shell: min(1240px, calc(100vw - 64px));
}

* {
  box-sizing: border-box;
}

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

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

body.nav-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--ink);
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 10px 15px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background-color .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.admin-bar .site-header {
  top: 32px;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(245, 241, 233, .9);
  box-shadow: 0 8px 30px rgba(18, 34, 29, .05);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.brand {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: flex-end;
  gap: 8px;
  line-height: 1;
}

.brand-word {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: 29px;
  font-weight: 760;
  letter-spacing: -.065em;
}

.brand-cross {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 28px;
  margin: 0 2px 0 3px;
}

.brand-cross::before,
.brand-cross::after {
  position: absolute;
  content: "";
  background: var(--gold);
  border-radius: 1px;
}

.brand-cross::before {
  top: 0;
  left: 6px;
  width: 4px;
  height: 28px;
}

.brand-cross::after {
  top: 7px;
  left: 0;
  width: 15px;
  height: 4px;
}

.brand-studio {
  padding-bottom: 2px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 42px);
}

.site-nav > a:not(.nav-contact) {
  position: relative;
  font-size: 13px;
  font-weight: 650;
}

.site-nav > a:not(.nav-contact)::after {
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

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

.nav-contact {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  min-height: 46px;
  padding: 0 12px 0 20px;
  color: var(--white);
  background: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}

.nav-contact span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--ink);
  background: var(--gold-light);
  border-radius: 50%;
  transition: transform .3s ease;
}

.nav-contact:hover span {
  transform: rotate(45deg);
}

.nav-toggle {
  position: relative;
  z-index: 4;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .3s ease, top .3s ease;
}

.nav-toggle span:first-child { top: 17px; }
.nav-toggle span:last-child { top: 25px; }
.nav-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

.hero {
  position: relative;
  min-height: 850px;
  padding: 166px 0 36px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: -210px;
  right: -150px;
  width: 720px;
  height: 720px;
  content: "";
  background: radial-gradient(circle, rgba(199, 161, 99, .15), transparent 68%);
  border-radius: 50%;
}

.hero-orbit {
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(20, 35, 31, .08);
  border-radius: 50%;
}

.orbit-one {
  top: 80px;
  right: -130px;
  width: 690px;
  height: 690px;
}

.orbit-two {
  top: 175px;
  right: -35px;
  width: 500px;
  height: 500px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: center;
  gap: clamp(30px, 6vw, 100px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 27px;
  color: #53605b;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow > span {
  display: block;
  width: 23px;
  height: 1px;
  background: var(--gold);
}

.hero h1,
.section-heading h2,
.faq-intro h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(55px, 5.7vw, 84px);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .98;
}

.hero h1 em,
.section-heading h2 em,
.faq-intro h2 em,
.contact-copy h2 em {
  color: var(--gold);
  font-weight: 400;
}

.hero-lead {
  max-width: 560px;
  margin: 33px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 54px;
  padding: 0 17px 0 23px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease;
}

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

.button > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  transition: transform .3s ease;
}

.button:hover > span { transform: rotate(45deg); }

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

.button-dark > span {
  color: var(--ink);
  background: var(--gold-light);
}

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

.button-gold > span {
  color: var(--white);
  background: var(--ink);
}

.button-outline {
  color: var(--ink);
  border-color: rgba(20, 35, 31, .32);
}

.button-outline > span {
  color: var(--white);
  background: var(--ink);
}

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

.button-outline:hover > span {
  color: var(--ink);
  background: var(--gold-light);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(20, 35, 31, .35);
  font-size: 12px;
  font-weight: 700;
}

.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translate(2px, 2px); }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 50px;
}

.proof-avatars {
  display: flex;
}

.proof-avatars span {
  display: grid;
  width: 31px;
  height: 31px;
  margin-right: -7px;
  place-items: center;
  color: var(--white);
  background: var(--ink-2);
  border: 2px solid var(--paper);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 11px;
}

.proof-avatars span:nth-child(2) { background: var(--gold); }
.proof-avatars span:nth-child(3) { color: var(--ink); background: #d8ded5; }
.hero-proof p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.5; }
.hero-proof strong { color: var(--ink); font-size: 11px; }

.hero-visual {
  position: relative;
  min-width: 0;
  padding: 40px 8px 50px 20px;
}

.visual-halo {
  position: absolute;
  inset: 0 2% 0 5%;
  background: linear-gradient(145deg, rgba(224, 216, 199, .8), rgba(203, 189, 161, .32));
  border: 1px solid rgba(20, 35, 31, .08);
  border-radius: 50% 50% 46% 54% / 56% 46% 54% 44%;
  transform: rotate(-5deg);
}

.browser-card {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin-left: auto;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(20, 35, 31, .16);
  box-shadow: var(--shadow);
  transform: perspective(1600px) rotateY(-4deg) rotateX(1deg);
}

.browser-top {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 31px;
  padding: 0 12px;
  background: #e7e2d9;
}

.browser-top > span,
.case-browserbar > span {
  width: 6px;
  height: 6px;
  background: #aaa79f;
  border-radius: 50%;
}

.browser-address {
  width: 54%;
  margin: 0 auto;
  padding: 3px 10px;
  color: #8e918d;
  background: rgba(255, 255, 255, .7);
  border-radius: 3px;
  font-size: 6px;
  text-align: center;
}

.demo-site { min-height: 390px; background: #f8f5ef; }
.demo-nav { display: flex; align-items: center; justify-content: space-between; height: 64px; padding: 0 28px; background: #fff; }
.demo-logo { display: flex; align-items: center; gap: 8px; font-family: var(--serif); font-size: 13px; }
.demo-logo i { position: relative; display: block; width: 14px; height: 22px; }
.demo-logo i::before, .demo-logo i::after { position: absolute; content: ""; background: #9a7b50; }
.demo-logo i::before { left: 6px; width: 2px; height: 22px; }
.demo-logo i::after { top: 6px; width: 14px; height: 2px; }
.demo-links { display: flex; gap: 20px; color: #68706d; font-size: 6px; font-weight: 700; }
.demo-hero { min-height: 245px; padding: 48px 42px; color: #fff; background: linear-gradient(105deg, rgba(20, 37, 32, .96), rgba(20, 37, 32, .62)), radial-gradient(circle at 80% 50%, #6f8174, #172b25 60%); }
.demo-hero p { margin: 0 0 14px; color: #d7bd8c; font-size: 6px; font-weight: 700; letter-spacing: .15em; }
.demo-hero h2 { margin: 0 0 24px; font-family: var(--serif); font-size: 35px; font-weight: 400; line-height: .97; }
.demo-button { display: inline-block; padding: 9px 12px; color: var(--ink); background: #ddc493; font-size: 6px; font-weight: 700; }
.demo-cards { display: grid; grid-template-columns: repeat(3, 1fr); min-height: 81px; margin: -22px 22px 0; background: #fff; box-shadow: 0 8px 25px rgba(23, 38, 33, .1); }
.demo-cards span { display: flex; flex-direction: column; justify-content: center; padding: 13px 16px; color: #79817d; border-right: 1px solid #ebe6dd; font-size: 6px; }
.demo-cards span:last-child { border: 0; }
.demo-cards b { color: var(--ink); font-family: var(--serif); font-size: 15px; font-weight: 400; }

.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 18px 40px rgba(16, 29, 25, .2);
}

.float-card small { display: block; margin-bottom: 2px; color: #adb8b3; font-size: 7px; letter-spacing: .15em; }
.float-card strong { display: block; font-size: 12px; line-height: 1.2; }
.float-live { top: 2px; right: -12px; gap: 12px; padding: 13px 14px; }
.float-live > span:last-child { display: grid; width: 28px; height: 28px; place-items: center; color: var(--ink); background: var(--gold-light); border-radius: 50%; font-size: 8px; }
.live-dot { width: 7px; height: 7px; background: #d45d50; border-radius: 50%; box-shadow: 0 0 0 4px rgba(212, 93, 80, .14); animation: pulse 2s infinite; }
.float-care { bottom: 12px; left: -4px; gap: 11px; padding: 13px 18px 13px 13px; color: var(--ink); background: var(--white); }
.float-care small { color: var(--muted); }
.care-icon { display: grid; width: 31px; height: 31px; place-items: center; color: var(--ink); background: var(--gold-light); border-radius: 50%; font-size: 12px; }

@keyframes pulse {
  50% { box-shadow: 0 0 0 7px rgba(212, 93, 80, 0); }
}

.hero-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 58px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.hero-bottom p { margin: 0; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .13em; }
.hero-bottom > div { display: flex; align-items: center; gap: 19px; }
.hero-bottom span { font-family: var(--serif); font-size: 14px; font-style: italic; }
.hero-bottom i { width: 3px; height: 3px; background: var(--gold); border-radius: 50%; }

.section {
  padding: 130px 0;
}

.section-heading h2,
.faq-intro h2,
.contact-copy h2 {
  font-size: clamp(45px, 4.3vw, 66px);
}

.split-heading,
.pricing-heading,
.services-heading {
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}

.heading-aside,
.pricing-heading > p,
.services-heading > p {
  max-width: 440px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

div.heading-aside p { margin: 0 0 22px; }

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

.value-card {
  position: relative;
  min-height: 375px;
  padding: 40px 42px 38px;
  border-right: 1px solid var(--line);
}

.value-card:last-child { border-right: 0; }
.featured-value { background: #ebe4d8; }
.card-number { position: absolute; top: 28px; right: 28px; color: #8d958f; font-family: var(--serif); font-size: 12px; }
.value-icon { position: relative; width: 58px; height: 58px; margin: 32px 0 58px; color: var(--ink); }
.value-card h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 25px; font-weight: 400; letter-spacing: -.025em; }
.value-card p { max-width: 300px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.icon-window { border: 1px solid var(--ink); }
.icon-window::before { position: absolute; top: 11px; left: 0; width: 100%; height: 1px; content: ""; background: var(--ink); }
.icon-window i { position: absolute; top: 5px; width: 2px; height: 2px; background: var(--gold); border-radius: 50%; }
.icon-window i:nth-child(1) { left: 6px; }.icon-window i:nth-child(2) { left: 11px; }.icon-window i:nth-child(3) { left: 16px; }
.icon-window::after { position: absolute; inset: 19px 8px 8px; content: ""; border: 1px solid rgba(20,35,31,.25); border-bottom-width: 8px; }
.icon-devices i:first-child { position: absolute; top: 1px; left: 0; width: 46px; height: 35px; border: 1px solid var(--ink); }
.icon-devices i:first-child::after { position: absolute; bottom: -7px; left: 15px; width: 16px; height: 6px; content: ""; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.icon-devices i:last-child { position: absolute; right: 0; bottom: 3px; width: 20px; height: 35px; background: var(--paper); border: 1px solid var(--ink); }
.featured-value .icon-devices i:last-child { background: #ebe4d8; }
.icon-shield { display: grid; width: 55px; height: 61px; place-items: center; border: 1px solid var(--ink); border-radius: 28px 28px 30px 30px / 15px 15px 38px 38px; font-family: var(--serif); font-size: 20px; }

.services {
  position: relative;
  color: #edf1ec;
  background: var(--ink);
  overflow: hidden;
}

.services::after {
  position: absolute;
  top: -280px;
  right: -200px;
  width: 670px;
  height: 670px;
  content: "";
  border: 1px solid rgba(224, 199, 147, .12);
  border-radius: 50%;
}

.eyebrow-light { color: #aab4af; }
.services-heading { position: relative; z-index: 1; }
.services-heading > p { color: #aab4af; }
.services-list { position: relative; z-index: 1; border-top: 1px solid rgba(255,255,255,.16); }
.service-row { display: grid; grid-template-columns: 55px .9fr 1.1fr 50px; gap: 30px; align-items: center; min-height: 142px; border-bottom: 1px solid rgba(255,255,255,.16); transition: background .3s ease, padding .3s ease; }
.service-row:hover { padding-inline: 18px; background: rgba(255,255,255,.035); }
.service-no { color: var(--gold-light); font-family: var(--serif); font-size: 11px; }
.service-row h3 { margin: 0; font-family: var(--serif); font-size: 29px; font-weight: 400; letter-spacing: -.03em; }
.service-row p { max-width: 510px; margin: 0; color: #aab4af; font-size: 13px; line-height: 1.7; }
.service-arrow { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; transition: color .25s ease, background .25s ease, transform .25s ease; }
.service-row:hover .service-arrow { color: var(--ink); background: var(--gold-light); border-color: var(--gold-light); transform: rotate(45deg); }

.portfolio { background: #e9e3d9; }
.case-study { padding: 36px; background: var(--ink); }
.case-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; color: var(--white); }
.case-label { margin: 0 0 5px; color: var(--gold-light); font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.case-meta h3 { margin: 0; font-family: var(--serif); font-size: 27px; font-weight: 400; }
.circle-link { display: grid; width: 48px; height: 48px; place-items: center; color: var(--ink); background: var(--gold-light); border-radius: 50%; transition: transform .3s ease; }
.circle-link:hover { transform: rotate(45deg); }
.case-screen { overflow: hidden; background: #f5f1e8; border: 7px solid #d2cec5; border-bottom-width: 0; border-radius: 6px 6px 0 0; box-shadow: 0 20px 55px rgba(0,0,0,.25); }
.case-browserbar { display: flex; align-items: center; gap: 5px; height: 29px; padding: 0 12px; background: #e6e2da; }
.case-browserbar p { width: 37%; margin: 0 auto; padding: 2px 8px; color: #858a86; background: #f6f3ed; font-size: 6px; text-align: center; }
.case-tags { display: flex; gap: 8px; padding-top: 24px; }
.case-tags span { padding: 7px 12px; color: #bdc6c0; border: 1px solid rgba(255,255,255,.16); border-radius: 20px; font-size: 8px; font-weight: 600; letter-spacing: .04em; }

.pricing { background: var(--paper); }
.pricing-heading { margin-bottom: 60px; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.price-card { position: relative; display: flex; flex-direction: column; min-height: 610px; padding: 38px 34px 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.price-featured { margin-top: -14px; color: var(--white); background: var(--ink); border: 0; box-shadow: 0 20px 60px rgba(20,35,31,.18); }
.popular-badge { position: absolute; top: 0; left: 0; width: 100%; padding: 7px; color: var(--ink); background: var(--gold-light); font-size: 8px; font-weight: 800; letter-spacing: .13em; text-align: center; text-transform: uppercase; transform: translateY(-100%); }
.price-top { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.price-featured .price-top { border-color: rgba(255,255,255,.17); }
.price-top p { margin: 0; font-family: var(--serif); font-size: 20px; }
.price-top > span { color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.price-featured .price-top > span { color: #aeb8b3; }
.price { display: flex; align-items: flex-end; gap: 6px; margin: 34px 0 18px; line-height: 1; }
.price small { align-self: flex-start; margin-top: 9px; color: var(--muted); font-size: 9px; text-transform: uppercase; }
.price strong { font-family: var(--serif); font-size: clamp(48px, 4vw, 61px); font-weight: 400; letter-spacing: -.055em; }
.price > span { padding-bottom: 7px; color: var(--muted); font-size: 11px; font-weight: 700; }
.price-featured .price > span { color: #b9c1bd; }
.price-description { min-height: 64px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.price-featured .price-description { color: #adb7b2; }
.price-card ul, .care-option ul { display: grid; gap: 12px; margin: 29px 0 35px; padding: 27px 0 0; border-top: 1px solid var(--line); list-style: none; }
.price-featured ul { border-color: rgba(255,255,255,.17); }
.price-card li, .care-option li { position: relative; padding-left: 20px; color: #46544f; font-size: 11px; }
.price-featured li { color: #d7ddd9; }
.price-card li::before, .care-option li::before { position: absolute; top: 1px; left: 0; display: grid; width: 13px; height: 13px; content: "✓"; place-items: center; color: var(--ink); background: var(--gold-light); border-radius: 50%; font-size: 7px; font-weight: 800; }
.price-card .button { width: 100%; margin-top: auto; }
.price-featured .button-gold { min-height: 58px; }

.care-plans { display: grid; grid-template-columns: .8fr 1fr 1fr; margin-top: 76px; border: 1px solid var(--line); }
.care-heading, .care-option { padding: 34px; }
.care-heading { background: #e9e3d9; }
.care-heading .eyebrow { margin-bottom: 26px; }
.care-heading h3 { margin: 0 0 12px; font-family: var(--serif); font-size: 30px; font-weight: 400; line-height: 1.05; }
.care-heading > p:last-child { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.65; }
.care-option { position: relative; border-left: 1px solid var(--line); }
.care-option > div { display: flex; align-items: flex-end; justify-content: space-between; gap: 15px; }
.care-option small { color: var(--muted); font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.care-option strong { font-family: var(--serif); font-size: 37px; font-weight: 400; line-height: 1; }
.care-option strong span { color: var(--muted); font-family: var(--sans); font-size: 8px; font-weight: 600; }
.care-option ul { min-height: 118px; margin-bottom: 0; }
.care-option > a { position: absolute; right: 24px; bottom: 22px; display: grid; width: 31px; height: 31px; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 10px; transition: transform .25s, background .25s; }
.care-option > a:hover { background: var(--gold-light); transform: rotate(45deg); }
.care-option-dark { color: #fff; background: var(--ink); }
.care-option-dark li { color: #d5dcd8; }.care-option-dark ul { border-color: rgba(255,255,255,.15); }.care-option-dark > a { border-color: rgba(255,255,255,.25); }

.custom-plan { display: grid; grid-template-columns: 72px 1fr auto; align-items: center; gap: 26px; margin-top: 22px; padding: 30px 32px; border: 1px solid var(--line); background: rgba(255,255,255,.25); }
.custom-symbol { position: relative; width: 58px; height: 58px; border: 1px solid var(--line); border-radius: 50%; }
.custom-symbol span { position: absolute; top: 28px; left: 18px; width: 22px; height: 1px; background: var(--gold); }
.custom-symbol span:last-child { transform: rotate(90deg); }
.custom-plan p { margin: 0 0 2px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.custom-plan h3 { margin: 0; font-family: var(--serif); font-size: 26px; font-weight: 400; }

.process { background: #e9e3d9; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.process-grid::before { position: absolute; top: 40px; left: 6px; width: calc(100% - 12px); height: 1px; content: ""; background: rgba(20,35,31,.22); }
.process-grid article { position: relative; padding: 0 38px 0 0; }
.process-grid article > span { color: #8a938e; font-family: var(--serif); font-size: 10px; }
.process-dot { position: relative; z-index: 1; width: 12px; height: 12px; margin: 25px 0 30px; background: var(--paper); border: 3px solid var(--gold); border-radius: 50%; box-shadow: 0 0 0 6px #e9e3d9; }
.process-grid h3 { margin: 0 0 11px; font-family: var(--serif); font-size: 22px; font-weight: 400; }
.process-grid p { max-width: 240px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }

.faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 12%; }
.faq-intro { position: sticky; top: 130px; align-self: start; }
.faq-intro > p:not(.eyebrow) { max-width: 350px; margin: 28px 0 22px; color: var(--muted); font-size: 13px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 27px 5px; font-family: var(--serif); font-size: 21px; line-height: 1.25; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; flex: 0 0 28px; width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 50%; }
.faq-list summary span::before, .faq-list summary span::after { position: absolute; top: 13px; left: 8px; width: 10px; height: 1px; content: ""; background: var(--ink); transition: transform .3s ease; }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span { background: var(--gold-light); border-color: var(--gold-light); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 620px; margin: -6px 45px 26px 5px; color: var(--muted); font-size: 13px; line-height: 1.75; }

.contact { position: relative; padding: 125px 0; color: #eef2ee; background: var(--ink); overflow: hidden; }
.contact::before { position: absolute; bottom: -340px; left: -170px; width: 700px; height: 700px; content: ""; background: radial-gradient(circle, rgba(199,161,99,.12), transparent 68%); }
.contact-orbit { position: absolute; top: -380px; right: -200px; width: 750px; height: 750px; border: 1px solid rgba(226,199,147,.09); border-radius: 50%; }
.contact-orbit::after { position: absolute; inset: 90px; content: ""; border: 1px solid rgba(226,199,147,.09); border-radius: 50%; }
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .8fr 1.2fr; gap: 9%; align-items: center; }
.contact-copy > p:not(.eyebrow) { max-width: 490px; margin: 30px 0 35px; color: #aeb9b3; font-size: 14px; line-height: 1.8; }
.contact-note { display: flex; align-items: center; gap: 13px; }
.contact-note > span { display: grid; width: 36px; height: 36px; place-items: center; color: var(--ink); background: var(--gold-light); border-radius: 50%; font-size: 11px; }
.contact-note p { margin: 0; color: #aeb9b3; font-size: 10px; line-height: 1.5; }.contact-note strong { color: #fff; font-size: 11px; }
.contact-panel { padding: 42px; color: var(--ink); background: var(--white); box-shadow: 0 25px 70px rgba(0,0,0,.2); }
.form-notice { margin-bottom: 25px; padding: 13px 15px; font-size: 11px; }
.form-success { color: #214f3f; background: #e2eee8; border-left: 3px solid #4e8a71; }
.form-error { color: #6f342d; background: #f3e3e0; border-left: 3px solid var(--danger); }
.contact-form { display: grid; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form label { display: block; color: #34453f; font-size: 9px; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }
.contact-form label > span { color: var(--gold); }.contact-form label > small { color: #959d98; font-size: 7px; font-weight: 500; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 7px; padding: 11px 0; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid rgba(20,35,31,.22); border-radius: 0; outline: none; font-size: 12px; font-weight: 450; letter-spacing: 0; text-transform: none; transition: border-color .2s; }
.contact-form textarea { min-height: 92px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #9ba19e; opacity: 1; }
.contact-form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #69736e 50%), linear-gradient(135deg, #69736e 50%, transparent 50%); background-position: calc(100% - 11px) 50%, calc(100% - 7px) 50%; background-size: 4px 4px, 4px 4px; background-repeat: no-repeat; }
.honey-field { position: absolute !important; left: -9999px !important; }
.form-submit { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 2px; }
.form-submit p { max-width: 260px; margin: 0; color: #939a96; font-size: 8px; line-height: 1.5; }
.form-submit .button { min-width: 195px; border: 0; }

.site-footer { padding-top: 75px; color: #dfe5e1; background: #0e1b17; }
.footer-main { display: grid; grid-template-columns: 1.6fr .6fr .8fr; gap: 70px; padding-bottom: 65px; }
.brand-light .brand-word { color: #fff; }.brand-light .brand-studio { color: #8d9a94; }
.footer-intro > p { max-width: 340px; margin: 21px 0 0; color: #84918b; font-size: 12px; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; font-size: 11px; }
.footer-links a { color: #ced5d1; transition: color .2s; }.footer-links a:hover { color: var(--gold-light); }
.footer-links > span { color: #78857f; font-size: 9px; }
.footer-label { margin: 0 0 7px; color: #6e7b75; font-size: 8px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 19px 0 25px; color: #68746f; border-top: 1px solid rgba(255,255,255,.1); font-size: 8px; letter-spacing: .04em; }
.footer-bottom p { margin: 0; }.footer-bottom a { color: #aeb9b3; }

.default-page { min-height: 70vh; padding: 160px 0 90px; }
.content-shell { max-width: 900px; }
.content-shell h1 { font-family: var(--serif); font-size: clamp(44px, 6vw, 76px); font-weight: 400; }

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--delay, 0ms);
}

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

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: .9fr 1.1fr; gap: 25px; }
  .hero { min-height: auto; }
  .hero h1 { font-size: clamp(49px, 6vw, 70px); }
  .hero-visual { margin-right: -30px; }
  .value-card { padding-inline: 30px; }
  .service-row { grid-template-columns: 40px .85fr 1.15fr 44px; gap: 20px; }
  .care-plans { grid-template-columns: 1fr 1fr; }
  .care-heading { grid-column: 1 / -1; }
  .contact-grid { gap: 6%; }
  .contact-panel { padding: 35px; }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 40px, 720px); }
  .admin-bar .site-header { top: 46px; }
  .header-inner { height: 76px; }
  .nav-toggle { display: block; }
  .site-nav { position: fixed; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 24px; padding: 90px max(30px, calc((100vw - 720px) / 2)); visibility: hidden; opacity: 0; background: var(--paper); transition: opacity .3s ease, visibility .3s ease; }
  .site-nav.is-open { visibility: visible; opacity: 1; }
  .site-nav > a:not(.nav-contact) { font-family: var(--serif); font-size: 31px; font-weight: 400; }
  .site-nav .nav-contact { margin-top: 10px; }
  .hero { padding-top: 130px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 650px; }
  .hero h1 { font-size: clamp(55px, 10vw, 78px); }
  .hero-visual { width: 90%; margin: 35px auto 0; padding-left: 0; }
  .hero-bottom { margin-top: 35px; }
  .hero-bottom > div { gap: 12px; }
  .section { padding: 95px 0; }
  .split-heading, .pricing-heading, .services-heading { grid-template-columns: 1fr; gap: 30px; margin-bottom: 55px; }
  .value-grid { grid-template-columns: 1fr; border: 1px solid var(--line); }
  .value-card { display: grid; grid-template-columns: 100px 1fr; align-items: center; min-height: auto; padding: 32px; border-right: 0; border-bottom: 1px solid var(--line); }
  .value-card:last-child { border-bottom: 0; }
  .value-icon { grid-row: 1 / span 2; margin: 0; }
  .value-card h3 { align-self: end; }.value-card p { align-self: start; }
  .service-row { grid-template-columns: 40px 1fr 40px; padding: 25px 0; }
  .service-row h3 { font-size: 26px; }
  .service-row p { grid-column: 2 / 3; }
  .service-arrow { grid-column: 3; grid-row: 1 / span 2; }
  .price-grid { grid-template-columns: 1fr; border-top: 0; }
  .price-card { min-height: auto; padding: 38px; border-top: 1px solid var(--line); }
  .price-featured { margin: 25px 0; }
  .price-description { min-height: 0; }.price-card .button { margin-top: 10px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 50px 30px; }
  .process-grid::before { display: none; }
  .process-dot { margin: 14px 0 22px; }
  .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .faq-intro { position: static; }
  .contact-copy { max-width: 600px; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100vw - 32px); }
  html { scroll-padding-top: 74px; }
  .brand-word { font-size: 26px; }
  .brand-cross { height: 25px; }.brand-cross::before { height: 25px; }
  .hero { padding: 116px 0 25px; }
  .hero::before { right: -350px; }
  .orbit-one { right: -460px; }
  .hero h1 { font-size: clamp(46px, 14vw, 62px); }
  .hero-lead { margin-top: 25px; font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; margin-top: 29px; }
  .hero-proof { margin-top: 35px; }
  .hero-visual { width: 100%; margin-top: 25px; padding-block: 30px 42px; }
  .browser-card { transform: none; }
  .demo-site { min-height: 290px; }
  .demo-nav { height: 50px; padding: 0 17px; }
  .demo-links { gap: 8px; }.demo-links span:nth-child(2), .demo-links span:nth-child(3) { display: none; }
  .demo-hero { min-height: 180px; padding: 30px 24px; }.demo-hero h2 { font-size: 28px; }
  .demo-cards { min-height: 65px; margin-inline: 12px; }.demo-cards span { padding-inline: 9px; }.demo-cards b { font-size: 12px; }
  .float-live { right: -4px; }.float-care { left: -4px; }
  .hero-bottom { display: block; }.hero-bottom p { margin-bottom: 10px; }.hero-bottom > div { flex-wrap: wrap; gap: 7px 12px; }
  .section { padding: 75px 0; }
  .section-heading h2, .faq-intro h2, .contact-copy h2 { font-size: clamp(39px, 11.5vw, 51px); }
  .eyebrow { margin-bottom: 21px; }
  .value-card { display: block; padding: 30px; }
  .value-icon { margin: 12px 0 28px; }.value-card h3 { font-size: 23px; }
  .services::after { display: none; }
  .service-row { grid-template-columns: 28px 1fr 35px; gap: 10px; padding: 23px 0; }
  .service-row h3 { font-size: 21px; }.service-row p { font-size: 11px; }.service-arrow { width: 34px; height: 34px; }
  .portfolio .split-heading { margin-bottom: 40px; }
  .case-study { margin-inline: -16px; padding: 23px 16px; }
  .case-meta h3 { font-size: 21px; }
  .circle-link { width: 40px; height: 40px; }
  .case-tags { flex-wrap: wrap; }
  .price-card { padding: 32px 24px; }.price strong { font-size: 52px; }
  .care-plans { grid-template-columns: 1fr; margin-top: 55px; }.care-heading { grid-column: auto; }.care-option { border-top: 1px solid var(--line); border-left: 0; }
  .custom-plan { grid-template-columns: 55px 1fr; gap: 17px; padding: 25px 20px; }.custom-symbol { width: 48px; height: 48px; }.custom-symbol span { top: 23px; left: 14px; width: 20px; }.custom-plan h3 { font-size: 21px; }.custom-plan .button { grid-column: 1 / -1; width: 100%; }
  .process-grid { grid-template-columns: 1fr; gap: 38px; }.process-grid article { padding-right: 0; }
  .faq-list summary { padding-block: 22px; font-size: 18px; }
  .contact { padding: 80px 0; }.contact-grid { gap: 45px; }.contact-panel { margin-inline: -8px; padding: 27px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 22px; }.form-submit { align-items: stretch; flex-direction: column; }.form-submit .button { width: 100%; }
  .site-footer { padding-top: 58px; }.footer-main { grid-template-columns: 1fr 1fr; gap: 40px 25px; }.footer-intro { grid-column: 1 / -1; }.footer-bottom { align-items: flex-start; flex-direction: column; gap: 6px; }
}

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

@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

/* ================================================================
   Patom Studio — black / red visual direction
   ================================================================ */

:root {
  --paper: #f2f1ee;
  --paper-2: #deddda;
  --white: #ffffff;
  --ink: #09090a;
  --ink-2: #151516;
  --muted: #686868;
  --line: rgba(9, 9, 10, .16);
  --gold: #df1f2d;
  --gold-light: #ef2433;
  --sage: #a6a6a6;
  --shadow: 0 32px 90px rgba(0, 0, 0, .32);
}

body {
  background: var(--paper);
}

.site-header,
.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, .1);
  color: #fff;
  background: rgba(9, 9, 10, .94);
  box-shadow: 0 8px 35px rgba(0, 0, 0, .2);
  backdrop-filter: blur(18px);
}

.site-header .brand-word,
.site-header .brand-studio {
  color: #fff;
}

.site-header .brand-studio {
  color: #8c8c8f;
}

.site-header .site-nav > a:not(.nav-contact)::after {
  background: var(--gold-light);
}

.site-header .nav-contact {
  color: #fff;
  background: var(--gold);
}

.site-header .nav-contact span {
  color: var(--gold);
  background: #fff;
}

.brand-cross::before,
.brand-cross::after {
  background: var(--gold-light);
}

.hero {
  color: #fff;
  background: #09090a;
}

.hero::before {
  background: radial-gradient(circle, rgba(223, 31, 45, .24), transparent 67%);
}

.hero-orbit {
  border-color: rgba(239, 36, 51, .18);
}

.hero .eyebrow {
  color: #a6a6a8;
}

.hero h1 {
  font-family: var(--sans);
  font-weight: 720;
  letter-spacing: -.075em;
  line-height: .89;
}

.hero h1 em {
  color: var(--gold-light);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.065em;
}

.hero-lead {
  color: #aaa9ab;
}

.hero .button-dark {
  color: #fff;
  background: var(--gold);
}

.hero .button-dark > span {
  color: var(--gold);
  background: #fff;
}

.hero .text-link {
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
}

.proof-avatars span {
  border-color: #09090a;
  background: #2c2c2e;
}

.proof-avatars span:nth-child(2) {
  background: var(--gold);
}

.proof-avatars span:nth-child(3) {
  color: #09090a;
  background: #e7e7e7;
}

.hero-proof p,
.hero-bottom p {
  color: #858587;
}

.hero-proof strong,
.hero-bottom span {
  color: #fff;
}

.visual-halo {
  background: linear-gradient(145deg, rgba(223, 31, 45, .37), rgba(50, 50, 52, .24));
  border-color: rgba(239, 36, 51, .3);
}

.browser-card {
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 38px 100px rgba(0, 0, 0, .55);
}

.browser-top {
  background: #222225;
}

.browser-address {
  color: #818186;
  background: #111113;
}

.demo-site {
  background: #f4f4f2;
}

.demo-logo i::before,
.demo-logo i::after {
  background: var(--gold);
}

.demo-hero {
  background: linear-gradient(105deg, rgba(7, 7, 8, .97), rgba(7, 7, 8, .72)), radial-gradient(circle at 80% 50%, #e32131, #101011 62%);
}

.demo-hero p {
  color: #ff5b68;
}

.demo-button {
  color: #fff;
  background: var(--gold);
}

.float-card {
  background: #09090a;
  border: 1px solid rgba(255, 255, 255, .13);
}

.float-live > span:last-child,
.care-icon {
  color: #fff;
  background: var(--gold-light);
}

.float-care {
  color: #09090a;
  background: #fff;
  border: 0;
}

.hero-bottom {
  border-color: rgba(255, 255, 255, .14);
}

.intro {
  background: #f2f1ee;
}

.about-panel {
  display: grid;
  grid-template-columns: .72fr 1.15fr .63fr;
  min-height: 470px;
  margin-bottom: 34px;
  color: #fff;
  background: #09090a;
  border: 1px solid #09090a;
}

.about-identity {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: 32px;
  overflow: hidden;
  background: var(--gold);
}

.about-identity::before,
.about-identity::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
}

.about-identity::before {
  right: -125px;
  bottom: -95px;
  width: 330px;
  height: 330px;
}

.about-identity::after {
  right: -67px;
  bottom: -38px;
  width: 215px;
  height: 215px;
}

.about-index,
.about-role {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, .8);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.about-photo {
  position: relative;
  z-index: 2;
  width: min(100%, 260px);
  aspect-ratio: 1;
  align-self: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  box-shadow: 0 20px 50px rgba(87, 0, 8, .25);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-person {
  position: relative;
  z-index: 2;
}

.about-person strong,
.about-person span {
  display: block;
}

.about-person strong {
  margin-bottom: 2px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.about-person span {
  color: rgba(255, 255, 255, .7);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.about-monogram {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
}

.about-monogram b {
  font-family: var(--serif);
  font-size: 112px;
  font-weight: 400;
  letter-spacing: -.12em;
  line-height: 1;
}

.about-monogram i {
  position: relative;
  width: 32px;
  height: 68px;
  margin: 0 0 6px -5px;
}

.about-monogram i::before,
.about-monogram i::after {
  position: absolute;
  content: "";
  background: #fff;
}

.about-monogram i::before {
  left: 13px;
  width: 6px;
  height: 68px;
}

.about-monogram i::after {
  top: 20px;
  width: 32px;
  height: 6px;
}

.about-story {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 55px clamp(35px, 5vw, 70px);
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.about-kicker {
  margin: 0 0 22px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.about-story h3 {
  max-width: 620px;
  margin: 0 0 23px;
  font-family: var(--serif);
  font-size: clamp(27px, 2.5vw, 38px);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.15;
}

.about-story > p:not(.about-kicker) {
  max-width: 640px;
  margin: 0;
  color: #a7a7aa;
  font-size: 12px;
  line-height: 1.8;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 28px;
}

.about-tags span {
  padding: 6px 10px;
  color: #d7d7d9;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 30px;
  font-size: 8px;
  font-weight: 650;
}

.about-facts {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
}

.about-facts > div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.about-facts > div:last-child {
  border-bottom: 0;
}

.about-facts strong {
  min-width: 68px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.about-facts span {
  color: #a7a7aa;
  font-size: 9px;
  line-height: 1.55;
}

.value-grid {
  background: #fff;
}

.featured-value {
  color: #fff;
  background: var(--gold);
}

.featured-value .card-number,
.featured-value p {
  color: rgba(255, 255, 255, .72);
}

.featured-value .icon-window,
.featured-value .icon-window::before,
.featured-value .icon-window::after {
  border-color: #fff;
}

.featured-value .icon-window::before {
  background: #fff;
}

.featured-value .icon-window i {
  background: #fff;
}

.services {
  background: #0c0c0d;
}

.services::after {
  border-color: rgba(239, 36, 51, .24);
}

.service-no,
.services h2 em {
  color: var(--gold-light);
}

.service-row:hover {
  background: rgba(223, 31, 45, .08);
}

.service-row:hover .service-arrow {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
}

.portfolio {
  color: #f5f5f5;
  background: #151516;
}

.portfolio .heading-aside {
  color: #9c9c9e;
}

.portfolio .eyebrow {
  color: #9c9c9e;
}

.case-study {
  padding: 28px;
  background: #09090a;
  border: 1px solid rgba(255, 255, 255, .11);
}

.case-label,
.portfolio h2 em {
  color: var(--gold-light);
}

.circle-link {
  color: #fff;
  background: var(--gold);
}

.case-screen {
  border-color: #2b2b2d;
  background: #111113;
}

.case-browserbar {
  background: #27272a;
}

.case-browserbar p {
  color: #8b8b8f;
  background: #151517;
}

.case-real-screen {
  overflow: hidden;
}

.realization-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9.6;
  overflow: hidden;
  background: #fff;
}

.realization-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .7s cubic-bezier(.22, .61, .36, 1), filter .4s ease;
}

.realization-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 66%, rgba(0, 0, 0, .6));
  pointer-events: none;
}

.realization-image > span {
  position: absolute;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 11px 13px 11px 17px;
  color: #fff;
  background: var(--gold);
  font-size: 10px;
  font-weight: 750;
}

.realization-image > span b {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--gold);
  background: #fff;
  border-radius: 50%;
}

.realization-image:hover img {
  transform: scale(1.015);
  filter: contrast(1.03);
}

.case-tags span {
  color: #b5b5b7;
  border-color: rgba(255, 255, 255, .18);
}

.pricing {
  background: #f2f1ee;
}

.price-featured {
  background: #09090a;
  box-shadow: 0 25px 70px rgba(0, 0, 0, .25);
}

.popular-badge,
.price-featured .button-gold {
  color: #fff;
  background: var(--gold);
}

.price-featured .button-gold > span {
  color: var(--gold);
  background: #fff;
}

.price-card li::before,
.care-option li::before {
  color: #fff;
  background: var(--gold);
}

.care-heading {
  background: #deddda;
}

.care-option-dark {
  background: #09090a;
}

.care-option > a:hover {
  color: #fff;
  background: var(--gold);
}

.custom-plan {
  background: #fff;
}

.custom-symbol span {
  background: var(--gold);
}

.process {
  background: #ddddda;
}

.process-dot {
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 0 6px #ddddda;
}

.faq {
  background: #f7f7f5;
}

.faq-list details[open] summary span {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
}

.faq-list details[open] summary span::before,
.faq-list details[open] summary span::after {
  background: #fff;
}

.contact {
  background: var(--gold);
}

.contact::before {
  background: radial-gradient(circle, rgba(0, 0, 0, .23), transparent 68%);
}

.contact-orbit,
.contact-orbit::after {
  border-color: rgba(255, 255, 255, .18);
}

.contact .eyebrow,
.contact-copy > p:not(.eyebrow),
.contact-note p {
  color: rgba(255, 255, 255, .76);
}

.contact .eyebrow > span {
  background: #fff;
}

.contact-copy h2 em {
  color: #09090a;
}

.contact-note > span {
  color: #fff;
  background: #09090a;
}

.contact-phone {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  max-width: 350px;
  margin-top: 30px;
  padding-top: 24px;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, .28);
}

.contact-phone small,
.contact-phone strong {
  display: block;
  grid-column: 1;
}

.contact-phone small {
  color: rgba(255, 255, 255, .7);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.contact-phone strong {
  margin-top: 2px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -.03em;
}

.contact-phone > span {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--gold);
  background: #fff;
  border-radius: 50%;
  transition: transform .3s ease;
}

.contact-phone:hover > span {
  transform: rotate(45deg);
}

.contact-panel {
  background: #fff;
  box-shadow: 0 30px 90px rgba(74, 0, 7, .28);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.contact-form .button-gold {
  color: #fff;
  background: #09090a;
}

.contact-form .button-gold > span {
  color: #fff;
  background: var(--gold);
}

.site-footer {
  background: #09090a;
}

@media (max-width: 1100px) {
  .about-panel {
    grid-template-columns: .7fr 1.3fr;
  }

  .about-facts {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    border-top: 1px solid rgba(255, 255, 255, .14);
  }

  .about-facts > div {
    border-right: 1px solid rgba(255, 255, 255, .14);
    border-bottom: 0;
  }

  .about-facts > div:last-child {
    border-right: 0;
  }
}

@media (max-width: 900px) {
  .site-nav {
    color: #fff;
    background: #09090a;
  }

  .nav-toggle span {
    background: #fff;
  }

  .hero h1 {
    font-size: clamp(55px, 10vw, 78px);
  }

  .about-panel {
    grid-template-columns: 1fr;
  }

  .about-identity {
    min-height: 370px;
  }

  .about-story {
    border-right: 0;
  }

  .about-facts {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .hero h1 {
    font-size: clamp(43px, 13vw, 59px);
  }

  .about-identity {
    min-height: 330px;
    padding: 25px;
  }

  .about-monogram {
    width: 155px;
    height: 155px;
  }

  .about-photo {
    width: 220px;
  }

  .about-monogram b {
    font-size: 95px;
  }

  .about-story {
    padding: 38px 25px;
  }

  .about-story h3 {
    font-size: 27px;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .about-facts > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .about-facts > div:last-child {
    border-bottom: 0;
  }

  .featured-value .icon-window {
    border-color: #fff;
  }

  .case-study {
    border-inline: 0;
  }

  .realization-image {
    aspect-ratio: 4 / 3;
  }

  .realization-image > span {
    right: 12px;
    bottom: 11px;
  }
}

/* Refined hero with a real project preview */
.hero-grid {
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(45px, 6vw, 95px);
}

.hero h1 {
  font-size: clamp(52px, 4.8vw, 72px);
  letter-spacing: -.062em;
  line-height: .96;
}

.hero h1 em {
  display: inline-block;
  margin-top: 5px;
  letter-spacing: -.055em;
}

.hero-lead {
  max-width: 590px;
}

.hero-realization {
  padding: 54px 20px 64px 10px;
}

.hero-project-tag {
  position: absolute;
  top: 6px;
  left: 3px;
  z-index: 4;
  min-width: 190px;
  padding: 13px 16px;
  color: #fff;
  background: var(--gold);
  box-shadow: 0 15px 38px rgba(110, 0, 9, .3);
}

.hero-project-tag small,
.hero-project-tag strong {
  display: block;
}

.hero-project-tag small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, .72);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .16em;
}

.hero-project-tag strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
}

.hero-real-browser {
  max-width: 690px;
  transform: perspective(1600px) rotateY(-3deg) rotateX(1deg);
}

.hero-real-browser > a {
  display: block;
  height: 430px;
  overflow: hidden;
  background: #fff;
}

.hero-real-browser img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .7s cubic-bezier(.22, .61, .36, 1);
}

.hero-real-browser:hover img {
  transform: scale(1.012);
}

.hero-phone {
  position: absolute;
  right: -4px;
  bottom: 0;
  z-index: 4;
  width: 156px;
  height: 310px;
  padding: 9px 7px 7px;
  overflow: hidden;
  background: #111113;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 20px;
  box-shadow: 0 25px 65px rgba(0, 0, 0, .55);
}

.phone-speaker {
  position: absolute;
  top: 6px;
  left: 50%;
  z-index: 2;
  width: 35px;
  height: 4px;
  background: #252528;
  border-radius: 4px;
  transform: translateX(-50%);
}

.hero-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 13px;
}

.hero-realization .float-care {
  right: auto;
  bottom: 17px;
  left: -18px;
}

/* Five-stage project process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.process-grid::before {
  display: none;
}

.process-grid .process-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 485px;
  padding: 26px 22px 24px;
  overflow: hidden;
  background: #f7f7f5;
  border: 1px solid rgba(9, 9, 10, .12);
}

.process-grid .process-card::after {
  position: absolute;
  right: -70px;
  bottom: -75px;
  width: 165px;
  height: 165px;
  content: "";
  border: 1px solid rgba(223, 31, 45, .12);
  border-radius: 50%;
}

.process-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.process-grid .process-top span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 21px;
}

.process-top em {
  padding: 5px 7px;
  color: var(--gold);
  background: rgba(223, 31, 45, .08);
  border-radius: 20px;
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.process-grid .process-dot {
  width: 8px;
  height: 8px;
  margin: 26px 0 25px;
  background: var(--gold);
  border: 0;
  box-shadow: 0 0 0 6px rgba(223, 31, 45, .1);
}

.process-grid .process-card h3 {
  min-height: 58px;
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.08;
}

.process-grid .process-card > p {
  min-height: 65px;
  margin: 0;
  color: #686868;
  font-size: 11px;
  line-height: 1.65;
}

.process-card ul {
  display: grid;
  gap: 10px;
  margin: 23px 0 0;
  padding: 21px 0 0;
  border-top: 1px solid rgba(9, 9, 10, .12);
  list-style: none;
}

.process-card li {
  position: relative;
  padding-left: 14px;
  color: #4e4e50;
  font-size: 9px;
  line-height: 1.5;
}

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

.process-grid .process-start {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
}

.process-grid .process-finish {
  color: #fff;
  background: #09090a;
  border-color: #09090a;
}

.process-grid .process-start .process-top span,
.process-grid .process-start .process-top em,
.process-grid .process-start h3,
.process-grid .process-finish h3 {
  color: #fff;
}

.process-grid .process-start .process-top em {
  background: rgba(255, 255, 255, .16);
}

.process-grid .process-start .process-dot {
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, .14);
}

.process-grid .process-start > p,
.process-grid .process-start li,
.process-grid .process-finish > p,
.process-grid .process-finish li {
  color: rgba(255, 255, 255, .76);
}

.process-grid .process-start ul,
.process-grid .process-finish ul {
  border-color: rgba(255, 255, 255, .18);
}

.process-grid .process-start li::before {
  background: #fff;
}

.process-grid .process-finish .process-top span,
.process-grid .process-finish .process-top em {
  color: var(--gold-light);
}

@media (max-width: 1100px) {
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid .process-card {
    min-height: 440px;
  }

  .process-grid .process-card:last-child {
    grid-column: 1 / -1;
    min-height: 380px;
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(50px, 9.5vw, 70px);
  }

  .hero-realization {
    width: min(100%, 680px);
    margin-top: 20px;
  }
}

@media (max-width: 620px) {
  .hero h1 {
    font-size: clamp(41px, 11.8vw, 55px);
    line-height: .98;
  }

  .hero-project-tag {
    top: 5px;
    left: 0;
    min-width: 165px;
  }

  .hero-real-browser > a {
    height: 270px;
  }

  .hero-phone {
    right: 0;
    bottom: 5px;
    width: 112px;
    height: 222px;
    border-radius: 15px;
  }

  .hero-realization .float-care {
    bottom: 17px;
    left: -4px;
    max-width: 200px;
  }

  .hero-realization .float-care strong {
    font-size: 10px;
  }

  .hero-realization .float-care small {
    font-size: 6px;
  }

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

  .process-grid .process-card,
  .process-grid .process-card:last-child {
    grid-column: auto;
    min-height: auto;
    padding: 28px;
  }

  .process-grid .process-card h3,
  .process-grid .process-card > p {
    min-height: 0;
  }
}

/* Clear creator signature in the navigation */
.brand-created {
  padding: 0 2px 4px 0;
  color: #77777b;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .1em;
  white-space: nowrap;
}

/* Direct, unambiguous proof point */
.hero-proof {
  gap: 16px;
}

.proof-label {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 0 10px;
  color: #fff;
  background: var(--gold);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-proof p {
  font-size: 9px;
}

.hero-proof strong {
  font-size: 10px;
}

/* Laptop presentation of the real parish website */
.hero-laptop {
  position: relative;
  z-index: 2;
  width: min(100%, 700px);
  margin-left: auto;
  filter: drop-shadow(0 38px 44px rgba(0, 0, 0, .5));
}

.laptop-screen {
  position: relative;
  aspect-ratio: 16 / 10;
  padding: 14px 12px 12px;
  overflow: hidden;
  background: linear-gradient(145deg, #35353a, #121214 72%);
  border: 1px solid #4e4e53;
  border-bottom-color: #0b0b0c;
  border-radius: 13px 13px 4px 4px;
}

.laptop-camera {
  position: absolute;
  top: 5px;
  left: 50%;
  width: 4px;
  height: 4px;
  background: #69696f;
  border-radius: 50%;
  transform: translateX(-50%);
}

.laptop-screen > a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid #09090a;
}

.laptop-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .7s cubic-bezier(.22, .61, .36, 1);
}

.hero-laptop:hover .laptop-screen img {
  transform: scale(1.012);
}

.laptop-base {
  position: relative;
  width: calc(100% + 82px);
  height: 20px;
  margin-left: -41px;
  background: linear-gradient(180deg, #dddde0, #737378 55%, #29292c);
  border-radius: 2px 2px 14px 14px;
  clip-path: polygon(5% 0, 95% 0, 100% 62%, 98% 100%, 2% 100%, 0 62%);
}

.laptop-base span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 88px;
  height: 7px;
  background: #a9a9ad;
  border-radius: 0 0 8px 8px;
  transform: translateX(-50%);
}

/* Feature cards do not imitate expandable controls */
.services-list.features-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .14);
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.feature-card {
  position: relative;
  min-height: 235px;
  padding: 31px 34px 34px;
  background: #101011;
  border-right: 1px solid rgba(255, 255, 255, .14);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  transition: background-color .3s ease, transform .3s ease;
}

.feature-card:hover {
  z-index: 2;
  background: #171719;
  transform: translateY(-3px);
}

.feature-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 45px;
}

.feature-head > span {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 13px;
}

.feature-head b {
  padding: 5px 8px;
  color: #bcbcc0;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  font-size: 7px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.feature-head .tier-pro {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
}

.feature-card h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  letter-spacing: -.035em;
}

.feature-card p {
  max-width: 510px;
  margin: 0;
  color: #99999d;
  font-size: 12px;
  line-height: 1.75;
}

.feature-card::after {
  position: absolute;
  right: 29px;
  bottom: 27px;
  width: 24px;
  height: 2px;
  content: "";
  background: var(--gold);
}

.feature-pro {
  background: linear-gradient(135deg, rgba(223, 31, 45, .23), #101011 65%);
}

/* Three clearly separated care plans */
.care-plans {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.care-heading {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr .75fr;
  align-items: end;
  gap: 50px;
  background: #deddda;
}

.care-heading > p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.care-option {
  min-height: 385px;
  padding-bottom: 60px;
}

.care-option ul {
  min-height: 205px;
}

.care-option-red {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
}

.care-option-red small,
.care-option-red strong span,
.care-option-red li {
  color: rgba(255, 255, 255, .78);
}

.care-option-red ul {
  border-color: rgba(255, 255, 255, .2);
}

.care-option-red li::before {
  color: var(--gold);
  background: #fff;
}

.care-option-red > a {
  color: var(--gold);
  background: #fff;
  border-color: #fff;
}

.care-option-red > a:hover {
  color: #09090a;
  background: #fff;
}

@media (max-width: 900px) {
  .features-grid.services-list {
    grid-template-columns: 1fr;
  }

  .care-plans {
    grid-template-columns: 1fr;
  }

  .care-heading {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .care-option {
    min-height: auto;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .care-option ul {
    min-height: 0;
  }
}

/* Final layout refinements — kept last to override earlier concept styles. */
.hero-copy {
  min-width: 0;
}

.hero-grid {
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(42px, 4.5vw, 70px);
}

.hero h1 {
  max-width: 590px;
  font-size: clamp(51px, 4.25vw, 64px);
}

.hero h1 > span {
  white-space: normal;
}

.portfolio-single {
  grid-template-columns: 1fr;
}

.project-live-wide {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  grid-template-rows: auto 280px;
  width: min(100%, 1020px);
  margin-inline: auto;
}

.project-live-wide .project-card-top {
  grid-column: 1 / -1;
}

.project-live-wide .project-shot {
  height: 280px;
}

.project-live-wide .project-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: 30px 34px;
}

.price-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
  border: 0;
}

.price-grid-three .price-card {
  min-height: 1020px;
  padding: 38px 34px 34px;
  background: #f8f7f4;
  border: 1px solid var(--line);
}

.price-grid-three .price-featured {
  margin: 0;
  padding-top: 64px;
  color: #fff;
  background: #09090a;
  border-color: #09090a;
}

.price-grid-three .popular-badge {
  top: 18px;
  right: 20px;
  left: auto;
  width: auto;
  padding: 7px 11px;
  border-radius: 20px;
  box-shadow: none;
  transform: none;
}

.price-grid-three .price-description {
  min-height: 94px;
}

.price-grid-three .price-card ul {
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 25px;
}

.price-grid-three .price-fit {
  min-height: 112px;
  margin: 18px 0 0;
}

.care-plans {
  margin-top: 95px;
}

.care-option {
  min-height: 730px;
  padding: 38px 34px 90px;
}

.care-option > .care-price {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: stretch;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
}

.care-price-regular,
.care-price-offer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 82px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, .52);
  border: 1px solid rgba(9, 9, 10, .1);
}

.care-price-regular > span,
.care-price-offer > span {
  margin-bottom: 3px;
  color: #77777b;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.care-price-regular del {
  color: #5d5d61;
  font-family: var(--serif);
  font-size: 24px;
  text-decoration: none;
}

.care-price-regular del::before {
  content: none;
}

.care-price-offer {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
}

.care-price-offer > span {
  color: rgba(255, 255, 255, .7);
}

.care-price-offer strong {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.care-price-offer strong small {
  color: rgba(255, 255, 255, .72);
  font-family: var(--sans);
  font-size: 7px;
  font-weight: 650;
}

.care-price mark {
  grid-column: 1 / -1;
  justify-self: start;
  padding: 5px 8px;
  color: var(--gold);
  background: rgba(223, 31, 45, .1);
  border-radius: 20px;
  font-size: 7px;
  font-weight: 800;
  text-transform: uppercase;
}

.care-option-dark .care-price-regular {
  background: #171719;
  border-color: rgba(255, 255, 255, .12);
}

.care-option-dark .care-price-regular > span,
.care-option-dark .care-price-regular del {
  color: #a7a7ab;
}

.care-option-dark .care-price mark {
  color: #fff;
  background: rgba(223, 31, 45, .24);
}

.care-option ul {
  min-height: 255px;
  margin-top: 24px;
}

.care-option > .care-cta {
  position: absolute;
  right: 34px;
  bottom: 28px;
  left: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: auto;
  height: 50px;
  padding: 0 10px 0 17px;
  border: 1px solid rgba(9, 9, 10, .28);
  border-radius: 0;
  font-size: 10px;
  font-weight: 750;
}

.care-option-dark > .care-cta {
  color: #fff;
  border-color: rgba(255, 255, 255, .3);
}

.care-popular-badge {
  top: 18px;
  right: 22px;
  width: auto;
  padding: 7px 10px;
  border-radius: 20px;
}

.care-option-popular .care-card-head {
  padding-top: 36px;
}

@media (max-width: 1100px) {
  .hero-grid,
  .price-grid-three {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 760px;
  }

  .price-grid-three .price-card {
    min-height: auto;
  }

  .price-grid-three .price-description,
  .price-grid-three .price-fit {
    min-height: 0;
  }
}

@media (max-width: 900px) {
  .care-option {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .project-live-wide {
    display: block;
    width: 100%;
  }

  .project-live-wide .project-shot {
    height: 220px;
  }

  .project-live-wide .project-card-copy {
    padding: 24px 18px 18px;
  }
}

@media (max-width: 620px) {
  .hero h1 {
    font-size: clamp(42px, 12.3vw, 55px);
  }

  .price-grid-three .price-card,
  .price-grid-three .price-featured {
    padding: 34px 24px;
  }

  .price-grid-three .price-featured {
    padding-top: 66px;
  }

  .care-option {
    min-height: auto;
    padding: 38px 24px 88px;
  }

  .care-option > .care-price {
    grid-template-columns: 1fr;
  }

  .care-price mark {
    grid-column: 1;
  }

  .care-option ul {
    min-height: 0;
  }

  .care-option > .care-cta {
    right: 24px;
    left: 24px;
  }
}

/* ================================================================
   Final offer layout: stronger hero, compact functions and projects
   ================================================================ */

.hero {
  min-height: 840px;
  padding-top: 152px;
}

.hero-grid {
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(42px, 5vw, 82px);
}

.hero-copy {
  position: relative;
  z-index: 5;
}

.hero h1 {
  font-size: clamp(54px, 5vw, 76px);
  line-height: .91;
}

.hero h1 > span,
.hero h1 em {
  display: block;
  white-space: normal;
}

.hero h1 > span {
  max-width: 650px;
}

.hero h1 em {
  margin-top: 9px;
  font-size: 1.02em;
}

.hero-lead {
  max-width: 590px;
  margin-top: 34px;
  color: #b5b5b8;
  font-size: 16px;
  line-height: 1.75;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 570px;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, .15);
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.hero-highlights > div {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 66px;
  padding: 10px 13px 10px 0;
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.hero-highlights > div:not(:first-child) {
  padding-left: 13px;
}

.hero-highlights > div:last-child {
  border-right: 0;
}

.hero-highlights b {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
}

.hero-highlights span {
  color: #d0d0d2;
  font-size: 9px;
  font-weight: 650;
  line-height: 1.45;
}

.hero-visual-pro {
  position: relative;
  width: 100%;
  min-height: 555px;
  padding: 0;
}

.hero-visual-grid {
  position: absolute;
  inset: 0 0 18px 5%;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    radial-gradient(circle at 72% 32%, rgba(223, 31, 45, .5), transparent 37%),
    #111113;
  background-size: 38px 38px, 38px 38px, auto, auto;
  border: 1px solid rgba(255, 255, 255, .1);
}

.hero-visual-grid::after {
  position: absolute;
  right: -19%;
  bottom: -35%;
  width: 70%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(239, 36, 51, .3);
  border-radius: 50%;
}

.hero-visual-label {
  position: absolute;
  top: 18px;
  left: 0;
  z-index: 6;
  padding: 14px 18px;
  color: #fff;
  background: var(--gold);
  box-shadow: 0 18px 45px rgba(94, 0, 8, .35);
}

.hero-visual-label small,
.hero-visual-label strong {
  display: block;
}

.hero-visual-label small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, .7);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .14em;
}

.hero-visual-label strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.hero-browser-frame {
  position: absolute;
  top: 75px;
  right: 18px;
  z-index: 3;
  width: 94%;
  height: 420px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 7px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, .55);
  transform: perspective(1600px) rotateY(-2deg);
}

.hero-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 31px;
  padding: 0 12px;
  background: #28282b;
}

.hero-browser-bar i {
  width: 6px;
  height: 6px;
  background: #77777c;
  border-radius: 50%;
}

.hero-browser-bar span {
  width: 38%;
  margin: 0 auto;
  padding: 3px 8px;
  color: #85858a;
  background: #171719;
  border-radius: 3px;
  font-size: 6px;
  text-align: center;
}

.hero-browser-frame .parish-preview {
  height: calc(100% - 31px);
}

.hero-phone-frame {
  position: absolute;
  right: -16px;
  bottom: -5px;
  z-index: 7;
  width: 142px;
  height: 292px;
  padding: 9px;
  overflow: hidden;
  color: #111113;
  background: #080809;
  border: 1px solid #4d4d52;
  border-radius: 22px;
  box-shadow: 0 28px 65px rgba(0, 0, 0, .6);
}

.hero-phone-notch {
  position: absolute;
  top: 6px;
  left: 50%;
  z-index: 3;
  width: 38px;
  height: 5px;
  background: #29292c;
  border-radius: 5px;
  transform: translateX(-50%);
}

.hero-phone-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 45px;
  padding: 8px 10px 0;
  background: #fff;
  border-radius: 13px 13px 0 0;
}

.hero-phone-head span {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  color: #fff;
  background: var(--gold);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 10px;
}

.hero-phone-head i {
  width: 18px;
  height: 2px;
  background: #1b1b1d;
  box-shadow: 0 5px 0 #1b1b1d;
}

.hero-phone-main {
  min-height: 154px;
  padding: 30px 13px 17px;
  color: #fff;
  background: linear-gradient(150deg, #111113, #690912);
}

.hero-phone-main small {
  display: block;
  color: #ff6672;
  font-size: 5px;
  font-weight: 800;
  letter-spacing: .12em;
}

.hero-phone-main strong {
  display: block;
  margin: 6px 0 4px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.hero-phone-main p {
  margin: 0;
  color: #bcbcc0;
  font-size: 6px;
}

.hero-phone-links {
  display: grid;
  min-height: 73px;
  background: #fff;
  border-radius: 0 0 13px 13px;
}

.hero-phone-links span {
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-bottom: 1px solid #ece8e1;
  font-family: var(--serif);
  font-size: 8px;
}

.hero-admin-card {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 225px;
  padding: 13px 16px 13px 13px;
  color: #111113;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
}

.hero-admin-card > span {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--gold);
  border-radius: 50%;
}

.hero-admin-card small,
.hero-admin-card strong,
.hero-admin-card p {
  display: block;
  margin: 0;
}

.hero-admin-card small {
  color: #8c8c90;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .12em;
}

.hero-admin-card strong {
  margin: 1px 0;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
}

.hero-admin-card p {
  color: #8c8c90;
  font-size: 7px;
}

.features-overview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 25px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-bottom: 0;
  background: #151517;
}

.features-overview > div {
  display: flex;
  align-items: center;
  gap: 17px;
}

.features-overview strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.features-overview > div > span {
  color: #a6a6aa;
  font-size: 8px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.features-overview > p {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
  margin: 0;
}

.features-overview > p span {
  padding: 6px 9px;
  color: #b8b8bb;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 30px;
  font-size: 7px;
  font-weight: 700;
}

.services-list.features-compact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .15);
  border-left: 1px solid rgba(255, 255, 255, .15);
}

.feature-mini {
  position: relative;
  min-height: 150px;
  padding: 22px;
  background: #0f0f10;
  border-right: 1px solid rgba(255, 255, 255, .15);
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  transition: background-color .25s ease, transform .25s ease;
}

.feature-mini:hover {
  z-index: 2;
  background: #19191b;
  transform: translateY(-2px);
}

.feature-mini > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 23px;
}

.feature-mini > div span {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 11px;
}

.feature-mini > div b {
  color: #77777b;
  font-size: 6px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.feature-mini h3 {
  margin: 0 0 7px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.12;
}

.feature-mini p {
  max-width: 260px;
  margin: 0;
  color: #8f8f93;
  font-size: 9px;
  line-height: 1.55;
}

.portfolio {
  padding: 100px 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.project-card {
  position: relative;
  padding: 18px;
  overflow: hidden;
  background: #09090a;
  border: 1px solid rgba(255, 255, 255, .12);
}

.project-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 43px;
  padding: 0 3px 15px;
}

.project-card-top > a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--gold);
  border-radius: 50%;
  transition: transform .25s ease;
}

.project-card-top > a:hover {
  transform: rotate(45deg);
}

.project-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 9px;
  border-radius: 20px;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.project-status-live {
  color: #111113;
  background: #fff;
}

.project-status-building {
  color: #fff;
  background: rgba(223, 31, 45, .16);
  border: 1px solid rgba(239, 36, 51, .35);
}

.project-status-building i {
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(239, 36, 51, .12);
}

.project-card-top > small {
  color: #77777b;
  font-family: var(--serif);
  font-size: 11px;
}

.project-shot,
.project-concept {
  display: block;
  height: 270px;
  overflow: hidden;
  background: #f5f3ee;
  border: 1px solid #29292c;
}

.project-shot img {
  width: 100%;
  height: calc(100% - 29px);
  object-fit: cover;
  object-position: top center;
  transition: transform .5s ease;
}

.project-shot:hover img {
  transform: scale(1.012);
}

.project-concept .project-preview {
  height: calc(100% - 29px);
}

.project-card-copy {
  min-height: 146px;
  padding: 22px 6px 5px;
}

.project-card-copy p {
  margin: 0 0 7px;
  color: var(--gold-light);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.project-card-copy h3 {
  margin: 0 0 10px;
  color: #fff;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -.035em;
}

.project-card-copy > span {
  display: block;
  max-width: 470px;
  color: #98989c;
  font-size: 10px;
  line-height: 1.65;
}

.price-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 52px;
  border: 0;
}

.price-grid-three .price-card {
  min-height: 1020px;
  padding: 38px 34px 34px;
  background: #f8f7f4;
  border: 1px solid var(--line);
}

.price-grid-three .price-featured {
  margin: 0;
  color: #fff;
  background: #09090a;
  border-color: #09090a;
}

.price-grid-three .popular-badge {
  top: -16px;
  right: 20px;
  left: auto;
  width: auto;
  padding: 7px 11px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(98, 0, 9, .22);
  transform: none;
}

.price-grid-three .price-description {
  min-height: 94px;
}

.price-grid-three .price-card ul {
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 25px;
}

.price-grid-three .price-card li {
  line-height: 1.48;
}

.price-pro {
  background: linear-gradient(145deg, #fff 0 62%, #e9e5df 100%) !important;
  border-top: 3px solid var(--gold) !important;
}

.price-fit {
  min-height: 105px;
  margin: auto 0 24px;
  padding: 16px;
  color: #5f5f63;
  background: #e9e7e2;
  border-left: 3px solid var(--gold);
  font-size: 10px;
  line-height: 1.6;
}

.price-fit span {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.price-featured .price-fit {
  color: #b8b8bc;
  background: #161618;
}

.price-featured .price-fit span {
  color: #fff;
}

.care-heading {
  position: relative;
}

.care-simple {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 28px;
}

.care-simple span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 9px 12px;
  color: #66666a;
  background: rgba(255, 255, 255, .45);
  border: 1px solid rgba(9, 9, 10, .1);
  font-size: 8px;
}

.care-simple b {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
}

.care-option {
  min-height: 730px;
  padding: 38px 34px 90px;
}

.care-option-soft {
  background: #e7e5e0;
}

.care-card-head {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 20px !important;
}

.care-card-head small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.care-card-head h4 {
  margin: 0;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -.03em;
}

.care-card-head > span {
  color: #96969a;
  font-family: var(--serif);
  font-size: 13px;
}

.care-for {
  min-height: 82px;
  margin: 25px 0 0;
  color: #5f5f63;
  font-size: 11px;
  line-height: 1.7;
}

.care-option-dark .care-card-head small,
.care-option-dark .care-card-head > span,
.care-option-dark .care-for {
  color: #9e9ea2;
}

.care-option > .care-price {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: stretch;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
}

.care-price-regular,
.care-price-offer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 82px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, .52);
  border: 1px solid rgba(9, 9, 10, .1);
}

.care-price-regular > span,
.care-price-offer > span {
  margin-bottom: 3px;
  color: #77777b;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.care-price-regular del {
  color: #5d5d61;
  font-family: var(--serif);
  font-size: 24px;
  text-decoration: none;
}

.care-price-offer {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
}

.care-price-offer > span {
  color: rgba(255, 255, 255, .7);
}

.care-price-offer strong {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.care-price-offer strong small {
  color: rgba(255, 255, 255, .72);
  font-family: var(--sans);
  font-size: 7px;
  font-weight: 650;
}

.care-price mark {
  grid-column: 1 / -1;
  justify-self: start;
  padding: 5px 8px;
  color: var(--gold);
  background: rgba(223, 31, 45, .1);
  border-radius: 20px;
  font-size: 7px;
  font-weight: 800;
  text-transform: uppercase;
}

.care-option-dark .care-price-regular {
  background: #171719;
  border-color: rgba(255, 255, 255, .12);
}

.care-option-dark .care-price-regular > span,
.care-option-dark .care-price-regular del {
  color: #a7a7ab;
}

.care-option-dark .care-price mark {
  color: #fff;
  background: rgba(223, 31, 45, .24);
}

.care-option ul {
  min-height: 255px;
  margin-top: 24px;
}

.care-option > .care-cta {
  position: absolute;
  right: 34px;
  bottom: 28px;
  left: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: auto;
  height: 50px;
  padding: 0 10px 0 17px;
  border: 1px solid rgba(9, 9, 10, .28);
  border-radius: 0;
  font-size: 10px;
  font-weight: 750;
  transition: color .25s ease, background .25s ease;
}

.care-cta b {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #fff;
  background: #09090a;
  border-radius: 50%;
  transition: transform .25s ease;
}

.care-option > .care-cta:hover {
  color: #fff;
  background: #09090a;
  transform: none;
}

.care-option > .care-cta:hover b {
  color: var(--gold);
  background: #fff;
  transform: rotate(45deg);
}

.care-option-dark > .care-cta {
  color: #fff;
  border-color: rgba(255, 255, 255, .3);
}

.care-option-dark .care-cta b {
  color: var(--gold);
  background: #fff;
}

.care-popular-badge {
  position: absolute;
  top: 18px;
  right: 22px;
  padding: 7px 10px;
  color: #fff;
  background: var(--gold);
  border-radius: 20px;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.care-option-popular .care-card-head {
  padding-top: 36px;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual-pro {
    width: min(100%, 760px);
    margin: 35px auto 0;
  }

  .features-compact-grid.services-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .price-grid-three {
    grid-template-columns: 1fr;
  }

  .price-grid-three .price-card {
    min-height: auto;
  }

  .price-grid-three .price-description,
  .price-fit {
    min-height: 0;
  }
}

@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    max-width: 720px;
    width: 100%;
    margin-inline: auto;
  }

  .features-compact-grid.services-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .care-simple {
    grid-template-columns: 1fr;
  }

  .care-option {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .hero {
    padding-top: 118px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 57px);
  }

  .hero h1 em {
    margin-top: 7px;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .hero-highlights > div,
  .hero-highlights > div:not(:first-child) {
    min-height: 50px;
    padding: 8px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .hero-highlights > div:last-child {
    border-bottom: 0;
  }

  .hero-visual-pro {
    min-height: 445px;
    margin-top: 30px;
  }

  .hero-visual-label {
    top: 10px;
    padding: 11px 13px;
  }

  .hero-visual-label strong {
    font-size: 14px;
  }

  .hero-browser-frame {
    top: 68px;
    right: 4px;
    width: calc(100% - 8px);
    height: 290px;
    transform: none;
  }

  .hero-browser-frame .preview-news {
    display: none;
  }

  .hero-phone-frame {
    right: -2px;
    bottom: 0;
    width: 98px;
    height: 215px;
    padding: 6px;
    border-radius: 16px;
  }

  .hero-phone-head {
    height: 37px;
    padding-inline: 7px;
  }

  .hero-phone-main {
    min-height: 111px;
    padding: 20px 9px 10px;
  }

  .hero-phone-main strong {
    font-size: 25px;
  }

  .hero-phone-links {
    min-height: 55px;
  }

  .hero-phone-links span {
    padding-inline: 8px;
    font-size: 6px;
  }

  .hero-admin-card {
    bottom: 2px;
    min-width: 185px;
    padding: 10px;
  }

  .features-overview {
    align-items: flex-start;
    flex-direction: column;
  }

  .features-overview > p {
    justify-content: flex-start;
  }

  .feature-mini {
    min-height: 155px;
    padding: 16px 14px;
  }

  .feature-mini > div {
    margin-bottom: 18px;
  }

  .feature-mini h3 {
    font-size: 16px;
  }

  .feature-mini p {
    font-size: 8px;
  }

  .project-card {
    padding: 12px;
  }

  .project-shot,
  .project-concept {
    height: 215px;
  }

  .project-card-copy {
    min-height: 0;
    padding: 19px 5px 8px;
  }

  .project-card-copy h3 {
    font-size: 23px;
  }

  .price-grid-three {
    margin-top: 42px;
  }

  .price-grid-three .price-card {
    padding: 34px 24px;
  }

  .price-grid-three .popular-badge {
    right: 12px;
  }

  .care-option {
    padding-inline: 24px;
    padding-bottom: 88px;
  }

  .care-option > .care-cta {
    right: 24px;
    left: 24px;
  }

  .care-for {
    min-height: 0;
  }

  .care-option > .care-price {
    grid-template-columns: 1fr;
  }

  .care-price mark {
    grid-column: 1;
  }
}

/* Clean dual-purpose hero: parishioners on the left, office on the right */
.hero-copy {
  min-width: 0;
}

.hero-grid {
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(42px, 4.5vw, 70px);
}

.hero h1 {
  max-width: 590px;
  font-size: clamp(51px, 4.25vw, 64px);
  line-height: .94;
}

.hero h1 > span {
  white-space: normal;
}

.hero-split-demo {
  position: relative;
  min-width: 0;
  min-height: 520px;
  padding: 0;
}

.split-demo-glow {
  position: absolute;
  inset: 5% 0 0 7%;
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    radial-gradient(circle at 72% 26%, rgba(223, 31, 45, .48), transparent 42%),
    #111113;
  background-size: 36px 36px, 36px 36px, auto, auto;
  border: 1px solid rgba(255, 255, 255, .11);
}

.split-demo-glow::after {
  position: absolute;
  right: -18%;
  bottom: -40%;
  width: 68%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(239, 36, 51, .28);
  border-radius: 50%;
}

.split-demo-window {
  position: absolute;
  top: 50px;
  right: 2%;
  z-index: 3;
  width: 96%;
  height: 410px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .25);
  box-shadow: 0 35px 80px rgba(0, 0, 0, .5);
}

.split-demo-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 0 12px;
  color: #85858a;
  background: #252527;
}

.split-demo-bar i {
  width: 6px;
  height: 6px;
  background: #747479;
  border-radius: 50%;
}

.split-demo-bar > span {
  margin-left: 12px;
  padding: 3px 10px;
  background: #151517;
  font-size: 6px;
}

.split-demo-bar > b {
  margin-left: auto;
  color: #bdbdc0;
  font-size: 6px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.split-demo-content {
  display: grid;
  grid-template-columns: 1.22fr .78fr;
  height: calc(100% - 32px);
}

.parish-side {
  position: relative;
  padding: 22px;
  overflow: hidden;
  color: #111113;
  background: #f6f3ed;
}

.demo-side-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8b8b8f;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.demo-side-label b {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 400;
}

.parish-side-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.parish-side-brand > span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: #fff;
  background: var(--gold);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 11px;
}

.parish-side-brand strong {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 400;
}

.parish-side-main {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: stretch;
  gap: 10px;
  margin-top: 20px;
}

.parish-side-main > div {
  min-height: 155px;
  padding: 22px;
}

.parish-side-main > div:first-child {
  color: #fff;
  background: linear-gradient(135deg, #111113, #2b070b);
}

.parish-side-main small {
  display: block;
  color: #ff6874;
  font-size: 5px;
  font-weight: 800;
  letter-spacing: .12em;
}

.parish-side-main h2 {
  margin: 20px 0 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2.3vw, 32px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .98;
}

.parish-side-main > div:last-child {
  color: #fff;
  background: var(--gold);
}

.parish-side-main > div:last-child small {
  color: rgba(255, 255, 255, .7);
}

.parish-side-main > div:last-child strong {
  display: block;
  margin: 17px 0 5px;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

.parish-side-main > div:last-child p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 6px;
}

.parish-side-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 10px;
  background: #fff;
  border: 1px solid #e4ded5;
}

.parish-side-links > span {
  padding: 12px;
  border-right: 1px solid #e4ded5;
}

.parish-side-links > span:last-child {
  border-right: 0;
}

.parish-side-links b,
.parish-side-links small {
  display: block;
}

.parish-side-links b {
  font-family: var(--serif);
  font-size: 10px;
  font-weight: 400;
}

.parish-side-links small {
  margin-top: 2px;
  color: #8c8c90;
  font-size: 5px;
}

.office-side {
  padding: 22px;
  color: #fff;
  background: #101011;
  border-left: 1px solid #2c2c2f;
}

.office-side .demo-side-label {
  color: #86868a;
}

.office-side h3 {
  margin: 28px 0 6px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -.035em;
}

.office-side > p {
  margin: 0;
  color: #89898d;
  font-size: 7px;
}

.office-side ul {
  margin: 22px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  list-style: none;
}

.office-side li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 39px;
  color: #d1d1d3;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-size: 7px;
}

.office-side li b {
  color: #6fc594;
  font-size: 5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.office-add {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 17px;
  color: #fff;
  font-size: 7px;
  font-weight: 700;
}

.office-add span {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  background: var(--gold);
  border-radius: 50%;
  font-size: 13px;
}

.split-demo-proof {
  position: absolute;
  bottom: 4px;
  left: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 278px;
  padding: 12px 15px;
  color: #111113;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .32);
}

.split-demo-proof > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #fff;
  background: var(--gold);
  border-radius: 50%;
}

.split-demo-proof p,
.split-demo-proof strong,
.split-demo-proof small {
  display: block;
  margin: 0;
}

.split-demo-proof strong {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
}

.split-demo-proof small {
  color: #88888c;
  font-size: 6px;
}

.project-card-top > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.project-package {
  padding: 6px 9px;
  color: #fff;
  background: var(--gold);
  border-radius: 20px;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.portfolio-single {
  grid-template-columns: 1fr;
}

.project-live-wide {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  grid-template-rows: auto 280px;
  width: min(100%, 1020px);
  margin-inline: auto;
}

.project-live-wide .project-card-top {
  grid-column: 1 / -1;
}

.project-live-wide .project-shot {
  height: 280px;
}

.project-live-wide .project-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  padding: 30px 34px;
}

.project-live-wide .project-card-copy .text-link {
  align-self: flex-start;
  margin-top: 24px;
}

.project-live-wide .project-card-copy .text-link b {
  font-weight: 400;
  transition: transform .25s ease;
}

.project-live-wide .project-card-copy .text-link:hover b {
  transform: translate(2px, -2px);
}

.price-grid-three .price-fit {
  min-height: 112px;
  margin: 18px 0 0;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 760px;
  }

  .hero-split-demo {
    width: min(100%, 780px);
    margin: 35px auto 0;
  }
}

@media (max-width: 760px) {
  .split-demo-content {
    grid-template-columns: 1fr;
  }

  .hero-split-demo {
    min-height: 620px;
  }

  .split-demo-window {
    height: 555px;
  }

  .parish-side {
    min-height: 330px;
  }

  .office-side {
    min-height: 193px;
    border-top: 1px solid #2c2c2f;
    border-left: 0;
  }

  .office-side h3 {
    margin-top: 15px;
  }

  .office-side > p,
  .office-add {
    display: none;
  }

  .office-side ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 12px;
  }

  .office-side li {
    padding-right: 9px;
  }

  .split-demo-proof {
    bottom: 0;
  }

  .project-live-wide {
    display: block;
    width: 100%;
  }

  .project-live-wide .project-shot {
    height: 220px;
  }

  .project-live-wide .project-card-copy {
    padding: 24px 18px 18px;
  }
}

@media (max-width: 620px) {
  .hero h1 {
    font-size: clamp(42px, 12.3vw, 55px);
  }

  .hero-split-demo {
    min-height: 570px;
  }

  .split-demo-window {
    top: 30px;
    right: 0;
    width: 100%;
    height: 510px;
  }

  .split-demo-bar > b,
  .split-demo-bar > span {
    display: none;
  }

  .parish-side {
    min-height: 305px;
    padding: 16px;
  }

  .parish-side-brand {
    margin-top: 12px;
  }

  .parish-side-main {
    margin-top: 13px;
  }

  .parish-side-main > div {
    min-height: 136px;
    padding: 15px;
  }

  .parish-side-main h2 {
    margin-top: 14px;
    font-size: 22px;
  }

  .parish-side-main > div:last-child strong {
    font-size: 26px;
  }

  .office-side {
    min-height: 173px;
    padding: 15px;
  }

  .office-side h3 {
    font-size: 20px;
  }

  .office-side li {
    min-height: 30px;
    font-size: 6px;
  }

  .split-demo-proof {
    min-width: 235px;
    padding: 10px;
  }
}

@media (max-width: 620px) {
  .brand-created {
    padding-bottom: 3px;
    font-size: 6px;
  }

  .proof-label {
    white-space: normal;
  }

  .hero-realization {
    padding-inline: 4px;
  }

  .laptop-screen {
    padding: 10px 8px 8px;
    border-radius: 9px 9px 3px 3px;
  }

  .laptop-base {
    width: calc(100% + 36px);
    height: 14px;
    margin-left: -18px;
  }

  .hero-project-tag {
    top: 7px;
  }

  .feature-card {
    min-height: 220px;
    padding: 27px;
  }

  .feature-head {
    margin-bottom: 35px;
  }

  .feature-card h3 {
    font-size: 25px;
  }
}

/* ================================================================
   Offer refresh: original mockups, four packages and care discounts
   ================================================================ */

.header-inner {
  height: 80px;
}

.brand {
  align-items: flex-end;
  gap: 9px;
}

.brand-studio {
  padding-bottom: 3px;
  color: #8c8c8f;
  font-size: 8px;
  letter-spacing: .22em;
}

.site-nav {
  gap: clamp(20px, 2.2vw, 34px);
}

.hero {
  min-height: 780px;
  padding-top: 148px;
}

.hero-grid {
  grid-template-columns: .96fr 1.04fr;
  gap: clamp(44px, 5.5vw, 84px);
}

.hero h1 {
  font-size: clamp(49px, 4.55vw, 68px);
  line-height: .94;
}

.hero h1 > span {
  white-space: nowrap;
}

.hero-lead {
  max-width: 610px;
  font-size: 16px;
}

.hero-realization {
  padding: 52px 14px 62px 8px;
}

.hero-project-tag {
  min-width: 220px;
}

.hero-project-tag strong {
  font-size: 16px;
}

.parish-preview {
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: #17211e;
  background: #f8f6f1;
}

.preview-nav {
  display: flex;
  align-items: center;
  height: 13%;
  padding: 0 5%;
  background: #fff;
  border-bottom: 1px solid #e4ded4;
}

.preview-nav .preview-mark {
  display: grid;
  width: 24px;
  height: 24px;
  margin-right: 7px;
  place-items: center;
  color: #fff;
  background: var(--gold);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 11px;
}

.preview-nav b {
  margin-right: auto;
  font-family: var(--serif);
  font-size: 9px;
  font-weight: 400;
}

.preview-nav i {
  width: 8%;
  height: 3px;
  margin-left: 4%;
  background: #d7d4ce;
  border-radius: 4px;
}

.preview-nav i:last-child {
  width: 10%;
  height: 17px;
  background: var(--gold);
}

.preview-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: center;
  min-height: 52%;
  padding: 7% 7% 11%;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(8, 9, 10, .97), rgba(8, 9, 10, .74)),
    radial-gradient(circle at 85% 20%, #df1f2d, #171719 62%);
}

.preview-hero::after {
  position: absolute;
  top: -30%;
  right: -4%;
  width: 55%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
}

.preview-hero div:first-child {
  position: relative;
  z-index: 1;
}

.preview-hero small,
.preview-mass small,
.preview-shortcuts small,
.preview-news small {
  display: block;
  font-family: var(--sans);
  font-size: 5px;
  font-weight: 800;
  letter-spacing: .12em;
}

.preview-hero div:first-child > small {
  margin-bottom: 8px;
  color: #ff727d;
}

.preview-hero div:first-child > strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(18px, 2.3vw, 34px);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .95;
}

.preview-hero div:first-child > span {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 9px;
  color: #fff;
  background: var(--gold);
  font-size: 5px;
  font-weight: 700;
}

.preview-mass {
  position: relative;
  z-index: 1;
  justify-self: end;
  min-width: 105px;
  padding: 15px;
  color: #121214;
  background: #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .24);
}

.preview-mass small {
  color: #8b8b8e;
}

.preview-mass b {
  display: block;
  margin: 4px 0 2px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}

.preview-mass span {
  color: #8b8b8e;
  font-size: 5px;
}

.preview-shortcuts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 88%;
  min-height: 20%;
  margin: -8% auto 0;
  background: #fff;
  box-shadow: 0 14px 32px rgba(24, 22, 20, .13);
}

.preview-shortcuts > span {
  padding: 6% 10%;
  border-right: 1px solid #e6e1d9;
}

.preview-shortcuts > span:last-child {
  border-right: 0;
}

.preview-shortcuts b {
  display: block;
  font-family: var(--serif);
  font-size: 10px;
  font-weight: 400;
}

.preview-shortcuts small {
  margin-top: 2px;
  color: #8c8b88;
  letter-spacing: 0;
}

.preview-news {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, .55fr);
  align-items: center;
  gap: 4%;
  height: 23%;
  padding: 3% 7%;
}

.preview-news small {
  color: var(--gold);
}

.preview-news b {
  display: block;
  font-family: var(--serif);
  font-size: 9px;
  font-weight: 400;
}

.preview-news i {
  height: 70%;
  background: linear-gradient(135deg, #d9d4cc, #f0ede7);
}

.portfolio {
  padding: 105px 0;
}

.portfolio .split-heading {
  margin-bottom: 50px;
}

.case-progress {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  min-height: 490px;
  padding: 0;
  overflow: hidden;
}

.case-progress-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(38px, 5vw, 66px);
}

.case-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 35px;
  padding: 7px 10px;
  color: #fff;
  background: rgba(223, 31, 45, .16);
  border: 1px solid rgba(239, 36, 51, .34);
  border-radius: 30px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.case-status span {
  width: 7px;
  height: 7px;
  background: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(239, 36, 51, .13);
  animation: pulse 2s infinite;
}

.case-progress-copy .case-label {
  margin-bottom: 10px;
}

.case-progress-copy h3 {
  max-width: 470px;
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(29px, 3vw, 43px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.06;
}

.case-progress-copy > p:not(.case-label) {
  max-width: 470px;
  margin: 0;
  color: #a9a9ac;
  font-size: 12px;
  line-height: 1.75;
}

.case-steps {
  width: 100%;
  margin: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.case-steps > div {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 8px;
  min-height: 49px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.case-steps > div > span {
  color: #737376;
  font-family: var(--serif);
  font-size: 10px;
}

.case-steps p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin: 0;
}

.case-steps strong {
  font-size: 10px;
  font-weight: 650;
}

.case-steps small {
  color: #737376;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.case-steps .is-current > span,
.case-steps .is-current small {
  color: var(--gold-light);
}

.text-link-light {
  color: #fff;
  border-color: rgba(255, 255, 255, .38);
}

.case-progress-visual {
  position: relative;
  align-self: center;
  height: calc(100% - 56px);
  margin: 28px 28px 28px 0;
  overflow: hidden;
  background: #efede8;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 25px 55px rgba(0, 0, 0, .28);
}

.case-progress-visual .case-browserbar {
  height: 34px;
}

.project-preview {
  height: calc(100% - 34px);
  color: #131315;
  background: #f9f7f2;
}

.project-preview-top {
  display: flex;
  align-items: center;
  height: 14%;
  padding: 0 6%;
  background: #fff;
}

.project-preview-top b {
  margin-right: auto;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 13px;
}

.project-preview-top i {
  width: 10%;
  height: 3px;
  margin-left: 5%;
  background: #d6d2cb;
}

.project-preview-main {
  position: relative;
  height: 61%;
  padding: 9% 8%;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(112deg, #141416 0 58%, #b51624 58% 100%);
}

.project-preview-main::after {
  position: absolute;
  right: -10%;
  bottom: -45%;
  width: 58%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
}

.project-preview-main small {
  color: #ff8089;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .15em;
}

.project-preview-main strong {
  display: block;
  margin-top: 12px;
  font-family: var(--serif);
  font-size: clamp(25px, 3.7vw, 52px);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .94;
}

.project-preview-main > span {
  display: block;
  width: 76px;
  height: 23px;
  margin-top: 22px;
  background: var(--gold);
}

.project-preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4%;
  height: 25%;
  padding: 4% 6%;
}

.project-preview-cards i {
  background: linear-gradient(135deg, #d7d2ca, #f0ece5);
}

.progress-stamp {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  color: #fff;
  background: var(--gold);
  border: 6px solid #09090a;
  border-radius: 50%;
  text-align: center;
  transform: rotate(7deg);
}

.progress-stamp span,
.progress-stamp strong {
  grid-area: 1 / 1;
}

.progress-stamp span {
  align-self: start;
  margin-top: 14px;
  color: rgba(255, 255, 255, .65);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .1em;
}

.progress-stamp strong {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  line-height: .95;
}

.bundle-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: -14px 0 30px;
  padding: 21px 24px;
  color: #fff;
  background: var(--gold);
}

.bundle-note > div {
  display: flex;
  align-items: center;
  gap: 15px;
}

.bundle-note > div > span {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--gold);
  background: #fff;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
}

.bundle-note p,
.bundle-note small,
.bundle-note strong {
  display: block;
  margin: 0;
}

.bundle-note small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, .7);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.bundle-note strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.bundle-note .text-link {
  flex: 0 0 auto;
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
}

.price-grid-four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border: 0;
}

.price-grid-four .price-card {
  min-height: 760px;
  padding: 42px;
  border: 1px solid var(--line);
}

.price-grid-four .price-featured {
  margin: 0;
  padding-top: 56px;
  border-color: #09090a;
}

.price-grid-four .popular-badge {
  transform: none;
}

.price-grid-four .price-description {
  min-height: 44px;
  max-width: 480px;
}

.price-grid-four .price-card ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
}

.price-grid-four .price-card li {
  line-height: 1.45;
}

.price-mega {
  background: #e2e0dc;
}

.price-custom {
  align-items: flex-end;
}

.price-custom strong {
  font-size: clamp(42px, 4vw, 58px);
}

.price-custom > span {
  padding-bottom: 8px;
}

.care-plans {
  margin-top: 95px;
}

.care-heading {
  padding: 42px;
}

.care-heading h3 {
  font-size: clamp(31px, 3vw, 43px);
}

.care-heading > p {
  font-size: 12px;
  line-height: 1.75;
}

.care-option {
  min-height: 420px;
  padding: 38px 34px 68px;
}

.care-option > small {
  display: block;
  font-size: 9px;
}

.care-option > .care-price {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 6px 10px;
  margin-top: 22px;
}

.care-price del {
  grid-column: 1 / -1;
  color: #929296;
  font-size: 12px;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
}

.care-price del::before {
  content: "regularnie ";
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.care-price strong {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 400;
  line-height: 1;
}

.care-price strong span {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 650;
}

.care-price mark {
  align-self: center;
  padding: 5px 7px;
  color: #fff;
  background: var(--gold);
  border-radius: 20px;
  font-size: 7px;
  font-weight: 800;
}

.care-option-red .care-price del,
.care-option-red .care-price strong span,
.care-option-dark .care-price del,
.care-option-dark .care-price strong span {
  color: rgba(255, 255, 255, .65);
}

.care-option-red .care-price del,
.care-option-dark .care-price del {
  text-decoration-color: #fff;
}

.care-option-red .care-price mark {
  color: var(--gold);
  background: #fff;
}

.care-option-dark .care-price mark {
  color: #09090a;
  background: #fff;
}

.care-option ul {
  min-height: 185px;
}

@media (max-width: 1100px) {
  .hero h1 > span {
    white-space: normal;
  }

  .price-grid-four .price-card {
    padding: 36px;
  }

  .price-grid-four .price-card ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .header-inner {
    height: 76px;
  }

  .hero {
    padding-top: 128px;
  }

  .hero-grid,
  .case-progress {
    grid-template-columns: 1fr;
  }

  .hero-realization {
    max-width: 680px;
    margin-inline: auto;
  }

  .case-progress-copy {
    padding: 48px;
  }

  .case-progress-visual {
    width: calc(100% - 56px);
    height: 430px;
    margin: 0 28px 28px;
  }

  .price-grid-four {
    grid-template-columns: 1fr;
  }

  .price-grid-four .price-card,
  .price-grid-four .price-featured {
    min-height: auto;
    margin: 0;
  }
}

@media (max-width: 620px) {
  .brand-studio {
    font-size: 7px;
  }

  .hero h1 {
    font-size: clamp(42px, 12.5vw, 57px);
  }

  .hero-realization {
    padding-top: 44px;
  }

  .hero-project-tag {
    min-width: 188px;
  }

  .preview-nav i:nth-of-type(2),
  .preview-nav i:nth-of-type(3) {
    display: none;
  }

  .preview-hero {
    grid-template-columns: 1fr .7fr;
    padding-inline: 6%;
  }

  .preview-hero div:first-child > strong {
    font-size: 20px;
  }

  .preview-mass {
    min-width: 80px;
    padding: 10px;
  }

  .preview-mass b {
    font-size: 20px;
  }

  .case-progress-copy {
    padding: 34px 24px;
  }

  .case-progress-visual {
    width: calc(100% - 32px);
    height: 300px;
    margin: 0 16px 16px;
  }

  .project-preview-main strong {
    font-size: 29px;
  }

  .progress-stamp {
    right: 10px;
    bottom: 10px;
    width: 88px;
    height: 88px;
  }

  .progress-stamp span {
    margin-top: 9px;
  }

  .progress-stamp strong {
    font-size: 14px;
  }

  .bundle-note {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 0;
    padding: 20px;
  }

  .bundle-note strong {
    font-size: 17px;
    line-height: 1.2;
  }

  .price-grid-four .price-card,
  .price-grid-four .price-featured {
    padding: 32px 24px;
  }

  .price-grid-four .price-featured {
    padding-top: 48px;
  }

  .price-grid-four .price-description {
    min-height: 0;
  }

  .care-heading,
  .care-option {
    padding-inline: 24px;
  }

  .care-option {
    min-height: auto;
    padding-bottom: 66px;
  }

  .care-option ul {
    min-height: 0;
  }
}

/* Definitive offer layout overrides. */
.hero-copy {
  min-width: 0;
}

.hero-grid {
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(42px, 4.5vw, 70px);
}

.hero h1 {
  max-width: 590px;
  font-size: clamp(51px, 4.25vw, 64px);
}

.hero h1 > span {
  white-space: normal;
}

.price-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
  border: 0;
}

.price-grid-three .price-card {
  min-height: 1020px;
}

.price-grid-three .price-featured {
  margin: 0;
  padding-top: 64px;
}

.price-grid-three .popular-badge {
  top: 18px;
  right: 20px;
  left: auto;
  width: auto;
  padding: 7px 11px;
  border-radius: 20px;
  box-shadow: none;
  transform: none;
}

.price-grid-three .price-fit {
  min-height: 112px;
  margin: 18px 0 0;
}

.care-option {
  min-height: 730px;
  padding: 38px 34px 90px;
}

.care-option > .care-price {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  align-items: stretch;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
}

.care-price-regular,
.care-price-offer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 82px;
  padding: 11px 12px;
  border: 1px solid rgba(9, 9, 10, .1);
}

.care-price-regular {
  background: rgba(255, 255, 255, .52);
}

.care-price-regular > span,
.care-price-offer > span {
  margin-bottom: 3px;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.care-price-regular del {
  color: #5d5d61;
  font-family: var(--serif);
  font-size: 24px;
  text-decoration: none;
}

.care-price-regular del::before {
  content: none;
}

.care-price-offer {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
}

.care-price-offer > span {
  color: rgba(255, 255, 255, .7);
}

.care-price-offer strong {
  font-size: 38px;
}

.care-price mark {
  grid-column: 1 / -1;
  justify-self: start;
  padding: 5px 8px;
  color: var(--gold);
  background: rgba(223, 31, 45, .1);
  border-radius: 20px;
  font-size: 7px;
  font-weight: 800;
  text-transform: uppercase;
}

.care-option-dark .care-price-regular {
  background: #171719;
  border-color: rgba(255, 255, 255, .12);
}

.care-option-dark .care-price-regular > span,
.care-option-dark .care-price-regular del {
  color: #a7a7ab;
}

.care-option-dark .care-price mark {
  color: #fff;
  background: rgba(223, 31, 45, .24);
}

.care-option ul {
  min-height: 255px;
  margin-top: 24px;
}

@media (min-width: 1201px) {
  .features-compact-grid.services-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .feature-mini {
    min-height: 140px;
    padding: 20px;
  }

  .feature-mini h3 {
    font-size: 17px;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .price-grid-three {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 760px;
  }

  .price-grid-three .price-card {
    min-height: auto;
  }

  .price-grid-three .price-fit {
    min-height: 0;
  }
}

@media (max-width: 900px) {
  .care-option {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .hero h1 {
    font-size: clamp(42px, 12.3vw, 55px);
  }

  .price-grid-three .price-card,
  .price-grid-three .price-featured {
    padding: 34px 24px;
  }

  .price-grid-three .price-featured {
    padding-top: 66px;
  }

  .care-option {
    min-height: auto;
    padding: 38px 24px 88px;
  }

  .care-option > .care-price {
    grid-template-columns: 1fr;
  }

  .care-price mark {
    grid-column: 1;
  }

  .care-option ul {
    min-height: 0;
  }
}
