:root {
  --white: #ffffff;
  --light-blue: #eaf6fb;
  --light-blue-2: #f5fbfe;
  --dark-blue: #0b2e4a;
  --dark-blue-2: #123f63;
  --teal: #0f9f9a;
  --teal-dark: #0b827e;
  --black: #111827;
  --muted: #4b5563;
  --border: #dbeaf0;
  --shadow: 0 18px 45px rgba(11, 46, 74, 0.09);
  --shadow-soft: 0 12px 30px rgba(11, 46, 74, 0.07);
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

button, input, textarea {
  font: inherit;
}

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

a:hover {
  color: var(--teal);
}

:focus-visible {
  outline: 3px solid rgba(15, 159, 154, 0.45);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 999;
  background: var(--dark-blue);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(219, 234, 240, .9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--dark-blue);
  letter-spacing: -0.03em;
  font-size: 1.12rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--dark-blue), var(--teal));
  font-size: .82rem;
  letter-spacing: -0.02em;
  box-shadow: 0 10px 24px rgba(15, 159, 154, .22);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 22px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--dark-blue);
  font-size: .95rem;
  font-weight: 650;
  transition: background .2s ease, color .2s ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  background: var(--light-blue);
  color: var(--teal-dark);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--dark-blue);
  border-radius: 14px;
  min-width: 46px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 4px;
  background: var(--dark-blue);
  transition: transform .2s ease, opacity .2s ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-lines::before { top: -7px; }
.menu-lines::after { top: 7px; }

.menu-toggle[aria-expanded="true"] .menu-lines {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines::before {
  transform: rotate(90deg) translateX(7px);
}

.menu-toggle[aria-expanded="true"] .menu-lines::after {
  opacity: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
  text-align: center;
}

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

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(15, 159, 154, .22);
}

.btn-primary:hover {
  background: var(--teal-dark);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(15, 159, 154, .28);
}

.btn-secondary {
  background: var(--white);
  color: var(--dark-blue);
  border-color: rgba(11, 46, 74, .2);
}

.btn-secondary:hover {
  background: var(--light-blue);
  border-color: rgba(15, 159, 154, .4);
  color: var(--teal-dark);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  padding: 84px 0 74px;
  background:
    radial-gradient(circle at top right, rgba(15, 159, 154, .12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f6fbfe 100%);
}

.hero-grid,
.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, .98fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(15, 159, 154, .1);
  border: 1px solid rgba(15, 159, 154, .16);
  font-size: .82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
}

h1, h2, h3 {
  color: var(--dark-blue);
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(2.8rem, 8vw, 5.75rem);
  margin-top: 22px;
}

.hero-title-small {
  font-size: clamp(2.45rem, 6vw, 4.25rem);
}

.hero-headline {
  margin: 16px 0 0;
  color: var(--dark-blue-2);
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.lead {
  font-size: clamp(1.06rem, 2vw, 1.18rem);
  color: var(--muted);
  max-width: 720px;
}

.hero .lead {
  margin: 24px 0 0;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--dark-blue);
  font-size: .9rem;
  font-weight: 700;
}

.trust-pill::before,
.check-item::before,
.list-check li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(15, 159, 154, .12);
  color: var(--teal-dark);
  font-size: .78rem;
  font-weight: 900;
}

.image-placeholder {
  min-height: 420px;
  border-radius: 34px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(11, 46, 74, .86), rgba(15, 159, 154, .62)),
    radial-gradient(circle at 22% 22%, rgba(255, 255, 255, .5), transparent 28%);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .55);
  color: var(--white);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 15%, rgba(255,255,255,.12) 15% 16%, transparent 16% 36%, rgba(255,255,255,.10) 36% 37%, transparent 37%),
    radial-gradient(circle at 76% 30%, rgba(234, 246, 251, .35), transparent 22%);
  opacity: .88;
}

.image-placeholder::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  height: 1px;
  background: rgba(255,255,255,.25);
}

.placeholder-content {
  position: relative;
  z-index: 1;
  max-width: 420px;
}

.placeholder-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #f8feff;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.placeholder-title {
  display: block;
  font-weight: 850;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.placeholder-text {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, .86);
}

