:root {
  --ink: #11201b;
  --muted: #5f6f68;
  --paper: #fffaf1;
  --green: #19684d;
  --green-deep: #0d3f35;
  --saffron: #f28b23;
  --rose: #b52a62;
  --navy: #14345c;
  --line: rgba(17, 32, 27, 0.13);
  --shadow: 0 22px 60px rgba(13, 63, 53, 0.15);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.96), rgba(246, 251, 238, 0.94)), var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

img,
svg {
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(13, 63, 53, 0.92);
  color: white;
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 36px rgba(13, 63, 53, 0.16);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.17);
}

.brand-mark img {
  width: 120%;
  height: 120%;
  object-fit: cover;
}

.brand-lockup strong {
  display: block;
  color: #fff;
  font-size: clamp(0.98rem, 1.5vw, 1.25rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.brand-lockup small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.desktop-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 750;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: translateY(-1px);
}

.header-action,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border-radius: var(--radius);
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-action {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.92rem;
  white-space: nowrap;
}

.header-action svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.header-action:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.hero-section {
  position: relative;
  min-height: calc(100svh - 156px);
  overflow: hidden;
  background: var(--green-deep);
  color: #fff;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("./images/sipras-hero.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(8, 38, 32, 0.94) 0%, rgba(8, 38, 32, 0.8) 34%, rgba(8, 38, 32, 0.24) 68%, rgba(8, 38, 32, 0.08) 100%), linear-gradient(180deg, rgba(6, 20, 18, 0.18), rgba(6, 20, 18, 0.46));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100svh - 172px);
  align-items: center;
  padding: clamp(40px, 6vw, 62px) 0 clamp(34px, 5vw, 48px);
}

.hero-copy {
  width: min(780px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--saffron);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(3.25rem, 7vw, 5.65rem);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lead {
  width: min(610px, 100%);
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.primary-button {
  padding: 12px 18px;
  border: 1px solid rgba(242, 139, 35, 0.28);
  background: var(--saffron);
  color: #221203;
  box-shadow: 0 18px 36px rgba(242, 139, 35, 0.24);
  cursor: pointer;
}

.primary-button:hover {
  background: #ff9e38;
  box-shadow: 0 22px 42px rgba(242, 139, 35, 0.32);
}

.primary-button.dark {
  background: var(--green-deep);
  color: #fff;
  box-shadow: none;
}

.secondary-button {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.secondary-button:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.16);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.trust-strip span,
.market-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.83rem;
  font-weight: 800;
}

.quick-proof {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.proof-grid div {
  min-height: 118px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(183, 208, 106, 0.13), rgba(242, 139, 35, 0.06)), #fff;
}

.proof-grid strong {
  display: block;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 900;
}

.proof-grid span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  line-height: 1.6;
}

.section {
  padding: clamp(72px, 9vw, 124px) 0;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.cta-content h2,
.contact-info h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.1rem, 5vw, 4.35rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-copy p,
.cta-content p,
.contact-info p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

.about-section {
  background: radial-gradient(circle at 12% 15%, rgba(242, 139, 35, 0.12), transparent 30%), linear-gradient(180deg, #fffaf1 0%, #f5fbef 100%);
}

.about-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(252, 241, 221, 0.92)), #fff;
  box-shadow: var(--shadow);
}

.about-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--green), var(--saffron), var(--rose));
}

.mini-seal {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 164px;
  padding: 30px 32px 26px;
  background: linear-gradient(135deg, rgba(25, 104, 77, 0.08), rgba(20, 52, 92, 0.08)), #fff;
}

.mini-seal img {
  width: 104px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 16px 24px rgba(20, 52, 92, 0.16));
  animation: sealFloat 4.8s ease-in-out infinite;
}

.seal-copy span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.seal-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 950;
  line-height: 1.18;
}

.seal-copy p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.58;
}

.about-panel dl {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
}

.about-panel dl > div {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 18px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

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

.about-panel dt {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-panel dd {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
  line-height: 1.5;
}

.services-section {
  background: #fff;
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: clamp(34px, 6vw, 58px);
}

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

.service-card {
  min-height: 244px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 244, 0.96)), #fff;
  box-shadow: 0 14px 34px rgba(17, 32, 27, 0.06);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(25, 104, 77, 0.34);
  box-shadow: 0 24px 52px rgba(17, 32, 27, 0.12);
}

.service-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(25, 104, 77, 0.1);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 950;
}

.service-card h3 {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 900;
}

