:root {
  --bg: #0a0a09;
  --panel: #131210;
  --panel-2: #1a1815;
  --line: #2d2a25;
  --text: #f1ece0;
  --text-dim: #9a968a;
  --teal: #388b9d;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
}
.display {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
}
.serif {
  font-family: "Playfair Display", serif;
}
.mono {
  font-family: "IBM Plex Mono", monospace;
}
a {
  color: inherit;
}

.layout {
  display: flex;
  min-height: 100vh;
}

/* LEFT — sticky portrait, persists through Home / About / Services / Portfolio */
.left-wrap {
  position: relative;
  width: 36%;
  flex-shrink: 0;
}
.left-photo {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  background:
    linear-gradient(200deg, rgba(10, 10, 9, 0.15), rgba(10, 10, 9, 0.55) 75%),
    url("../images/person1.webp");
  background-size: cover;
  background-position: center 70%;
}
.left-photo .tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(241, 236, 224, 0.35);
}
.mobile-hero-photo {
  display: none;
}

.right {
  flex: 1;
  min-width: 0;
}

nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 10, 9, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand svg {
  width: 22px;
  height: 19px;
}
.brand span {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.14em;
}
.navlinks {
  display: flex;
  gap: 28px;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: var(--text-dim);
}
.navlinks a {
  text-decoration: none;
}
.navlinks a:hover {
  color: var(--teal);
}

section {
  padding: 70px 48px;   /* 100px yerine 70px */
  border-bottom: 1px solid var(--line);
}
.flank {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.flank.center {
  justify-content: center;
}
.flank .rule {
  width: 38px;
  height: 1px;
  background: var(--line);
}
.flank span {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--teal);
  text-transform: uppercase;
}
/* HOME */
#home {
  position: relative;
  padding-top: 80px;
}
.badge {
  position: absolute;
  top: 78px;
  right: 52px;
  width: 170px;
  height: 170px;
}
.badge text {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9.6px;
  letter-spacing: 0.06em;
  fill: var(--text-dim);
}
.badge .ring {
  animation: spin 18s linear infinite;
  transform-origin: 65px 65px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

#home .name {
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
  font-size: clamp(30px, 6.2vw, 72px);
  color: var(--text);
}

#home .name .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

#home .name .letter.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  #home .name .letter {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.founder-line {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin: 18px 0 0;
}

.bio {
  max-width: 440px;
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.75;
  margin: 14px 0 18px;
}
#home .bio {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 15.5px;
}
.bio-quote {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.5;
  color: var(--text);
  max-width: 400px;
  margin: 0 0 22px;
}

.booking-status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}

.booking-status .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(56, 139, 157, 0.18);
  display: inline-block;
  flex-shrink: 0;
}

.booking-status span:last-child {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--teal);
  text-transform: uppercase;
}

.tagline {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  color: var(--text-dim);
  margin: 0 0 28px;
}

@media (max-width: 640px) {
   section {
    padding: 32px 20px;
  }
  #home .name {
    font-size: clamp(26px, 9vw, 38px);
  }
  .bio-quote {
    font-size: 16.5px;
    max-width: 100%;
  }
  .booking-status span:last-child {
    font-size: 9.5px;
    letter-spacing: 0.08em;
  }
  .tagline {
    font-size: 15.5px;
  }
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 14px 26px;
  text-decoration: none;
  transform: rotate(-1.5deg);
  transition:
    transform 0.25s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
  font-family: "Poppins", sans-serif;
  border: none;
  background: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.btn:hover {
  transform: rotate(0deg);
}

.btn-solid {
  background: var(--teal);
  color: var(--bg);
  transition: filter 0.3s ease;
}
.btn-solid:hover {
  filter: brightness(1.12);
}
.btn-ghost {
  border: 1px solid var(--text);
  color: var(--text);
  transition:
    border-color 0.3s ease,
    color 0.3s ease;
}
.btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* ABOUT */
#about h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 500;
  margin-bottom: 24px;
}
#about p {
  max-width: 560px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 16px;
}

/* SERVICES */
.svc-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--panel);
  padding: 44px 22px;
  text-align: center;
  border-radius: 10px;

  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  transition:
    background 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
}
.svc-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
}

