:root {
  --ink: #191918;
  --ink-soft: #333330;
  --paper: #f7f6f2;
  --card: #ffffff;
  --warm: #ece8df;
  --warm-dark: #d8d0c3;
  --muted: #686863;
  --line: #dedbd4;
  --accent: #9a6738;
  --accent-soft: #c8a47d;
  --sage: #68705f;
  --sans: "Montserrat", Arial, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --shell: min(1240px, calc(100% - 48px));
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 24px 70px rgba(28, 26, 22, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1,
h2 {
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 700px;
  font-size: clamp(3.1rem, 5.1vw, 5.4rem);
}

h1 em {
  display: block;
  color: var(--accent);
  font-family: var(--serif);
  font-size: 1.15em;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.92;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 4rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(222, 219, 212, 0.8);
  background: rgba(247, 246, 242, 0.9);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--shell);
  min-height: 84px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  text-decoration: none;
}

.brand img {
  width: 132px;
  height: 62px;
  object-fit: contain;
  object-position: left center;
}

nav {
  display: flex;
  gap: 34px;
}

nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

nav a:hover::after,
nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button svg,
.link-arrow svg,
.mobile-cta svg {
  width: 18px;
  height: 18px;
}

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

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

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

.button-light:hover,
.button-light:focus-visible {
  color: #fff;
  border-color: var(--accent-soft);
  background: var(--accent);
}

a:focus-visible,
summary:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--accent-soft);
  outline-offset: 4px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.link-arrow svg {
  transition: transform 180ms ease;
}

.link-arrow:hover svg {
  transform: translateX(4px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 0.92fr);
  gap: clamp(48px, 6vw, 92px);
  align-items: center;
  min-height: 760px;
  padding-block: 70px 82px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 26px;
  color: var(--sage);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: var(--accent);
}

.hero-lead {
  max-width: 610px;
  margin: 30px 0 34px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.hero-proof {
  display: flex;
  gap: 48px;
  margin-top: 54px;
  padding-top: 27px;
  border-top: 1px solid var(--line);
}

.hero-proof div {
  display: flex;
  flex-direction: column;
}

.hero-proof strong {
  margin-bottom: 3px;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.72rem;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  padding: 14px 14px 54px 54px;
}

.hero-visual::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 42px;
  left: 40px;
  z-index: -1;
  border-radius: var(--radius-lg);
  content: "";
  background: var(--warm);
}

.hero-visual figure {
  height: 590px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-visual figure img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.photo-link {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
}

.instagram-link-hint {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 24px rgba(25, 25, 24, 0.12);
  backdrop-filter: blur(8px);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 180ms ease, transform 180ms ease;
  text-transform: uppercase;
}

.photo-link:hover .instagram-link-hint,
.photo-link:focus-visible .instagram-link-hint {
  opacity: 1;
  transform: translateY(0);
}

.hero-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 14px;
  align-items: center;
  width: min(330px, 62%);
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(30, 28, 24, 0.14);
  backdrop-filter: blur(10px);
}

.hero-badge > svg {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 50%;
  color: #fff;
  background: var(--sage);
}

.hero-badge div {
  display: flex;
  flex-direction: column;
}

.hero-badge strong {
  font-size: 0.8rem;
}

.hero-badge span {
  color: var(--muted);
  font-size: 0.67rem;
  line-height: 1.45;
}

.hero-caption {
  position: absolute;
  right: 30px;
  bottom: 11px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hero-caption span {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-caption strong {
  font-size: 0.75rem;
  font-weight: 600;
}

.location-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.location-bar .section-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 88px;
}

.location-bar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.location-bar ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.72rem;
  font-weight: 600;
}

