:root {
  --ink: #24152f;
  --forest: #55226f;
  --forest-deep: #2b1039;
  --leaf: #7b3f98;
  --gold: #c59af2;
  --gold-soft: #ead8fb;
  --cream: #f8f4fb;
  --paper: #ffffff;
  --mist: #eee6f3;
  --muted: #72647b;
  --line: rgba(51, 24, 65, 0.13);
  --shadow: 0 24px 70px rgba(54, 22, 72, 0.13);
  --radius: 22px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--paper);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding: 11px 0;
  background: transparent;
  pointer-events: none;
}

.navbar {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 8px 9px 8px 10px;
  border: 1px solid rgba(85, 34, 111, 0.16);
  border-radius: 27px 11px 27px 27px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 45px rgba(54, 22, 72, 0.14);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.navbar::before {
  position: absolute;
  right: 28px;
  bottom: -5px;
  width: 58px;
  height: 5px;
  content: "";
  background: var(--gold);
  border-radius: 0 0 8px 8px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: normal;
}

.site-header .brand {
  width: 160px;
  min-width: 160px;
  height: 72px;
  padding: 3px 14px;
  overflow: hidden;
  border-radius: 18px 7px 18px 18px;
  background: transparent;
}

.site-header .brand img {
  width: 112px;
  height: 68px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 5px;
  border: 1px solid rgba(85, 34, 111, 0.1);
  border-radius: 19px 19px 19px 7px;
  background: #f5eef9;
}

.nav-links a {
  position: relative;
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 15px;
  border-radius: 14px 14px 14px 5px;
  color: #5f4c69;
  font-size: 0.82rem;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-links a:not(.nav-cta)::before {
  color: #9d7cac;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.64rem;
  font-weight: 500;
}

.nav-links a:nth-child(1)::before {
  content: "01";
}

.nav-links a:nth-child(2)::before {
  content: "02";
}

.nav-links a:nth-child(3)::before {
  content: "03";
}

.nav-links a:not(.nav-cta):hover {
  color: var(--forest);
  background: rgba(255, 255, 255, 0.78);
  transform: translateY(-1px);
}

.nav-links a.active:not(.nav-cta) {
  color: white;
  background: var(--forest-deep);
  box-shadow: 0 8px 20px rgba(43, 16, 57, 0.18);
}

.nav-links a.active:not(.nav-cta)::before {
  color: var(--gold);
}

.nav-cta {
  min-height: 45px;
  margin-left: 5px;
  padding: 0 8px 0 17px !important;
  color: var(--forest-deep) !important;
  background: var(--gold);
  border-radius: 14px 14px 14px 5px !important;
}

.nav-cta::after {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  margin-left: 5px;
  content: "↗";
  color: white;
  background: var(--forest-deep);
  border-radius: 50%;
  transition: transform 180ms ease;
}

.nav-cta:hover {
  color: white !important;
  background: var(--forest);
  transform: translateY(-1px);
}

.nav-cta.active {
  color: white !important;
  background: var(--forest);
}

.nav-cta.active::after {
  color: var(--forest-deep);
  background: var(--gold-soft);
}

.nav-cta:hover::after {
  transform: rotate(45deg);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 15px 6px 15px 15px;
  background: var(--forest-deep);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  content: "";
  background: white;
  transition: 180ms ease;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--leaf);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  content: "";
  background: var(--gold);
}

.eyebrow.light {
  color: var(--gold-soft);
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 7.3vw, 6.7rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.3rem, 4.8vw, 4.3rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.3;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.87rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button-primary {
  color: var(--forest-deep);
  background: var(--gold);
}

.button-primary:hover {
  background: var(--gold-soft);
}

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

.button-dark:hover {
  background: var(--forest-deep);
}

.button-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.home-hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: white;
  background: linear-gradient(90deg, rgba(35, 10, 48, 0.97) 0%, rgba(48, 15, 65, 0.84) 36%, rgba(52, 18, 68, 0.14) 70%), url("../images/hero-construction.jpg") center / cover no-repeat;
}

.home-hero::after {
  position: absolute;
  right: -120px;
  bottom: -190px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 735px;
  padding: 120px 0 100px;
}

.home-hero h1 {
  margin-bottom: 26px;
}

.home-hero h1 em {
  color: var(--gold-soft);
  font-style: normal;
}

.home-hero .lead {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.76);
}

