:root {
  --ink: #201914;
  --night: #14100d;
  --paper: #fbf6ef;
  --cream: #efe3d3;
  --mist: #e9ece6;
  --clay: #a85f45;
  --moss: #6f7662;
  --steel: #55636b;
  --white: #fff;
  --line: rgba(32, 25, 20, .14);
  --shadow: 0 28px 80px rgba(21, 14, 10, .2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.cart-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 34px;
  width: 100%;
  margin: 0 auto;
  padding: 26px max(22px, calc((100vw - 1180px) / 2));
  color: var(--white);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  border-radius: 0;
  background: transparent;
  transition: background .25s ease, transform .25s ease;
}

.site-header.scrolled {
  top: 0;
  width: 100%;
  padding: 16px max(22px, calc((100vw - 1180px) / 2));
  background: rgba(20, 16, 13, .82);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .18);
}

.brand img {
  display: block;
  width: 220px;
  height: auto;
}

.nav-links,
.header-actions,
.button-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links {
  justify-content: center;
  gap: 34px;
}

.nav-links a,
.contact-link {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  color: rgba(255, 255, 255, .95);
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
}

.cart-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0;
  color: var(--white);
  border: 0;
  background: transparent;
  cursor: pointer;
}

.cart-button:hover,
.contact-link:hover,
.nav-links a:hover {
  color: #d8a58c;
}

.icon-button svg,
.cart-button svg,
.button svg {
  width: 18px;
  height: 18px;
}

.cart-button span {
  position: static;
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  padding: 0 5px;
  color: var(--ink);
  border-radius: 999px;
  background: var(--white);
  font-size: 11px;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 180px 0 90px;
  overflow: hidden;
  background: url("https://www.javimercader.com/wp-content/uploads/2024/11/002-copia.jpg") center 36% / cover no-repeat;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 16, 13, .76), rgba(20, 16, 13, .22) 52%, rgba(20, 16, 13, .58)),
    linear-gradient(0deg, rgba(20, 16, 13, .76), transparent 35%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 42px));
  margin-left: max(21px, calc((100vw - 1180px) / 2));
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--moss);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.hero .eyebrow,
.feature .eyebrow,
.contact .eyebrow {
  color: #d7a38d;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 930px;
  font-size: clamp(58px, 10vw, 132px);
  line-height: .86;
}

h1 span {
  display: block;
  color: #d9a890;
  font-style: italic;
}

h2 {
  font-size: clamp(36px, 5.4vw, 76px);
  line-height: .96;
}

h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.08;
}

p {
  font-size: 18px;
  line-height: 1.65;
}

.hero-copy p:not(.eyebrow) {
  max-width: 710px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(18px, 2vw, 23px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--clay);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

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

.button.ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .58);
}

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

.button.line {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.hero-card {
  position: absolute;
  z-index: 3;
  right: min(6vw, 80px);
  bottom: 44px;
  width: 340px;
  padding: 28px;
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin-bottom: 18px;
  font-size: 31px;
  line-height: 1.04;
}

.card-label {
  margin: 0 0 10px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card a,
.text-link {
  color: var(--clay);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 105px 0;
}

.section-head {
  max-width: 900px;
  margin-bottom: 42px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
}

.intro-grid p {
  color: rgba(32, 25, 20, .73);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.stats div {
  padding: 28px;
  border-right: 1px solid var(--line);
}

.stats div:last-child {
  border-right: 0;
}

.stats strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  font-weight: 400;
}

.stats span {
  color: var(--moss);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.paths article,
.product-card {
  overflow: hidden;
  border: 1px solid rgba(32, 25, 20, .08);
  border-radius: 26px;
  background: var(--white);
}

.paths img,
.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.paths article div,
.product-body {
  padding: 26px;
}

.paths p,
.product-card p {
  color: rgba(32, 25, 20, .7);
  font-size: 16px;
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
  background: var(--night);
  color: var(--white);
}

.feature-image {
  min-height: 560px;
  background: url("https://www.javimercader.com/wp-content/uploads/2024/04/DSC9550-copia-2-scaled.jpg") center / cover no-repeat;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px clamp(28px, 7vw, 92px);
}

.feature-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, .74);
}

.feature .button.line {
  color: var(--white);
  border-color: rgba(255, 255, 255, .26);
}

.shop {
  width: min(1240px, calc(100% - 40px));
}

.shop-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  max-width: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.product-card img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #eee6da;
  padding: 10px;
}

.product-body h3 {
  font-size: 23px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.price {
  font-size: 24px;
  font-weight: 900;
}

.product-card .button {
  width: auto;
  min-height: 42px;
  padding: 10px 15px;
  font-size: 12px;
  white-space: nowrap;
}

.portfolio {
  width: min(1120px, calc(100% - 40px));
}

.portfolio-copy {
  max-width: 800px;
  margin: 0 auto 42px;
  text-align: center;
}

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

.portfolio-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
  box-shadow: 0 18px 46px rgba(32, 25, 20, .08);
}