.section-kicker {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading.centered {
  max-width: 830px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-heading.centered > p:last-child {
  max-width: 670px;
  margin: 25px auto 0;
  color: var(--muted);
}

.benefits {
  padding-block: 132px;
}

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

.benefit-grid article {
  position: relative;
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--card);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.benefit-grid article:hover {
  border-color: var(--warm-dark);
  box-shadow: 0 18px 45px rgba(35, 32, 28, 0.08);
  transform: translateY(-5px);
}

.benefit-grid article > span {
  position: absolute;
  top: 31px;
  right: 30px;
  color: #aaa79f;
  font-size: 0.65rem;
  font-weight: 600;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 66px;
  border-radius: 15px;
  color: var(--accent);
  background: #f1ece5;
}

.icon-box svg {
  width: 26px;
  height: 26px;
}

.benefit-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

.showcase {
  padding-block: 126px;
  background: var(--warm);
}

.showcase-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 50px;
}

.showcase-heading > div:last-child {
  max-width: 370px;
  justify-self: end;
}

.showcase-heading > div:last-child p {
  margin-bottom: 22px;
  color: var(--muted);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.project {
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(205, 199, 189, 0.8);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 12px 34px rgba(36, 32, 27, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.project:hover {
  box-shadow: 0 18px 42px rgba(36, 32, 27, 0.11);
  transform: translateY(-4px);
}

.project .photo-link {
  flex: 0 0 auto;
  height: auto;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.project .photo-link img {
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.035);
  transition: transform 450ms ease;
}

.project:hover img {
  transform: scale(1.025);
}

.project::after {
  display: none;
}

.project figcaption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 92px;
  padding: 18px 20px 20px;
  color: var(--ink);
  background: #fff;
  pointer-events: none;
}

.project figcaption span {
  margin-bottom: 5px;
  color: var(--accent);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project figcaption strong {
  max-width: 340px;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.45;
}

.process {
  padding-block: 132px;
  color: #fff;
  background: var(--ink);
}

.process .section-shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.process-intro {
  align-self: start;
}

.process-intro h2 {
  margin-bottom: 28px;
}

.process-intro > p:last-child {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.6);
}

.process-list {
  grid-row: span 2;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 27px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.process-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.process-list > li > span {
  color: var(--accent-soft);
  font-size: 0.67rem;
  font-weight: 700;
}

.process-list h3 {
  margin-bottom: 6px;
}

.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.process-cta {
  align-self: end;
  justify-self: start;
}

.consultation {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
  padding-block: 132px;
}

.consultation-visual {
  position: relative;
  min-height: 610px;
  padding: 0 44px 44px 0;
}

.consultation-visual::before {
  position: absolute;
  top: 45px;
  right: 0;
  bottom: 0;
  left: 44px;
  z-index: -1;
  border-radius: var(--radius-lg);
  content: "";
  background: var(--warm);
}

.consultation-visual > .photo-link {
  height: 575px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.consultation-visual > .photo-link img {
  height: 100%;
  object-fit: cover;
}

.material-card {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  max-width: 280px;
  padding: 18px 20px;
  border-radius: 14px;
  color: #fff;
  background: var(--sage);
  box-shadow: 0 16px 35px rgba(34, 35, 29, 0.2);
}

.material-card span {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.material-card strong {
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.45;
}

.consultation-copy h2 {
  margin-bottom: 28px;
}

.consultation-copy > p:not(.section-kicker) {
  max-width: 650px;
  color: var(--muted);
}

.consultation-copy ul {
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.consultation-copy li {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 11px 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.consultation-copy li svg {
  width: 20px;
  height: 20px;
  padding: 3px;
  border-radius: 50%;
  color: #fff;
  background: var(--sage);
}

.qualification {
  padding-block: 120px;
  color: #fff;
  background: var(--ink);
}

.qualification-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(560px, 1.28fr);
  gap: clamp(56px, 8vw, 110px);
  align-items: start;
}

.qualification-intro {
  position: sticky;
  top: 120px;
}

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

.qualification-intro h2 {
  max-width: 560px;
  margin-bottom: 28px;
}

.qualification-intro > p:not(.section-kicker) {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.68);
}

.qualification-intro ul {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.qualification-intro li {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 13px 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
}

.qualification-intro li svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  padding: 3px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--accent-soft);
}

.qualification-form {
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.form-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: baseline;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.form-heading span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
}

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

.form-field {
  min-width: 0;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.77rem;
  font-weight: 700;
}

.form-field label span {
  color: #9f341f;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #c9c6bf;
  border-radius: 9px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 0.9rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field textarea {
  min-height: 118px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(154, 103, 56, 0.16);
}

.form-field [aria-invalid="true"] {
  border-color: #b42318;
}

.field-hint,
.field-error {
  margin: 6px 0 0;
  font-size: 0.68rem;
  line-height: 1.45;
}

.field-hint {
  color: var(--muted);
}

.field-error {
  min-height: 1em;
  color: #9f2318;
  font-weight: 600;
}

.consent-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 11px;
  align-items: start;
  margin-top: 26px;
  cursor: pointer;
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.55;
}

.consent-check input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--ink);
}

.form-error-summary {
  margin-bottom: 26px;
  padding: 18px 20px;
  border: 1px solid #d9a39b;
  border-left: 4px solid #b42318;
  border-radius: 9px;
  background: #fff5f3;
}

.form-error-summary[hidden],
.whatsapp-fallback[hidden] {
  display: none;
}

.form-error-summary h3 {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.form-error-summary ul {
  margin: 0;
  padding-left: 20px;
  color: #8a1c13;
  font-size: 0.75rem;
}

.form-error-summary a {
  text-underline-offset: 3px;
}

.form-submit-row {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
}

.form-submit-row .button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.form-status {
  margin: 0;
  color: var(--sage);
  font-size: 0.74rem;
  font-weight: 600;
}

.whatsapp-fallback {
  display: inline-block;
  margin-top: 16px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

.faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
  padding-block: 120px;
  border-top: 1px solid var(--line);
}

.faq-heading > p:last-child {
  max-width: 380px;
  margin-top: 25px;
  color: var(--muted);
}

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

details {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  padding: 25px 48px 25px 0;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.45;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 21px;
  right: 5px;
  color: var(--accent);
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 720px;
  margin: -5px 0 25px;
  padding-right: 48px;
  color: var(--muted);
  font-size: 0.83rem;
}

.final-cta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 90px;
  padding: 76px;
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--sage);
  box-shadow: var(--shadow);
}

.final-cta .section-kicker {
  color: #dfc5a7;
}

.final-action {
  max-width: 430px;
  justify-self: end;
}

.final-action p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
}

footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  min-height: 132px;
  color: var(--muted);
  font-size: 0.7rem;
}

