/* Karaca Marine — premium kurumsal tema */
:root {
  --km-orange: #F4A261;
  --km-navy: #0B132B;
  --km-white: #FFFFFF;
  --km-navy-2: #1a2744;
  --km-glow: rgba(244, 162, 97, 0.35);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --header-h: 88px;
  --radius: 14px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--km-white);
  background: linear-gradient(165deg, #050810 0%, var(--km-navy) 40%, #0a1228 100%);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--km-orange);
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

a:hover {
  color: #ffbf7a;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--km-orange);
  color: var(--km-navy);
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.is-scrolled {
  background: rgba(11, 19, 43, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
  .hamburger {
    display: none !important;
  }
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.75rem;
}

.nav-list a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  position: relative;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--km-orange);
  transition: width var(--transition);
}

.nav-list a:hover::after,
.nav-list a.is-active::after {
  width: 100%;
}

.nav-list a.is-active {
  color: var(--km-orange);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.btn-outline {
  border-color: var(--km-orange);
  color: var(--km-orange);
  background: transparent;
}

.btn-outline:hover {
  background: var(--km-orange);
  color: var(--km-white);
  box-shadow: 0 0 24px var(--km-glow);
}

.btn-primary {
  background: var(--km-orange);
  color: var(--km-navy);
  border-color: var(--km-orange);
}

.btn-primary:hover {
  background: #ffbf7a;
  border-color: #ffbf7a;
  color: var(--km-navy);
}

.btn-block {
  width: 100%;
}

.nav-cta {
  margin-left: 0.5rem;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--km-white);
  margin-left: auto;
  transition: transform var(--transition), opacity var(--transition);
  border-radius: 2px;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Overlay */
.site-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 16, 0.65);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 1001;
}

.site-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* Mobile drawer — sağdan sola */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 92vw);
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(180deg, var(--km-navy) 0%, #0d1528 100%);
  box-shadow: -12px 0 48px rgba(0, 0, 0, 0.5);
  z-index: 1003;
  padding: 1.25rem 1.5rem 2rem;
  transform: translateX(100%);
  transition: transform var(--transition);
  overflow-y: auto;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--km-orange);
}

.drawer-close {
  background: none;
  border: none;
  color: var(--km-white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
}

.drawer-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.drawer-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.drawer-list a {
  display: block;
  padding: 1rem 0;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.drawer-list a:hover {
  color: var(--km-orange);
}

.drawer-cta {
  margin-top: 0.5rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 1.5rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(5, 8, 16, 0.92) 0%, rgba(11, 19, 43, 0.75) 45%, rgba(5, 8, 16, 0.55) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--km-orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  text-shadow: 0 0 40px var(--km-glow);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1.25rem;
  color: var(--km-white);
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 2rem;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Sections */
.section {
  padding: 5rem 1.5rem;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--km-orange);
  margin: 0 0 1rem;
  font-weight: 700;
}

.section-sub {
  color: rgba(255, 255, 255, 0.75);
  max-width: 720px;
  margin: 0 0 2.5rem;
}

.section-sub--narrow {
  max-width: 52ch;
}

/* Bölüm çeşitliliği — aynı kart stilini tekrarlamamak için */
.section--highlights {
  background: linear-gradient(180deg, rgba(244, 162, 97, 0.06) 0%, transparent 55%);
  border-top: 1px solid rgba(244, 162, 97, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section--stats {
  padding-top: 4rem;
  padding-bottom: 4.5rem;
}

.section--service-preview {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(26, 39, 68, 0.45) 0%, transparent 55%);
}

.section--reviews {
  position: relative;
  padding-top: 4.5rem;
}

.section--reviews::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 162, 97, 0.35), transparent);
}

.section--seo {
  position: relative;
  padding-top: 4.5rem;
}

.section--seo::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 162, 97, 0.35), transparent);
}

.seo-copy__lead strong {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

.seo-copy__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .seo-copy__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
  }
}

.seo-copy__block {
  margin: 0;
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
}

