:root {
  --background: #FAFCFE;
  --foreground: #0D1936;
  --card: #FFFFFF;
  --primary: #111F43;
  --muted: #EBEFF4;
  --muted-foreground: #596475;
  --border: #D9DFE5;
  --brand-dark: #081431;
  --brand-russet: #111F43;
  --brand-amber: #E8721C;
  --brand-gold: #F68C36;
  --brand-cream: #F6F9FC;
  --brand-warm: #EAEFF5;
  --font-heading: "Sora", ui-sans-serif, system-ui, sans-serif;
  --font-body: "DM Sans", ui-sans-serif, system-ui, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-body);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.15
}

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

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

picture {
  display: contents
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem
}

@media(min-width:640px) {
  .container {
    padding-left: 1.75rem;
    padding-right: 1.75rem
  }
}

@media(min-width:1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem
  }
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background: rgba(250, 252, 254, 0.9);
  backdrop-filter: blur(8px)
}

.topbar {
  background: var(--brand-dark);
  color: var(--brand-cream)
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .075rem;
  padding-bottom: .075rem;
  font-size: .8125rem
}

.topbar a {
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: color .2s
}

.topbar a:hover {
  color: var(--brand-amber)
}

.topbar .slogan {
  display: none
}

@media(min-width:640px) {
  .topbar .container {
    font-size: .875rem
  }

  .topbar .slogan {
    display: inline
  }
}

.nav-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .75rem;
  padding-bottom: .75rem
}

.brand {
  display: flex;
  align-items: center;
  gap: .625rem
}

.brand img {
  height: 2.75rem;
  width: 2.75rem;
  border-radius: .5rem;
  object-fit: contain
}

@media(min-width:640px) {
  .brand img {
    height: 3.25rem;
    width: 3.25rem
  }
}

.brand .bn {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--brand-dark);
  line-height: 1
}

@media(min-width:640px) {
  .brand .bn {
    font-size: 1.375rem
  }
}

.brand .bt {
  display: block;
  font-family: var(--font-heading);
  font-size: .5625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--muted-foreground);
  margin-top: .125rem
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem
}

@media(min-width:768px) {
  .nav-desktop {
    display: flex
  }
}

.nav-desktop a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color .2s
}

.nav-desktop a:hover {
  color: var(--foreground)
}

.nav-desktop a.active {
  color: var(--brand-amber);
  font-weight: 600
}

.btn-call-sm {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: .375rem;
  background: var(--brand-amber);
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 600;
  color: #fff !important;
  transition: background .2s
}

.btn-call-sm:hover {
  background: var(--brand-gold)
}

.menu-btn {
  display: inline-flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: .375rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground)
}

@media(min-width:768px) {
  .menu-btn {
    display: none
  }
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--background);
  padding: 1rem
}

.nav-mobile.open {
  display: block
}

.nav-mobile nav {
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground)
}

.nav-mobile a:hover {
  color: var(--brand-amber)
}

.nav-mobile .btn-call-mobile {
  margin-top: .5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: .375rem;
  background: var(--brand-amber);
  padding: .75rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: .375rem;
  font-weight: 600;
  transition: background .2s, color .2s, border-color .2s;
  gap: .5rem
}

.btn svg {
  flex-shrink: 0
}

.btn-amber {
  background: var(--brand-amber);
  color: #fff;
  padding: .75rem 1.5rem;
  font-size: 1rem
}

.btn-amber:hover {
  background: var(--brand-gold)
}

.btn-amber-lg {
  padding: .75rem 2rem
}

.btn-russet {
  background: var(--brand-russet);
  color: var(--brand-cream);
  padding: .75rem 1.5rem;
  font-size: .875rem;
  font-weight: 500
}

.btn-russet:hover {
  background: var(--brand-dark)
}

.btn-gold {
  background: var(--brand-gold);
  color: var(--brand-dark);
  padding: .75rem 2rem;
  font-size: 1rem;
  font-weight: 600
}

.btn-gold:hover {
  background: var(--brand-amber)
}

.btn-outline-cream {
  border: 2px solid rgba(246, 249, 252, .4);
  color: var(--brand-cream);
  padding: .75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500
}