.section {
  padding: 92px 0;
}

.section-sm {
  padding: 70px 0;
}

.bg-light {
  background: var(--light-blue-2);
}

.bg-blue {
  background: var(--light-blue);
}

.section-header {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.section-header .eyebrow {
  margin-bottom: 14px;
}

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

h3 {
  font-size: clamp(1.28rem, 2vw, 1.65rem);
}

.section-header p,
.split-copy p,
.card p,
.value-card p,
.service-section p,
.contact-card p {
  color: var(--muted);
}

.split-copy > * + * {
  margin-top: 18px;
}

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

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

.card,
.value-card,
.contact-card,
.service-section,
.form-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.card,
.value-card,
.service-section {
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.card:hover,
.value-card:hover,
.service-section:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 159, 154, .28);
  box-shadow: var(--shadow);
}

.card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(15, 159, 154, .11);
  color: var(--teal-dark);
  font-weight: 900;
  margin-bottom: 18px;
}

.card h3,
.value-card h3,
.service-section h2 {
  margin-bottom: 12px;
}

.card p,
.value-card p,
.service-section p {
  margin-bottom: 0;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--teal-dark);
  font-weight: 850;
}

.card-link::after {
  content: "→";
  transition: transform .2s ease;
}

.card-link:hover::after {
  transform: translateX(3px);
}

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

.check-item {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--dark-blue);
  font-weight: 760;
}

.audience-list,
.list-check {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.audience-list li {
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  font-weight: 700;
  color: var(--dark-blue);
}

.list-check li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: var(--muted);
}

.feature-band {
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(15, 159, 154, .13), transparent 34%),
    linear-gradient(135deg, var(--dark-blue), #164c73);
  color: var(--white);
  padding: clamp(28px, 5vw, 54px);
  display: grid;
  grid-template-columns: 1fr .86fr;
  gap: 36px;
  align-items: center;
  box-shadow: var(--shadow);
}

.feature-band h2,
.feature-band h3 {
  color: var(--white);
}

.feature-band p {
  color: rgba(255, 255, 255, .82);
}

.feature-band .image-placeholder {
  min-height: 340px;
  box-shadow: none;
  border-color: rgba(255,255,255,.2);
}