.seo-copy__block h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--km-orange);
  margin: 0 0 0.65rem;
  font-weight: 700;
}

.seo-copy__block p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.94rem;
  line-height: 1.62;
}

.seo-copy__block a {
  font-weight: 600;
}

.intro-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .intro-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.intro-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.intro-card p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.88);
}

.intro-card p:last-child {
  margin-bottom: 0;
}

.intro-visual-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.intro-visual-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.intro-visual-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem 1.4rem;
  background: linear-gradient(180deg, rgba(5, 8, 16, 0) 0%, rgba(5, 8, 16, 0.88) 68%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  line-height: 1.45;
}

/* Cards grid */
.cards-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .cards-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: linear-gradient(145deg, rgba(26, 39, 68, 0.6) 0%, rgba(11, 19, 43, 0.85) 100%);
  border: 1px solid rgba(244, 162, 97, 0.15);
  border-radius: var(--radius);
  padding: 1.75rem;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 162, 97, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 24px rgba(244, 162, 97, 0.12);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--km-orange);
  margin: 0 0 0.5rem;
}

.card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.card-media {
  margin: -1.75rem -1.75rem 1rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card-media img {
  transform: scale(1.05);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(244, 162, 97, 0.12);
  color: var(--km-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.card--plain {
  padding: 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card--plain .btn {
  margin-top: 1rem;
}

.card--accent {
  border: none;
  border-left: 4px solid var(--km-orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
}

.card--accent:hover {
  background: rgba(255, 255, 255, 0.055);
  border-left-color: #ffbf7a;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.card--highlight {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border: none;
  border-left: 4px solid var(--km-orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
  overflow: hidden;
}

.card--highlight:hover {
  border-left-color: #ffbf7a;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.card--highlight .card-media {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-highlight-body {
  padding: 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Rakamlar — tek şerit bant (kutu ızgarası yerine) */
.stats-band {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(244, 162, 97, 0.22);
  background: linear-gradient(165deg, rgba(17, 28, 52, 0.55) 0%, rgba(8, 14, 28, 0.92) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.stats-band__item {
  flex: 1 1 50%;
  min-width: 140px;
  padding: 1.35rem 1.1rem;
  text-align: center;
  position: relative;
}

.stats-band__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18%;
  bottom: 18%;
  right: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(244, 162, 97, 0.35), transparent);
}

@media (min-width: 900px) {
  .stats-band__item {
    flex: 1 1 25%;
  }

  .stats-band__item:nth-child(2)::after,
  .stats-band__item:nth-child(3)::after {
    display: block;
  }
}

@media (max-width: 767px) {
  .stats-band__item {
    flex: 1 1 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .stats-band__item:not(:last-child)::after {
    display: none;
  }

  .stats-band__item:last-child {
    border-bottom: none;
  }
}

.stats-band__value {
  display: block;
  font-family: var(--font-display);
  color: var(--km-orange);
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  font-weight: 700;
  line-height: 1.2;
}

.stats-band__label {
  display: block;
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.35;
}

/* Hizmet önizleme — liste satırları (kart ızgarası yerine) */
.service-preview-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.service-preview-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem 1.25rem;
  align-items: center;
  padding: 1.35rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.service-preview-row:last-child {
  border-bottom: none;
}

.service-preview-row:hover {
  background: rgba(244, 162, 97, 0.05);
}

.service-preview-row:focus-visible {
  outline: 2px solid var(--km-orange);
  outline-offset: -2px;
  z-index: 1;
  position: relative;
}

.service-preview-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: rgba(244, 162, 97, 0.45);
  line-height: 1;
  min-width: 2.5rem;
}

.service-preview-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--km-orange);
  margin: 0 0 0.35rem;
}

.service-preview-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  line-height: 1.5;
}

.service-preview-cta {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .service-preview-row {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .service-preview-num {
    grid-row: 1 / span 2;
    align-self: start;
    padding-top: 0.15rem;
  }

  .service-preview-cta {
    grid-column: 2;
    justify-self: start;
    margin-top: 0.25rem;
  }
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  bottom: max(1rem, env(safe-area-inset-bottom));
  right: max(1rem, env(safe-area-inset-right));
  z-index: 9990;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.1rem;
  background: #25d366;
  color: #fff !important;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
  color: #fff !important;
}

.wa-float:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.wa-float__icon {
  display: flex;
  line-height: 0;
  flex-shrink: 0;
}

/* Stats */
.stats-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.stat-card {
  border-radius: var(--radius);
  border: 1px solid rgba(244, 162, 97, 0.25);
  background: linear-gradient(155deg, rgba(17, 28, 52, 0.9) 0%, rgba(10, 17, 34, 0.95) 100%);
  padding: 1.4rem 1.2rem;
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  color: var(--km-orange);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.stat-label {
  display: block;
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

/* Google yorum kartları */
.review-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 768px) {
  .review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.review-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(244, 162, 97, 0.28);
  background: linear-gradient(160deg, rgba(22, 34, 58, 0.95) 0%, rgba(10, 16, 32, 0.98) 100%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 1.25rem 1.2rem 1.15rem;
  color: var(--km-white);
  text-decoration: none;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 162, 97, 0.55);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(244, 162, 97, 0.12);
}

.section--reviews .review-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 3px solid rgba(244, 162, 97, 0.65);
  background: linear-gradient(180deg, rgba(244, 162, 97, 0.06) 0%, rgba(10, 16, 32, 0.92) 42%);
}

.section--reviews .review-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  border-top-color: var(--km-orange);
}

.review-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(244, 162, 97, 0.38) 0%, rgba(244, 162, 97, 0.12) 100%);
  border: 1px solid rgba(244, 162, 97, 0.45);
  color: var(--km-orange);
  display: grid;
  place-items: center;
  font-size: 0.88rem;
  font-weight: 700;
}

.review-meta {
  flex: 1;
  min-width: 0;
}

.review-meta strong {
  display: block;
  color: var(--km-white);
  font-size: 0.95rem;
  line-height: 1.2;
}

.review-meta span {
  display: block;
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
}

.review-badge {
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.05);
}

.review-stars {
  color: var(--km-orange);
  letter-spacing: 0.08em;
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
}

.review-text {
  flex: 1 1 auto;
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
  line-height: 1.6;
}

.review-link {
  margin-top: auto;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--km-orange);
  font-size: 0.88rem;
  font-weight: 600;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-item figure {
  margin: 0;
}

.gallery-item .img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-caption {
  padding: 0.75rem 1rem 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  min-height: 2.5rem;
}

.gallery-caption:empty {
  padding: 0.5rem;
  min-height: 0;
}

/* CTA band */
.cta-band {
  padding: 4rem 1.5rem;
  background: linear-gradient(90deg, rgba(244, 162, 97, 0.18) 0%, rgba(11, 19, 43, 0.95) 50%, rgba(5, 8, 16, 0.98) 100%);
  border-top: 1px solid rgba(244, 162, 97, 0.25);
  border-bottom: 1px solid rgba(244, 162, 97, 0.15);
}

.cta-band-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  color: var(--km-orange);
  margin: 0 0 1rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.5rem;
}

