/* CSS Reset & Variables */
:root {
  --ink: #0a0a09;
  --ash: #121210;
  --bone: #f5f2eb;
  --smoke: #a6a092;
  --gold: #c29a6b;
  --gold-dark: #8e6840;
  --gold-rgb: 194, 154, 107;
  --line: rgba(194, 154, 107, 0.15);
  
  --serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', 'DM Sans', Arial, sans-serif;
  --mono: 'DM Mono', monospace;
  
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  overflow-x: hidden;
}

body {
  background: var(--ink);
  color: var(--bone);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Skip link for accessibility */
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  background: var(--gold);
  color: var(--ink);
  padding: 10px 20px;
  z-index: 9999;
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  transition: top 0.3s ease;
}
.skip-link:focus {
  top: 20px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--ink);
}
::-webkit-scrollbar-thumb {
  background: var(--ash);
  border: 2px solid var(--ink);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* Typography Helpers */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* Gold Elements */
.gold-text {
  color: var(--gold);
}

/* Button Component */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.button-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 4px 15px rgba(194, 154, 107, 0.15);
}
.button-primary:hover {
  background: var(--bone);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 242, 235, 0.2);
}

.button-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.button-outline:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(194, 154, 107, 0.15);
}

/* Icons */
.icon {
  display: inline-block;
  vertical-align: middle;
}

/* Header Topbar */
.topbar {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 9, 0.8);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
}

.topbar.scrolled {
  background: rgba(10, 10, 9, 0.95);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  height: 70px;
}

.topbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.95);
  transition: var(--transition);
}

.topbar.scrolled .logo-img {
  height: 40px;
}

.wordmark {
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.wordmark span {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: var(--smoke);
  margin-top: 3px;
}

.wordmark .tagline {
  font-family: var(--mono);
  font-size: 0.45rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-top: 5px;
}

.topbar nav {
  display: flex;
  gap: 2.5rem;
}

.topbar nav a {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--smoke);
}

.topbar nav a:hover {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bone);
  transition: var(--transition);
}

/* App Container Layout */
.app-container {
  display: block;
  margin-top: var(--header-height);
  width: 100%;
}

/* Main Content Area */
.main-content {
  width: 100%;
}

/* General Section Headings & Badges */
.section-badge {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 5px;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-subtext {
  color: var(--smoke);
  max-width: 600px;
  font-size: 1rem;
  margin-bottom: 3.5rem;
  font-weight: 300;
}

.representative-disclosure {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--smoke);
  opacity: 0.5;
  margin-top: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* SECTION 01: HERO */
.hero {
  height: calc(100vh - var(--header-height));
  min-height: 600px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 9, 0.95) 0%, rgba(10, 10, 9, 0.8) 40%, rgba(10, 10, 9, 0.3) 70%, rgba(10, 10, 9, 0.1) 100%),
              linear-gradient(0deg, rgba(10, 10, 9, 0.8) 0%, transparent 30%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 8%;
  max-width: 780px;
}

.hero-content .eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.hero .subtitle {
  font-family: var(--sans);
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero .lede {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--smoke);
  margin-bottom: 2.5rem;
  max-width: 440px;
}

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

.image-note {
  position: absolute;
  right: 4%;
  bottom: 40px;
  z-index: 3;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--smoke);
  opacity: 0.6;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  right: 4%;
  bottom: 80px;
  z-index: 3;
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--gold);
  animation: bounce 2s infinite;
}

/* TRUST BAR */
.trust-bar {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2.5rem 2%;
  background: var(--ash);
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 180px;
}

.trust-val {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 5px;
}

.trust-lbl {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--smoke);
}

/* SECTION 02: MARKA HİKAYESİ */
.story-section {
  padding: 8vw 6% 6vw;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4vw;
}

.story-left h2 {
  font-size: clamp(2rem, 3.5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.02em;
}

.story-right p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--smoke);
  margin-bottom: 2rem;
}

.story-right .signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--gold);
  opacity: 0.8;
}