.btn-outline-cream:hover {
  background: rgba(246, 249, 252, .1)
}

.btn-outline-cream-lg {
  padding: .75rem 2rem
}

/* ---------- HERO (home) ---------- */
.hero {
  position: relative;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center
}

.hero-bg .overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 20, 49, .72)
}

.hero .container {
  position: relative;
  z-index: 1
}

.hero-inner {
  padding: 5rem 0
}

@media(min-width:640px) {
  .hero-inner {
    padding: 7rem 0
  }
}

@media(min-width:1024px) {
  .hero-inner {
    padding: 8rem 0
  }
}

.hero-content {
  max-width: 48rem;
  text-align: left
}

.badge {
  display: inline-block;
  border-radius: 9999px;
  background: var(--brand-amber);
  padding: .375rem 1rem;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff
}

.hero h1 {
  margin-top: 1.25rem;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--brand-cream);
  line-height: 1.2
}

@media(min-width:480px) {
  .hero h1 {
    font-size: 2.25rem
  }
}

@media(min-width:640px) {
  .hero h1 {
    font-size: 3rem
  }
}

@media(min-width:1024px) {
  .hero h1 {
    font-size: 3.75rem
  }
}

.hero h1 .amber {
  color: var(--brand-amber)
}

.hero p {
  margin-top: 1rem;
  font-size: 1rem;
  color: rgba(246, 249, 252, .9);
  line-height: 1.7
}

@media(min-width:640px) {
  .hero p {
    font-size: 1.125rem;
    margin-top: 1.5rem
  }
}

.hero-btns {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem
}

@media(min-width:640px) {
  .hero-btns {
    margin-top: 2rem;
    gap: 1rem
  }
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 4rem 0
}

@media(min-width:640px) {
  .section {
    padding: 6rem 0
  }
}

.section-sm {
  padding: 4rem 0
}

@media(min-width:640px) {
  .section-sm {
    padding: 5rem 0
  }
}

.bg-muted {
  background: rgba(235, 239, 244, .5)
}

.bg-muted30 {
  background: rgba(235, 239, 244, .3)
}

.bg-card {
  background: var(--card)
}

.sec-head {
  text-align: center
}

.sec-head h2 {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--foreground)
}

@media(min-width:640px) {
  .sec-head h2 {
    font-size: 2.25rem
  }
}

.sec-head p {
  margin: 1rem auto 0;
  max-width: 42rem;
  color: var(--muted-foreground)
}

/* trust bar */
.trust {
  border-bottom: 1px solid var(--border);
  background: var(--background)
}

.trust .container {
  padding-top: 2rem;
  padding-bottom: 2rem
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem
}

@media(min-width:640px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center
}

.trust-item svg {
  margin-bottom: .5rem;
  color: var(--brand-russet)
}

.trust-item span {
  font-size: .875rem;
  font-weight: 600;
  color: var(--foreground)
}

/* services grid */
.svc-grid {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr
}

@media(min-width:640px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:1024px) {
  .svc-grid.cols4 {
    grid-template-columns: repeat(4, 1fr)
  }
}

.svc-card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: .75rem;
  padding: 1.5rem;
  transition: box-shadow .2s
}

.svc-card:hover {
  box-shadow: 0 10px 30px rgba(13, 25, 54, .08)
}

.svc-ic {
  margin-bottom: 1rem;
  display: flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: .5rem;
  background: rgba(17, 31, 67, .1);
  color: var(--brand-russet)
}

.svc-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground)
}

.svc-card p {
  margin-top: .5rem;
  font-size: .875rem;
  color: var(--muted-foreground);
  line-height: 1.7
}

.center-cta {
  margin-top: 2.5rem;
  text-align: center
}

/* about preview */
.about-grid {
  display: grid;
  align-items: center;
  gap: 3rem;
  grid-template-columns: 1fr
}

@media(min-width:1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

.about-grid img {
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(13, 25, 54, .12);
  width: 100%
}

.about-grid h2 {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--foreground)
}

@media(min-width:640px) {
  .about-grid h2 {
    font-size: 2.25rem
  }
}

.about-grid .lead {
  margin-top: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7
}

.about-feats {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem
}