.svc-icon {
  width: 64px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.svc-icon svg {
  width: 34px;
  height: 34px;
  color: var(--text-dim);
  transition: color 0.3s ease;
}
.svc-card h3 {
  font-family: "Fraunces", serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text);
  transition: color 0.3s ease;
}
.svc-card p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.75;
}
.svc-card:hover {
  background: var(--panel-2);
}
.svc-card:hover .svc-icon svg {
  color: var(--teal);
}

/* PORTFOLIO */
.filter-row {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  font-size: 15px;

  color: var(--text-dim);
  font-family: "Poppins", sans-serif;
  flex-wrap: wrap;
}
.filter-row span.active {
  color: var(--teal);
}
.filter-row .dot {
  color: var(--line);
}
.filter-row span[data-filter] {
  cursor: pointer;
}
.filter-row span[data-filter]:hover {
  color: var(--text);
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.g-empty {
  grid-column: 1 / -1;
  padding: 48px 0;
  text-align: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}
.g-tile {
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.g-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 9, 0.15) 0%,
    rgba(10, 10, 9, 0.6) 100%
  );
  mix-blend-mode: multiply;
}
.g-tile .cap {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: rgba(241, 236, 224, 0.7);
  opacity: 0;
  transition: opacity 0.2s;
  position: relative;
  z-index: 2;
}
.g-tile:hover .cap {
  opacity: 1;
}
.g-tile:hover .tint {
  opacity: 0.55;
}
.g-tile .tint {
  position: absolute;
  inset: 0;
  background: var(--bg);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.g-tile {
  transition: box-shadow 0.3s ease;
}
/* .g-tile:hover {
  box-shadow: inset 0 0 0 1px var(--teal);
} */

.view-all {
  text-align: center;
  margin-top: 34px;
}
.view-all a {
  color: var(--teal);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-decoration: none;
}

/* BOOKING */
#booking {
  border-bottom: none;
}
.booking-wrap {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}
.booking-form {
  flex: 1;
  min-width: 280px;
}
.field {
  width: 100%;
  background: var(--panel);
  border: 1px solid rgba(241, 236, 224, 0.28);
  color: var(--text);
  padding: 18px 20px;
  font-size: 15px;
  margin-bottom: 18px;
  font-family: "Inter", sans-serif;
  outline: none;
  transition: border-color 0.2s ease;
}
.field:focus,
.field:focus-visible {
  outline: none;
  border-color: var(--teal);
}
.field::placeholder {
  color: var(--text-dim);
}
input[type="date"].field::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(1.3);
  opacity: 0.85;
  cursor: pointer;
  padding: 4px;
}
input[type="date"].field::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}
input[type="date"].field {
  color-scheme: dark;
}
textarea.field {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
  font-size: 15px;
}
#booking-submit {
  padding: 18px 32px;
  font-size: 14px;
}

/* Custom dropdown — replaces native <select> for full style control */
.custom-select {
  position: relative;
  margin-bottom: 12px;
}
.custom-select-trigger {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 13px 14px;
  font-size: 13px;
  font-family: "Inter", sans-serif;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: border-color 0.2s ease;
  outline: none;
}
.custom-select-trigger:focus,
.custom-select-trigger:focus-visible {
  outline: none;
  border-color: var(--teal);
}
.custom-select-trigger .custom-select-label {
  color: var(--text-dim);
}
.custom-select.has-value .custom-select-trigger .custom-select-label {
  color: var(--text);
}
.custom-select-trigger:hover,
.custom-select.open .custom-select-trigger {
  border-color: var(--teal);
}
.custom-select-arrow {
  color: var(--text-dim);
  flex-shrink: 0;
  margin-left: 10px;
  transition: transform 0.2s ease;
}
.custom-select.open .custom-select-arrow {
  transform: rotate(180deg);
}
.custom-select-options {
  list-style: none;
  margin: 0;
  padding: 6px 0;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 20;
  background: #0a0a09;
  border: 1px solid var(--line);
  max-height: 280px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}
