/* Lotus Çiçek Akademi — global styles */
:root {
  --cream: #fffdf8;
  --white: #ffffff;
  --ink: #1a1a1f;
  --ink-soft: #3d3d45;
  --mist: #f4f0ea;
  --accent: #e85d2c;
  --accent-deep: #c94a1f;
  --accent-light: #ff9a6b;
  --gold: #f4b942;
  --leaf: #2d5a45;
  --leaf-light: #4a8f6f;
  --shadow: rgba(26, 26, 31, 0.08);
  --shadow-lg: rgba(26, 26, 31, 0.12);
  --radius: 1rem;
  --radius-lg: 1.75rem;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --max: 72rem;
  --ease: 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: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body > main {
  flex: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 93, 44, 0.12);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.logo-link:hover {
  color: inherit;
}

.logo-svg {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease);
}

.logo-link:hover .logo-svg {
  transform: scale(1.06);
}

.logo-svg .lotus-petal {
  transform-origin: 26px 28px;
  animation: petalGlow 4s ease-in-out infinite;
}

.logo-svg .lotus-petal:nth-child(2) {
  animation-delay: 0.3s;
}
.logo-svg .lotus-petal:nth-child(3) {
  animation-delay: 0.6s;
}
.logo-svg .lotus-petal:nth-child(4) {
  animation-delay: 0.9s;
}
.logo-svg .lotus-petal:nth-child(5) {
  animation-delay: 1.2s;
}

.logo-svg .lotus-ring {
  animation: ringPulse 3s ease-in-out infinite;
}

@keyframes petalGlow {
  0%,
  100% {
    opacity: 1;
    filter: drop-shadow(0 0 0 transparent);
  }
  50% {
    opacity: 0.92;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.9));
  }
}

@keyframes ringPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: rotate(0deg);
  }
  50% {
    opacity: 0.55;
    transform: rotate(180deg);
  }
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-script {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  font-style: italic;
  color: var(--ink);
}

.logo-sub {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent-deep);
  text-transform: uppercase;
}

/* Nav */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 0.5rem;
  cursor: pointer;
  font-family: inherit;
  color: var(--ink);
}

.nav-toggle-bars {
  display: block;
  flex-shrink: 0;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-list a {
  display: block;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  background: linear-gradient(135deg, rgba(232, 93, 44, 0.12), rgba(244, 185, 66, 0.15));
  color: var(--accent-deep);
}

@media (max-width: 820px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-list {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--cream);
    border-bottom: 1px solid rgba(232, 93, 44, 0.12);
    gap: 0.35rem;
    display: none;
  }

  .nav-list.is-open {
    display: flex;
  }

  .nav-list a {
    border-radius: var(--radius);
  }
}

/* ---------- Hero & sections ---------- */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 2rem;
    padding-bottom: 3rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: linear-gradient(135deg, rgba(232, 93, 44, 0.15), rgba(244, 185, 66, 0.2));
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 3.35rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 1rem;
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
  max-width: 36ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(145deg, var(--accent), var(--accent-deep));
  color: var(--white);
  box-shadow: 0 8px 28px rgba(232, 93, 44, 0.35);
}

.btn-primary:hover {
  color: var(--white);
  box-shadow: 0 12px 36px rgba(232, 93, 44, 0.42);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--white);
  color: var(--leaf);
  border: 2px solid rgba(45, 90, 69, 0.25);
}

.btn-ghost:hover {
  border-color: var(--leaf);
  color: var(--leaf);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
}

.hero-photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px var(--shadow-lg);
  border: 4px solid var(--white);
}

.hero-photo-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transform-origin: center center;
  animation: heroKen 32s ease-in-out infinite alternate;
}

@keyframes heroKen {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.055);
  }
}

.hero-float-card {
  position: absolute;
  bottom: -0.5rem;
  left: -0.5rem;
  background: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: 0 16px 40px var(--shadow-lg);
  max-width: min(300px, 92vw);
  animation: floatCard 5s ease-in-out infinite;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.hero-float-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
}

.hero-float-card span {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .hero-float-card {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: -2rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
}

/* Sections */
.section {
  padding: 4rem 1.25rem;
}

.section-alt {
  background: linear-gradient(180deg, var(--mist) 0%, var(--cream) 100%);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.75rem;
}

.section-head p {
  margin: 0;
  font-size: 1.05rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(232, 93, 44, 0.08);
  box-shadow: 0 8px 32px var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px var(--shadow-lg);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(232, 93, 44, 0.12), rgba(45, 90, 69, 0.12));
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  color: var(--ink);
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 3rem 1.25rem 2.5rem;
  background: linear-gradient(165deg, rgba(244, 185, 66, 0.12) 0%, transparent 55%),
    var(--cream);
  text-align: center;
}