.about-feat {
  display: flex;
  align-items: flex-start;
  gap: .75rem
}

.about-feat .fic {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: .5rem;
  background: rgba(232, 114, 28, .2);
  color: var(--brand-russet)
}

.about-feat b {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground)
}

.about-feat span {
  font-size: .875rem;
  color: var(--muted-foreground)
}

/* seo two-col */
.seo-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr
}

@media(min-width:1024px) {
  .seo-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

.seo-grid h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--foreground)
}

@media(min-width:640px) {
  .seo-grid h2 {
    font-size: 1.875rem
  }
}

.seo-grid p {
  margin-top: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7
}

.seo-grid p strong {
  color: var(--foreground)
}

.seo-link {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--brand-russet);
  transition: color .2s
}

.seo-link:hover {
  color: var(--brand-dark)
}

/* testimonials */
.testi-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr
}

@media(min-width:640px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:1024px) {
  .testi-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.testi-card {
  position: relative;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem 1.75rem 1.75rem;
  transition: box-shadow .3s, transform .3s
}

.testi-card:hover {
  box-shadow: 0 12px 36px rgba(13, 25, 54, .1);
  transform: translateY(-4px)
}

.testi-quote {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 2.5rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(232, 114, 28, .15);
  pointer-events: none
}

.testi-stars {
  display: flex;
  gap: .125rem;
  margin-bottom: .75rem
}

.testi-stars svg {
  color: var(--brand-amber);
  flex-shrink: 0
}

.testi-card blockquote {
  font-size: .9375rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  font-style: italic
}

.testi-author {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  border-top: 1px solid var(--muted);
  padding-top: 1rem
}

.testi-avatar {
  display: flex;
  height: 2.75rem;
  width: 2.75rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-amber), var(--brand-gold));
  color: #fff;
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 700
}

.testi-author .name {
  display: block;
  font-family: var(--font-heading);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--foreground)
}

.testi-author .meta {
  display: block;
  font-size: .75rem;
  color: var(--muted-foreground);
  margin-top: .125rem
}

/* faq */
.faq-wrap {
  max-width: 56rem;
  margin: 0 auto
}

.faq-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem
}

.faq-item {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: .75rem;
  padding: 1.5rem
}

.faq-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground)
}

.faq-item p {
  margin-top: .5rem;
  font-size: .875rem;
  color: var(--muted-foreground);
  line-height: 1.7
}

/* cta band */
.cta-russet {
  background: var(--brand-russet)
}

.cta-russet .wrap {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center
}

.cta-russet h2 {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--brand-cream)
}

@media(min-width:640px) {
  .cta-russet h2 {
    font-size: 2.25rem
  }
}

.cta-russet p {
  margin: 1rem auto 0;
  max-width: 42rem;
  color: rgba(246, 249, 252, .8)
}

.cta-russet .cta-btns {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem
}

/* ---------- INNER PAGE HERO ---------- */
.page-hero {
  background: var(--brand-dark);
  padding: 4rem 0
}

@media(min-width:640px) {
  .page-hero {
    padding: 5rem 0
  }
}

.back-link {
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: rgba(246, 249, 252, .7);
  transition: color .2s
}

.back-link:hover {
  color: var(--brand-gold)
}

.page-hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--brand-cream)
}

@media(min-width:640px) {
  .page-hero h1 {
    font-size: 3rem
  }
}

.page-hero p {
  margin-top: 1rem;
  max-width: 48rem;
  font-size: 1.125rem;
  color: rgba(246, 249, 252, .8)
}

.page-hero .btn {
  margin-top: 2rem
}

/* prose */
.prose {
  max-width: 56rem;
  margin: 0 auto;
  color: var(--muted-foreground);
  line-height: 1.7
}

.prose .block {
  margin-bottom: 2rem
}

.prose h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground)
}

.prose p {
  margin-top: 1rem
}

.prose p strong {
  color: var(--foreground)
}

.check-list {
  margin-top: 1rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: var(--foreground)
}

.check-list li svg {
  margin-top: .125rem;
  flex-shrink: 0;
  color: var(--brand-amber)
}

.mini-grid {
  margin-top: 1rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr
}