.wide-photo-wrapper {
  position: relative;
  width: 100%;
  border: 1px solid var(--line);
  padding: 8px;
  background: var(--ash);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.wide-photo-wrapper img {
  width: 100%;
  display: block;
  aspect-ratio: 21/9;
  object-fit: cover;
}

/* SECTION 03: USTALIK SÜRECİ */
.process-section {
  padding: 8vw 6%;
  background: var(--ash);
  border-bottom: 1px solid var(--line);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}

.process-card {
  background: var(--ink);
  border: 1px solid var(--line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.process-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 10px 25px rgba(194, 154, 107, 0.1);
}

.process-card .card-num {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.process-card .img-wrapper {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.process-card .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.process-card:hover .img-wrapper img {
  transform: scale(1.05);
}

.process-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 0.85rem;
  color: var(--smoke);
  line-height: 1.5;
}

/* SECTION 04: ÜRÜN KATEGORİLERİ */
.categories-section {
  padding: 8vw 6%;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.category-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid var(--line);
  display: block;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.category-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10,10,9,0.9) 0%, rgba(10,10,9,0.3) 60%, transparent 100%);
  z-index: 2;
  transition: var(--transition);
}

.category-card .card-info {
  position: absolute;
  bottom: 24px;
  left: 20px;
  right: 20px;
  z-index: 3;
}

.category-card h3 {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
  color: var(--bone);
}

.category-card .view-link {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  opacity: 0;
  transform: translateY(10px);
  display: block;
  transition: var(--transition);
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card:hover .card-overlay {
  background: linear-gradient(0deg, rgba(194, 154, 107, 0.4) 0%, rgba(10,10,9,0.5) 80%);
}

.category-card:hover .view-link {
  opacity: 1;
  transform: translateY(0);
}

/* SECTION 05: NEDEN BEŞEVLER KASABI? */
.why-section {
  padding: 8vw 6%;
  background: var(--ash);
  border-bottom: 1px solid var(--line);
}

.why-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5vw;
  border: 1px solid var(--line);
  background: var(--ink);
  overflow: hidden;
}

.why-left {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 400px;
}

.why-image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 70%, var(--ink) 100%);
}

.why-right {
  padding: 60px;
}

.why-right h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 2rem;
}

.badge-row {
  display: flex;
  gap: 20px;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 25px;
}

.value-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--ash);
  padding: 10px 18px;
  border: 1px solid var(--line);
}

.value-badge span {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.badge-icon {
  color: var(--gold);
  display: flex;
  align-items: center;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-list li {
  display: flex;
  gap: 20px;
  align-items: start;
}

.why-list li .check-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
}

.why-list h4 {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 5px;
}

.why-list p {
  font-size: 0.88rem;
  color: var(--smoke);
  line-height: 1.5;
}

/* SECTION 06: ÖNE ÇIKAN ÜRÜNLER (SLIDER) */
.featured-section {
  padding: 8vw 6%;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.slider-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.slider-container {
  flex-grow: 1;
  overflow: hidden;
}

.slide {
  display: none;
  width: 100%;
}

.slide.active {
  display: block;
}

.slide-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4vw;
  align-items: center;
}

.slide-text {
  padding-right: 20px;
}

.slide-text h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.9;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.slide-text p {
  color: var(--smoke);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.slide-img {
  border: 1px solid var(--line);
  padding: 8px;
  background: var(--ash);
}

.slide-img img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.slider-btn {
  background: var(--ash);
  border: 1px solid var(--line);
  color: var(--gold);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 50%;
  flex-shrink: 0;
  z-index: 10;
}

.slider-btn:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(194, 154, 107, 0.2);
}

.prev-btn {
  margin-right: 20px;
}

.next-btn {
  margin-left: 20px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 3rem;
}

.slider-dots .dot {
  width: 8px;
  height: 8px;
  background: var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots .dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* SECTION 07: SAYILARLA BEŞEVLER */
.stats-section {
  padding: 6vw 6%;
  background: var(--ash);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.stat-card {
  background: var(--ink);
  border: 1px solid var(--line);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(194, 154, 107, 0.1);
}

.stat-card .stat-number {
  font-family: var(--serif);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-card .stat-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--smoke);
}

/* SECTION 08: GALERİ */
.gallery-section {
  padding: 8vw 6%;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-caption {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 9, 0.88);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.9);
  transition: var(--transition);
  border: 1px solid var(--gold);
  margin: 15px;
}

.gallery-caption::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-top: 10px;
  transform: scaleX(0);
  transition: var(--transition);
}

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

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: scale(1);
}

.gallery-item:hover .gallery-caption::after {
  transform: scaleX(1);
}

/* SECTION 09: INSTAGRAM */
.instagram-section {
  padding: 8vw 6%;
  background: var(--ash);
  border-bottom: 1px solid var(--line);
}

.instagram-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  gap: 2rem;
}

.instagram-header h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.instagram-header p {
  color: var(--smoke);
  max-width: 500px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.instagram-card {
  background: var(--ink);
  border: 1px solid var(--line);
  padding: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.media-container {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #000;
}

.media-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bone);
  opacity: 0.8;
  transition: var(--transition);
  z-index: 2;
}