.cta-section {
  padding: 70px 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(15, 159, 154, .12), transparent 25%),
    linear-gradient(135deg, var(--light-blue), #ffffff);
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  border-radius: 34px;
  padding: clamp(28px, 5vw, 52px);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.cta-box h2 {
  font-size: clamp(1.9rem, 3.6vw, 3.1rem);
}

.cta-box p {
  max-width: 780px;
  color: var(--muted);
  margin: 16px 0 0;
}

.page-hero {
  padding: 74px 0 58px;
  background:
    radial-gradient(circle at top right, rgba(15, 159, 154, .11), transparent 30%),
    linear-gradient(180deg, #ffffff, var(--light-blue-2));
}

.page-hero h1 {
  font-size: clamp(2.55rem, 6vw, 4.8rem);
  max-width: 950px;
}

.page-hero .lead {
  margin-top: 22px;
}

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

.value-card {
  padding: 24px;
}

.service-stack {
  display: grid;
  gap: 20px;
}

.service-section {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: start;
}

.service-number {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: var(--light-blue);
  color: var(--teal-dark);
  font-weight: 900;
  font-size: 1.06rem;
}

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

.list-panel {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.acknowledgement-box {
  padding: 32px;
  border-left: 5px solid var(--teal);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  color: var(--dark-blue);
  font-weight: 700;
}

.contact-grid {
  align-items: start;
}

.form-panel,
.contact-card {
  padding: clamp(24px, 4vw, 34px);
}

.form-panel label {
  display: block;
  color: var(--dark-blue);
  font-weight: 800;
  margin-bottom: 8px;
}

.form-row {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}

.form-row.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--black);
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(15, 159, 154, .65);
  box-shadow: 0 0 0 4px rgba(15, 159, 154, .12);
}

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

.help-text {
  color: var(--muted);
  margin: 0 0 22px;
}

.contact-card .contact-item {
  display: grid;
  gap: 4px;
  padding: 17px 0;
  border-bottom: 1px solid var(--border);
}

.contact-card .contact-item:last-child {
  border-bottom: 0;
}

.contact-label {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}

.contact-value {
  color: var(--dark-blue);
  font-weight: 850;
}

.site-footer {
  background: var(--light-blue-2);
  border-top: 1px solid var(--border);
  color: var(--black);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr .8fr .9fr;
  gap: 34px;
  padding: 58px 0 38px;
}

.site-footer h2,
.site-footer h3 {
  font-size: 1.12rem;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.site-footer p,
.site-footer li {
  color: var(--muted);
}

.footer-links,
.footer-contact {
  padding: 0;
  list-style: none;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-contact a {
  color: var(--dark-blue);
  font-weight: 750;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--teal-dark);
}

.footer-ack {
  border-top: 1px solid var(--border);
  padding: 26px 0 30px;
  color: var(--muted);
  font-size: .94rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding: 18px 0;
  color: var(--muted);
  font-size: .92rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .feature-band,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .card-grid.two,
  .values-grid,
  .yarning-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .header-inner {
    min-height: 70px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-wrap {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }

  .nav-wrap.is-open {
    display: flex;
  }

  .primary-nav {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-nav a {
    justify-content: space-between;
    border-radius: 16px;
  }

  .nav-wrap .btn {
    width: 100%;
  }

  .hero,
  .section,
  .page-hero {
    padding: 58px 0;
  }

  .image-placeholder {
    min-height: 340px;
    border-radius: 26px;
  }

  .card-grid,
  .card-grid.two,
  .values-grid,
  .check-grid,
  .yarning-list-grid,
  .form-row.two,
  .footer-top {
    grid-template-columns: 1fr;
  }

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

  .cta-box {
    border-radius: 26px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
    margin-top: 8px;
  }
}

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

  .fade-in {
    opacity: 1;
    transform: none;
  }
}


.brand-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-name {
  display: inline-block;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: var(--white);
  border: 1px solid rgba(219, 234, 240, .95);
  box-shadow: var(--shadow);
}

.media-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.hero-photo-card img {
  aspect-ratio: 16 / 11;
  object-position: center center;
}

.founder-frame img {
  aspect-ratio: 5 / 4;
  object-position: center center;
}

.landscape-frame img,
.services-frame img,
.fieldwork-frame img,
.contact-image img {
  aspect-ratio: 16 / 10;
}

.media-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11, 46, 74, .82);
  color: var(--white);
  font-weight: 800;
  font-size: .92rem;
  backdrop-filter: blur(8px);
}

.logo-story-grid {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
}

.logo-display {
  display: grid;
  place-items: center;
  padding: clamp(20px, 4vw, 34px);
  border-radius: 34px;
  background: linear-gradient(180deg, #ffffff, #f5fbfe);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.logo-display img {
  width: min(100%, 480px);
  height: auto;
  display: block;
}

.contact-image {
  margin: 22px 0 20px;
}

.site-footer .brand-logo {
  width: 62px;
  height: 62px;
}

@media (max-width: 980px) {
  .logo-story-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .site-footer .brand-logo {
    width: 52px;
    height: 52px;
  }

  .media-frame,
  .logo-display {
    border-radius: 26px;
  }
}

/* === Designer visual revamp: large editorial image system === */
:root {
  --max: 1360px;
  --shadow-strong: 0 30px 80px rgba(11, 46, 74, 0.16);
}

body {
  background: #ffffff;
}

.container {
  width: min(100% - 48px, var(--max));
}

.site-header {
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 10px 30px rgba(11, 46, 74, .045);
}

.brand {
  gap: 14px;
  font-size: 1.18rem;
}

.brand-logo {
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 8px 18px rgba(11, 46, 74, .10));
}

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

.hero {
  min-height: calc(100vh - 88px);
  padding: clamp(58px, 7vw, 104px) 0 clamp(70px, 7vw, 104px);
  background:
    radial-gradient(circle at 88% 0%, rgba(15, 159, 154, .14), transparent 35%),
    radial-gradient(circle at 8% 92%, rgba(11, 46, 74, .055), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f6fbfe 100%);
}

.hero-grid {
  width: min(100% - 48px, 1500px);
  display: grid;
  grid-template-columns: minmax(420px, .74fr) minmax(620px, 1.26fr);
  gap: clamp(44px, 6vw, 92px);
  align-items: center;
}

.hero-copy-panel {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(3.5rem, 7.5vw, 7.7rem);
  line-height: .92;
  margin-top: 24px;
  letter-spacing: -.075em;
}

.hero-headline {
  max-width: 700px;
  font-size: clamp(1.55rem, 2.75vw, 2.75rem);
  line-height: 1.05;
  margin-top: 26px;
}

.hero .lead {
  max-width: 690px;
  font-size: clamp(1.1rem, 1.3vw, 1.28rem);
}

.hero-visual {
  align-self: stretch;
  display: flex;
  align-items: center;
  min-height: 640px;
}

.hero-photo-card {
  width: 100%;
  height: clamp(620px, 72vh, 820px);
  min-height: 0;
  border-radius: 46px;
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow-strong);
  transform: translateX(12px);
  isolation: isolate;
}