/* Page hero (inner pages) */
.page-hero {
  padding: calc(var(--header-h) + 3rem) 1.5rem 3rem;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(244, 162, 97, 0.15) 0%, transparent 55%),
    linear-gradient(180deg, #0a1228 0%, var(--km-navy) 100%);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--km-orange);
  margin: 0 0 0.75rem;
}

.page-hero p {
  margin: 0 auto;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.8);
}

/* Services page */
.service-block {
  margin-bottom: 2rem;
  padding: 2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-block h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--km-orange);
  margin: 0 0 1rem;
}

.service-block ul {
  margin: 0;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.88);
}

.service-block li {
  margin-bottom: 0.35rem;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

.contact-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card h2 {
  font-family: var(--font-display);
  color: var(--km-orange);
  margin-top: 0;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.85);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(5, 8, 16, 0.6);
  color: var(--km-white);
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--km-orange);
  box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.2);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 320px;
  background: rgba(0, 0, 0, 0.35);
}

.map-embed iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.home-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
  align-items: center;
}

.alert {
  padding: 1rem 1.25rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.alert-success {
  background: rgba(46, 160, 67, 0.2);
  border: 1px solid rgba(46, 160, 67, 0.5);
  color: #b5f0c6;
}

.alert-error {
  background: rgba(200, 60, 60, 0.2);
  border: 1px solid rgba(200, 80, 80, 0.5);
  color: #ffc9c9;
}

/* Footer */
.site-footer {
  background: #04070f;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 1.5rem 0;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1.2fr 1fr;
  }
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--km-orange);
  margin: 0 0 0.75rem;
}