@media(min-width:640px) {
  .mini-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.mini-card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: .75rem;
  padding: 1.25rem
}

.mini-card svg {
  color: var(--brand-russet)
}

.mini-card h3 {
  margin-top: .75rem;
  font-weight: 600;
  color: var(--foreground)
}

.mini-card p {
  margin-top: .25rem;
  font-size: .875rem
}

/* district / city chips */
.chip-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem
}

@media(min-width:640px) {
  .chip-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(min-width:1024px) {
  .chip-grid.cols4 {
    grid-template-columns: repeat(4, 1fr)
  }
}

.chip {
  display: flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: .5rem;
  padding: .5rem .75rem;
  font-size: .875rem;
  color: var(--foreground)
}

.chip svg {
  color: var(--brand-russet);
  flex-shrink: 0
}

.city-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem
}

@media(min-width:640px) {
  .city-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(min-width:1024px) {
  .city-grid {
    grid-template-columns: repeat(6, 1fr)
  }
}

.city {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: .5rem;
  padding: .75rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--foreground);
  transition: background .2s
}

.city:hover {
  background: var(--brand-cream)
}

/* services detail page */
.svc-detail-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr
}

@media(min-width:1024px) {
  .svc-detail-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

.svc-detail {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  transition: box-shadow .2s
}

.svc-detail:hover {
  box-shadow: 0 10px 30px rgba(13, 25, 54, .08)
}

.svc-detail .ic {
  margin-bottom: 1.5rem;
  display: flex;
  height: 3.5rem;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: .75rem;
  background: rgba(17, 31, 67, .1);
  color: var(--brand-russet)
}

.svc-detail h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--foreground)
}

.svc-detail .desc {
  margin-top: .75rem;
  color: var(--muted-foreground);
  line-height: 1.7
}

/* contact cards */
.contact-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr
}

@media(min-width:640px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:1024px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.contact-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: .75rem;
  padding: 1.5rem;
  transition: box-shadow .2s
}

.contact-card:hover {
  box-shadow: 0 10px 30px rgba(13, 25, 54, .08)
}

.contact-card .ic {
  margin-bottom: 1rem;
  display: flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: .5rem;
  background: rgba(17, 31, 67, .1);
  color: var(--brand-russet)
}

.contact-card .lbl {
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted-foreground)
}

.contact-card .val {
  margin-top: .5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground)
}

.contact-card a.val:hover {
  color: var(--brand-russet)
}

.contact-card .dsc {
  margin-top: .25rem;
  font-size: .875rem;
  color: var(--muted-foreground)
}

.contact-feature {
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(13, 25, 54, .1)
}

.contact-feature .inner {
  display: grid;
  grid-template-columns: 1fr
}

@media(min-width:1024px) {
  .contact-feature .inner {
    grid-template-columns: repeat(2, 1fr)
  }
}

.contact-feature .left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem
}

@media(min-width:640px) {
  .contact-feature .left {
    padding: 3rem
  }
}

.contact-feature h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground)
}

@media(min-width:640px) {
  .contact-feature h2 {
    font-size: 1.875rem
  }
}

.contact-feature .left p {
  margin-top: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7
}

.note-box {
  margin-top: 2rem;
  border-radius: .5rem;
  background: var(--brand-cream);
  padding: 1rem
}

.note-box .row {
  display: flex;
  align-items: flex-start;
  gap: .75rem
}

.note-box svg {
  margin-top: .125rem;
  flex-shrink: 0;
  color: var(--brand-russet)
}

.note-box .t {
  font-size: .875rem;
  font-weight: 500;
  color: var(--foreground)
}

.note-box .s {
  margin-top: .25rem;
  font-size: .75rem;
  color: var(--muted-foreground)
}

.contact-feature .right {
  position: relative;
  min-height: 300px;
  background: rgba(234, 239, 245, .5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center
}

.contact-map-right {
  padding: 0 !important;
  overflow: hidden;
  min-height: 350px !important
}

.contact-map-right iframe {
  border: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 350px
}

.contact-feature .right svg {
  color: rgba(17, 31, 67, .4)
}

.contact-feature .right .p1 {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground)
}