.hero-photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(11, 46, 74, .03), transparent 34%),
    radial-gradient(circle at 80% 12%, rgba(255,255,255,.16), transparent 28%);
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.015);
}

.media-badge {
  z-index: 2;
  left: 28px;
  bottom: 28px;
  padding: 12px 17px;
  font-size: .98rem;
  background: rgba(11, 46, 74, .88);
  box-shadow: 0 14px 30px rgba(11, 46, 74, .22);
}

.trust-strip {
  gap: 10px;
}

.trust-pill {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
}

.section {
  padding: clamp(82px, 8vw, 124px) 0;
}

.section-sm {
  padding: clamp(72px, 7vw, 108px) 0;
}

.split-grid {
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  gap: clamp(48px, 7vw, 94px);
}

.bg-light .split-grid {
  grid-template-columns: minmax(520px, 1.12fr) minmax(0, .88fr);
}

.media-frame {
  min-height: clamp(500px, 44vw, 670px);
  border-radius: 42px;
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: var(--shadow-strong);
  background: #edf7fb;
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  aspect-ratio: auto;
  object-fit: cover;
}

.fieldwork-frame img { object-position: center center; }
.founder-frame img { object-position: center center; }
.landscape-frame img { object-position: center center; }
.services-frame img { object-position: center center; }

/* Make image-led sections feel like editorial project photography rather than small template cards */
.split-grid > .fade-in:has(.media-frame) {
  align-self: stretch;
}

.split-grid > .fade-in:has(.media-frame) .media-frame {
  height: 100%;
}

.feature-band {
  grid-template-columns: minmax(0, .86fr) minmax(520px, 1.14fr);
  padding: clamp(34px, 5vw, 66px);
  border-radius: 46px;
}

.feature-band .media-frame,
.feature-band .image-placeholder {
  min-height: clamp(460px, 38vw, 620px);
  border-radius: 36px;
}

.feature-band .media-frame img {
  min-height: clamp(460px, 38vw, 620px);
}

.card-grid {
  gap: 24px;
}

.card, .value-card, .service-section, .contact-card, .form-panel {
  border-color: rgba(219, 234, 240, .9);
}

.card {
  padding: 32px;
  border-radius: 28px;
}

.cta-box {
  border-radius: 46px;
  padding: clamp(34px, 5vw, 66px);
}

.page-hero {
  padding: clamp(78px, 8vw, 120px) 0 clamp(60px, 6vw, 90px);
}

.logo-story-grid {
  grid-template-columns: minmax(420px, .86fr) minmax(0, 1.14fr);
  gap: clamp(48px, 7vw, 86px);
}

.logo-display {
  min-height: 520px;
}

.logo-display img {
  width: min(100%, 560px);
}

.services-frame {
  position: sticky;
  top: 118px;
}

.contact-image {
  min-height: 320px;
  border-radius: 30px;
}
.contact-image img {
  min-height: 320px;
}