.footer-nap {
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.footer-nap a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-heading {
  font-size: 1rem;
  color: var(--km-orange);
  margin: 0 0 0.75rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
  display: block;
  padding: 0.35rem 0;
}

.footer-bottom {
  padding: 1.25rem 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Mobile refinements */
@media (max-width: 768px) {
  :root {
    --header-h: 78px;
  }

  .header-inner {
    padding: 0.75rem 1rem;
  }

  .brand-logo {
    height: 40px;
  }

  .mobile-drawer {
    width: min(360px, 90vw);
    padding: 1rem 1.1rem 1.4rem;
  }

  .hero {
    min-height: 82vh;
    padding: calc(var(--header-h) + 1.25rem) 1rem 2.25rem;
  }

  .hero-lead {
    font-size: 0.98rem;
    margin-bottom: 1.25rem;
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section,
  .cta-band {
    padding: 3.25rem 1rem;
  }

  .section-sub {
    margin-bottom: 1.4rem;
  }

  .intro-grid {
    gap: 1.2rem;
  }

  .intro-card,
  .contact-card,
  .service-block,
  .card {
    padding: 1.2rem;
  }

  .card--highlight {
    padding: 0;
  }

  .card-media {
    margin: -1.2rem -1.2rem 0.9rem;
  }

  .card--highlight .card-media {
    margin: 0;
  }

  .card-highlight-body {
    padding: 1.2rem;
  }

  .review-card {
    padding: 1rem;
  }

  .review-head {
    gap: 0.55rem;
  }

  .review-avatar {
    width: 38px;
    height: 38px;
    font-size: 0.8rem;
  }

  .map-embed iframe {
    height: 280px;
  }

  .home-map-actions .btn {
    flex: 1 1 calc(50% - 0.375rem);
    min-width: 140px;
    justify-content: center;
  }

  .footer-inner {
    gap: 1.4rem;
  }

  .footer-bottom {
    padding: 1rem;
    margin-top: 1.25rem;
  }
}

@media (max-width: 480px) {
  .section-heading {
    line-height: 1.15;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-eyebrow {
    font-size: 1.05rem;
  }

  .stats-band__item {
    padding: 1.1rem 0.85rem;
  }

  .stats-band__value {
    font-size: 1.45rem;
  }

  .home-map-actions {
    flex-direction: column;
  }

  .home-map-actions .btn {
    width: 100%;
    flex: 1 1 auto;
  }
}

/* Admin minimal styles */
.admin-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.admin-nav a {
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--km-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-nav a:hover {
  border-color: var(--km-orange);
  color: var(--km-orange);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.admin-table th,
.admin-table td {
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.65rem 0.75rem;
  text-align: left;
}

.admin-table th {
  background: rgba(244, 162, 97, 0.12);
  color: var(--km-orange);
}

.admin-form input[type="text"],
.admin-form input[type="email"],
.admin-form input[type="password"],
.admin-form textarea,
.admin-form select {
  width: 100%;
  max-width: 520px;
  padding: 0.6rem 0.75rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(5, 8, 16, 0.6);
  color: var(--km-white);
  margin-bottom: 0.75rem;
}

.btn-sm {
  padding: 0.35rem 0.75rem;
  font-size: 0.85rem;
}

.text-muted {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
}