.page-hero-inner {
  max-width: 40rem;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 0.75rem;
  color: var(--ink);
}

.page-hero p {
  margin: 0;
  font-size: 1.1rem;
}

/* Content prose */
.prose {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--ink);
  margin-top: 2rem;
}

.prose h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
  margin-top: 1.5rem;
}

.prose ul {
  padding-left: 1.25rem;
}

.prose li {
  margin-bottom: 0.35rem;
}

/* Blog listing */
.blog-grid {
  display: grid;
  gap: 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
}

@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(232, 93, 44, 0.1);
  box-shadow: 0 8px 28px var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px var(--shadow-lg);
}

.blog-card a {
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 1.75rem;
}

.blog-card .tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.blog-card h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0.5rem 0;
  color: var(--ink);
}

.blog-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* Contact */
.contact-layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(232, 93, 44, 0.1);
  box-shadow: 0 8px 32px var(--shadow);
}

.contact-card h2 {
  font-family: var(--font-display);
  margin-top: 0;
  color: var(--ink);
}

.contact-row {
  margin-bottom: 1rem;
}

.contact-row strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-deep);
  margin-bottom: 0.25rem;
}

.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  background: var(--mist);
  border: 1px solid rgba(232, 93, 44, 0.12);
}

.map-placeholder iframe {
  width: 100%;
  height: 320px;
  border: 0;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 2.5rem 1.25rem 0;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
}

.footer-inner a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-logo .logo-script {
  color: var(--white);
}

.footer-logo .logo-sub {
  color: var(--accent-light);
}

/* Floating phone button — SVG gül çerçeve + ortada turuncu merkez + ikon */
.phone-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 200;
  width: 64px;
  height: 64px;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: none;
  text-decoration: none;
  border: none;
  isolation: isolate;
  overflow: visible;
}

/* Renkli çerçeve: gerçek çiçek/gül silüeti (içi kesik SVG halka) */
.phone-fab::after {
  content: "";
  position: absolute;
  inset: -22%;
  z-index: 0;
  pointer-events: none;
  border-radius: 0;
  background: url("../images/phone-fab-rose-frame.svg") center / contain no-repeat;
  filter:
    drop-shadow(0 2px 8px rgba(236, 72, 153, 0.42))
    drop-shadow(0 4px 14px rgba(34, 211, 238, 0.22))
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.55));
}

.phone-fab::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 56%;
  height: 56%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, var(--accent-light), var(--accent) 44%, var(--accent-deep));
  border: 2px solid rgba(255, 255, 255, 0.52);
  box-shadow:
    inset 0 3px 12px rgba(255, 255, 255, 0.38),
    inset 0 -4px 12px rgba(0, 0, 0, 0.2),
    0 10px 34px rgba(232, 93, 44, 0.48),
    0 0 0 0 rgba(232, 93, 44, 0.38);
  animation: fabFlowerPulse 2.4s ease-in-out infinite;
}

.phone-fab:hover {
  color: var(--white);
  transform: scale(1.06);
}

.phone-fab:hover::after {
  filter:
    drop-shadow(0 3px 12px rgba(236, 72, 153, 0.52))
    drop-shadow(0 5px 18px rgba(244, 185, 66, 0.35))
    drop-shadow(0 5px 18px rgba(34, 211, 238, 0.35))
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.65));
}

.phone-fab:hover::before {
  animation: none;
  box-shadow:
    inset 0 3px 12px rgba(255, 255, 255, 0.38),
    inset 0 -4px 14px rgba(0, 0, 0, 0.18),
    0 14px 42px rgba(232, 93, 44, 0.58),
    0 0 0 10px rgba(232, 93, 44, 0);
}