.instagram-card:hover .media-container img {
  transform: scale(1.05);
}

.instagram-card:hover .video-overlay {
  background: rgba(194, 154, 107, 0.3);
  opacity: 1;
  color: var(--gold);
}

.card-caption {
  padding: 12px 6px 6px;
  font-size: 0.75rem;
  color: var(--smoke);
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* SECTION 10: İLETİŞİM / SİPARİŞ */
.contact-section {
  padding: 8vw 6%;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5vw;
  align-items: center;
}

.contact-left h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  margin-bottom: 3rem;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-details li {
  display: flex;
  gap: 20px;
  align-items: start;
}

.detail-icon {
  width: 44px;
  height: 44px;
  background: var(--ash);
  border: 1px solid var(--line);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.detail-lbl {
  display: block;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--smoke);
  margin-bottom: 3px;
}

.detail-val {
  font-size: 1.15rem;
  color: var(--bone);
  font-style: normal;
}

a.detail-val:hover {
  color: var(--gold);
}

.detail-val .note {
  font-size: 0.7rem;
  color: var(--gold);
  opacity: 0.7;
  font-family: var(--mono);
  display: inline-block;
  margin-left: 5px;
}

.contact-right {
  border: 1px solid var(--line);
  padding: 8px;
  background: var(--ash);
  position: relative;
}

.contact-right img {
  width: 100%;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* SECTION 10 (Cont.): FOOTER */
.footer {
  padding: 6vw 6% 3vw;
  background: #070706;
  border-top: 1px solid var(--line);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5vw;
  padding-bottom: 4vw;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand .tagline {
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-top: 6px;
}

.footer-brand .desc {
  margin-top: 1.5rem;
  color: var(--smoke);
  font-size: 0.85rem;
  max-width: 280px;
  line-height: 1.5;
}

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--smoke);
}

.footer-col a:hover {
  color: var(--gold);
  transform: translateX(3px);
}

.footer-col .addr {
  font-size: 0.85rem;
  color: var(--smoke);
  line-height: 1.4;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom .copyright {
  font-size: 0.75rem;
  color: var(--smoke);
  opacity: 0.7;
}

.footer-bottom .disclaimer {
  font-size: 0.65rem;
  font-family: var(--mono);
  color: var(--smoke);
  opacity: 0.4;
}

.footer-bottom .credits {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--smoke);
}

.footer-bottom .credit-link {
  color: var(--gold);
  text-decoration: underline;
  transition: var(--transition);
}

.footer-bottom .credit-link:hover {
  color: var(--bone);
}

/* VIDEO MODAL FOR REELS */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.video-modal.active {
  display: flex;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,9,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  z-index: 10;
  width: 90%;
  max-width: 440px;
  aspect-ratio: 9/16;
  background: #000;
  border: 1px solid var(--line);
  box-shadow: 0 25px 50px rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--bone);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--gold);
}

/* KEYFRAMES */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

/* RESPONSIVE LAYOUT BREAKPOINTS */



/* Tablets and Mobile Layouts */
@media (max-width: 700px) {
  .app-container {
    margin-top: var(--header-height);
  }
  
  .topbar nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 9, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: translateY(-100%);
    transition: var(--transition);
    z-index: 999;
  }
  
  .topbar nav.open {
    transform: translateY(0);
  }

  .topbar nav a {
    font-size: 1.8rem;
    font-family: var(--serif);
    letter-spacing: 0.05em;
    color: var(--bone);
  }
  
  .menu-toggle {
    display: flex;
  }
  
  /* Hamburguer animation when open */
  .menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .topbar-actions {
    margin-left: auto;
    margin-right: 20px;
  }

  /* Section grids to 1 column and custom swiping behaviors */
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding: 10px 0 20px;
    -webkit-overflow-scrolling: touch;
  }
  
  .process-card {
    flex: 0 0 240px;
    scroll-snap-align: start;
  }

  .categories-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding: 10px 0 20px;
    -webkit-overflow-scrolling: touch;
  }

  .category-card {
    flex: 0 0 180px;
    height: 240px;
    scroll-snap-align: start;
  }
  
  .why-container {
    grid-template-columns: 1fr;
  }
  
  .why-left {
    height: 300px;
  }

  .why-right {
    padding: 30px 20px;
  }

  .badge-row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .slider-wrapper {
    position: relative;
    display: block;
    width: 100%;
  }

  .slider-container {
    width: 100%;
    min-width: 0;
  }

  .slide-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 45px;
  }
  
  .slide-text {
    padding-right: 0;
    text-align: center;
    width: 100%;
  }
  
  .slide-text h2 {
    font-size: clamp(2rem, 7vw, 2.5rem);
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
  }

  .slide-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    z-index: 10;
    background: rgba(18, 18, 16, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

  .prev-btn {
    left: 0;
  }

  .next-btn {
    right: 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding: 10px 0 20px;
    -webkit-overflow-scrolling: touch;
  }

  .instagram-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
  }

  /* Custom scrollbar rules for swiping tracks */
  .process-grid::-webkit-scrollbar,
  .categories-grid::-webkit-scrollbar,
  .instagram-grid::-webkit-scrollbar {
    height: 4px;
  }

  .process-grid::-webkit-scrollbar-track,
  .categories-grid::-webkit-scrollbar-track,
  .instagram-grid::-webkit-scrollbar-track {
    background: transparent;
  }

  .process-grid::-webkit-scrollbar-thumb,
  .categories-grid::-webkit-scrollbar-thumb,
  .instagram-grid::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .contact-right {
    order: -1;
  }

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