@media (min-width: 1280px) {
  .hero-photo-card {
    margin-right: -28px;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .split-grid,
  .bg-light .split-grid,
  .feature-band,
  .logo-story-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-photo-card {
    height: auto;
    transform: none;
  }

  .hero-photo-card img {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .media-frame,
  .feature-band .media-frame,
  .feature-band .media-frame img {
    min-height: 420px;
  }

  .services-frame {
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {
  .container, .hero-grid {
    width: min(100% - 28px, var(--max));
  }

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

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand-name {
    font-size: 1.02rem;
  }

  .hero {
    padding: 44px 0 58px;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(3rem, 18vw, 4.8rem);
  }

  .hero-headline {
    font-size: clamp(1.35rem, 8vw, 2rem);
  }

  .hero-photo-card {
    border-radius: 30px;
  }

  .hero-photo-card img {
    aspect-ratio: 4 / 3;
    object-position: 62% center;
  }

  .media-frame,
  .feature-band .media-frame,
  .feature-band .media-frame img {
    min-height: 320px;
    border-radius: 28px;
  }

  .founder-frame img {
    aspect-ratio: 4 / 3;
  }

  .feature-band,
  .cta-box {
    border-radius: 30px;
  }

  .logo-display {
    min-height: 320px;
  }

  .site-footer .brand-logo {
    width: 54px;
    height: 54px;
  }
}


/* WhatsApp CTA update */
.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  border-color: rgba(37, 211, 102, .18);
  box-shadow: 0 14px 28px rgba(37, 211, 102, .22);
}

.btn-whatsapp:hover {
  background: #1fb85a;
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(37, 211, 102, .30);
}

.site-header .btn-whatsapp {
  min-height: 44px;
  padding: 11px 18px;
}

.hero-left {
  display: flex;
  flex-direction: column;
}

.hero-details {
  margin-top: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 150;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 13px 18px;
  border-radius: 999px;
  background: #25D366;
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(11, 46, 74, .22), 0 10px 22px rgba(37, 211, 102, .25);
  border: 1px solid rgba(255,255,255,.55);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  background: #1fb85a;
  color: #ffffff;
  box-shadow: 0 22px 48px rgba(11, 46, 74, .26), 0 14px 26px rgba(37, 211, 102, .30);
}

.floating-whatsapp-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(255,255,255,.22);
  font-size: .9rem;
}

.whatsapp-contact-strip {
  margin-top: 28px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(37, 211, 102, .12), rgba(234, 246, 251, .95));
  border: 1px solid rgba(37, 211, 102, .24);
  display: grid;
  gap: 8px;
}

.whatsapp-contact-strip strong {
  color: var(--dark-blue);
  font-size: 1.08rem;
}

.whatsapp-contact-strip span {
  color: var(--muted);
}

.whatsapp-contact-strip .btn {
  margin-top: 8px;
  width: fit-content;
}

@media (max-width: 1100px) {
  .site-header .nav-wrap .btn-whatsapp {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .hero-left {
    display: contents;
  }

  .hero-copy-panel {
    order: 1;
  }

  .hero-visual {
    order: 2;
    margin-top: 2px;
  }

  .hero-details {
    order: 3;
  }

  .hero-copy-panel .eyebrow {
    margin-bottom: 12px;
  }

  .hero h1 {
    margin-top: 10px;
  }

  .hero-headline {
    margin-top: 14px;
    margin-bottom: 0;
  }

  .hero-photo-card {
    width: calc(100vw - 28px);
    margin-inline: auto;
    min-height: 280px;
    box-shadow: 0 22px 48px rgba(11,46,74,.16);
  }

  .hero-photo-card img {
    aspect-ratio: 16 / 11;
    object-position: 60% center;
  }

  .hero .lead:first-child {
    margin-top: 10px;
  }

  .hero-actions {
    margin-top: 24px;
  }

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

  .floating-whatsapp {
    right: 14px;
    left: 14px;
    bottom: 14px;
    justify-content: center;
    min-height: 52px;
  }

  body {
    padding-bottom: 72px;
  }
}


/* === SEO expansion / service-area pages === */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 750;
  margin-bottom: 20px;
}
.breadcrumbs a { color: var(--teal-dark); }
.breadcrumbs strong { color: var(--dark-blue); }
.area-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.area-chip-grid.center { justify-content: center; }
.area-chip-grid.compact { gap: 10px; }
.area-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(15, 159, 154, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  color: var(--dark-blue);
  font-weight: 850;
  font-size: .94rem;
  box-shadow: 0 10px 22px rgba(11, 46, 74, .045);
}
.area-chip:hover { background: var(--light-blue); color: var(--teal-dark); }
.area-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.area-card {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.area-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 159, 154, .30);
  box-shadow: var(--shadow);
  color: inherit;
}
.area-card strong {
  color: var(--dark-blue);
  font-size: 1.08rem;
  line-height: 1.25;
}
.area-card span { color: var(--muted); font-size: .94rem; }
.image-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.gallery-frame {
  min-height: 360px;
}
.gallery-frame img {
  min-height: 360px;
  object-position: center center;
}
.gallery-frame figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11, 46, 74, .84);
  color: #fff;
  font-weight: 850;
  font-size: .9rem;
  backdrop-filter: blur(8px);
}
.seo-hub-grid { align-items: start; }
.check-grid.mini { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 20px; }
.site-footer .footer-top { grid-template-columns: 1.1fr .72fr .85fr .9fr; }
@media (max-width: 1100px) {
  .site-footer .footer-top,
  .area-card-grid,
  .image-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .area-card-grid,
  .image-gallery-grid,
  .site-footer .footer-top,
  .check-grid.mini { grid-template-columns: 1fr; }
  .gallery-frame, .gallery-frame img { min-height: 300px; }
  .area-chip { width: 100%; justify-content: center; }
}