.contact-feature .right .p2 {
  margin-top: .5rem;
  font-size: .875rem;
  color: var(--muted-foreground)
}

/* about story + values + stats */
.story-grid {
  display: grid;
  align-items: center;
  gap: 3rem;
  grid-template-columns: 1fr
}

@media(min-width:1024px) {
  .story-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

.story-grid h2 {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--foreground)
}

.story-grid .body {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--muted-foreground);
  line-height: 1.7
}

.story-grid .body strong {
  color: var(--foreground)
}

.story-grid .body .accent {
  color: var(--brand-amber);
  font-weight: 600
}

.story-grid img {
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(13, 25, 54, .12);
  width: 100%
}

.values-grid {
  margin-top: 3rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr
}

@media(min-width:640px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

.value {
  display: flex;
  gap: 1.25rem;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: .75rem;
  padding: 1.5rem
}

.value .ic {
  display: flex;
  height: 3rem;
  width: 3rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: .5rem;
  background: rgba(17, 31, 67, .1);
  color: var(--brand-russet)
}

.value h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground)
}

.value p {
  margin-top: .5rem;
  font-size: .875rem;
  color: var(--muted-foreground);
  line-height: 1.7
}

.stats-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr
}

@media(min-width:640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

.stat {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: .75rem;
  padding: 1.5rem;
  text-align: center
}

.stat .lbl {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted-foreground)
}

.stat .val {
  margin-top: .5rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground)
}

/* ---------- FOOTER ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--brand-dark);
  color: var(--brand-cream)
}

.site-footer .container {
  padding-top: 3rem;
  padding-bottom: 3rem
}

.foot-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr
}

@media(min-width:640px) {
  .foot-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:1024px) {
  .foot-grid {
    grid-template-columns: repeat(4, 1fr)
  }
}

.foot-brand .row {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem
}

.foot-brand img {
  height: 3.5rem;
  width: 3.5rem;
  border-radius: .375rem;
  background: #fff;
  object-fit: contain;
  padding: .25rem
}

.foot-brand .bn {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -.03em
}

.foot-brand .bt {
  display: block;
  font-family: var(--font-heading);
  font-size: .5625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(246, 249, 252, .5);
  margin-top: .125rem
}

.foot-brand p {
  font-size: .875rem;
  color: rgba(246, 249, 252, .7);
  line-height: 1.7
}

.foot-col h3 {
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-size: .875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--brand-amber)
}

.foot-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  font-size: .875rem;
  color: rgba(246, 249, 252, .7)
}

.foot-col.contact ul {
  gap: .75rem
}

.foot-col a:hover {
  color: var(--brand-amber)
}

.foot-col .li-row {
  display: flex;
  align-items: flex-start;
  gap: .5rem
}

.foot-col .li-row svg {
  margin-top: .125rem;
  flex-shrink: 0;
  color: var(--brand-amber)
}

.foot-bottom {
  margin-top: 3rem;
  border-top: 1px solid rgba(246, 249, 252, .1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: .75rem;
  color: rgba(246, 249, 252, .6)
}

/* ============ MOBILE & A11Y OPTIMIZATIONS ============ */
html,
body {
  overflow-x: hidden;
  max-width: 100%
}

img,
svg {
  height: auto
}

.about-grid img,
.story-grid img {
  aspect-ratio: 1/1
}

/* minimum 44px tap targets on touch */
.btn,
.nav-desktop a.btn-call-sm,
.topbar a,
.seo-link,
.back-link {
  min-height: 44px
}

.btn {
  min-height: 48px
}

.nav-mobile a {
  min-height: 44px;
  display: flex;
  align-items: center
}

.menu-btn {
  min-height: 44px;
  min-width: 44px
}

/* focus-visible for keyboard/a11y */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--brand-amber);
  outline-offset: 2px;
  border-radius: 4px
}

/* topbar: keep on one line, no overflow on small screens */
@media(max-width:480px) {
  .topbar .container {
    font-size: .75rem
  }

  .topbar a span {
    font-weight: 600
  }

  .hero-inner {
    padding: 3rem 0
  }

  .hero h1 {
    font-size: 1.625rem
  }

  .hero p {
    font-size: .9375rem
  }

  .section,
  .section-sm {
    padding: 3rem 0
  }

  .about-feats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem
  }

  .stats-grid,
  .contact-grid {
    gap: 1rem
  }

  .hero-btns .btn {
    width: 100%;
    justify-content: center
  }

  .cta-btns .btn {
    width: 100%;
    justify-content: center
  }
}