.custom-select-options::-webkit-scrollbar {
  width: 6px;
}
.custom-select-options::-webkit-scrollbar-track {
  background: transparent;
}
.custom-select-options::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 3px;
}
.custom-select-options::-webkit-scrollbar-thumb:hover {
  background: var(--text-dim);
}
.custom-select.open .custom-select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.custom-select-options li {
  padding: 11px 14px;
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  transition:
    background 0.12s ease,
    color 0.12s ease;
}
.custom-select-options li:hover,
.custom-select-options li.active {
  background: var(--teal);
  color: var(--bg);
}

.booking-info {
  flex: 1;
  min-width: 240px;
  color: var(--text-dim);
  font-size: 13.5px;
  line-height: 2;
}
.booking-info b {
  color: var(--text);
  display: block;
  margin-bottom: 6px;
  font-family: "Fraunces", serif;
  font-size: 16px;
}
.contact-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 28px 0;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-item svg {
  width: 22px;
  height: 22px;
  color: var(--text);
  margin-bottom: 4px;
}
.contact-value {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
}
.contact-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.contact-note {
  color: var(--text-dim);
  font-size: 13px;
  margin: 0;
}

footer {
  padding: 44px 48px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-dim);
  font-size: 11.5px;
}
footer .fbrand {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  color: var(--text);
  font-size: 13px;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

@media (max-width: 900px) {
  .left-wrap {
    display: none;
  }
  .badge {
    display: none;
  }
  .svc-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .custom-select-options {
    max-height: 200px;
  }
  .custom-select-options li {
    padding: 9px 14px;
  }

  /* Full-width hero photo banner right under the nav, mobile only */

  .mobile-hero-photo {
    display: block;
    width: 100%;
    height: auto;
  }

  /* Portfolio becomes a swipeable slider on mobile */
  .grid {
    display: flex;
    grid-template-columns: unset;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    margin: 0 -24px;
    padding: 0 24px 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .grid::-webkit-scrollbar {
    display: none;
  }
  .g-tile {
    flex: 0 0 80%;
    scroll-snap-align: center;
    aspect-ratio: 4/5;
  }
  .filter-row {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .filter-row::-webkit-scrollbar {
    display: none;
  }

  section {
    padding: 37px 24px;
  }
  nav {
    padding: 18px 24px;
  }
  .navlinks {
    display: none;
  }

  #home {
    padding-top: 24px;
  }
}

/* ---------------------------------------------
   Loading intro — plays once per session, then
   reveals the site. Eye "blinks open" from the
   real logo mark.
--------------------------------------------- */
#loading-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0a0a09;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}
#loading-intro.intro-hidden {
  opacity: 0;
  pointer-events: none;
}
#loading-intro.intro-skip {
  transition: none;
  opacity: 0;
  pointer-events: none;
}
#intro-logo-wrap {
  width: 220px;
  overflow: hidden;
  clip-path: inset(48% 0 48% 0);
  transform: scale(0.94);
  opacity: 0;
  animation:
    introFadeIn 0.3s ease forwards,
    introBlinkOpen 0.9s cubic-bezier(0.2, 0.9, 0.3, 1) 0.3s forwards;
}
#intro-logo {
  display: block;
  width: 100%;
  height: auto;
}
@keyframes introFadeIn {
  to {
    opacity: 1;
  }
}
@keyframes introBlinkOpen {
  0% {
    clip-path: inset(48% 0 48% 0);
    transform: scale(0.94);
  }
  65% {
    clip-path: inset(0% 0 0% 0);
    transform: scale(1.03);
  }
  100% {
    clip-path: inset(0% 0 0% 0);
    transform: scale(1);
  }
}
body.intro-active {
  overflow: hidden;
}