.service-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.quality-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(20, 52, 92, 0.08), rgba(183, 208, 106, 0.1)), #f6fbef;
}

.quality-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(90deg, rgba(17, 32, 27, 0.05) 1px, transparent 1px), linear-gradient(180deg, rgba(17, 32, 27, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, #000 22%, #000 78%, transparent);
}

.quality-layout {
  position: relative;
}

.market-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.market-list span {
  border-color: rgba(25, 104, 77, 0.15);
  background: rgba(255, 255, 255, 0.74);
  color: var(--green-deep);
}

.process-track {
  display: grid;
  gap: 12px;
}

.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 72px;
  padding: 14px 18px;
  border: 1px solid rgba(25, 104, 77, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(17, 32, 27, 0.06);
}

.process-step span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
}

.process-step strong {
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.cta-band {
  overflow: hidden;
  background: linear-gradient(90deg, rgba(13, 63, 53, 0.94), rgba(20, 52, 92, 0.9)), var(--green-deep);
  color: #fff;
}

.cta-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px 42px;
  align-items: end;
}

.cta-content .eyebrow,
.cta-content h2,
.cta-content p {
  grid-column: 1;
  color: #fff;
}

.cta-content p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
}

.cta-content .primary-button {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
}

.contact-section {
  background: radial-gradient(circle at 84% 18%, rgba(181, 42, 98, 0.1), transparent 28%), #fffaf1;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-methods a,
.contact-methods address {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 56px;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  font-style: normal;
  line-height: 1.55;
}

.contact-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(25, 104, 77, 0.1);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 950;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 32, 27, 0.16);
  border-radius: var(--radius);
  background: #fffdf8;
  color: var(--ink);
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 132px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(25, 104, 77, 0.12);
}

.form-button {
  width: 100%;
  border: 0;
}

.form-note {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(25, 104, 77, 0.18);
  border-radius: var(--radius);
  background: rgba(25, 104, 77, 0.08);
  color: var(--green-deep);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}

.footer-grid p {
  margin: 0;
  line-height: 1.6;
}

.footer-grid a {
  color: #fff;
  font-weight: 850;
}

.footer-brand .brand-mark {
  width: 46px;
  height: 46px;
}

.footer-brand strong {
  font-size: 1rem;
}

.reveal {
  animation: fadeUp 720ms ease both;
}

.reveal-delay {
  animation-delay: 140ms;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slowZoom {
  from {
    transform: scale(1.03);
  }
  to {
    transform: scale(1.08) translate3d(1%, -1%, 0);
  }
}

@keyframes sealFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

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

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

  .desktop-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 2px 0 4px;
  }

  .desktop-nav a {
    flex: 0 0 auto;
  }

  .header-action {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .header-action span {
    display: none;
  }

  .hero-section,
  .hero-grid {
    min-height: calc(100svh - 184px);
  }

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

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

  .cta-content {
    grid-template-columns: 1fr;
  }

  .cta-content .primary-button {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-lockup {
    gap: 9px;
  }

  .brand-lockup strong {
    max-width: 182px;
    font-size: 0.96rem;
  }

  .brand-lockup small {
    font-size: 0.64rem;
  }

  .desktop-nav {
    gap: 2px;
  }

  .desktop-nav a {
    padding: 9px 10px;
    font-size: 0.84rem;
  }

  .hero-section,
  .hero-grid {
    min-height: calc(100svh - 190px);
  }

  .hero-bg {
    background-position: 64% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(8, 38, 32, 0.95) 0%, rgba(8, 38, 32, 0.82) 62%, rgba(8, 38, 32, 0.35) 100%), linear-gradient(180deg, rgba(6, 20, 18, 0.18), rgba(6, 20, 18, 0.55));
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 17vw, 4.5rem);
  }

  .hero-actions {
    display: grid;
  }

  .trust-strip {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .trust-strip span {
    flex: 0 0 auto;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .quick-proof {
    border-top: 1px solid var(--line);
  }

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

  .proof-grid div {
    min-height: 0;
    padding: 22px;
  }

  .section {
    padding: 66px 0;
  }

  .about-panel dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .mini-seal {
    grid-template-columns: 76px 1fr;
    min-height: 0;
    padding: 24px 18px;
  }

  .mini-seal img {
    width: 76px;
  }

  .seal-copy h3 {
    font-size: 1.06rem;
  }

  .seal-copy p {
    font-size: 0.88rem;
  }

  .service-card {
    min-height: 0;
  }

  .process-step {
    grid-template-columns: 52px 1fr;
    padding: 12px;
  }
}