/* tablet refinements */
@media(min-width:481px) and (max-width:768px) {
  .hero h1 {
    font-size: 2.5rem
  }
}

/* prevent button text wrap awkwardly */
.btn {
  white-space: nowrap
}

/* respect reduced motion */
@media(prefers-reduced-motion:reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important
  }
}

/* ============ WHATSAPP FLOAT & MOBILE BOTTOM BAR ============ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 1000;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .4);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(37, 211, 102, .55)
}

.mobile-bottom-bar {
  display: none
}

@media(max-width:768px) {
  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: 56px;
    box-shadow: 0 -2px 12px rgba(8, 20, 49, .15)
  }

  .mbb-call,
  .mbb-whatsapp {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    font-size: .9375rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    min-height: 56px;
    letter-spacing: .01em
  }

  .mbb-call {
    background: var(--brand-amber)
  }

  .mbb-whatsapp {
    background: #25D366
  }

  .whatsapp-float {
    display: none
  }

  body {
    padding-bottom: 56px
  }
}

/* ============ FOOTER LINKS STRIP ============ */
.foot-links {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: .85rem;
  text-align: center;
  opacity: .8
}

.foot-links a {
  color: inherit;
  text-decoration: none;
  margin: 0 .4rem
}

.foot-links a:hover {
  color: var(--brand-amber)
}

.foot-sep {
  margin: 0 1rem;
  color: rgba(255, 255, 255, .2)
}

/* ============ UTILITY ============ */
.mt-2 {
  margin-top: 2rem
}

.mt-section {
  margin-top: 1.5rem
}

.btn-russet-md {
  font-size: 1rem;
  font-weight: 600
}

/* ============ 404 PAGE ============ */
.section-404 {
  text-align: center;
  padding: 6rem 0
}

.h1-404 {
  font-size: 4.5rem;
  color: var(--foreground)
}

.h2-404 {
  margin-top: 1rem;
  font-size: 1.25rem;
  color: var(--foreground)
}

.p-404 {
  margin-top: .5rem;
  color: var(--muted-foreground)
}

.div-404-cta {
  margin-top: 1.5rem
}

/* ============ CONTACT INFO STRIP ============ */
.contact-info-strip {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center
}

.cis-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9375rem;
  color: var(--brand-dark)
}

.cis-item svg {
  color: var(--brand-amber);
  flex-shrink: 0
}

.cis-item a {
  color: var(--brand-russet);
  font-weight: 600;
  text-decoration: none
}

.cis-item a:hover {
  text-decoration: underline
}

/* ============ SVC PHOTO CARDS (2x2 grid with image header) ============ */
.svc-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem
}

@media(max-width:768px) {
  .svc-photo-grid {
    grid-template-columns: 1fr
  }
}

.svc-photo-card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 1rem;
  overflow: hidden;
  transition: box-shadow .2s;
  display: flex;
  flex-direction: column
}

.svc-photo-card:hover {
  box-shadow: 0 10px 30px rgba(13, 25, 54, .1)
}

.svc-photo-card-img {
  height: 220px;
  overflow: hidden;
  flex-shrink: 0
}

.svc-photo-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s
}

.svc-photo-card:hover .svc-photo-card-img img {
  transform: scale(1.04)
}

.svc-photo-card-body {
  padding: 1.75rem;
  flex: 1
}

.svc-photo-card-body .ic {
  margin-bottom: 1.25rem;
  display: flex;
  height: 3.5rem;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: .75rem;
  background: rgba(17, 31, 67, .1);
  color: var(--brand-russet)
}

.svc-photo-card-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--foreground)
}

@media(min-width:640px) {
  .svc-photo-card-body h2 {
    font-size: 1.375rem
  }
}

.svc-photo-card-body .desc {
  margin-top: .75rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  font-size: .9375rem
}

