:root {
  --color-ink: #121417;
  --color-text: #2a2f35;
  --color-muted: #667078;
  --color-line: #d8ddd8;
  --color-paper: #ffffff;
  --color-soft: #f4f6f2;
  --color-warm: #fff9f1;
  --color-green: #176247;
  --color-green-dark: #0f3f31;
  --color-brick: #b54d32;
  --color-gold: #c7983f;
  --color-night: #11181f;
  --shadow-soft: 0 18px 45px rgba(17, 24, 31, 0.12);
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

body.altuna-theme {
  background: var(--color-paper);
  color: var(--color-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.site-shell {
  width: min(var(--shell), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-140%);
  background: var(--color-ink);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(216, 221, 216, 0.86);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 180px;
}

.brand img {
  display: block;
  width: 190px;
  max-height: 54px;
  object-fit: contain;
  object-position: left center;
}

.site-nav,
.site-nav .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--color-green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-link {
  color: var(--color-muted);
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #fff;
  color: var(--color-ink);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(17, 24, 31, 0.14);
}

.button--primary {
  border-color: var(--color-green);
  background: var(--color-green);
  color: #fff;
}

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

.button--small {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 14px;
}

.button--full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 74px 0 66px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-brick);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c46a;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--color-ink);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: 58px;
  font-weight: 900;
}

.hero-lead {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 800;
}

.trust-band {
  background: var(--color-green-dark);
  color: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.trust-grid div {
  min-height: 110px;
  padding: 26px;
  background: var(--color-green-dark);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  font-size: 20px;
  line-height: 1.2;
}

.trust-grid span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.section {
  padding: 92px 0;
}

.section--muted {
  background: var(--color-soft);
}

.section--dark {
  background: var(--color-night);
  color: #fff;
}

.section--dark h2,
.section--dark h3 {
  color: #fff;
}

.section--dark .section-heading p {
  color: rgba(255, 255, 255, 0.76);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading--left {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.split-grid h2,
.contact-copy h2,
.faq-grid h2 {
  margin-bottom: 18px;
  font-size: 38px;
  font-weight: 900;
}

.section-heading p,
.split-grid p,
.contact-copy p,
.faq-grid p {
  color: var(--color-muted);
  font-size: 17px;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 68px;
  align-items: start;
}

.split-grid--reverse {
  grid-template-columns: 420px minmax(0, 1fr);
}

.quality-panel,
.note-panel,
.form-shell,
.content-page {
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-paper);
  box-shadow: var(--shadow-soft);
}

.quality-panel {
  padding: 30px;
}

.quality-panel h3 {
  margin-bottom: 18px;
  font-size: 24px;
}

.quality-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quality-panel li {
  position: relative;
  padding-left: 24px;
  color: var(--color-text);
}

.quality-panel li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-green);
}

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

.service-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #fff;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

.service-card p {
  margin: 0;
  color: var(--color-muted);
}

.service-marker {
  display: block;
  width: 42px;
  height: 5px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-green), var(--color-gold), var(--color-brick));
}

.process-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 62px;
  align-items: start;
}

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

.steps article {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-paper);
}

.steps span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--color-brick);
  font-weight: 900;
}

.steps h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.steps p {
  margin: 0;
  color: var(--color-muted);
}

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

.project-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.project-card img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.project-card figcaption {
  display: grid;
  gap: 6px;
  min-height: 136px;
  padding: 18px;
}

.project-card strong {
  font-size: 18px;
  line-height: 1.2;
}

.project-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.note-panel {
  padding: 30px;
  background: var(--color-warm);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--color-green);
  font-weight: 900;
  text-decoration: none;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 64px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #fff;
}

.faq-list summary {
  min-height: 64px;
  padding: 18px 22px;
  color: var(--color-ink);
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact-section {
  padding: 96px 0;
  background: var(--color-green-dark);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.72fr);
  gap: 64px;
  align-items: start;
}

.contact-copy h2 {
  color: #fff;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.contact-options a {
  min-height: 100px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
}

.contact-options strong,
.contact-options span {
  display: block;
}

.contact-options span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
}

.form-shell {
  padding: 28px;
}

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

.form-field,
.consent {
  display: grid;
  gap: 8px;
  color: var(--color-text);
  font-weight: 800;
}

.form-field--wide,
.consent,
.contact-form .button {
  grid-column: 1 / -1;
}

.form-field span {
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfd6cf;
  border-radius: 8px;
  background: #fff;
  color: var(--color-ink);
  font: inherit;
  padding: 12px 14px;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-green);
  outline: 3px solid rgba(23, 98, 71, 0.18);
}

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  font-weight: 600;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 4px;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.notice {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 800;
}

.notice--success {
  background: #e6f5ee;
  color: #0f543b;
}

.notice--error {
  background: #fff0ea;
  color: #8a321d;
}

.site-footer {
  background: var(--color-ink);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding: 46px 0;
}

.footer-grid strong {
  display: block;
  margin-bottom: 10px;
}

.footer-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.mobile-cta {
  display: none;
}

.page-simple {
  padding: 80px 0;
  background: var(--color-soft);
}

.content-page {
  padding: 44px;
}

.entry-content {
  color: var(--color-muted);
}

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

  .header-actions {
    display: none;
  }

  .site-nav,
  .site-nav .menu {
    justify-content: flex-end;
    gap: 16px;
  }

  .service-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-grid,
  .split-grid--reverse,
  .process-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

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

  body.altuna-theme {
    padding-bottom: 62px;
  }

  .site-shell {
    width: min(100% - 28px, var(--shell));
  }

  .header-inner {
    min-height: 66px;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 158px;
    max-height: 48px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 500px;
  }

  .hero-content {
    padding: 52px 0 46px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-lead {
    font-size: 17px;
  }

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

  .trust-grid,
  .service-grid,
  .steps,
  .gallery-grid,
  .contact-options,
  .footer-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .section,
  .contact-section {
    padding: 64px 0;
  }

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

  .section-heading h2,
  .split-grid h2,
  .contact-copy h2,
  .faq-grid h2 {
    font-size: 30px;
  }

  .quality-panel,
  .note-panel,
  .form-shell,
  .content-page {
    padding: 22px;
  }

  .service-card,
  .steps article {
    min-height: auto;
    padding: 22px;
  }

  .project-card img {
    height: 230px;
  }

  .mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: #fff;
    box-shadow: 0 -10px 30px rgba(17, 24, 31, 0.16);
  }

  .mobile-cta a {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-ink);
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-cta a:first-child {
    background: var(--color-green);
    color: #fff;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero-proof span {
    width: 100%;
  }
}