/* ---------------------------------------------
   Mobile hamburger menu
--------------------------------------------- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 50;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  display: block;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(10, 10, 9, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  color: var(--text);
  font-family: "Fraunces", serif;
  font-size: 22px;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.mobile-menu a:hover {
  color: var(--teal);
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }
}

.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 48px;
  font-weight: 200;
  line-height: 1;
  cursor: pointer;
  z-index: 60;
}

/* Eye icon on hover + click-to-enlarge lightbox */
.g-tile {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.view-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(10, 10, 9, 0.35);
  border: 1px solid rgba(241, 236, 224, 0.45);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  pointer-events: none;
  z-index: 2;
}
.g-tile:hover .view-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.g-tile.touch-active .view-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.g-tile.touch-active .tint {
  opacity: 0.55;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 10, 9, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: var(--text);
  font-size: 42px;
  font-weight: 200;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 900px) {
  .view-icon {
    display: none;
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  position: relative;
  overflow: hidden;
  background: #164a52;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.price-card.mid {
  background: #1c7480;
}

.price-card .ghost {
  position: absolute;
  top: 18px;
  left: 26px;
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: 38px;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

.price-card .card-top {
  padding: 46px 28px 0;
  flex: 1;
}

.price-card h3 {
  position: relative;
  font-family: "Fraunces", serif;
  color: #fff;
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 14px;
}
.price-card .price {
  font-family: "Fraunces", serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4px;
}
.price-card .desc {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  margin-bottom: 22px;
}
.price-card ul {
  list-style: none;
  margin-bottom: 26px;
}
.price-card li {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 8px;
}
.price-card li:first-child {
  border-top: none;
}
.price-card li::before {
  content: "—";
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}
.price-card .card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  background: rgba(0, 0, 0, 0.18);
}
.price-card .card-bottom .btn {
  transform: none;
  padding: 12px 22px;
}

.inquire-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  border: none;
  color: #fff;
}
.inquire-btn:hover {
  color: #fff;
  border: none;
}
.inquire-btn .arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}
.inquire-btn:hover .arrow {
  transform: translateX(6px) scale(1.4);
}
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card .ghost {
    font-size: 26px;
    top: 14px;
    left: 20px;
  }
  .price-card .card-top {
    padding: 34px 22px 0;
  }
  .price-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
  }
  .price-card .card-bottom {
    padding: 16px 22px;
  }
}

/* ---------------------------------------------
   PAGE HEADER — portfolio.html gibi ayrı sayfalarda
   navbar altında: başlık + breadcrumb solda,
   bizim dönen eye-logo rozeti sağda.
--------------------------------------------- */
.page-header {
  position: relative;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  padding: 70px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}

.page-header-title {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.page-header-title h1 {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 4.6vw, 52px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: rgba(241, 236, 224, 0.18);
  margin-bottom: 0;
  white-space: nowrap;
}
.page-header-title .rule {
  height: 1px;
  width: 90px;
  background: var(--line);
  flex-shrink: 0;
}
.breadcrumb {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a {
  text-decoration: none;
  color: var(--text-dim);
  transition: color 0.2s ease;
}
.breadcrumb a:hover {
  color: var(--teal);
}
.breadcrumb .sep {
  color: var(--line);
}
.breadcrumb .current {
  color: var(--teal);
}

/* page-header içindeki rozet: absolute değil, normal akışta sağda */
.page-header .badge {
  position: relative;
  top: auto;
  right: auto;
  width: 150px;
  height: 150px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .page-header {
    flex-direction: column;
    align-items: flex-start; /* ← sola yaslı, webdeki gibi */
    gap: 14px;
    padding: 50px 24px;
  }
  .page-header .badge {
    display: none !important; /* ← daire mobilde kalksın */
  }
  /* h1 ve .rule için ayrı bir kural YOK — webdeki (.page-header-title h1)
     stili aynen mobilde de kullanılıyor: soluk, uppercase, yanında çizgi */
}
@media (max-width: 900px) {
  .filter-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    white-space: nowrap;
    gap: 14px;
  }
  .filter-row span {
    flex-shrink: 0;
  }
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 10, 9, 0.4);
  border: 1px solid rgba(241, 236, 224, 0.35);
  color: var(--text);
  font-size: 34px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
  z-index: 210;
}
.lightbox-nav:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.lightbox-prev {
  left: 24px;
}
.lightbox-next {
  right: 24px;
}

@media (max-width: 700px) {
  .lightbox-nav {
    width: 42px;
    height: 42px;
    font-size: 26px;
  }
  .lightbox-prev {
    left: 8px;
  }
  .lightbox-next {
    right: 8px;
  }
}