/* ============ HERO STATS (index) ============ */
.hero-stats {
  margin-top: 2.5rem;
  display: flex;
  gap: 0;
  flex-wrap: wrap
}

.hero-stat {
  display: flex;
  flex-direction: column;
  padding: .5rem 1.75rem .5rem 0
}

.hero-stat+.hero-stat {
  padding-left: 1.75rem;
  border-left: 1px solid rgba(246, 249, 252, .18)
}

.hs-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-amber);
  line-height: 1
}

.hs-plus {
  font-size: 1.375rem
}

.hs-lbl {
  margin-top: .3rem;
  font-size: .6875rem;
  font-weight: 500;
  color: rgba(246, 249, 252, .6);
  text-transform: uppercase;
  letter-spacing: .07em
}

@media(max-width:480px) {
  .hero-stats {
    gap: .5rem
  }

  .hero-stat {
    padding: .25rem 1.25rem .25rem 0
  }

  .hero-stat+.hero-stat {
    padding-left: 1.25rem
  }

  .hs-num {
    font-size: 1.625rem
  }
}

/* ============ STORY STATS (hakkımızda) ============ */
.story-stats {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .5rem;
  background: var(--brand-dark);
  border-radius: .875rem;
  padding: 1.25rem 1rem
}

@media(max-width:480px) {
  .story-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem
  }
}

.story-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center
}

.ss-num {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--brand-amber);
  line-height: 1
}

.ss-num sup {
  font-size: 1rem
}

.ss-lbl {
  margin-top: .3rem;
  font-size: .6875rem;
  font-weight: 600;
  color: rgba(246, 249, 252, .65);
  text-transform: uppercase;
  letter-spacing: .06em
}

/* ============ SEO PAGE IMAGE ============ */
.seo-img-block {
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 20px rgba(8, 20, 49, .12)
}

.seo-img-block img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block
}

@media(max-width:640px) {
  .seo-img-block img {
    height: 200px
  }
}

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem
}

@media(max-width:768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem
  }
}

@media(max-width:480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: .875rem
  }
}

.gallery-item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(8, 20, 49, .1);
  background: var(--brand-dark);
  position: relative
}

.gallery-item:nth-child(4) {
  grid-column: 1/span 2
}

@media(max-width:768px) {
  .gallery-item:nth-child(4) {
    grid-column: auto
  }
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .35s ease
}

@media(max-width:480px) {
  .gallery-item img {
    height: 220px
  }
}

.gallery-item:hover img {
  transform: scale(1.04)
}

.gallery-item figcaption {
  padding: .625rem 1rem .75rem;
  font-size: .8125rem;
  font-weight: 600;
  color: rgba(246, 249, 252, .85);
  background: var(--brand-dark);
  letter-spacing: .03em;
  text-transform: uppercase
}

/* ============ BLOG / BILGI MERKEZI ============ */
.blog-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.blog-card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 12px 36px rgba(13, 25, 54, 0.08);
  transform: translateY(-4px);
}

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

.blog-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-badge {
  align-self: flex-start;
  background: rgba(232, 114, 28, 0.1);
  color: var(--brand-amber);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.blog-card-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-title a:hover {
  color: var(--brand-amber);
}

.blog-card-desc {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  border-top: 1px solid var(--muted);
  padding-top: 1.25rem;
  margin-top: auto;
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-amber);
  margin-top: 1rem;
  transition: color 0.2s ease;
}

.blog-card-link:hover {
  color: var(--brand-gold);
}

.blog-card-link svg {
  transition: transform 0.2s ease;
}

.blog-card-link:hover svg {
  transform: translateX(4px);
}

.blog-post-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.875rem;
  color: rgba(246, 249, 252, 0.75);
}

.blog-post-meta-bar span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9375rem;
}

.blog-table th,
.blog-table td {
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  text-align: left;
}

.blog-table th {
  background: var(--brand-cream);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--foreground);
}

.blog-table tr:nth-child(even) {
  background: rgba(246, 249, 252, 0.5);
}

blockquote {
  border-left: 4px solid var(--brand-amber);
  padding-left: 1.25rem;
  font-style: italic;
  color: var(--foreground);
  margin: 1.5rem 0;
}