:root {
  --blue-950: #08284a;
  --blue-900: #0b315c;
  --blue-800: #123f73;
  --blue-100: #eaf2fb;
  --blue-50: #f5f9fe;
  --orange-600: #f97316;
  --orange-700: #ea580c;
  --orange-100: #ffedd5;
  --text: #172033;
  --muted: #5c677a;
  --border: #dfe7f0;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(8, 40, 74, 0.10);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img, svg {
  max-width: 100%;
}

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

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

.section-pad {
  padding: 92px 0;
}

.section-pad-small {
  padding: 72px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(223, 231, 240, 0.9);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--blue-950);
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-950) 0 45%, var(--orange-600) 45% 60%, var(--blue-950) 60% 100%);
  color: var(--white);
  font-weight: 800;
  font-size: 26px;
  line-height: 1;
}

.brand-text {
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-left: auto;
  color: var(--blue-950);
  font-weight: 700;
  font-size: 0.98rem;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--orange-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--orange-600);
  box-shadow: 0 14px 26px rgba(249, 115, 22, 0.22);
}

.btn-primary:hover {
  background: var(--orange-700);
}

.btn-secondary {
  color: var(--blue-950);
  background: var(--white);
  border-color: var(--blue-800);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 12px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue-950);
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.12), transparent 30%),
    linear-gradient(180deg, #fff 0%, var(--blue-50) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-700);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.78rem;
}

.eyebrow.light {
  color: var(--orange-100);
}

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

h1 {
  margin-bottom: 22px;
  color: var(--blue-950);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

h2 {
  color: var(--blue-950);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}

h3 {
  color: var(--blue-950);
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.15rem;
  margin-bottom: 30px;
}

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

.hero-card {
  position: relative;
}

.hero-image-card {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.7);
  background: linear-gradient(135deg, #e9f2fb 0%, #fff6ed 100%);
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  display: block;
  object-fit: cover;
}

.service-area {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 30px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-950);
  font-weight: 800;
}

.service-area::before {
  content: "📍";
}

.photo-card {
  min-height: 440px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .75), rgba(255,255,255,.25)),
    linear-gradient(135deg, #e9f2fb 0%, #fff6ed 100%);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.7);
}

.photo-card::before {
  content: "";
  position: absolute;
  top: 38px;
  right: 44px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.13);
}

.photo-card::after {
  content: "";
  position: absolute;
  left: 44px;
  top: 46px;
  width: 110px;
  height: 140px;
  background: linear-gradient(180deg, rgba(8,40,74,.08), rgba(8,40,74,.02));
  border-radius: 50px 50px 12px 12px;
}

.person {
  position: absolute;
  z-index: 1;
  border-radius: 999px 999px 22px 22px;
  background: var(--blue-950);
  box-shadow: 0 20px 30px rgba(8, 40, 74, 0.16);
}

.person::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -54px;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f3bf94;
}

.person::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -62px;
  transform: translateX(-50%);
  width: 78px;
  height: 42px;
  border-radius: 50px 50px 20px 20px;
  background: #4b2f23;
}

.person-one {
  width: 150px;
  height: 190px;
  left: 140px;
  bottom: 94px;
}

.person-two {
  width: 130px;
  height: 168px;
  right: 98px;
  bottom: 102px;
  background: #f5e8d8;
}

.table {
  position: absolute;
  z-index: 3;
  left: 60px;
  right: 60px;
  bottom: 54px;
  height: 92px;
  background: #d69b68;
  border-radius: 22px;
  transform: perspective(280px) rotateX(8deg);
  box-shadow: 0 22px 30px rgba(78, 49, 25, 0.14);
}

.paper {
  position: absolute;
  z-index: 4;
  left: 235px;
  top: 18px;
  width: 130px;
  height: 52px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: inset 0 -3px 0 var(--blue-100);
}

.coffee {
  position: absolute;
  z-index: 4;
  left: 130px;
  top: 22px;
  width: 34px;
  height: 42px;
  border-radius: 0 0 12px 12px;
  background: #fff4e8;
  border: 3px solid rgba(8,40,74,.12);
}

.speech-bubble {
  position: absolute;
  z-index: 5;
  left: 92px;
  top: 24px;
  max-width: 210px;
  padding: 16px 18px;
  border-radius: 18px 18px 18px 4px;
  background: var(--white);
  color: var(--blue-950);
  font-weight: 800;
  box-shadow: var(--shadow);
}

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

.section-heading.compact {
  margin-bottom: 30px;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.feature,
.step,
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(8, 40, 74, 0.06);
}

.service-card {
  padding: 28px;
  min-height: 285px;
  display: flex;
  flex-direction: column;
}