/* Legal pages and consent UI */
.narrow {
  width: min(100% - 32px, 900px);
  margin-inline: auto;
}

.legal-content {
  background: var(--white);
  border: 1px solid rgba(219, 234, 240, .95);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(26px, 4vw, 52px);
}

.legal-content h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  color: var(--dark-blue);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content a,
.footer-legal-links a,
.consent-line a {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0 22px;
  color: var(--muted);
  font-size: .95rem;
}

.consent-line input {
  margin-top: 5px;
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 300;
  width: min(calc(100% - 32px), 920px);
  transform: translateX(-50%);
  background: rgba(255,255,255,.98);
  color: var(--black);
  border: 1px solid rgba(219, 234, 240, .95);
  box-shadow: 0 22px 60px rgba(11, 46, 74, .22);
  border-radius: 24px;
  padding: 18px;
  display: none;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: .96rem;
}

.cookie-banner strong {
  display: block;
  color: var(--dark-blue);
  margin-bottom: 4px;
  font-size: 1.02rem;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.cookie-actions .btn {
  min-height: 42px;
  padding: 10px 16px;
  font-size: .92rem;
}

@media (max-width: 740px) {
  .cookie-banner {
    align-items: stretch;
    flex-direction: column;
    bottom: 14px;
  }

  .cookie-actions {
    justify-content: flex-start;
  }
}


/* Supply Nation badge */
.hero-photo-card {
  position: relative;
}

.supply-hero-badge {
  position: absolute;
  right: clamp(0.75rem, 2vw, 1.25rem);
  bottom: clamp(0.75rem, 2vw, 1.25rem);
  z-index: 3;
  width: clamp(82px, 12vw, 132px);
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.supply-hero-badge img,
.footer-supply-badge img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-supply-badge {
  display: flex;
  justify-content: center;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.footer-supply-badge a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(92px, 10vw, 128px);
  transition: transform 180ms ease, opacity 180ms ease;
}

.footer-supply-badge a:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

@media (max-width: 640px) {
  .supply-hero-badge {
    width: 82px;
    left: 0.7rem;
    top: 0.7rem;
    right: auto;
    bottom: auto;
    border-radius: 14px;
  }

  .footer-supply-badge a {
    width: 98px;
  }
}


/* Supply Nation badge image uncrop fix */
.supply-hero-badge {
  display: block;
  line-height: 0;
  overflow: visible;
}

.supply-hero-badge img,
.footer-supply-badge img {
  display: block;
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  border-radius: inherit;
}