.phone-fab svg {
  position: relative;
  z-index: 2;
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

@keyframes fabFlowerPulse {
  0%,
  100% {
    box-shadow:
      inset 0 3px 12px rgba(255, 255, 255, 0.35),
      inset 0 -4px 14px rgba(0, 0, 0, 0.18),
      0 10px 34px rgba(232, 93, 44, 0.48),
      0 0 0 0 rgba(232, 93, 44, 0.38);
  }
  50% {
    box-shadow:
      inset 0 3px 12px rgba(255, 255, 255, 0.38),
      inset 0 -4px 14px rgba(0, 0, 0, 0.18),
      0 14px 42px rgba(232, 93, 44, 0.58),
      0 0 0 14px rgba(232, 93, 44, 0);
  }
}

.phone-fab-label {
  position: absolute;
  right: calc(100% + 12px);
  z-index: 3;
  white-space: nowrap;
  background: var(--ink);
  color: var(--white);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity 0.25s, transform 0.25s var(--ease);
}

@media (min-width: 480px) {
  .phone-fab:hover .phone-fab-label {
    opacity: 1;
    transform: translateX(0);
  }
}

/* decorative petal corner - subtle */
.floral-corner {
  position: fixed;
  bottom: 0;
  right: 0;
  width: min(280px, 45vw);
  height: min(280px, 45vw);
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
  background: radial-gradient(circle at 100% 100%, var(--accent) 0%, transparent 70%);
}

main {
  position: relative;
  z-index: 1;
}

/* Ambient floating petals (injected by JS) */
.ambient-petals {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.ambient-petal {
  position: absolute;
  width: 14px;
  height: 18px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity: 0.12;
  animation: petalFall linear infinite;
}

.ambient-petal:nth-child(1) {
  left: 8%;
  background: linear-gradient(165deg, #e85d2c, #ffb088);
  animation-duration: 14s;
  animation-delay: 0s;
  transform: rotate(-18deg);
}

.ambient-petal:nth-child(2) {
  left: 22%;
  width: 11px;
  height: 14px;
  background: linear-gradient(165deg, #f4b942, #ffd985);
  animation-duration: 18s;
  animation-delay: -4s;
}

.ambient-petal:nth-child(3) {
  left: 78%;
  background: linear-gradient(165deg, #c94a8f, #e85d8c);
  animation-duration: 16s;
  animation-delay: -2s;
  transform: rotate(12deg);
}

.ambient-petal:nth-child(4) {
  left: 92%;
  width: 12px;
  height: 15px;
  background: linear-gradient(165deg, #2d5a45, #6abf9c);
  animation-duration: 20s;
  animation-delay: -7s;
}

.ambient-petal:nth-child(5) {
  left: 45%;
  background: linear-gradient(165deg, #e85d2c, #f4b942);
  animation-duration: 22s;
  animation-delay: -10s;
}

.ambient-petal:nth-child(6) {
  left: 62%;
  width: 10px;
  height: 13px;
  background: linear-gradient(165deg, #9b59b6, #e85d8c);
  animation-duration: 17s;
  animation-delay: -5s;
}

@keyframes petalFall {
  0% {
    top: -5%;
    transform: translateX(0) rotate(0deg);
    opacity: 0;
  }
  8% {
    opacity: 0.14;
  }
  92% {
    opacity: 0.1;
  }
  100% {
    top: 105%;
    transform: translateX(24px) rotate(220deg);
    opacity: 0;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}
.reveal-delay-2 {
  transition-delay: 0.16s;
}
.reveal-delay-3 {
  transition-delay: 0.24s;
}

.section-divider {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  opacity: 0.35;
}

.section-divider::before,
.section-divider::after {
  content: "";
  flex: 1;
  max-width: 8rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 93, 44, 0.45), transparent);
}

.section-divider span {
  font-size: 1.1rem;
  letter-spacing: 0.35em;
  color: var(--accent-deep);
}

/* Instagram nav */
.nav-insta {
  background: linear-gradient(
    135deg,
    rgba(225, 48, 108, 0.12),
    rgba(253, 203, 92, 0.18)
  ) !important;
  color: #c13584 !important;
}

.nav-insta:hover {
  color: #833ab4 !important;
}

/* Anneler Günü promo */
.promo-anneler {
  background: linear-gradient(
      165deg,
      rgba(255, 182, 193, 0.35) 0%,
      rgba(255, 253, 248, 0.98) 45%,
      rgba(244, 185, 66, 0.15) 100%
    ),
    var(--cream);
  padding: 2.5rem 1.25rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(232, 93, 44, 0.12);
}

.promo-anneler-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 880px) {
  .promo-anneler-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.promo-badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #e91e63, #ff6090);
  color: var(--white);
  margin-bottom: 0.85rem;
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.35);
}

.promo-anneler-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  color: var(--ink);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.promo-anneler-copy > p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.promo-highlight {
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.85);
  border: 1px dashed rgba(233, 30, 99, 0.35);
  font-size: 1rem !important;
  margin-bottom: 1.35rem !important;
}

.promo-highlight strong {
  color: #c2185b;
  font-size: 1.15em;
}

.promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.promo-actions .btn-instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  color: var(--white);
  border: none;
}

.promo-actions .btn-instagram:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(221, 42, 123, 0.35);
}

.promo-anneler-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(26, 26, 31, 0.14);
  border: 4px solid var(--white);
}

.promo-anneler-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

/* Marquee ticker */
.marquee-shell {
  margin: 0;
  background: linear-gradient(90deg, #ad1457, #e91e63, #f06292, #e91e63, #ad1457);
  background-size: 200% auto;
  animation: promoGradient 12s ease infinite;
}

.marquee-below-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 14px rgba(173, 20, 87, 0.2);
}

@keyframes promoGradient {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.marquee {
  overflow: hidden;
  padding: 0.65rem 0;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 42s linear infinite;
}

.marquee-segment {
  flex-shrink: 0;
  padding: 0 3rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.marquee-segment .marquee-phone {
  color: #bef264;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45), 0 0 14px rgba(163, 230, 53, 0.55);
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .marquee-below-header {
    box-shadow: 0 2px 10px rgba(173, 20, 87, 0.18);
  }

  .marquee {
    padding: 0.28rem 0;
    mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  }

  .marquee-track {
    animation-duration: 48s;
  }

  .marquee-segment {
    padding: 0 1.25rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Gallery */
.gallery-section {
  padding-bottom: 4.5rem;
}

.gallery-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1000px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
  }
}

.gallery-item:first-child {
  grid-column: 1 / -1;
}

.gallery-item:first-child img {
  aspect-ratio: 16/9;
  min-height: 220px;
  max-height: 420px;
  object-position: center 30%;
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 36px var(--shadow);
  border: 3px solid var(--white);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 48px var(--shadow-lg);
  z-index: 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.footer-social {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem 1rem;
  text-align: center;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.footer-social a:hover {
  color: var(--accent-light);
}

.footer-social svg {
  flex-shrink: 0;
}

.footer-tagline {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem 1.5rem;
  text-align: center;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.footer-legal {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 1rem;
  font-size: 0.86rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-weight: 500;
}

.footer-legal a:hover {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-legal-dot {
  color: rgba(255, 255, 255, 0.28);
  user-select: none;
}

.footer-copy {
  margin: 1rem auto 0;
  padding: 0 1.25rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
}

.footer-developer {
  margin: 1.35rem -1.25rem 0;
  padding: 1rem 1.25rem 1.4rem;
  text-align: center;
  background: linear-gradient(145deg, #0a0a0f 0%, #151020 40%, #1a1530 70%, #0f1728 100%);
  border-top: 3px solid transparent;
  border-image: linear-gradient(
      90deg,
      #e85d2c,
      #f4b942,
      #e91e63,
      #22d3ee,
      #a78bfa,
      #e85d2c
    )
    1;
}

.footer-developer a {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  background: linear-gradient(
    105deg,
    #ffb088 0%,
    #f4b942 22%,
    #ff7eb3 48%,
    #c4b5fd 72%,
    #67e8f9 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: filter 0.2s var(--ease), transform 0.2s var(--ease);
}

.footer-developer a:hover {
  filter: brightness(1.12) saturate(1.1);
}

.footer-developer strong {
  font-weight: 700;
}

@media (max-width: 640px) {
  .site-footer {
    padding-bottom: 5rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .footer-inner > p {
    margin: 0;
    max-width: 100%;
    padding: 0 0.25rem;
    font-size: 0.84rem !important;
    line-height: 1.55;
  }

  .footer-social {
    padding: 0.35rem calc(4.75rem + env(safe-area-inset-right, 0px)) 0.85rem 1.25rem;
    margin-top: 0.25rem;
  }

  .footer-social a {
    flex-direction: row;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.76rem;
    line-height: 1.2;
    max-width: none;
    margin-inline: auto;
    white-space: nowrap;
  }

  .footer-social svg {
    width: 20px;
    height: 20px;
  }

  .phone-fab {
    right: max(0.75rem, env(safe-area-inset-right, 0px));
    bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
    width: 54px;
    height: 54px;
  }

  .phone-fab svg {
    width: 22px;
    height: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-photo-wrap img,
  .hero-float-card,
  .logo-svg .lotus-petal,
  .logo-svg .lotus-ring,
  .phone-fab,
  .phone-fab::before,
  .phone-fab::after,
  .ambient-petal {
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .feature-card:hover,
  .blog-card:hover {
    transform: none;
  }

  .btn-primary:hover,
  .btn-ghost:hover {
    transform: none;
  }

  .logo-link:hover .logo-svg {
    transform: none;
  }

  .phone-fab:hover {
    transform: none;
  }

  .marquee-track {
    animation: none !important;
  }

  .marquee-shell {
    animation: none !important;
    background: #c2185b;
  }

  .gallery-item:hover {
    transform: none;
  }

  .promo-actions .btn-instagram:hover {
    transform: none;
  }
}