.hero-seal {
  position: absolute;
  right: max(30px, calc((100vw - 1180px) / 2));
  bottom: 42px;
  z-index: 2;
  width: 138px;
  height: 138px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: white;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-seal strong {
  display: block;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  letter-spacing: 0;
}

.section {
  padding: 110px 0;
}

.section-white {
  background: var(--paper);
}

.section-dark {
  color: white;
  background: var(--forest-deep);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.section-head > div:first-child {
  max-width: 760px;
}

.section-head h2 {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--leaf);
  font-size: 0.86rem;
  font-weight: 850;
  white-space: nowrap;
}

.text-link::after {
  content: "→";
  transition: transform 160ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: rgba(123, 63, 152, 0.36);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.service-number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  color: var(--forest-deep);
  background: var(--gold-soft);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.service-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-card .text-link {
  margin-top: auto;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.image-frame {
  position: relative;
  min-height: 560px;
}

.image-frame img {
  width: calc(100% - 38px);
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-frame::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  height: 56%;
  border-radius: var(--radius);
  content: "";
  background: var(--gold);
}

.image-frame img {
  position: relative;
  z-index: 1;
}

.quote-card {
  position: absolute;
  right: 0;
  bottom: 20px;
  z-index: 2;
  width: min(320px, 78%);
  padding: 26px;
  color: white;
  background: var(--forest-deep);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.quote-card p {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.45;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 26px;
  padding: 0;
  margin: 32px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 11px;
  font-weight: 700;
}

.check-list li::before {
  color: var(--gold);
  content: "◆";
  font-size: 0.72rem;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid rgba(255, 255, 255, 0.16);
}

.stat {
  padding: 42px 28px;
  text-align: center;
}

.stat + .stat {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 500;
}

.stat span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 72px;
  color: white;
  background: var(--forest);
  border-radius: 30px;
}

.cta-band::after {
  position: absolute;
  right: -70px;
  bottom: -150px;
  width: 380px;
  height: 380px;
  border: 70px solid rgba(197, 154, 242, 0.14);
  border-radius: 50%;
  content: "";
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  max-width: 800px;
  margin-bottom: 18px;
}

.cta-band p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
}

.page-hero {
  position: relative;
  min-height: 470px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: linear-gradient(90deg, rgba(35, 10, 48, 0.97) 0%, rgba(49, 16, 66, 0.78) 48%, rgba(56, 21, 72, 0.22) 100%), var(--hero-image) center / cover no-repeat;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  padding: 100px 0 76px;
}

.page-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.page-hero .lead {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.about-hero {
  --hero-image: url("../images/about-founder-hero.jpg");
}

.services-hero {
  --hero-image: url("../images/services-maintenance-hero.jpg");
}

.contact-hero {
  --hero-image: url("../images/contact-consultation-hero.jpg");
}

.story-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.founder-card {
  width: 100%;
  max-width: 430px;
}

.founder-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 7px solid #f7f0fa;
  border-radius: 34px 10px 0 10px;
  background: var(--paper);
  box-shadow: 0 24px 55px rgba(45, 16, 59, 0.16);
}

.founder-portrait::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 8px;
  content: "";
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.8);
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.founder-label {
  padding: 32px;
  border-top: 4px solid var(--gold);
  background: var(--paper);
  border-radius: 0 0 var(--radius) var(--radius);
}

.founder-label strong {
  display: block;
  margin-bottom: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.founder-label span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.vision-card {
  min-height: 360px;
  padding: clamp(32px, 5vw, 58px);
  border-radius: var(--radius);
}

.vision-card:first-child {
  background: var(--gold-soft);
}

.vision-card:last-child {
  color: white;
  background: var(--forest);
}

.vision-card .label {
  display: block;
  margin-bottom: 70px;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.vision-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 500;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.value-pill {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

.value-pill span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-detail {
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.service-detail:nth-child(2) {
  color: white;
  background: var(--forest);
}

.service-detail:nth-child(2) p,
.service-detail:nth-child(2) li {
  color: rgba(255, 255, 255, 0.74);
}

.service-detail-number {
  margin-bottom: 64px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.service-detail h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.service-detail p {
  color: var(--muted);
}

.service-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.service-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.service-list li::before {
  color: var(--gold);
  content: "—";
}

.service-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.service-photo {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius);
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-photo:hover img {
  transform: scale(1.035);
}

.service-photo figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 20px 22px;
  color: white;
  background: rgba(43, 16, 57, 0.92);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}

.service-photo figcaption strong {
  display: block;
  margin-bottom: 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.service-photo figcaption span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-step {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.process-step span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
}

.process-step p {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(40px, 8vw, 100px);
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.contact-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
}

.contact-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--forest-deep);
  background: var(--gold-soft);
  border-radius: 50%;
  font-weight: 900;
}

.contact-card small {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card a {
  font-weight: 750;
  overflow-wrap: anywhere;
}

.contact-card a:hover {
  color: var(--leaf);
}

.contact-form-wrap {
  padding: clamp(30px, 5vw, 56px);
  color: white;
  background: var(--forest-deep);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form-wrap h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.contact-form-wrap > p {
  color: rgba(255, 255, 255, 0.65);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  outline: none;
  background: rgba(255, 255, 255, 0.07);
}

.field input,
.field select {
  height: 52px;
  padding: 0 16px;
}

.field textarea {
  min-height: 145px;
  padding: 14px 16px;
  resize: vertical;
}

.field select option {
  color: var(--ink);
}

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

.form-note {
  grid-column: 1 / -1;
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}

.site-footer {
  padding: 74px 0 24px;
  color: white;
  background: #1c0a27;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.6fr 0.9fr;
  gap: 70px;
  padding-bottom: 58px;
}

.footer-brand .brand {
  width: 220px;
  padding: 10px 16px;
  background: transparent;
}

.footer-brand img {
  width: 188px;
  filter: brightness(0) invert(1);
  mix-blend-mode: normal;
}

.footer-brand > p {
  max-width: 430px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col h3 {
  margin-bottom: 20px;
  color: var(--gold-soft);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-col ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-col a,
.footer-col li {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.43);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .menu-open .menu-toggle span {
    opacity: 0;
  }

  .menu-open .menu-toggle::before {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-open .menu-toggle::after {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    max-height: calc(100dvh - 140px);
    display: grid;
    align-content: start;
    gap: 7px;
    padding: 14px;
    overflow: auto;
    border: 1px solid rgba(85, 34, 111, 0.15);
    border-radius: 24px 8px 24px 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 28px 60px rgba(43, 16, 57, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top right;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .nav-links a {
    min-height: 58px;
    display: grid;
    grid-template-columns: 30px 1fr;
    padding: 0 17px;
    border: 1px solid rgba(85, 34, 111, 0.08);
    border-radius: 16px 7px 16px 16px;
    background: #f8f3fb;
    font-size: 1rem;
  }

  .nav-cta {
    grid-template-columns: 1fr 34px !important;
    margin: 5px 0 0;
    padding: 0 12px 0 18px !important;
  }

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

  .split,
  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 60px;
  }

  .story-grid {
    gap: 32px;
  }

  .founder-card {
    max-width: 520px;
  }

  .hero-seal {
    display: none;
  }

  .home-hero {
    background: linear-gradient(90deg, rgba(35, 10, 48, 0.97) 0%, rgba(49, 16, 66, 0.76) 62%, rgba(56, 21, 72, 0.28) 100%), url("../images/hero-construction.jpg") 58% center / cover no-repeat;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .navbar {
    min-height: 66px;
    padding: 7px;
    border-radius: 22px 8px 22px 22px;
  }

  .site-header .brand {
    width: 108px;
    min-width: 108px;
    height: 52px;
    padding: 2px 8px;
  }

  .site-header .brand img {
    width: 80px;
    height: 49px;
  }

  .section {
    padding: 78px 0;
  }

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

  .hero-content {
    padding: 90px 0 80px;
  }

  .home-hero {
    background: linear-gradient(90deg, rgba(35, 10, 48, 0.98) 0%, rgba(49, 16, 66, 0.9) 55%, rgba(56, 21, 72, 0.6) 100%), url("../images/hero-construction.jpg") 65% center / cover no-repeat;
  }

  .section-head {
    display: block;
  }

  .section-head .text-link {
    margin-top: 22px;
  }

  .service-grid,
  .service-detail-grid,
  .vision-grid,
  .values-grid,
  .service-showcase,
  .process-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 260px;
  }

  .image-frame {
    min-height: 470px;
  }

  .image-frame img {
    width: calc(100% - 18px);
    height: 430px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }

  .stat + .stat {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .cta-band {
    padding: 42px 26px;
    border-radius: var(--radius);
  }

  .page-hero {
    min-height: 430px;
  }

  .vision-card .label {
    margin-bottom: 40px;
  }

  .service-detail {
    min-height: auto;
  }

  .service-detail-number {
    margin-bottom: 38px;
  }

  .service-photo {
    min-height: 370px;
  }

  .field.full,
  .form-note {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    display: grid;
  }
}