.portfolio-grid img:nth-child(2) {
  object-position: center top;
}

.portfolio-grid img:nth-child(4) {
  object-position: center 42%;
}

.contact {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 110px max(21px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(20, 16, 13, .82), rgba(20, 16, 13, .45)),
    url("https://www.javimercader.com/wp-content/uploads/2024/05/Default_A_beautiful_woman_sits_on_the_edge_of_an_old_wooden_d_1-copia-4.jpg") center 72% / cover no-repeat;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 26px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(18px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 16px;
  background: rgba(255, 255, 255, .1);
  padding: 15px 16px;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, .5);
}

.subpage-main {
  background: var(--paper);
}

.page-hero {
  position: relative;
  min-height: 72svh;
  display: flex;
  align-items: flex-end;
  padding: 170px max(22px, calc((100vw - 1180px) / 2)) 74px;
  color: var(--white);
  overflow: hidden;
  background: var(--night);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  opacity: .88;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 16, 13, .78), rgba(20, 16, 13, .28) 55%, rgba(20, 16, 13, .62));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
}

.page-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(48px, 8vw, 106px);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(18px, 2vw, 23px);
}

.content-band {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.text-panel p {
  color: rgba(32, 25, 20, .72);
}

.image-panel img,
.wide-image img {
  display: block;
  width: 100%;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 22px 60px rgba(32, 25, 20, .12);
}

.image-panel img {
  aspect-ratio: 4 / 5;
}

.wide-image img {
  aspect-ratio: 16 / 9;
}

.program-grid,
.testimonial-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.program-card,
.testimonial-card,
.resource-card,
.detail-card {
  padding: 28px;
  border: 1px solid rgba(32, 25, 20, .1);
  border-radius: 24px;
  background: var(--white);
}

.program-card p,
.testimonial-card p,
.resource-card p,
.detail-card p {
  color: rgba(32, 25, 20, .72);
  font-size: 16px;
}

.dark-band {
  width: auto;
  max-width: none;
  margin: 0;
  padding: 100px max(22px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background: var(--night);
}

.dark-band p {
  color: rgba(255, 255, 255, .74);
}

.timeline {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.timeline-item strong {
  color: #d8a58c;
  font-size: 13px;
  text-transform: uppercase;
}

.split-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 42px;
  border-radius: 28px;
  background: var(--cream);
}

.shop-page-grid {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.shop-page-grid.content-band {
  width: min(1320px, calc(100% - 40px));
}

.shop-page-grid .product-grid {
  grid-template-columns: repeat(3, minmax(240px, 1fr));
}

.shop-sidebar {
  position: sticky;
  top: 110px;
  padding: 24px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.shop-sidebar ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  color: rgba(32, 25, 20, .72);
}

.portfolio-page-grid {
  column-count: 3;
  column-gap: 18px;
}

.portfolio-page-grid img {
  width: 100%;
  height: auto;
  display: block;
  break-inside: avoid;
  margin: 0 0 18px;
  border-radius: 20px;
  box-shadow: 0 18px 46px rgba(32, 25, 20, .08);
}

.portfolio-page-grid img:nth-child(4),
.portfolio-page-grid img:nth-child(7) {
  aspect-ratio: auto;
}

.dark-band .detail-card {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .14);
}

.dark-band .detail-card h3 {
  color: var(--white);
}

.dark-band .detail-card p {
  color: rgba(255, 255, 255, .72);
}

.clients-page .page-hero::after {
  background: linear-gradient(90deg, rgba(20, 16, 13, .7), rgba(20, 16, 13, .22) 52%, rgba(20, 16, 13, .5));
}

.client-session-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.client-session-grid .program-card {
  overflow: hidden;
  padding: 0;
}

.client-session-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.client-session-grid .eyebrow,
.client-session-grid h3,
.client-session-grid p {
  margin-left: 26px;
  margin-right: 26px;
}

.client-session-grid .eyebrow {
  margin-top: 24px;
}

.client-session-grid p:last-child {
  margin-bottom: 26px;
}

.client-gallery {
  column-count: 2;
  column-gap: 18px;
}

.client-gallery img {
  display: block;
  width: 100%;
  height: auto;
  break-inside: avoid;
  margin: 0 0 18px;
  border-radius: 22px;
  box-shadow: 0 18px 46px rgba(32, 25, 20, .08);
}

.contact-page {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.contact-list a,
.contact-list span {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.contact-page .contact-form {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
  backdrop-filter: none;
}

.contact-page .contact-form label {
  color: rgba(32, 25, 20, .72);
}

.contact-page .contact-form input,
.contact-page .contact-form textarea {
  color: var(--ink);
  border-color: var(--line);
  background: var(--paper);
}

.contact-page .contact-form input::placeholder,
.contact-page .contact-form textarea::placeholder {
  color: rgba(32, 25, 20, .42);
}

.site-footer {
  padding: 58px max(22px, calc((100vw - 1180px) / 2)) 26px;
  color: rgba(255, 255, 255, .72);
  background: #100d0b;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 460px);
  gap: 48px;
  align-items: center;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.site-footer img {
  width: 175px;
  margin-bottom: 14px;
}

.site-footer h3 {
  color: var(--white);
  font-size: 15px;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 9px 0;
  color: rgba(255, 255, 255, .68);
  font-size: 15px;
}

.site-footer a:hover {
  color: #d8a58c;
}

.footer-brand p {
  max-width: 330px;
  color: rgba(255, 255, 255, .68);
  font-size: 16px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px;
  padding: 34px 0 30px;
}

.footer-payments span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-newsletter {
  display: grid;
  gap: 10px;
}

.footer-newsletter label {
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-newsletter div {
  display: flex;
  gap: 10px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
}

.footer-newsletter input {
  min-width: 0;
  flex: 1;
  color: var(--white);
  border: 0;
  background: transparent;
  padding: 0 16px;
  outline: 0;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, .5);
}

.footer-newsletter .button {
  min-height: 40px;
  padding: 10px 18px;
  font-size: 12px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1.1fr auto auto;
  gap: 24px;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-legal,
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a,
.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .48);
  font-size: 13px;
}

.footer-payments span {
  color: rgba(255, 255, 255, .64);
}

.cart-drawer {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
  background: rgba(20, 16, 13, 0);
  transition: background .25s ease;
}

.cart-open .cart-drawer {
  pointer-events: auto;
  background: rgba(20, 16, 13, .42);
}

.cart-panel {
  width: min(460px, 100%);
  height: 100%;
  padding: 26px;
  background: var(--paper);
  transform: translateX(105%);
  transition: transform .25s ease;
  overflow: auto;
}

.cart-open .cart-panel {
  transform: translateX(0);
}

.cart-head,
.cart-line,
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cart-head h2 {
  font-size: 38px;
}

.dark-icon {
  color: var(--ink);
  border-color: var(--line);
}

.cart-items {
  display: grid;
  gap: 12px;
  margin: 30px 0;
}

.cart-line {
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.cart-line h3 {
  margin-bottom: 4px;
  font-size: 16px;
}

.cart-line p {
  margin: 0;
  font-size: 14px;
}

.remove {
  color: var(--clay);
  border: 0;
  background: none;
  cursor: pointer;
  font-weight: 900;
}

.cart-total {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  font-size: 18px;
}

.checkout {
  width: 100%;
}

.cart-note {
  color: rgba(32, 25, 20, .58);
  font-size: 14px;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-card {
    display: none;
  }

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

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

  .program-grid,
  .testimonial-grid,
  .resource-grid,
  .client-session-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-page-grid {
    column-count: 2;
  }

  .client-gallery {
    column-count: 2;
  }

  .shop-page-grid .product-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }

  .shop-page-grid,
  .contact-page {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: static;
  }
}

@media (max-width: 800px) {
  .site-header {
    top: 0;
    width: 100%;
    padding: 18px 14px;
  }

  .brand img {
    width: 156px;
  }

  .hero {
    min-height: 92svh;
    padding: 132px 0 56px;
    background-position: center top;
  }

  h1 {
    font-size: 52px;
  }

  .button-row,
  .shop-head,
  .contact {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    width: calc(100% - 28px);
    padding: 72px 0;
  }

  .intro-grid,
  .paths,
  .feature,
  .contact,
  .two-column {
    grid-template-columns: 1fr;
  }

  .stats,
  .product-grid,
  .portfolio-grid,
  .program-grid,
  .testimonial-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .client-session-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-page-grid {
    column-count: 1;
  }

  .client-gallery {
    column-count: 1;
  }

  .shop-page-grid .product-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 76svh;
    padding: 130px 14px 58px;
  }

  .content-band,
  .portfolio,
  .shop {
    width: calc(100% - 28px);
    padding: 72px 0;
  }

  .dark-band {
    padding: 74px 14px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .split-cta {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .portfolio-page-grid img:nth-child(4),
  .portfolio-page-grid img:nth-child(7) {
    aspect-ratio: auto;
  }

  .site-footer {
    padding: 42px 14px;
  }

  .footer-top,
  .footer-links,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-newsletter div {
    border-radius: 24px;
    flex-direction: column;
    padding: 12px;
  }

  .footer-newsletter input {
    min-height: 46px;
  }

  .footer-legal,
  .footer-payments {
    gap: 9px;
  }

  .stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats div:last-child {
    border-bottom: 0;
  }

  .feature-copy {
    padding: 60px 24px;
  }

  .contact {
    padding: 74px 14px;
  }
}