.footer-inner p {
  margin: 0;
  text-align: center;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-contact a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.mobile-cta {
  display: none;
}

.mobile-cta.is-hidden {
  pointer-events: none;
  opacity: 0;
  transform: translateY(100%);
  visibility: hidden;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 380ms ease, transform 380ms ease;
}

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

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 40px, 940px);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 0.95fr;
    gap: 45px;
  }

  .hero-visual {
    min-height: 550px;
  }

  .hero-visual figure {
    height: 515px;
  }

  .process .section-shell,
  .faq {
    gap: 60px;
  }

  .consultation {
    gap: 65px;
  }

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

  .footer-inner p {
    display: none;
  }
}

@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
    padding-block: 75px 90px;
  }

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

  .hero-visual {
    min-height: 650px;
  }

  .hero-visual figure {
    height: 610px;
  }

  .location-bar .section-shell {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-block: 22px;
  }

  .location-bar ul {
    justify-content: flex-start;
  }

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

  .benefit-grid article {
    min-height: auto;
  }

  .icon-box {
    margin-bottom: 45px;
  }

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

  .showcase-heading > div:last-child {
    max-width: 560px;
    justify-self: start;
  }

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

  .project,
  .project-large,
  .project-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .process .section-shell,
  .consultation,
  .qualification-layout,
  .faq,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .qualification-intro {
    position: static;
  }

  .process-cta {
    margin-top: 10px;
  }

  .consultation-visual {
    max-width: 600px;
  }

  .final-action {
    justify-self: start;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 32px);
    --radius-lg: 22px;
  }

  body {
    padding-bottom: calc(66px + env(safe-area-inset-bottom));
  }

  h1 {
    font-size: clamp(2.75rem, 12.5vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 112px;
    height: 54px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-block: 60px 72px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    gap: 22px;
    justify-content: space-between;
  }

  .hero-proof div {
    width: 48%;
  }

  .hero-visual {
    min-height: 510px;
    padding: 10px 8px 54px 24px;
  }

  .hero-visual::before {
    left: 12px;
  }

  .hero-visual figure {
    height: 475px;
  }

  .hero-badge {
    width: 79%;
    padding: 15px;
  }

  .hero-caption {
    display: none;
  }

  .location-bar ul {
    gap: 8px 18px;
  }

  .benefits,
  .showcase,
  .process,
  .consultation,
  .qualification,
  .faq {
    padding-block: 92px;
  }

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

  .form-field-wide {
    grid-column: auto;
  }

  .form-heading,
  .form-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit-row .button {
    width: 100%;
  }

  .section-heading.centered {
    margin-bottom: 42px;
    text-align: left;
  }

  .section-heading.centered > p:last-child {
    margin-left: 0;
  }

  .benefit-grid article {
    padding: 26px;
  }

  .showcase-heading {
    gap: 24px;
  }

  .project-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process .section-shell {
    gap: 55px;
  }

  .process-list li {
    grid-template-columns: 42px 1fr;
  }

  .process-cta,
  .consultation-copy .button {
    width: 100%;
  }

  .consultation-visual {
    min-height: 500px;
    padding: 0 22px 34px 0;
  }

  .consultation-visual::before {
    top: 28px;
    left: 22px;
  }

  .consultation-visual > .photo-link {
    height: 475px;
  }

  .instagram-link-hint {
    top: 12px;
    right: 12px;
    opacity: 1;
    transform: none;
  }

  .material-card {
    max-width: 240px;
    padding: 15px 17px;
  }

  .faq {
    gap: 42px;
  }

  summary {
    font-size: 0.8rem;
  }

  .final-cta {
    gap: 36px;
    width: calc(100% - 24px);
    margin-bottom: 70px;
    padding: 52px 24px;
  }

  .final-action .button {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 28px;
  }

  .footer-contact {
    align-items: flex-start;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: calc(66px + env(safe-area-inset-bottom));
    padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
    color: #fff;
    background: var(--ink);
    box-shadow: 0 -10px 32px rgba(0, 0, 0, 0.16);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

.consent-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 980px;
  margin-inline: auto;
  padding: 20px 22px;
  color: #fff;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.28);
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.consent-banner p {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.75rem;
  line-height: 1.55;
}

.consent-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.consent-actions button {
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  font: inherit;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.consent-decline {
  color: #fff;
  background: transparent;
}

.consent-accept {
  color: var(--ink);
  background: #fff;
}

@media (max-width: 760px) {
  .consent-banner {
    right: 12px;
    bottom: calc(78px + env(safe-area-inset-bottom));
    left: 12px;
    display: block;
    padding: 18px;
  }

  .consent-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 15px;
  }
}