.icon,
.feature-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: var(--blue-100);
  color: var(--blue-950);
  margin-bottom: 22px;
}

.icon svg {
  width: 36px;
  height: 36px;
}

.service-card p,
.feature p,
.step p,
.about-content p,
.contact-info p {
  color: var(--muted);
}

.service-card a {
  margin-top: auto;
  color: var(--orange-700);
  font-weight: 800;
}

.why {
  background: var(--blue-50);
}

.feature {
  padding: 28px;
}

.feature-icon {
  font-size: 1.8rem;
  font-weight: 900;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.about-photo-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 28px;
  background: var(--blue-50);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.about-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.about-photo-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(8, 40, 74, 0.92);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(8, 40, 74, 0.20);
}

.about-photo-caption span {
  display: block;
  color: var(--orange-100);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-photo-caption strong {
  display: block;
  margin-top: 2px;
  font-size: 1.5rem;
  line-height: 1.15;
}

.process {
  background: linear-gradient(180deg, #fff, var(--blue-50));
}

.step {
  padding: 30px;
}

.step span {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--orange-600);
  color: var(--white);
  font-weight: 900;
}

.cta {
  padding: 0 0 72px;
  background: var(--blue-50);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 38px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta h2,
.cta p {
  color: var(--white);
  margin-bottom: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  font-weight: 800;
  color: var(--blue-950);
}

.contact-note {
  margin-top: 24px;
  padding: 16px 18px;
  border-left: 4px solid var(--orange-600);
  border-radius: 14px;
  background: var(--blue-50);
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 32px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--blue-950);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 15px;
  font: inherit;
  color: var(--text);
  background: var(--white);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange-600);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.form-note {
  color: var(--muted);
  font-size: .88rem;
  margin: 0;
}

.site-footer {
  padding: 40px 0;
  background: var(--blue-950);
  color: rgba(255,255,255,.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-brand {
  color: var(--white);
  margin-bottom: 10px;
}

.footer-links,
.legal {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--white);
  font-weight: 800;
}

.legal p,
.site-footer p {
  margin: 0;
}

@media (max-width: 960px) {
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    border-radius: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .three-col {
    grid-template-columns: 1fr;
  }

  .photo-card {
    min-height: 360px;
  }

  .hero-image-card,
  .hero-image-card img {
    min-height: 360px;
  }

  .person-one {
    left: 100px;
  }

  .person-two {
    right: 70px;
  }

  .speech-bubble {
    left: 78px;
    top: 18px;
    max-width: 185px;
  }

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .section-pad {
    padding: 64px 0;
  }

  .section-pad-small {
    padding: 54px 0;
  }

  .brand-text {
    font-size: 1.25rem;
  }

  .hero-actions .btn,
  .cta-box .btn,
  .contact-form .btn {
    width: 100%;
  }

  .photo-card {
    min-height: 300px;
  }

  .hero-image-card,
  .hero-image-card img {
    min-height: 300px;
  }

  .person-one {
    width: 118px;
    height: 148px;
    left: 52px;
    bottom: 82px;
  }

  .person-two {
    width: 96px;
    height: 128px;
    right: 45px;
    bottom: 94px;
  }

  .person::before {
    width: 52px;
    height: 52px;
    top: -40px;
  }

  .person::after {
    width: 56px;
    height: 32px;
    top: -46px;
  }

  .table {
    left: 28px;
    right: 28px;
  }

  .paper {
    left: 138px;
    width: 95px;
  }

  .coffee {
    left: 78px;
  }

  .speech-bubble {
    display: none;
  }

  .about-photo-card,
  .about-photo-card img {
    min-height: 340px;
  }
}


.privacy-page {
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.10), transparent 30%),
    linear-gradient(180deg, #fff 0%, var(--blue-50) 100%);
}

.privacy-container {
  max-width: 900px;
}

.privacy-card {
  padding: 36px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.privacy-card h2 {
  margin-top: 34px;
  font-size: 1.55rem;
}

.privacy-card h2:first-child {
  margin-top: 0;
}

.privacy-card p,
.privacy-card li {
  color: var(--muted);
}

.privacy-card a {
  color: var(--blue-950);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--orange-600);
  text-underline-offset: 3px;
}

.privacy-card ul {
  margin-top: 0;
  padding-left: 22px;
}

.privacy-date {
  margin-top: 32px;
  font-weight: 800;
  color: var(--blue-950) !important;
}

.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.legal a {
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--orange-600);
  text-underline-offset: 3px;
}

@media (max-width: 620px) {
  .privacy-card {
    padding: 24px;
  }

  .privacy-actions .btn {
    width: 100%;
  }
}


.hidden-field {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