/* Small Mobiles */
@media (max-width: 500px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .button {
    width: 100%;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .badge-row {
    flex-direction: column;
    gap: 10px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .instagram-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* SECTION 04b: GÜVEÇ */
.guvec-section {
  padding: 8vw 6%;
  background: var(--ink);
  border-bottom: 1px solid var(--line);
}

.guvec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 2.5rem;
}

.guvec-card {
  background: var(--ash);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.guvec-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 10px 25px rgba(194, 154, 107, 0.15);
}

.guvec-img-wrapper {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.guvec-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.guvec-card:hover .guvec-img-wrapper img {
  transform: scale(1.05);
}

.guvec-card-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.guvec-card-info h3 {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.guvec-card-info p {
  color: var(--smoke);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.guvec-card-info .button {
  align-self: flex-start;
  margin-top: auto;
}

@media (max-width: 700px) {
  .guvec-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding: 10px 0 20px;
    -webkit-overflow-scrolling: touch;
  }

  .guvec-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
  }

  .guvec-card-info {
    padding: 16px;
  }

  .guvec-card-info h3 {
    font-size: 1.15rem;
  }

  .guvec-card-info p {
    font-size: 0.85rem;
    margin-bottom: 15px;
  }

  .guvec-grid::-webkit-scrollbar {
    height: 4px;
  }

  .guvec-grid::-webkit-scrollbar-track {
    background: transparent;
  }

  .guvec-grid::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
  }
}

/* SECTION 08b: MÜŞTERİ YORUMLARI */
.reviews-section {
  padding: 8vw 0;
  background: var(--ash);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.reviews-marquee-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 2rem;
}

.reviews-marquee {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollMarquee 45s linear infinite;
}

.reviews-marquee.reverse {
  animation: scrollMarqueeReverse 45s linear infinite;
}

.reviews-marquee-wrapper:hover .reviews-marquee {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollMarqueeReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.review-card {
  width: 320px;
  background: var(--ink);
  border: 1px solid var(--line);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.reviewer-info h4 {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bone);
  margin-bottom: 2px;
}

.reviewer-meta {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--smoke);
  opacity: 0.8;
}

.review-stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.review-text {
  font-size: 0.85rem;
  color: var(--smoke);
  line-height: 1.5;
  margin-bottom: 12px;
  flex-grow: 1;
}

.review-footer {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--gold-dark);
  text-align: right;
}

/* Gallery Image Lightbox Modal */
.image-lightbox-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1200;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.image-lightbox-modal .modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 9, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.image-lightbox-modal .modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  aspect-ratio: auto;
  background: transparent;
  border: none;
  box-shadow: none;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-lightbox-modal.active .modal-content {
  transform: scale(1);
}

.image-lightbox-modal .lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 12;
}

.image-lightbox-modal .lightbox-close:hover {
  color: var(--bone);
  transform: scale(1.1);
}

.image-lightbox-modal img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border: 1px solid var(--line);
  padding: 8px;
  background: var(--ash);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.image-lightbox-modal .lightbox-caption {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--gold);
  text-align: center;
  margin-top: 15px;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Accessibility: Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  .scroll-cue {
    animation: none;
  }
  
  *, .button, .nav-item, .category-card img, .process-card, .gallery-item img, .slider-btn {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }

  .reviews-marquee {
    animation: none !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    justify-content: center !important;
    padding: 0 6% !important;
  }

  .image-lightbox-modal, .image-lightbox-modal .modal-content {
    transition: none !important;
    transform: none !important;
  }
}
